/* LBI Rebuild Consultants — shared styles */

:root {
  --navy: #0a2540;
  --navy-80: rgba(10, 37, 64, 0.8);
  --navy-12: rgba(10, 37, 64, 0.12);
  --navy-06: rgba(10, 37, 64, 0.06);
  --sand: #f5efe6;
  --sand-warm: #efe7da;
  --seafoam: #3a7d7b;
  --sunset: #d4a574;
  --sunset-deep: #c69459;
  --clay: #b5472d;
  --ink: #111a22;
  --muted: #5b6770;
  --paper: #ffffff;
  --hairline: rgba(10, 37, 64, 0.14);
  --hairline-soft: rgba(10, 37, 64, 0.08);

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 1px 3px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 4px 10px rgba(10, 37, 64, 0.06), 0 12px 28px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 10px 30px rgba(10, 37, 64, 0.1), 0 30px 60px rgba(10, 37, 64, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --serif: "Cormorant Garamond", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --fs-eyebrow: 12px;
  --fs-body: clamp(16px, 1.05vw, 17px);
  --fs-lead: clamp(18px, 1.35vw, 21px);
  --fs-h3: clamp(20px, 1.8vw, 24px);
  --fs-h2: clamp(28px, 3.2vw, 44px);
  --fs-h1: clamp(40px, 5.6vw, 76px);
  --fs-display: clamp(44px, 6.4vw, 88px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
svg { height: auto; }

a { color: inherit; text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--seafoam);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); margin: 0; letter-spacing: -0.01em; text-wrap: balance; }
h1 { font-size: var(--fs-h1); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: var(--fs-h2); line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-size: var(--fs-h3); line-height: 1.2; }

p { margin: 0 0 1em; text-wrap: pretty; }
.lede { font-size: var(--fs-lead); color: var(--muted); line-height: 1.55; max-width: 58ch; }

em, .italic { font-style: italic; font-family: var(--serif); font-weight: 300; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: currentColor; opacity: 0.55;
}
.eyebrow.no-rule::before { display: none; }

/* Skip link */
.skip {
  position: absolute; left: 12px; top: 12px;
  transform: translateY(-140%);
  background: var(--ink); color: #fff; padding: 10px 14px; border-radius: var(--radius-sm);
  text-decoration: none; font-size: 14px; z-index: 200; transition: transform 180ms ease;
}
.skip:focus { transform: translateY(0); }

/* Announcement bar */
.announce {
  background: var(--navy);
  color: #e8edf3;
  font-size: 13px;
  padding: 9px var(--gutter);
  text-align: center;
  letter-spacing: 0.01em;
}
.announce a { color: #fff; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; }
.announce .dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--sunset); margin: 0 12px; vertical-align: middle; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 239, 230, 0.92);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  backdrop-filter: saturate(1.2) blur(10px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  box-shadow: 0 6px 24px rgba(10, 37, 64, 0.08);
  background: rgba(245, 239, 230, 0.96);
  border-bottom-color: var(--hairline-soft);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink);
}
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name {
  font-family: var(--serif); font-weight: 400; font-size: 18px; letter-spacing: -0.01em; line-height: 1;
}
.brand__name em { font-style: italic; font-weight: 300; color: var(--seafoam); }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  position: relative;
}
.nav__links a:hover { color: var(--seafoam); }
.nav__links a[aria-current="page"] { color: var(--seafoam); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1.5px; background: var(--seafoam); border-radius: 1px;
}

.nav__drop { position: relative; }
.nav__drop > button {
  background: none; border: 0; font: inherit; color: var(--ink);
  padding: 10px 14px; font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; border-radius: var(--radius-sm);
}
.nav__drop > button:hover { color: var(--seafoam); }
.nav__drop > button svg { transition: transform 180ms ease; }
.nav__drop[aria-expanded="true"] > button svg { transform: rotate(180deg); }
.nav__drop-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-4px);
  background: var(--paper); border: 1px solid var(--hairline-soft); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px; min-width: 320px;
  opacity: 0; visibility: hidden; transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}
.nav__drop[aria-expanded="true"] .nav__drop-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__drop-menu a {
  display: block; padding: 12px 14px; text-decoration: none; color: var(--ink); border-radius: var(--radius-sm);
}
.nav__drop-menu a:hover { background: var(--sand); color: var(--ink); }
.nav__drop-menu a[aria-current="page"] { background: var(--sand); }
.nav__drop-menu a[aria-current="page"]::after { display: none; }
.nav__drop-menu a strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 16px; margin-bottom: 2px; }
.nav__drop-menu a span { display: block; font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}
.btn--pill { background: var(--sunset); color: var(--ink); box-shadow: 0 6px 18px rgba(212, 165, 116, 0.4), 0 1px 2px rgba(10,37,64,0.08); }
.btn--pill:hover { background: var(--sunset-deep); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(212, 165, 116, 0.5); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(10,37,64,0.04); }
.btn--ghost-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost-on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn--sm { padding: 9px 16px; font-size: 14px; }

.nav__hamburger {
  display: none; background: none; border: 1px solid var(--hairline); padding: 9px; border-radius: var(--radius-sm); cursor: pointer; color: var(--ink);
}

/* Main */
main { display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(56px, 8vw, 112px) 0; }
section.tight { padding: clamp(40px, 5vw, 72px) 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms cubic-bezier(.2,.6,.2,1), transform 700ms cubic-bezier(.2,.6,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* Arrow link */
.arr {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
}
.arr:hover { color: var(--seafoam); }
.arr .arr__line { width: 14px; height: 1px; background: currentColor; transition: width 220ms ease; display: inline-block; position: relative; }
.arr .arr__line::after { content: ""; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); }
.arr:hover .arr__line { width: 24px; }

/* Hero — home */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--sand);
}
.hero__scene { position: absolute; inset: 0; z-index: 0; }
.hero__scene svg { width: 100%; height: 100%; display: block; }
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(60px, 8vw, 100px);
  width: 100%;
}
.hero__copy { max-width: 820px; color: #f6efe3; }
.hero__copy .eyebrow { color: #f5c58a; }
.hero__copy h1 { color: #fdf7ec; font-weight: 300; text-shadow: 0 2px 30px rgba(10, 20, 40, 0.25); }
.hero__copy h1 em { color: #f0c28f; font-style: italic; font-weight: 300; }
.hero__lede { color: rgba(253, 247, 236, 0.85); font-size: var(--fs-lead); max-width: 56ch; margin-top: 20px; }
.hero__ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__copy .btn--ghost { color: #fdf7ec; border-color: rgba(253, 247, 236, 0.35); }
.hero__copy .btn--ghost:hover { border-color: #fdf7ec; background: rgba(255,255,255,0.06); }

/* Stats */
.stats {
  background: var(--paper);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.stats__item { padding: 40px clamp(16px, 2vw, 28px); border-right: 1px solid var(--hairline-soft); text-align: center; display: flex; flex-direction: column; align-items: center; }
.stats__item:last-child { border-right: 0; }
.stats__tick { width: 22px; height: 2px; background: var(--sunset); margin-bottom: 18px; }
.stats__num { font-family: var(--serif); font-size: clamp(32px, 3.6vw, 48px); font-weight: 400; line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.stats__num sup { font-size: 0.55em; color: var(--muted); font-family: var(--sans); vertical-align: super; margin-left: 3px; }
.stats__label { margin-top: 10px; font-size: 13px; color: var(--muted); letter-spacing: 0.02em; }

/* Three paths */
.paths__head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.paths__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.path-card {
  background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--hairline-soft);
  padding: 28px; display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  overflow: hidden;
}
.path-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--hairline); }
.path-card__thumb { width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 22px; background: var(--sand-warm); }
.path-card__thumb svg { width: 100%; height: 100%; }
.path-card__index { font-family: var(--serif); font-size: 14px; color: var(--seafoam); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.path-card h3 { font-size: 26px; margin-bottom: 10px; }
.path-card h3 em { color: var(--seafoam); }
.path-card p { color: var(--muted); font-size: 15px; flex: 1; }
.path-card .arr { margin-top: 12px; }

/* Mini steps */
.minihow {
  background: var(--sand-warm);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.minihow__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.minihow__head h2 { margin-bottom: 12px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step__num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--hairline); display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px; color: var(--seafoam); margin-bottom: 18px; background: var(--paper);
}
.step h3 { font-size: 20px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* Closing CTA band */
.band {
  background: var(--navy);
  color: #fdf7ec;
  position: relative; overflow: hidden;
}
.band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 20%, rgba(212, 165, 116, 0.18), transparent 60%);
  pointer-events: none;
}
.band__inner {
  position: relative;
  max-width: var(--max); margin: 0 auto; padding: clamp(64px, 8vw, 100px) var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.band h2 { color: #fdf7ec; max-width: 720px; font-weight: 300; }
.band h2 em { color: var(--sunset); }
.band__sub { color: rgba(253, 247, 236, 0.7); margin-top: 8px; }

/* Page hero (interior) */
.pagehero { background: var(--sand); padding-top: clamp(32px, 5vw, 60px); padding-bottom: clamp(32px, 4vw, 56px); }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; letter-spacing: 0.02em; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin: 0 8px; opacity: 0.5; }
.crumbs [aria-current="page"] { color: var(--ink); }

.pagehero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: end; padding-bottom: 12px; }
.pagehero h1 { font-weight: 300; }
.pagehero h1 em { color: var(--seafoam); font-weight: 300; }
.pagehero__aside { color: var(--muted); font-size: 14px; border-left: 1px solid var(--hairline); padding-left: 24px; }
.pagehero__aside dt { font-family: var(--serif); font-size: 13px; color: var(--ink); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.pagehero__aside dd { margin: 0 0 20px; color: var(--muted); }

.pagehero__ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

/* Full-width themed SVG strip */
.scene-strip {
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  background: var(--sand-warm);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.scene-strip__inner { max-width: 1400px; margin: 0 auto; }
.scene-strip svg { width: 100%; height: auto; display: block; }

/* Feature cards (why/what) */
.feat__head { max-width: 720px; margin-bottom: 40px; }
.feat__head h2 { margin-bottom: 12px; }
.feat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--hairline-soft);
  padding: 28px; display: flex; flex-direction: column; gap: 10px;
}
.feat-card__icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: color-mix(in oklab, var(--seafoam) 12%, transparent);
  color: var(--seafoam); display: grid; place-items: center; margin-bottom: 10px;
}
.feat-card h3 { font-size: 22px; }
.feat-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* Timeline */
.timeline { counter-reset: tl; display: grid; gap: 0; }
.timeline__item {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline-soft);
  align-items: start;
}
.timeline__item:last-child { border-bottom: 0; }
.timeline__idx {
  font-family: var(--serif); font-size: 34px; color: var(--seafoam); line-height: 1;
  font-weight: 400;
}
.timeline__item h3 { font-size: 22px; margin-bottom: 6px; }
.timeline__item p { color: var(--muted); margin: 0; }

/* Numbers panel */
.numpanel {
  background: var(--navy); color: #fdf7ec;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; overflow: hidden;
}
.numpanel::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,165,116,0.22), transparent 65%);
  pointer-events: none;
}
.numpanel__item { position: relative; border-left: 1px solid rgba(255,255,255,0.14); padding-left: 20px; }
.numpanel__item:first-child { border-left: 0; padding-left: 0; }
.numpanel__num { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 300; line-height: 1; margin-bottom: 8px; color: var(--sunset); }
.numpanel__label { font-size: 13px; letter-spacing: 0.06em; color: rgba(253,247,236,0.8); text-transform: uppercase; }

/* Fit list */
.fit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.fit__head h2 { margin-bottom: 12px; }
.fit__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.fit__list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start;
  padding: 14px 16px; border: 1px solid var(--hairline-soft); border-radius: var(--radius-sm); background: var(--paper);
  font-size: 15px; color: var(--ink);
}
.fit__list li::before {
  content: ""; width: 20px; height: 20px; border-radius: 4px;
  background: var(--seafoam);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="none" stroke="white" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" d="M4 10.5l3.5 3.5 8-8"/></svg>') no-repeat center/80%;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="none" stroke="white" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" d="M4 10.5l3.5 3.5 8-8"/></svg>') no-repeat center/80%;
  margin-top: 2px;
}

/* FAQ */
.faq__head { max-width: 720px; margin-bottom: 32px; }
.faq__list { border-top: 1px solid var(--hairline-soft); }
.faq__item { border-bottom: 1px solid var(--hairline-soft); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--serif); font-size: clamp(19px, 1.6vw, 22px); color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item .plus { width: 24px; height: 24px; border: 1px solid var(--hairline); border-radius: 50%; position: relative; flex: none; transition: transform 220ms ease, background 220ms ease, border-color 220ms ease; }
.faq__item .plus::before, .faq__item .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1.5px; background: var(--ink); transform: translate(-50%, -50%); transition: transform 220ms ease, background 220ms ease; }
.faq__item .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .plus { background: var(--seafoam); border-color: var(--seafoam); }
.faq__item[open] .plus::before, .faq__item[open] .plus::after { background: #fff; }
.faq__item[open] .plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq__body { padding: 0 0 22px; max-width: 70ch; color: var(--muted); }

/* Pull quote */
.pullquote {
  background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--hairline-soft);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-md);
  position: relative;
}
.pullquote__tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay); background: rgba(181, 71, 45, 0.08);
  padding: 5px 10px; border-radius: var(--radius-pill); margin-bottom: 24px;
  font-weight: 600;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--serif); font-weight: 300; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.28;
  color: var(--ink); letter-spacing: -0.01em; max-width: 60ch;
}
.pullquote blockquote em { color: var(--seafoam); }
.pullquote cite { font-style: normal; display: block; margin-top: 20px; font-size: 13px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* Footer CTA strip (inner, non-band) */
.footercta {
  border-top: 1px solid var(--hairline-soft);
  background: var(--sand-warm);
}
.footercta__inner {
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: clamp(36px,4vw,56px) 0;
}
.footercta h2 { font-size: clamp(22px, 2vw, 30px); margin-bottom: 6px; font-weight: 400; }
.footercta p { color: var(--muted); margin: 0; font-size: 15px; }
.footercta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Compare links row */
.compare {
  margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 22px;
}
.compare a { color: var(--seafoam); text-decoration: none; font-size: 14px; border-bottom: 1px solid transparent; padding-bottom: 1px; }
.compare a:hover { border-bottom-color: var(--seafoam); }

/* Rebuild math table */
.mathcard {
  background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--hairline-soft);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
}
.mathcard__tag { display: inline-block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); font-weight: 600; margin-bottom: 14px; }
.mathtable { width: 100%; border-collapse: collapse; font-size: 15px; }
.mathtable caption { text-align: left; font-family: var(--serif); font-size: 22px; margin-bottom: 18px; color: var(--ink); caption-side: top; font-weight: 400; }
.mathtable th, .mathtable td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--hairline-soft); vertical-align: top; }
.mathtable th { color: var(--muted); font-weight: 500; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.mathtable td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--serif); font-weight: 400; }
.mathtable tr.total td { border-bottom: 0; padding-top: 20px; font-weight: 500; color: var(--ink); font-size: 17px; }
.mathtable tr.total td:last-child { color: var(--seafoam); font-size: 20px; }
.mathcard__note { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* Big steps (how-it-works) */
.bigsteps { display: grid; gap: 48px; }
.bigstep {
  display: grid; grid-template-columns: 120px 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--hairline-soft);
  align-items: start;
}
.bigstep:last-child { border-bottom: 0; padding-bottom: 0; }
.bigstep__num {
  width: 96px; height: 96px; border-radius: 50%;
  border: 1px solid var(--hairline); display: grid; place-items: center;
  font-family: var(--serif); font-size: 42px; color: var(--seafoam); font-weight: 300;
  background: var(--paper);
}
.bigstep h2 { font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 10px; }
.bigstep__detail {
  margin-top: 16px; padding: 14px 16px; border-left: 2px solid var(--sunset); background: rgba(212,165,116,0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px; color: var(--ink);
}

/* Walkaway strip */
.walkaway__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wa-card {
  background: var(--paper); border: 1px solid var(--hairline-soft); border-radius: var(--radius-md);
  padding: 24px;
}
.wa-card__tick { width: 24px; height: 2px; background: var(--sunset); margin-bottom: 14px; }
.wa-card h3 { font-size: 18px; margin-bottom: 6px; font-family: var(--serif); font-weight: 400; }
.wa-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* About grid */
.about__grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: start; }
.about__narrative p + p { margin-top: 1em; }
.about__narrative h2 { margin-bottom: 20px; }
.creds { display: grid; gap: 14px; position: sticky; top: 96px; }
.cred {
  background: var(--paper); border: 1px solid var(--hairline-soft); border-radius: var(--radius-md);
  padding: 22px; display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start;
}
.cred__badge { width: 40px; height: 40px; border-radius: 50%; background: rgba(58, 125, 123, 0.12); color: var(--seafoam); display: grid; place-items: center; }
.cred strong { font-family: var(--serif); font-weight: 400; font-size: 17px; display: block; margin-bottom: 4px; }
.cred span { color: var(--muted); font-size: 13px; }

/* Drew card */
.drewcard {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center;
  background: var(--paper); border: 1px solid var(--hairline-soft); border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 48px);
  box-shadow: var(--shadow-md);
}
.drew__portrait {
  width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden;
  background: var(--sand-warm);
  position: relative;
}
.drew__portrait svg { width: 100%; height: 100%; display: block; }
.drewcard h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 300; margin-bottom: 4px; }
.drewcard h2 em { color: var(--seafoam); }
.drewcard .role { font-size: 14px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.drewcard p { color: var(--ink); font-size: 16px; max-width: 58ch; }
.drewcontact { margin-top: 18px; display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; }
.drewcontact a { color: var(--seafoam); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.drewcontact a:hover { text-decoration: underline; }

/* Apart grid */
.apart__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.apart-card {
  background: var(--paper); border: 1px solid var(--hairline-soft); border-radius: var(--radius-md); padding: 24px;
}
.apart-card__tick { width: 20px; height: 2px; background: var(--sunset); margin-bottom: 14px; }
.apart-card h3 { font-size: 18px; margin-bottom: 6px; font-family: var(--serif); font-weight: 400; }
.apart-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* Form (book) */
.bookgrid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.formcard {
  background: var(--paper); border: 1px solid var(--hairline-soft); border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 13px; color: var(--ink); font-weight: 500; letter-spacing: 0.02em; }
.field label .req { color: var(--clay); margin-left: 3px; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--sand); border: 1px solid var(--hairline-soft); border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 180ms ease, background 180ms ease;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--hairline); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--seafoam); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(58,125,123,0.15); }
.field textarea { resize: vertical; min-height: 100px; }
.field__hint { font-size: 12px; color: var(--muted); }
.form__submit { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.form__privacy { font-size: 12px; color: var(--muted); margin-top: 14px; max-width: 48ch; }
.form__success {
  display: none;
  padding: 18px 20px; border-radius: var(--radius-md);
  background: color-mix(in oklab, var(--seafoam) 14%, #fff);
  border: 1px solid color-mix(in oklab, var(--seafoam) 30%, transparent);
  color: var(--ink); margin-top: 18px;
}
.form__success.is-on { display: block; }
.form__success strong { font-family: var(--serif); font-weight: 400; font-size: 18px; display: block; margin-bottom: 2px; color: var(--seafoam); }

.booknext {
  background: var(--sand-warm); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--hairline-soft);
}
.booknext h3 { font-size: 20px; margin-bottom: 14px; }
.booknext ol { margin: 0; padding-left: 20px; color: var(--ink); }
.booknext ol li { margin-bottom: 10px; }
.booknext ol li small { display: block; color: var(--muted); font-size: 13px; }
.booknext__alt { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--hairline-soft); font-size: 14px; }
.booknext__alt a { color: var(--seafoam); text-decoration: none; font-weight: 500; }

/* Footer */
.footer { background: var(--navy); color: #cbd5e1; }
.footer__inner {
  max-width: var(--max); margin: 0 auto; padding: clamp(56px, 7vw, 96px) var(--gutter) 28px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand { color: #fff; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__name em { color: var(--sunset); }
.footer__brand p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 34ch; margin-top: 14px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 14px; }
.footer ul a:hover { color: var(--sunset); }
.footer address { font-style: normal; color: rgba(255,255,255,0.72); font-size: 14px; display: grid; gap: 10px; }
.footer address a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer address a:hover { color: var(--sunset); }
.footer__fine {
  margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.55);
}
.footer__fine .eho {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 8px; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-sm);
}
.footer__fine .eho svg { color: #fff; }

/* Stub page */
.stub { padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 12vw, 160px); }
.stub h1 { font-weight: 300; max-width: 20ch; margin-bottom: 18px; }
.stub p { color: var(--muted); font-size: var(--fs-lead); max-width: 60ch; }
.stub a { color: var(--seafoam); }

/* Disclaim tag used sitewide */
.disclaim-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clay); font-weight: 600; padding: 4px 8px;
  background: rgba(181, 71, 45, 0.08); border-radius: var(--radius-pill);
}

/* Responsive */
@media (max-width: 1024px) {
  .paths__grid, .feat__grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .apart__grid, .walkaway__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .fit, .bookgrid, .minihow__grid, .pagehero__grid { grid-template-columns: 1fr; gap: 32px; }
  .drewcard { grid-template-columns: 160px 1fr; gap: 28px; }
  .creds { position: static; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: 0; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--hairline-soft); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__hamburger { display: inline-flex; }
  .paths__grid, .feat__grid, .steps, .apart__grid, .walkaway__grid, .stats__grid, .numpanel { grid-template-columns: 1fr; }
  .stats__item { border-right: 0; border-bottom: 1px solid var(--hairline-soft); }
  .stats__item:last-child { border-bottom: 0; }
  .drewcard { grid-template-columns: 1fr; text-align: left; }
  .drew__portrait { max-width: 180px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .bigstep { grid-template-columns: 1fr; gap: 16px; }
  .bigstep__num { width: 72px; height: 72px; font-size: 32px; }
  .timeline__item { grid-template-columns: 60px 1fr; gap: 18px; }
  .footercta__inner { grid-template-columns: 1fr; }
  .announce { font-size: 12px; }
  .announce .dot { margin: 0 8px; }
}

/* Mobile menu (simple) */
.mobilemenu {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: var(--sand);
  padding: 84px var(--gutter) var(--gutter);
  overflow-y: auto;
}
.mobilemenu.is-open { display: block; }
.mobilemenu ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.mobilemenu a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--hairline-soft);
  font-family: var(--serif); font-size: 22px; color: var(--ink); text-decoration: none;
}
.mobilemenu a.sub { font-family: var(--sans); font-size: 14px; color: var(--muted); padding-left: 16px; border-bottom: 1px solid var(--hairline-soft); }
.mobilemenu a[aria-current="page"] { color: var(--seafoam); }
.mobilemenu__close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: 1px solid var(--hairline); padding: 9px; border-radius: var(--radius-sm); cursor: pointer;
}
.mobilemenu .btn { margin-top: 20px; width: 100%; }
