/* ============================================================
   SWEET WEALTH ADVISORS — Main Stylesheet
   Editorial luxury · audemarspiguet.com inspired
   ============================================================ */

/* ---------- 1. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  --green:       #0A251B;   /* sampled to match green logo background exactly */
  --green-light: #1B3A2D;
  --cream:       #F4EBE1;   /* sampled to match cream logo background exactly */
  --cream-dark:  #ECE2D3;
  --gold:        #C9A96E;
  --gold-soft:   #D4BA8A;
  --dark:        #1A1A1A;
  --mid:         #4A4A4A;
  --light:       #8A8A8A;
  --white:       #FFFFFF;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'DM Sans', -apple-system, sans-serif;

  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --ease-luxury: cubic-bezier(0.65, 0, 0.35, 1);

  --maxw: 1440px;
  --gutter-lg: 8vw;
  --gutter-md: 5vw;
  --gutter-sm: 24px;

  --nav-h: 168px;
}

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--dark);
}
h1 { font-size: clamp(2.75rem, 6vw, 5.25rem); font-weight: 300; }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem);   font-weight: 400; }
h4 { font-size: clamp(1.125rem, 1.6vw, 1.375rem); font-weight: 500; }

p { font-size: 1rem; line-height: 1.75; color: var(--mid); }
p.lead { font-size: 1.125rem; line-height: 1.7; color: var(--mid); font-weight: 300; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  display: inline-block;
}
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

.italic { font-style: italic; }

/* ---------- 4. LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter-lg);
  padding-right: var(--gutter-lg);
}
.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding-left: var(--gutter-lg);
  padding-right: var(--gutter-lg);
}
section { position: relative; }

.bg-cream      { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-white      { background: var(--white); }
.bg-green      { background: var(--green); color: var(--cream); }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4 { color: var(--cream); }
.bg-green p    { color: rgba(245, 240, 232, 0.78); }
.bg-green .eyebrow { color: var(--gold-soft); }

/* ---------- 5. NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
}
.nav.interior {
  background: var(--cream);
}
.nav.interior.scrolled {
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
}
.nav-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav-logo,
.nav.interior .nav-logo { color: var(--dark); }
.nav-logo img {
  height: 132px;
  width: auto;
  display: block;
  transition: filter 0.4s var(--ease);
}
.nav-logo-text { display: none; }

/* Transparent nav state (over hero): hide cream-bg logo image, show wordmark in cream */
.nav:not(.scrolled):not(.interior) .nav-logo img { display: none; }
.nav:not(.scrolled):not(.interior) .nav-logo-text {
  display: inline;
  font-family: var(--serif);
  font-size: clamp(1.125rem, 1.4vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream);
  white-space: nowrap;
}
/* Scrolled / interior nav (cream bg): show actual logo image */
.nav.scrolled .nav-logo img,
.nav.interior .nav-logo img { filter: none; display: block; }
.nav.scrolled .nav-logo-text,
.nav.interior .nav-logo-text { display: none; }
/* Image-load failure fallback */
.nav-logo.no-img img { display: none !important; }
.nav-logo.no-img .nav-logo-text { display: inline !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s var(--ease);
}
.nav.scrolled .nav-links a,
.nav.interior .nav-links a { color: var(--dark); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active { color: var(--gold); }
.nav.scrolled .nav-links a.active,
.nav.interior .nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--green);
  color: var(--cream);
  border: 1px solid var(--green);
  transition: all 0.35s var(--ease);
}
.nav.scrolled .nav-cta,
.nav.interior .nav-cta { background: var(--green); border-color: var(--green); }
.nav-cta:hover { background: var(--green-light); border-color: var(--green-light); }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 200;
}
.hamburger span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.4s var(--ease);
}
.nav.scrolled .hamburger span,
.nav.interior .hamburger span { background: var(--dark); }
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger.open span { background: var(--cream) !important; }
.hamburger.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 88vw);
  height: 100vh;
  background: var(--green);
  z-index: 150;
  padding: 120px 48px 48px;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-luxury);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--cream);
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-drawer a:hover { color: var(--gold-soft); padding-left: 6px; }
.mobile-drawer .nav-cta {
  align-self: flex-start;
  margin-top: 36px;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
  font-family: var(--sans);
  font-size: 0.75rem;
  padding: 16px 32px;
}
.mobile-drawer .nav-cta:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- 6. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn-fill-green {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.btn-fill-green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-1px);
}
.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--green);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--cream);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green);
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  padding-bottom: 2px;
  position: relative;
}
.arrow-link::after {
  content: '→';
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.arrow-link:hover::after { transform: translateX(8px); }

/* ---------- 7. HERO (HOME) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  z-index: 1;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--gutter-md);
}
.hero h1 {
  color: var(--cream);
  font-weight: 300;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 48px;
  font-weight: 400;
}
.hero .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.42em;
}
.hero .gold-line {
  background: var(--gold-soft);
  margin: 0 auto 36px;
  width: 80px;
}

.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(245, 240, 232, 0.7);
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, transparent 100%);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ---------- 8. INTERIOR HERO ---------- */
.interior-hero {
  background: var(--cream);
  padding: calc(var(--nav-h) + 100px) 0 100px;
  position: relative;
}
.interior-hero .eyebrow { margin-bottom: 20px; }
.interior-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  margin-bottom: 24px;
  max-width: 14ch;
}
.interior-hero .subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
  font-weight: 300;
  max-width: 56ch;
}

/* ---------- 9. SECTION SPACING ---------- */
.section-pad     { padding: 120px 0; }
.section-pad-lg  { padding: 160px 0; }
.section-pad-sm  { padding: 80px 0; }

/* ---------- 10. HOME — WHAT WE DO ---------- */
.what-we-do { padding: 140px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 80px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 20px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.service-card {
  padding: 56px 36px;
  border-right: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  transition: background 0.5s var(--ease);
  position: relative;
}
.service-card:nth-child(4n) { border-right: none; }
.service-card:hover { background: var(--cream-dark); }
.service-card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--green);
  transition: color 0.4s var(--ease);
}
.service-card:hover .icon { color: var(--gold); }
.service-card .gold-line {
  width: 32px;
  margin: 0 0 20px;
}
.service-card h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.25;
}
.service-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--mid);
}

/* ---------- 11. HOME — DIFFERENCE ---------- */
.difference {
  padding: 160px 0;
}
.difference-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.difference-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.25;
  color: var(--cream);
}
.difference-quote::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
}
.difference-list { list-style: none; }
.difference-list li {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.85);
}
.difference-list li:last-child { border-bottom: 1px solid rgba(245, 240, 232, 0.12); }
.difference-list .dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
}
.difference-list strong {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--cream);
  display: block;
  margin-bottom: 6px;
}
.difference-list .desc {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
}

/* ---------- 12. HOME — MEET VIRGIL ---------- */
.meet {
  padding: 140px 0;
  text-align: center;
}
.meet-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 40px;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(26, 26, 26, 0.06);
}
.meet-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.meet-portrait.no-img::after {
  content: 'VS';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--green);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.meet-portrait.no-img img { display: none; }
.meet h2 { margin-bottom: 8px; }
.meet .role {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.meet-bio {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--mid);
}

/* ---------- 13. HOME — NATIONWIDE ---------- */
.nationwide { padding: 160px 0; text-align: center; background: var(--white); }
.nationwide-inner { max-width: 980px; margin: 0 auto; }
.nationwide-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 24px auto 44px;
  max-width: 22ch;
  color: var(--dark);
}
.nationwide-headline em {
  font-style: italic;
  color: var(--green);
}
.nationwide-lead {
  max-width: 60ch;
  margin: 0 auto 0;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--mid);
}
.nationwide-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 72px auto 56px;
  opacity: 0.6;
}
.nationwide-cities {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 38px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.nationwide-cities span {
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nationwide-cities span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-58%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.nationwide-coda {
  margin: 56px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.375rem;
  color: var(--mid);
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .nationwide { padding: 100px 0; }
  .nationwide-rule { margin: 56px auto 40px; }
  .nationwide-cities { gap: 10px 28px; font-size: 0.72rem; letter-spacing: 0.26em; }
  .nationwide-cities span:not(:last-child)::after { right: -18px; font-size: 1.2rem; }
  .nationwide-coda { font-size: 1.125rem; margin-top: 44px; }
}

/* ---------- 14. CTA BANNER ---------- */
.cta-banner {
  padding: 140px 0;
  text-align: center;
}
.cta-banner h2 {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 48px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 15. ABOUT — BIO ---------- */
.bio {
  padding: 100px 0 140px;
}
.bio-grid {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 64px;
  align-items: start;
}
.bio-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  aspect-ratio: 3 / 4;
  width: 180px;
  max-width: 180px;
  background: var(--cream-dark);
  overflow: hidden;
}
.bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bio-portrait.no-img::after {
  content: 'Virgil Sweet';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--green);
  font-weight: 300;
}
.bio-portrait.no-img img { display: none; }
.bio-content p {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 24px;
}
.bio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.bio-stat {
  padding: 32px 28px;
  background: var(--cream-dark);
  border-left: 2px solid var(--gold);
}
.bio-stat .num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}
.bio-stat .label {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ---------- 16. PHILOSOPHY (ABOUT) ---------- */
.philosophy { padding: 140px 0; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 80px;
}
.philosophy-item .icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  margin-bottom: 24px;
}
.philosophy-item h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.philosophy-item p { font-size: 0.95rem; line-height: 1.7; }

/* ---------- 17. SERVICES — EDITORIAL ROWS ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  align-items: stretch;
}
.svc-row.reverse .svc-text  { order: 1; }
.svc-row.reverse .svc-image { order: 2; }
.svc-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-image.is-green  { background: var(--green); }
.svc-image.is-cream  { background: var(--cream-dark); }

.svc-image.is-green::before,
.svc-image.is-cream::before {
  content: '';
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(201, 169, 110, 0.22);
  pointer-events: none;
}

.svc-numeral {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 32px;
}
.svc-numeral .numeral-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.svc-image.is-green .numeral-mark { color: var(--gold); }
.svc-image.is-cream .numeral-mark { color: var(--green); }

.svc-numeral .numeral-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  display: block;
  margin-top: 28px;
  position: relative;
  padding-top: 28px;
}
.svc-image.is-green .numeral-label { color: rgba(245, 240, 232, 0.7); }
.svc-image.is-cream .numeral-label { color: var(--mid); }
.svc-numeral .numeral-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.svc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 7vw;
  background: var(--cream);
}
.svc-row:nth-child(even) .svc-text { background: var(--white); }
.svc-text .eyebrow { margin-bottom: 16px; }
.svc-text h2 { margin-bottom: 28px; max-width: 14ch; }
.svc-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 52ch;
}
.svc-text .btn { align-self: flex-start; margin-top: 24px; }
.svc-disclaimer {
  font-size: 0.8125rem;
  color: var(--light);
  font-style: italic;
  margin-top: 12px;
  max-width: 48ch;
}

/* ---------- 18. RESOURCES ---------- */
.coming-soon {
  padding: 140px 0;
  text-align: center;
  background: var(--cream);
}
.ornament {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  display: block;
}
.coming-soon h2 { max-width: 14ch; margin: 0 auto 24px; }
.coming-soon p.lead { max-width: 52ch; margin: 0 auto 56px; }

.notify-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.notify-form button { grid-column: 1 / -1; }
.notify-success,
.form-success {
  display: none;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px;
  background: var(--white);
  border-left: 2px solid var(--gold);
  text-align: left;
}
.notify-success.show,
.form-success.show { display: block; animation: fadeUp 0.6s var(--ease); }
.notify-success h3,
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.notify-success .check,
.form-success .check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.topics-preview { padding: 120px 0; }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.topic-card {
  padding: 56px 36px;
  border-right: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  opacity: 0.85;
  transition: opacity 0.4s var(--ease);
}
.topic-card:hover { opacity: 1; }
.topic-card:nth-child(4n) { border-right: none; }
.topic-card .gold-line { width: 24px; margin: 0 0 20px; }
.topic-card h4 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.topic-card .count {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
}

/* ---------- 19. CONTACT ---------- */
.contact-section { padding: 100px 0 140px; }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { margin-bottom: 48px; font-size: 1.0625rem; max-width: 42ch; }
.contact-detail {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  align-items: flex-start;
}
.contact-detail:last-of-type { border-bottom: 1px solid rgba(26, 26, 26, 0.1); margin-bottom: 40px; }
.contact-detail .icon-box {
  flex: none;
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.contact-detail .label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 4px;
}
.contact-detail .value {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--dark);
  font-weight: 400;
}
.contact-detail a.value:hover { color: var(--green); }

.contact-form {
  background: var(--white);
  padding: 56px 56px 48px;
  display: grid;
  gap: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.18);
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 300;
  background: transparent;
  color: var(--dark);
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231A1A1A' fill='none' stroke-width='1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
}
.contact-form .btn { justify-self: start; margin-top: 12px; }

/* ---------- 20. FAQ ---------- */
.faq { padding: 120px 0 140px; background: var(--white); }
.faq-list { max-width: 880px; margin: 64px auto 0; }
.faq-item {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.faq-item:last-child { border-bottom: 1px solid rgba(26, 26, 26, 0.1); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--green); }
.faq-q .toggle {
  flex: none;
  width: 28px;
  height: 28px;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.faq-q .toggle::before,
.faq-q .toggle::after {
  content: '';
  position: absolute;
  background: var(--green);
  transition: opacity 0.3s var(--ease);
}
.faq-q .toggle::before { left: 0; right: 0; top: 50%; height: 1px; }
.faq-q .toggle::after  { top: 0; bottom: 0; left: 50%; width: 1px; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a-inner {
  padding: 0 0 32px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  max-width: 64ch;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- 21. DISCLOSURES ---------- */
.disclosure-body {
  padding: 80px 0 140px;
  background: var(--cream);
}
.disclosure-body .container-narrow p {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 28px;
  color: var(--mid);
}
.disclosure-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 48px 0 16px;
  color: var(--dark);
}

/* ---------- 22. FOOTER ---------- */
.footer {
  background: var(--green);
  color: rgba(245, 240, 232, 0.7);
  padding: 100px 0 40px;
  font-size: 0.9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 80px;
}
.footer-brand .nav-logo {
  color: var(--cream);
  margin-bottom: 28px;
  display: inline-flex;
}
/* Footer uses green-bg logo so it blends seamlessly into the green panel */
.footer-brand .nav-logo img { display: block; height: 160px; width: auto; }
.footer-brand .nav-logo-text { display: none; }
.footer-brand .nav-logo.no-img img { display: none; }
.footer-brand .nav-logo.no-img .nav-logo-text { display: inline; font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.footer-brand .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 28px;
  max-width: 26ch;
}
.footer-brand .contact-mini { font-size: 0.875rem; line-height: 1.8; }
.footer-brand .contact-mini a:hover { color: var(--gold-soft); }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 28px;
}
.footer-col ul li {
  padding: 8px 0;
}
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--cream); }
.footer-divider {
  height: 1px;
  background: rgba(245, 240, 232, 0.1);
  margin-bottom: 32px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-bottom .copyright {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.5);
}
.footer-bottom .disclaimer {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
  max-width: 64ch;
  line-height: 1.7;
  font-style: italic;
}
.footer-bottom a {
  font-size: 0.8125rem;
  color: var(--gold-soft);
  text-decoration: none;
  letter-spacing: 0.1em;
}
.footer-bottom a:hover { color: var(--cream); }

/* ---------- 23. COOKIE BANNER ---------- */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green);
  color: var(--cream);
  padding: 28px var(--gutter-lg);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 -10px 40px rgba(26, 26, 26, 0.2);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-luxury);
  flex-wrap: wrap;
}
.cookie.show { transform: translateY(0); }
.cookie p {
  color: rgba(245, 240, 232, 0.85);
  font-size: 0.875rem;
  max-width: 68ch;
  line-height: 1.6;
}
.cookie-actions { display: flex; gap: 12px; flex: none; }
.cookie-btn {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
  transition: all 0.3s var(--ease);
}
.cookie-btn.accept { background: var(--gold); border-color: var(--gold); color: var(--green); }
.cookie-btn.accept:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.cookie-btn.decline:hover { background: rgba(245, 240, 232, 0.08); }

/* ---------- 24. PAGE TRANSITION ---------- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--green);
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.28s var(--ease);
}
.page-transition.ready { opacity: 0; }
.page-transition.leaving {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- 25. SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s var(--ease-luxury), transform 0.45s var(--ease-luxury);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.55s var(--ease-luxury);
}
.fade-in.in { opacity: 1; }

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury);
}
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in > *:nth-child(2) { transition-delay: 55ms; }
.stagger.in > *:nth-child(3) { transition-delay: 110ms; }
.stagger.in > *:nth-child(4) { transition-delay: 165ms; }
.stagger.in > *:nth-child(5) { transition-delay: 220ms; }
.stagger.in > *:nth-child(6) { transition-delay: 275ms; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- 26. RESPONSIVE ---------- */
@media (max-width: 1200px) {
  :root { --gutter-lg: 6vw; }
}

@media (max-width: 1024px) {
  :root { --gutter-lg: 5vw; --nav-h: 140px; }
  .nav-links { gap: 28px; }
  .nav-logo img { height: 108px; }
  .footer-brand .nav-logo img { height: 132px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(4n) { border-right: 1px solid rgba(26, 26, 26, 0.1); }
  .service-card:nth-child(2n) { border-right: none; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-card:nth-child(2n) { border-right: none; }
  .topic-card:nth-child(4n) { border-right: 1px solid rgba(26, 26, 26, 0.1); }
  .topic-card:nth-child(2n) { border-right: none; }
  .difference-inner { grid-template-columns: 1fr; gap: 56px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .bio-grid { grid-template-columns: 1fr; gap: 56px; }
  .bio-portrait { position: relative; top: 0; max-width: 240px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row.reverse .svc-text  { order: 0; }
  .svc-row.reverse .svc-image { order: 0; }
  .svc-text { padding: 80px 6vw; }
  .svc-image { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .section-pad, .section-pad-lg, .what-we-do, .difference, .meet, .nationwide, .cta-banner, .philosophy, .topics-preview { padding: 96px 0; }
  .coming-soon { padding: 100px 0; }
  .interior-hero { padding: calc(var(--nav-h) + 70px) 0 70px; }
}

@media (max-width: 768px) {
  :root { --gutter-lg: 24px; --nav-h: 108px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-logo img { height: 80px; }
  .footer-brand .nav-logo img { height: 108px; }
  .hero { min-height: 600px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-subtitle { font-size: 0.75rem; letter-spacing: 0.22em; margin-bottom: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; padding: 48px 28px; }
  .topics-grid { grid-template-columns: 1fr; }
  .topic-card { border-right: none !important; padding: 48px 28px; }
  .difference-quote { font-size: 1.875rem; }
  .meet-portrait { width: 160px; height: 160px; }
  .meet-bio { font-size: 1rem; }
  .contact-form { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .notify-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cookie { flex-direction: column; align-items: flex-start; padding: 24px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
  .bio-stats { grid-template-columns: 1fr; }
  .interior-hero h1 { font-size: 2.5rem; }
  .section-pad, .section-pad-lg, .what-we-do, .difference, .meet, .nationwide, .cta-banner, .philosophy, .topics-preview, .faq { padding: 72px 0; }
  .coming-soon { padding: 80px 0; }
  .section-head { margin-bottom: 56px; }
  .svc-text { padding: 64px 24px; }
  .svc-text h2 { font-size: 2rem; }
  .scroll-indicator { display: none; }
}

@media (max-width: 375px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  .hero h1 { font-size: 2.25rem; }
  .interior-hero h1 { font-size: 2.125rem; }
  .difference-quote { font-size: 1.625rem; }
  .contact-detail .value { font-size: 1.0625rem; }
  .faq-q { font-size: 1.125rem; padding: 24px 0; }
  .btn { padding: 16px 24px; font-size: 0.7rem; }
  .mobile-drawer { padding: 100px 32px 32px; }
  .mobile-drawer a { font-size: 1.5rem; }
}

/* ============================================================
   27. STICKY BOOK-INTRO CTA (floating bottom-right)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  background: var(--green);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--green);
  box-shadow: 0 16px 44px rgba(10, 37, 27, 0.32);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease-luxury), background 0.3s var(--ease), color 0.3s var(--ease);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  white-space: nowrap;
}
.sticky-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
}
.sticky-cta-arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.sticky-cta:hover .sticky-cta-arrow { transform: translateX(5px); }
body.hide-sticky-cta .sticky-cta { display: none; }
@media (max-width: 768px) {
  .sticky-cta { bottom: 20px; right: 20px; padding: 14px 20px; font-size: 0.65rem; letter-spacing: 0.16em; gap: 8px; }
}

/* ============================================================
   28. "IS THIS FOR ME?" QUIZ (homepage)
   ============================================================ */
.quiz-section {
  padding: 140px 0;
  background: var(--cream-dark);
}
.quiz-shell {
  max-width: 780px;
  margin: 64px auto 0;
  position: relative;
  min-height: 360px;
}
.quiz-step {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease-luxury), transform 0.45s var(--ease-luxury);
  position: absolute;
  inset: 0;
}
.quiz-step.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}
.quiz-step-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
  text-align: center;
}
.quiz-step h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  margin: 0 auto 40px;
  max-width: 18ch;
  line-height: 1.2;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quiz-option {
  background: var(--cream);
  border: 1px solid rgba(10, 37, 27, 0.12);
  padding: 24px 26px;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}
.quiz-option:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 37, 27, 0.08);
}
.quiz-option.selected {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.quiz-progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(10, 37, 27, 0.2);
  transition: all 0.3s var(--ease);
}
.quiz-progress-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 3px;
}
.quiz-progress-dot.done {
  background: var(--green);
}
.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.quiz-back:hover { color: var(--green); }

.quiz-result {
  text-align: center;
  padding: 40px 20px;
}
.quiz-result .gold-line { margin: 0 auto 28px; }
.quiz-result h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 24px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.quiz-result p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 54ch;
}
.quiz-result .btn { margin-bottom: 16px; }
.quiz-restart {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(74, 74, 74, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.quiz-restart:hover { color: var(--green); border-bottom-color: var(--green); }

@media (max-width: 768px) {
  .quiz-section { padding: 80px 0; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-option { padding: 20px 22px; font-size: 1rem; }
}

/* ============================================================
   29. CALCULATOR
   ============================================================ */
.calc-section { padding: 80px 0 140px; background: var(--cream); }
.calc-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}
.calc-inputs { background: var(--white); padding: 48px 44px; }
.calc-inputs h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 28px;
}
.calc-field { margin-bottom: 24px; }
.calc-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  margin-bottom: 8px;
}
.calc-field input[type="number"],
.calc-field input[type="range"] { width: 100%; }
.calc-field input[type="number"] {
  border: none;
  border-bottom: 1px solid rgba(10, 37, 27, 0.18);
  padding: 10px 0;
  font-size: 1.25rem;
  font-family: var(--serif);
  font-weight: 400;
  background: transparent;
  color: var(--dark);
  transition: border-color 0.3s var(--ease);
}
.calc-field input[type="number"]:focus { outline: none; border-bottom-color: var(--gold); }
.calc-field-row { display: grid; grid-template-columns: 1fr 80px; gap: 16px; align-items: end; }
.calc-field-row .suffix {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  padding-bottom: 12px;
  text-align: right;
}

.calc-output {
  background: var(--green);
  color: var(--cream);
  padding: 56px 48px;
}
.calc-output .eyebrow { color: var(--gold-soft); display: block; margin-bottom: 14px; }
.calc-output h3 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--cream);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 28px;
}
.calc-stat {
  padding: 24px 0;
  border-top: 1px solid rgba(245, 235, 225, 0.18);
}
.calc-stat:last-of-type { border-bottom: 1px solid rgba(245, 235, 225, 0.18); }
.calc-stat .label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.calc-stat .value {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  color: var(--cream);
  line-height: 1.1;
}
.calc-cta-block { margin-top: 36px; }
.calc-disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--light);
  font-style: italic;
  margin-top: 32px;
  max-width: 90ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 1024px) {
  .calc-grid { grid-template-columns: 1fr; gap: 32px; }
  .calc-output, .calc-inputs { padding: 40px 32px; }
}

/* ============================================================
   30. APPROACH / PROCESS PAGE  — editorial 2-column treatment
   ============================================================ */
.approach-steps {
  padding: 120px 0 160px;
  background: var(--cream);
}
.approach-step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding: 88px 0;
  border-top: 1px solid rgba(10, 37, 27, 0.08);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.approach-step:first-of-type { border-top: none; padding-top: 32px; }
.approach-step:last-of-type { border-bottom: 1px solid rgba(10, 37, 27, 0.08); }
.approach-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 8vw, 7.5rem);
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.03em;
  position: sticky;
  top: calc(var(--nav-h) + 80px);
}
.approach-step .step-body { display: block; }
.approach-step .step-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin: 0 0 20px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--dark);
}
.approach-step .step-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  padding: 8px 18px;
  border: 1px solid rgba(10, 37, 27, 0.25);
  border-radius: 2px;
  font-weight: 500;
  margin-bottom: 36px;
  background: transparent;
}
.approach-step .step-tag.invite {
  border-color: rgba(201, 169, 110, 0.55);
  color: #8a7340;
  background: rgba(201, 169, 110, 0.06);
}
.approach-step .step-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--mid);
  max-width: 60ch;
  margin: 0;
}
@media (max-width: 1024px) {
  .approach-step { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
  .approach-step .step-num { position: static; font-size: 4rem; }
  .approach-step .step-title { font-size: 1.875rem; }
}

/* ============================================================
   31. PERSONA LANDING PAGES
   ============================================================ */
.persona-pain {
  padding: 100px 0;
  background: var(--cream);
}
.persona-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.persona-pain-card {
  background: var(--white);
  padding: 36px 32px;
  border-left: 3px solid var(--gold);
}
.persona-pain-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.375rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
.persona-pain-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.persona-help { padding: 120px 0; background: var(--white); }
.persona-help-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  margin-top: 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.persona-help-item .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.875rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.persona-help-item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.375rem;
  margin-bottom: 12px;
}
.persona-help-item p { font-size: 1rem; line-height: 1.65; }

.persona-scenario {
  padding: 120px 0;
  background: var(--green);
  color: var(--cream);
  text-align: center;
}
.persona-scenario h2 { color: var(--cream); max-width: 18ch; margin: 0 auto 28px; }
.persona-scenario p {
  color: rgba(245, 235, 225, 0.85);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 auto 40px;
  font-style: italic;
}
.persona-scenario .eyebrow { color: var(--gold-soft); }

@media (max-width: 768px) {
  .persona-pain-grid, .persona-help-list { grid-template-columns: 1fr; }
}

/* Print baseline */
@media print {
  .nav, .footer, .cookie, .page-transition, .scroll-indicator, .mobile-drawer, .drawer-overlay, .sticky-cta { display: none !important; }
  body { background: white; color: black; }
}
