/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  transition: box-shadow 0.3s;
}
nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
  font-size: 0.78rem !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--gold-light);
  }
  .nav-links.open { display: flex; }
}
  
/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-container {
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1410 0%, #2d1f12 50%, #1a1410 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: calc(var(--section-pad) * 0.85) 0 var(--section-pad);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  font-size: clamp(2.75rem, 8.5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Outfit', system-ui, sans-serif;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Outfit', system-ui, sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.22);
}
.hero-stat { text-align: left; min-width: 5.5rem; }
.hero-stat-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-visual {
  display: block;
  width: 100%;
  max-width: 22rem;
  margin: 2.25rem auto 0;
}
.hero-visual-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 55% 8px 48% 12px / 38% 12px 52% 8px;
  border: 1px solid rgba(201, 169, 110, 0.38);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  background: rgba(26, 20, 16, 0.6);
}
.hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(201, 169, 110, 0.15);
  pointer-events: none;
  z-index: 2;
}
.hero-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 0;
}
.hero-visual-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(145deg, rgba(232, 213, 176, 0.1) 0%, transparent 38%);
}
.hero-visual-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A96E' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
}

@media (min-width: 960px) {
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2.5rem, 4.5vw, 4.5rem);
    align-items: center;
    padding: calc(var(--section-pad) * 0.75) 0 calc(var(--section-pad) * 1.05);
  }
  .hero-copy {
    max-width: none;
    padding-right: 0.5rem;
  }
  .hero-title {
    font-size: clamp(3.25rem, 4.2vw, 4.75rem);
    max-width: 12ch;
  }
  .hero-sub {
    font-size: 1.12rem;
    max-width: 36rem;
    line-height: 1.65;
  }
  .hero-eyebrow {
    margin-bottom: 1.75rem;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: clamp(36px, 4vw, 56px);
  }
  .hero-actions {
    gap: 1.1rem 1.25rem;
  }
  .hero-stats {
    margin-top: 3rem;
    padding-top: 2.25rem;
    gap: 2.5rem 4rem;
    max-width: 36rem;
  }
  .hero-stat-num {
    font-size: clamp(2.35rem, 2.8vw, 2.75rem);
  }
  .hero-visual {
    margin: 0;
    max-width: none;
    min-height: 0;
  }
  .hero-visual-frame {
    max-height: min(78vh, 640px);
    margin-left: auto;
    max-width: 440px;
  }
}

@media (min-width: 1200px) {
  .hero-inner {
    gap: clamp(3rem, 5vw, 5.5rem);
  }
  .hero-visual-frame {
    max-width: 480px;
  }
}

@media (max-width: 959px) {
  .hero-stats {
    justify-content: flex-start;
  }
}
/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--charcoal);
  padding: 0.85rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.marquee-dot { color: rgba(201,169,110,0.4); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

