/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --charcoal:       #1a1917;
  --charcoal-mid:   #242220;
  --charcoal-light: #2e2b26;
  --gold:           #b8922a;
  --gold-light:     #d4a840;
  --gold-pale:      #f5edd8;
  --gold-muted:     #e8d4a0;
  --cream:          #faf7f2;
  --cream-dark:     #f0ebe0;
  --sand:           #e0d3bb;
  --white:          #ffffff;
  --text-primary:   #1a1917;
  --text-secondary: #5a5448;
  --text-muted:     #8a7f70;
  --border:         rgba(184,146,42,0.18);
  --border-light:   rgba(184,146,42,0.10);
  --radius:         3px;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 72px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26,25,23,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,146,42,0.13);
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: rgba(184,146,42,0.25); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}
.nav-logo-svg { width: 30px; height: 30px; flex-shrink: 0; }
.nav-logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-logo-wordmark span { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta-btn {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-cta-btn:hover { background: var(--gold); color: var(--charcoal); }

/* Nav dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap > .nav-dd-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  user-select: none;
}
.nav-dropdown-wrap > .nav-dd-trigger::after {
  content: '';
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
}
.nav-dropdown-wrap:hover > .nav-dd-trigger { color: var(--gold-light); }
.nav-dropdown-wrap:hover > .nav-dd-trigger::after { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,25,23,0.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(184,146,42,0.18);
  border-radius: var(--radius);
  padding: 10px 0;
  min-width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  z-index: 210;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover {
  color: var(--gold-light);
  background: rgba(184,146,42,0.07);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(26,25,23,0.98);
  backdrop-filter: blur(14px);
  z-index: 190;
  padding: 40px 7vw;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid rgba(184,146,42,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .nav-mobile-cta {
  margin-top: 12px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile .nav-mobile-cta:hover { background: var(--gold); color: var(--charcoal); }

/* ─────────────────────────────────────────
   HERO (shared across pages)
───────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  min-height: 100vh;
  padding: 120px 5vw 80px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.hero-left {
  position: relative;
  z-index: 1;
}
.hero-divider {
  width: 48px;
  height: 1px;
  background: rgba(184,146,42,0.35);
  margin: 32px 0 28px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,146,42,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,146,42,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 60% 0 0 0;
  background: linear-gradient(transparent, rgba(26,25,23,0.5));
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 30px;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 15px 34px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost::after { content: '→'; }

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ticker {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0 38px;
}
.ticker-sep {
  color: rgba(26,25,23,0.35);
  font-size: 10px;
  align-self: center;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SECTION UTILITIES
───────────────────────────────────────── */
.section-pad { padding: 120px 10vw; }
.section-pad-lg { padding: 140px 10vw; }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 22px;
}
.section-headline em { font-style: italic; color: var(--gold); }
.on-dark .section-headline { color: var(--white); }
.on-dark .section-headline em { color: var(--gold-light); }
.on-light .section-headline { color: var(--charcoal); }

.section-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
}
.on-dark .section-sub { color: rgba(255,255,255,0.52); }
.on-light .section-sub { color: var(--text-secondary); }

/* ─────────────────────────────────────────
   NUMBERED DIFFERENTIATORS
───────────────────────────────────────── */
.diff-list { display: flex; flex-direction: column; gap: 36px; margin-top: 40px; }
.diff-item { display: flex; gap: 22px; }
.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  color: var(--gold-muted);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  padding-top: 2px;
}
.diff-title {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 7px;
}
.diff-text {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   METRIC STACK
───────────────────────────────────────── */
.metric-stack { display: flex; flex-direction: column; }
.metric-card {
  padding: 32px 36px;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--white);
  transition: background 0.2s;
}
.metric-card:last-child { border-bottom: 1px solid var(--border); }
.metric-card:first-child { border-radius: 4px 4px 0 0; }
.metric-card:last-child  { border-radius: 0 0 4px 4px; }
.metric-card:hover { background: var(--cream); }
.metric-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-label {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────── */
.process-section { background: var(--charcoal-mid); }
.process-header { max-width: 560px; margin-bottom: 72px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.process-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,146,42,0.1);
  padding: 44px 40px;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.process-step:hover {
  background: rgba(184,146,42,0.04);
  border-color: rgba(184,146,42,0.2);
}
.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: rgba(184,146,42,0.18);
  line-height: 1;
  margin-bottom: 28px;
  display: block;
}
.process-step-icon { width: 38px; height: 38px; margin-bottom: 20px; }
.process-step-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.process-step-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
}
.process-step-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-size: 18px;
  color: rgba(184,146,42,0.35);
}

/* ─────────────────────────────────────────
   PRODUCT CARDS
───────────────────────────────────────── */
.products-section { background: var(--white); }
.products-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.products-intro-right { text-align: right; }
.products-intro-right a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.products-intro-right a::after { content: ' →'; }
.products-intro-right a:hover { gap: 10px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--sand);
  border-radius: 4px;
  overflow: hidden;
}
.product-card {
  background: var(--white);
  padding: 48px 44px;
  position: relative;
  transition: background 0.2s;
}
.product-card:hover { background: var(--cream); }
.product-card-icon { width: 40px; height: 40px; margin-bottom: 26px; }
.product-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 2px;
  padding: 3px 9px;
  margin-bottom: 14px;
}
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 14px;
}
.product-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.product-link:hover { gap: 10px; }
.product-link::after { content: '→'; }

/* ─────────────────────────────────────────
   RESOURCES
───────────────────────────────────────── */
.resources-section { background: var(--cream-dark); }
.resources-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.resource-list { display: flex; flex-direction: column; margin-top: 12px; }
.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand);
  color: var(--charcoal);
  transition: color 0.2s;
}
.resource-item:first-child { border-top: 1px solid var(--sand); }
.resource-item:hover { color: var(--gold); }
.resource-item-left { display: flex; align-items: center; gap: 14px; }
.resource-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.resource-title { font-size: 14.5px; font-weight: 400; }
.resource-arrow {
  font-size: 16px;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.2s;
}
.resource-item:hover .resource-arrow { transform: translateX(4px); color: var(--gold); }

/* Featured quote card */
.featured-card {
  background: var(--charcoal);
  border-radius: 4px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}
.featured-tag-dark {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.featured-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  flex-grow: 1;
}
.featured-quote::before { content: '\201C'; }
.featured-quote::after  { content: '\201D'; }
.featured-author {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.featured-author strong {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.featured-author span {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
}

/* ─────────────────────────────────────────
   AGENT STORIES
───────────────────────────────────────── */
.stories-section { background: var(--white); }
.stories-intro { margin-bottom: 52px; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.story-card:hover {
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(184,146,42,0.07);
}
.story-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.story-star { color: var(--gold); font-size: 13px; }
.story-quote {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 28px;
}
.story-author {
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.story-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.story-meta {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   CONTACT / FORM
───────────────────────────────────────── */
.contact-section { background: var(--charcoal); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-blocks { margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon-wrap {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184,146,42,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}
.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,146,42,0.15);
  border-radius: 4px;
  padding: 48px 44px;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-input, .form-select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: rgba(184,146,42,0.5);
  background: rgba(255,255,255,0.07);
}
.form-select { cursor: pointer; color: rgba(255,255,255,0.6); }
.form-select option { background: var(--charcoal); color: var(--white); }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(184,146,42,0.1);
  padding: 72px 10vw 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 240px;
  margin-top: 12px;
}
.footer-col-title {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-legal {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
  line-height: 1.65;
  max-width: 560px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ─────────────────────────────────────────
   SUBPAGE HERO (shorter, for service pages)
───────────────────────────────────────── */
.page-hero {
  min-height: 55vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 140px 8vw 80px;
}
.page-hero .hero-sub { margin-left: auto; margin-right: auto; max-width: 520px; }

/* ─────────────────────────────────────────
   CTA SECTION (reusable dark CTA block)
───────────────────────────────────────── */
.cta-section {
  background: var(--charcoal);
  text-align: center;
}
.cta-section .section-headline { color: var(--white); }
.cta-section .section-headline em { color: var(--gold-light); }
.cta-section .section-sub {
  color: rgba(255,255,255,0.52);
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   STATS BANNER (gold bar)
───────────────────────────────────────── */
.stats-banner {
  background: var(--gold);
  padding: 48px 10vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(26,25,23,0.6);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────
   FEATURE GRID (2x2 or 2x3 cards for service pages)
───────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--sand);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 52px;
}
.feature-card {
  background: var(--white);
  padding: 44px 40px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--cream); }
.feature-card-icon { width: 38px; height: 38px; margin-bottom: 22px; }
.feature-card-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.feature-card-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr; }
  .stories-grid  { grid-template-columns: 1fr 1fr; }
  .feature-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 8vw 80px; }
  .hero-stats { gap: 28px; }

  .why-grid        { grid-template-columns: 1fr; gap: 52px; }
  .process-steps   { grid-template-columns: 1fr; }
  .products-intro  { grid-template-columns: 1fr; }
  .products-intro-right { text-align: left; }
  .resources-layout{ grid-template-columns: 1fr; }
  .stories-grid    { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom   { flex-direction: column; gap: 16px; }
  .form-row        { grid-template-columns: 1fr; }
  .stories-intro   { margin-bottom: 36px; }
  .stats-banner    { grid-template-columns: 1fr 1fr; }

  .section-pad    { padding: 80px 7vw; }
  .section-pad-lg { padding: 90px 7vw; }

  .page-hero-content { padding: 120px 7vw 60px; }
}

@media (max-width: 520px) {
  .footer-grid   { grid-template-columns: 1fr; }
  .hero-stats    { flex-direction: column; gap: 22px; }
  .stats-banner  { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   HERO RIGHT — CONSTELLATION & FLOAT CARDS
───────────────────────────────────────── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-float-card {
  position: absolute;
  bottom: 16%;
  left: 8%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,146,42,0.3);
  border-radius: 4px;
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  z-index: 5;
}
.hero-float-card .fc-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.hero-float-card .fc-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-float-card .fc-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin-top: 3px;
}
.hero-float-card-2 {
  position: absolute;
  top: 22%;
  right: 10%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: 4px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  z-index: 5;
}
.hero-float-card-2 .fc-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.hero-float-card-2 .fc-value { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--white); line-height: 1; }
.hero-float-card-2 .fc-sub { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 3px; }

/* Beacon Constellation */
.beacon-constellation {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.beacon-svg {
  width: 100%;
  height: 100%;
}
.constellation-line {
  stroke: rgba(184,146,42,0.18);
  stroke-width: 1;
  transition: stroke-opacity 0.3s;
}
.constellation-line-faint {
  stroke: rgba(184,146,42,0.07);
  stroke-width: 0.7;
  stroke-dasharray: 4 4;
}

/* Nodes */
.beacon-node {
  position: absolute;
  z-index: 10;
  cursor: pointer;
}
.node-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(184,146,42,0.25);
  border: 2px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.beacon-node:hover .node-dot {
  transform: scale(1.5);
  background: var(--gold);
  box-shadow: 0 0 20px rgba(184,146,42,0.5);
}

/* Tooltips */
.node-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: var(--charcoal-light);
  border: 1px solid rgba(184,146,42,0.25);
  border-radius: 6px;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(6px);
  z-index: 20;
}
.node-tooltip-left {
  left: auto;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
}
.beacon-node:hover .node-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.beacon-node:hover .node-tooltip-left {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.node-tooltip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.node-tooltip-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Center label */
.beacon-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 5;
}
.bcl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.bcl-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

@media (max-width: 860px) {
  .beacon-constellation { max-width: 340px; }
  .hero-float-card, .hero-float-card-2 { display: none; }
  .node-tooltip { width: 180px; padding: 12px; }
}

/* ─────────────────────────────────────────
   ACCESSIBILITY
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
