@charset "UTF-8";

/* ============================================================
   Archer Marketing — Editorial design language
   One easing. One photo treatment. One spacing rhythm.
   Pink is a punch, not a system color.
   ============================================================ */

:root {
  /* Brand */
  --primary: #2F4B43;
  --primary-deep: #121A17;
  --primary-soft: #556B57;
  --bg-dark: #121A17;
  --bg-dark-alt: #1F2D1E;
  --bg-light: #F2E9D8;
  --surface-light: #FAF6EB;
  --cta: #9B4E32;
  --cta-hover: #A55235;
  --accent-secondary: #556B57;
  --accent-tertiary: #C3913F;
  --text-primary: #202321;
  --text-on-dark: #FAF6EB;
  --text-muted: #68777A;
  --border-light: #D8CFBE;
  --border-dark: #3A453C;

  /* Legacy aliases — keep existing components stable during the refresh */
  --navy:        var(--primary);
  --navy-deep:   var(--bg-dark);
  --ink:         var(--text-primary);
  --pink:        var(--cta);
  --pink-soft:   var(--cta-hover);
  --paper:       var(--bg-light);
  --paper-2:     var(--surface-light);
  --cool-gray:   #E8DECE;
  --charcoal:    var(--text-primary);
  --slate:       var(--text-muted);
  --slate-soft:  #C7BEAF;

  /* Lines */
  --line:           rgba(32, 35, 33, 0.12);
  --line-soft:      rgba(32, 35, 33, 0.07);
  --line-dark:      rgba(250, 246, 235, 0.16);
  --line-dark-soft: rgba(250, 246, 235, 0.10);

  /* Type */
  --f-display: 'Bitter', Georgia, 'Times New Roman', serif;
  --f-body:    'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono:    'Geist Mono', 'JetBrains Mono', 'Courier New', monospace;

  /* Scale */
  --container:        1280px;
  --container-narrow: 960px;
  --container-wide:   1440px;
  --gutter:           clamp(20px, 4vw, 56px);
  --section-y:        clamp(64px, 8vw, 112px);
  --section-y-tight:  clamp(48px, 6vw, 80px);
  --section-y-loose:  clamp(96px, 12vw, 152px);

  /* Radius — used very sparingly */
  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 999px;

  /* The one easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
}
@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
::selection { background: var(--pink); color: var(--text-on-dark); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em, i { font-style: italic; }
h1, h2, h3, p, li, .display, .lead {
  overflow-wrap: break-word;
  min-width: 0;
}

.container {
  max-width: var(--container);
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--navy-deep); color: #fff;
  padding: 10px 16px; border-radius: var(--r-sm);
  font-family: var(--f-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   Type primitives — editorial scale
   ============================================================ */
.display {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--navy-deep);
}
.display em {
  font-style: italic;
  font-weight: inherit;
  color: inherit;
}
.on-dark .display, .display.on-dark { color: #fff; }

h1.display, .h1 {
  font-size: clamp(56px, 10vw, 152px);
  line-height: 0.96;
  letter-spacing: 0;
}
h2.display, .h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
h3, .h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--navy-deep);
}
.on-dark h3, h3.on-dark { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  margin-right: 12px;
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--slate-soft); }
.eyebrow .dot { display: none; } /* legacy — kept invisible */

.lead {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--charcoal);
  max-width: 52ch;
  letter-spacing: 0;
}
.on-dark .lead { color: rgba(255,255,255,0.78); }

.body-rich p { margin-bottom: 1.3em; }
.body-rich p:last-child { margin-bottom: 0; }
.body-rich strong { font-weight: 700; color: var(--navy-deep); }
.on-dark .body-rich strong { color: #fff; }
.body-rich em { font-style: italic; }

.mono-label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--slate);
}
.on-dark .mono-label { color: var(--slate-soft); }

/* ============================================================
   Sections
   ============================================================ */
section { padding: var(--section-y) 0; position: relative; }
.section-tight { padding: var(--section-y-tight) 0; }
.section-light { background: var(--paper); }
.section-cool { background: var(--cool-gray); }
.section-dark { background: var(--navy); color: rgba(255,255,255,0.86); }
.section-darker { background: var(--navy-deep); color: rgba(255,255,255,0.86); }
.section-dark .display, .section-darker .display { color: #fff; }
.section-dark h3, .section-darker h3 { color: #fff; }

/* Thin architectural top rule on paper-bg sections */
.section-rule {
  position: relative;
}
.section-rule::before {
  content: '';
  position: absolute;
  top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: var(--line);
}

.section-head {
  margin-bottom: clamp(48px, 6vw, 88px);
  min-width: 0;
  max-width: 100%;
}
.section-head .lead { margin-top: 24px; }

/* ============================================================
   Buttons — single hover language
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0;
}
.btn .arrow {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--pink);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy-deep);
  border-color: rgba(15, 22, 38, 0.18);
}
.btn-ghost:hover {
  background: var(--navy-deep);
  color: #fff;
  border-color: var(--navy-deep);
}

.btn-on-dark.btn-primary:hover {
  background: #fff;
  color: var(--navy-deep);
}
.btn-on-dark.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn-on-dark.btn-ghost:hover {
  background: #fff;
  color: var(--navy-deep);
  border-color: #fff;
}

.btn-large {
  padding: 22px 34px;
  font-size: 16px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Editorial link — used in offerings list, plan, etc */
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--navy-deep);
  padding-bottom: 6px;
  position: relative;
}
.editorial-link::before {
  content: '';
  width: 48px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
  flex-shrink: 0;
}
.editorial-link:hover::before { width: 100px; }
.on-dark .editorial-link { color: #fff; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(18, 26, 23, 0.86);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 48px rgba(7, 11, 9, 0.18);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(18, 26, 23, 0.96);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 18px 54px rgba(7, 11, 9, 0.28);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  gap: 24px;
  min-width: 0;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1;
}
.nav-logo-full {
  display: none;
  width: clamp(88px, 7vw, 112px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.nav-logo-name {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 900;
}
.nav-logo-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(250, 246, 235, 0.82);
  font-weight: 600;
}
.nav-center {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-center a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
  letter-spacing: 0;
}
.nav-center a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-center a:hover { color: #fff; }
.nav-center a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cta {
  padding: 13px 22px;
  font-size: 13.5px;
}
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-burger:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22); }
.nav-burger span {
  width: 22px; height: 1.5px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-mobile-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-mobile-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  inset: 76px 0 auto 0;
  width: 100%;
  box-sizing: border-box;
  background:
    linear-gradient(180deg, rgba(18, 26, 23, 0.98), rgba(31, 45, 30, 0.98)),
    var(--navy-deep);
  color: #fff;
  padding: 24px var(--gutter) 28px;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 70px rgba(7, 11, 9, 0.42);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-drawer a {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 650;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.nav-drawer-cta {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 14px;
  align-self: stretch;
  justify-content: center;
}
.nav-drawer-meta {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: rgba(255,255,255,0.56);
}
.nav-mobile-open .nav-drawer { transform: translateY(0); }
body.nav-mobile-open { overflow: hidden; }

.nav-muted .nav-center,
.nav-muted .nav-cta,
.nav-muted .nav-burger { display: none; }

@media (max-width: 880px) {
  .nav-center, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer { display: flex; }
  .nav-inner { padding: 14px calc(var(--gutter) + 4px); }
  .nav-logo-mark { width: 30px; height: 30px; }
  .nav-logo-name { font-size: 17px; }
  .nav-drawer {
    top: 59px;
    bottom: 0;
    min-height: calc(100svh - 59px);
  }
}

/* ============================================================
   Reveal — opacity-only fallback (GSAP handles real motion)
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.reveal.in { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transition: none; }
}

/* When GSAP is absent (no JS), show everything */
.no-js .reveal { opacity: 1; }

/* ============================================================
   Hero — type-driven, architectural, single weight
   ============================================================ */
.hero {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(72px, 8.5vw, 112px) 0 clamp(56px, 7vw, 84px);
  position: relative;
  overflow: hidden;
}
.hero .eyebrow {
  color: var(--slate-soft);
  margin-bottom: 26px;
}
.hero .eyebrow::before {
  background: currentColor;
  opacity: 0.4;
  width: 32px;
}
.hero h1 {
  font-family: var(--f-display);
  font-style: normal;
  color: #fff;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: none;
  margin-bottom: 28px;
}
/* Option A — no italic, no color emphasis inside headline */
.hero h1 em,
.hero h1 .accent {
  font-style: normal;
  color: inherit;
}
.hero-head-mobile {
  display: none;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
  color: rgba(255,255,255,0.74);
  max-width: min(52ch, 100%);
  margin-bottom: 40px;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-trio {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: clamp(16px, 1.7vw, 24px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
  letter-spacing: 0;
  line-height: 1;
}
.hero-trio span { white-space: nowrap; }
.hero-trio .sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.72;
  flex-shrink: 0;
}
.hero-footer {
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.70);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-footer span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.045);
}

@media (max-width: 640px) {
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.10em;
    margin-bottom: 22px;
  }
  .eyebrow::before {
    width: 16px;
    margin-right: 10px;
  }
  .section-head .display,
  .section-head h2 {
    max-width: 100%;
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.06;
  }
  .hero {
    padding-top: 58px;
    padding-bottom: 52px;
  }
  .hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }
  .hero .eyebrow,
  .hero h1,
  .hero-sub,
  .hero-ctas {
    grid-column: 1 / -1;
  }
  .hero .eyebrow {
    margin-bottom: 22px;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.8vw, 40px);
    line-height: 1.03;
    margin-bottom: 22px;
    overflow-wrap: break-word;
  }
  .hero-head-desktop {
    display: none;
  }
  .hero-head-mobile {
    display: block;
  }
  .hero-sub {
    margin-bottom: 30px;
    max-width: 31ch;
  }
  .hero-ctas {
    flex-direction: column;
    margin-bottom: 32px;
    max-width: 100%;
    min-width: 0;
  }
  .hero-ctas .btn {
    width: auto;
    align-self: stretch;
    max-width: calc(100% - var(--gutter));
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
  .hero-trio {
    display: grid;
    grid-column: 1;
    width: auto;
    min-width: 0;
    gap: 8px;
    margin: 0;
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.12;
  }
  .hero-trio span {
    white-space: normal;
    overflow-wrap: break-word;
  }
  .hero-trio .sep { display: none; }
  .hero-footer {
    display: flex;
    flex-wrap: wrap;
    grid-column: 1;
    width: auto;
    min-width: 0;
    gap: 8px;
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 0.035em;
  }
  .hero-footer span {
    min-height: 34px;
    width: auto;
    max-width: 100%;
    justify-content: center;
    padding: 7px 9px;
    text-align: center;
    min-width: 0;
    overflow-wrap: break-word;
  }
}

/* ============================================================
   Hero variant — package landing pages
   ============================================================ */
.hero-package {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(72px, 8.5vw, 112px) 0 clamp(64px, 8vw, 96px);
  position: relative;
}
.hero-package .eyebrow {
  color: var(--slate-soft);
  margin-bottom: 32px;
}
.hero-package .eyebrow::before {
  background: currentColor;
  opacity: 0.4;
  width: 32px;
}
.hero-package h1 {
  font-family: var(--f-display);
  font-style: normal;
  color: #fff;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: none;
  margin-bottom: 28px;
}
/* Option A — no italic, no color emphasis inside headline */
.hero-package h1 em {
  font-style: normal;
  color: inherit;
}
.hero-package .hero-sub { margin-bottom: 36px; }
.hero-package .hero-ctas { margin-bottom: 36px; }
.hero-package .hero-trust {
  margin-top: 48px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--slate-soft);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-package .hero-trust span { position: relative; }
.hero-package .hero-trust span + span::before {
  content: '';
  display: inline-block;
  width: 1px; height: 9px;
  background: currentColor;
  opacity: 0.4;
  margin-right: 28px;
  vertical-align: middle;
}

/* ============================================================
   Ticker — calm monochrome row
   ============================================================ */
.ticker {
  background: var(--navy-deep);
  padding: 28px 0;
  overflow: hidden;
  max-width: 100vw;
  position: relative;
  border-top: 1px solid var(--line-dark-soft);
  border-bottom: 1px solid var(--line-dark-soft);
  contain: paint;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-deep), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy-deep), transparent);
}
.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: ticker-scroll 140s linear infinite;
  align-items: center;
}
@keyframes ticker-scroll {
  to { transform: translateX(calc(-50% - 28px)); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: rgba(255,255,255,0.62);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0;
  transition: color 0.3s var(--ease);
}
.ticker-pill:hover { color: rgba(255,255,255,0.95); }
.ticker-pill .icon {
  width: 14px; height: 14px;
  color: var(--slate);
  flex-shrink: 0;
}
.ticker-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate-soft);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

@media (max-width: 640px) {
  .ticker {
    padding: 18px 0;
  }
  .ticker::before,
  .ticker::after {
    width: 52px;
  }
  .ticker-track {
    gap: 34px;
    animation-duration: 100s;
  }
  .ticker-pill {
    font-size: 14px;
    gap: 9px;
  }
  .ticker-label {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}

/* ============================================================
   Stakes strip + services map
   ============================================================ */
.stakes-strip {
  background:
    linear-gradient(90deg, rgba(155, 78, 50, 0.10) 0 1px, transparent 1px) left center / clamp(76px, 8vw, 118px) 100% no-repeat,
    var(--paper);
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stakes-strip-inner {
  display: block;
  min-height: clamp(150px, 16vw, 216px);
  padding-top: clamp(36px, 4.8vw, 68px);
  padding-bottom: clamp(36px, 4.8vw, 68px);
  position: relative;
}
.stakes-strip-inner::before {
  content: '';
  position: absolute;
  top: clamp(36px, 4.8vw, 68px);
  bottom: clamp(36px, 4.8vw, 68px);
  left: var(--gutter);
  width: 4px;
  background: var(--cta);
}
.stakes-strip-inner::after {
  display: none;
}
.stakes-strip h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--navy-deep);
  max-width: 25ch;
  margin-left: clamp(44px, 6vw, 92px);
}
.stakes-strip h2 span {
  color: var(--cta);
}
.value {
  background: var(--paper-2);
  color: var(--charcoal);
}
.value-services {
  padding-top: clamp(68px, 8vw, 116px);
}
.value h2 { color: var(--navy-deep); max-width: 22ch; }
.value-top {
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate-soft);
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
}
.value-top::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  margin-right: 16px;
}
.value .value-promise {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--navy-deep);
  max-width: 19ch;
  margin: 0 auto clamp(58px, 7vw, 92px);
  text-align: center;
  text-wrap: balance;
}
.value-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(64px, 8vw, 120px);
}
.value-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line-dark-soft);
  align-items: start;
}
@media (min-width: 800px) {
  .value-item { grid-template-columns: 0.45fr 1fr; gap: clamp(48px, 6vw, 96px); }
}
.value-numeral {
  font-family: var(--f-display);
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: 0;
  color: #fff;
  font-style: italic;
}
.value-content h3 {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: 0;
  max-width: 18ch;
}
.value-content p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 56ch;
  letter-spacing: 0;
}
.services-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 840px) {
  .services-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.service-group {
  padding: clamp(34px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.service-group:last-child { border-bottom: 0; }
@media (min-width: 840px) {
  .service-group {
    padding: clamp(38px, 4vw, 58px) clamp(28px, 4vw, 52px);
    border-bottom: 0;
    border-right: 1px solid var(--line-soft);
  }
  .service-group:first-child { padding-left: 0; }
  .service-group:last-child { border-right: 0; padding-right: 0; }
}
.service-group h3 {
  color: var(--navy-deep);
  font-family: var(--f-display);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 28px;
}
.service-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-group li {
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.35;
}
.services-note {
  margin: clamp(34px, 4.5vw, 58px) auto 0;
  color: var(--navy-deep);
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 28ch;
  text-align: center;
}

@media (max-width: 640px) {
  .stakes-strip {
    background:
      linear-gradient(90deg, rgba(155, 78, 50, 0.12) 0 4px, transparent 4px) left center / 100% 100% no-repeat,
      var(--paper);
  }
  .stakes-strip-inner {
    min-height: 0;
    padding-top: 32px;
    padding-bottom: 34px;
  }
  .stakes-strip-inner::before {
    top: 32px;
    bottom: 34px;
    left: var(--gutter);
    width: 3px;
  }
  .stakes-strip h2 {
    max-width: 18ch;
    font-size: clamp(26px, 6.8vw, 31px);
    line-height: 1.08;
    margin-left: 18px;
  }
  .value-services {
    padding-top: 52px;
  }
  .value .value-promise {
    max-width: 12ch;
    font-size: clamp(30px, 7.7vw, 36px);
    line-height: 1.03;
    margin-bottom: 44px;
    text-wrap: wrap;
  }
  .service-group {
    padding: 30px 0;
  }
  .service-group h3 {
    margin-bottom: 20px;
  }
  .service-group ul {
    gap: 11px;
  }
  .services-note {
    max-width: 18ch;
    margin-top: 28px;
    font-size: clamp(22px, 6.2vw, 26px);
    line-height: 1.18;
  }
}

/* ============================================================
   Empathy + Authority — asymmetric photo grid
   ============================================================ */
.empathy {
  background: var(--paper);
}
.empathy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
@media (min-width: 900px) {
  .empathy-grid {
    grid-template-columns: 5fr 7fr;
    gap: clamp(56px, 8vw, 120px);
  }
}

/* Photo frame — clean editorial portrait on brand navy */
.steven-frame {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.steven-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.steven-meta {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--slate);
}
.steven-meta .name { color: var(--navy-deep); font-weight: 500; }
.on-dark .steven-meta { color: var(--slate-soft); }
.on-dark .steven-meta .name { color: #fff; }

.empathy h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  max-width: 18ch;
}
.empathy-sub {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--pink);
  font-style: italic;
  margin-bottom: 44px;
  margin-top: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}
.empathy .body-rich {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 52ch;
}
.empathy-cta { margin-bottom: 56px; }

.authority-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
@media (min-width: 700px) {
  .authority-strip { grid-template-columns: repeat(3, 1fr); }
}
.authority-item {
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  line-height: 1.5;
}
.on-dark .authority-item { color: rgba(255,255,255,0.82); }
.on-dark .authority-strip { border-top-color: var(--line-dark-soft); }

@media (max-width: 640px) {
  .empathy {
    padding-bottom: 46px;
  }
  .empathy-grid {
    gap: 40px;
  }
  .empathy h2 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.04;
  }
  .empathy-sub {
    margin-top: 16px;
    margin-bottom: 28px;
  }
  .empathy .body-rich {
    margin-bottom: 34px;
  }
  .empathy-cta {
    margin-bottom: 34px;
  }
  .empathy-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .authority-strip {
    gap: 16px;
    padding: 24px 0 0;
  }
  .authority-item {
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.10em;
  }
}

/* ============================================================
   Offerings — single-column editorial rows
   ============================================================ */
.offerings { background: var(--paper); padding-bottom: 0; }
.offerings-list {
  display: flex;
  flex-direction: column;
}
.offer-row {
  padding: clamp(56px, 6.5vw, 88px) 0;
  border-top: 1px solid var(--line);
}
.offer-row:last-child { border-bottom: 1px solid var(--line); }
.offer-content {
  max-width: 880px;
}
.offer-content h3 {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--navy-deep);
  margin-bottom: 24px;
  max-width: 16ch;
}
.offer-content p {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 32px;
  max-width: 58ch;
  letter-spacing: 0;
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 28px);
}
@media (min-width: 860px) {
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.fit-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.46), rgba(250,246,235,0.76));
  border: 1px solid var(--line-soft);
  padding: clamp(36px, 4.2vw, 52px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 28px 70px rgba(18, 26, 23, 0.045);
}
.fit-card h3 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--navy-deep);
  margin-bottom: 18px;
  max-width: 16ch;
}
.fit-card p {
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--charcoal);
  margin-bottom: 22px;
  letter-spacing: 0;
}
.fit-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 25px) !important;
  line-height: 1.2 !important;
  color: var(--navy-deep) !important;
  max-width: 24ch;
}
.fit-result {
  font-weight: 700;
  color: var(--navy-deep) !important;
  margin-top: auto;
}
.fit-card .editorial-link {
  margin-top: 12px;
}
.editorial-button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  align-self: flex-start;
}

@media (max-width: 640px) {
  .offerings {
    padding-top: 54px;
  }
  .offerings .section-head {
    margin-bottom: 30px;
  }
  .offerings .section-head .display {
    max-width: 100%;
    font-size: clamp(36px, 9.5vw, 42px);
    line-height: 1.03;
  }
  .offerings .section-head .lead {
    margin-top: 14px;
    font-size: 19px;
    line-height: 1.35;
  }
  .fit-grid {
    gap: 18px;
  }
  .fit-card {
    padding: 30px 24px;
    box-shadow: 0 18px 42px rgba(18, 26, 23, 0.04);
  }
  .fit-card h3 {
    margin-bottom: 14px;
  }
  .fit-card p {
    margin-bottom: 18px;
  }
  .offer-row {
    padding: 42px 0;
  }
  .offer-content h3 {
    max-width: 100%;
    font-size: clamp(32px, 8.8vw, 39px);
    line-height: 1.04;
    margin-bottom: 18px;
  }
  .offer-content p {
    font-size: 16.5px;
    line-height: 1.6;
    margin-bottom: 26px;
  }
  .offer-content .editorial-link,
  .fit-card .editorial-link {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    background: #fff;
    color: var(--navy-deep);
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .offer-content .editorial-link::before,
  .fit-card .editorial-link::before {
    width: 28px;
  }
  .offer-content .editorial-link::after,
  .fit-card .editorial-link::after {
    content: 'Open';
    color: var(--slate);
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
  }
}

/* Legacy specific-request inset, retained for any older pages that use it */
.specific {
  background: var(--paper);
  padding: 48px 0 var(--section-y);
}
.specific-inner {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(56px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 760px) {
  .specific-inner { grid-template-columns: 1fr auto; gap: 56px; }
}
.specific h2 {
  font-family: var(--f-display);
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 20px;
  max-width: 18ch;
}
.specific p {
  color: rgba(255,255,255,0.72);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 60ch;
}

@media (max-width: 640px) {
  .specific {
    padding: 0 0 58px;
  }
  .specific .container {
    padding: 0;
  }
  .specific-inner {
    padding: 44px var(--gutter) 48px;
    gap: 30px;
  }
  .specific h2 {
    max-width: 100%;
    font-size: clamp(32px, 8.8vw, 38px);
    line-height: 1.04;
  }
  .specific p {
    font-size: 16px;
    line-height: 1.65;
  }
  .specific .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Plan — horizontal-on-vertical, editorial spread
   ============================================================ */
.plan {
  background: var(--paper);
  position: relative;
}
.plan-intro {
  padding: clamp(120px, 16vw, 220px) 0 clamp(60px, 7vw, 100px);
  text-align: center;
}
.plan-intro h2 {
  max-width: 22ch;
  margin: 0 auto;
}
.plan-intro .lead {
  margin: 28px auto 0;
}

/* The pinned stage */
.plan-stage {
  height: 400vh;
  position: relative;
  background: var(--navy-deep);
}
.plan-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
  display: flex;
  align-items: center;
}
.plan-track {
  display: flex;
  width: 300vw;
  height: 100%;
  align-items: center;
  will-change: transform;
}
.plan-panel {
  width: 100vw;
  height: 100%;
  flex: none;
  display: flex;
  align-items: center;
  padding: 0 clamp(40px, 8vw, 120px);
  position: relative;
}
/* thin vertical slate rule on left edge of each panel */
.plan-panel::before {
  content: '';
  position: absolute;
  left: clamp(40px, 8vw, 120px);
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.plan-panel-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding-left: clamp(32px, 4vw, 64px);
}
@media (min-width: 900px) {
  .plan-panel-inner { grid-template-columns: 0.55fr 0.45fr; gap: clamp(64px, 8vw, 120px); }
}
.plan-numeral {
  font-family: var(--f-display);
  font-size: clamp(180px, 28vw, 480px);
  line-height: 0.82;
  letter-spacing: 0;
  color: #fff;
  font-style: italic;
  opacity: 0.96;
}
.plan-step-eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate-soft);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
.plan-step-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  margin-right: 16px;
}
.plan-content h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 28px;
  max-width: 16ch;
}
.plan-content p {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-bottom: 36px;
  letter-spacing: 0;
}
.plan-content .btn { margin-top: 4px; }

/* The pink architectural progress rule — sole pink moment in the section */
.plan-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.06);
  z-index: 4;
}
.plan-progress-fill {
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
}

@media (prefers-reduced-motion: reduce) {
  .plan-stage { height: auto; }
  .plan-sticky { position: relative; height: auto; padding: 80px 0; }
  .plan-track { width: auto; flex-direction: column; transform: none !important; gap: 96px; padding: 80px 0; }
  .plan-panel { padding: 0 var(--gutter); height: auto; }
  .plan-panel::before { display: none; }
  .plan-progress { display: none; }
}
@media (max-width: 760px) {
  .plan {
    background: linear-gradient(180deg, var(--paper) 0, var(--paper) 58%, var(--navy-deep) 58%, var(--navy-deep) 100%);
  }
  .plan-intro {
    padding: 62px var(--gutter) 52px;
    margin: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    text-align: left;
  }
  .plan-intro h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(36px, 9.4vw, 42px);
    line-height: 1.03;
  }
  .plan-intro .lead {
    margin: 18px 0 0;
    font-size: 19px;
  }
  .plan-stage { height: auto; background: var(--navy-deep); }
  .plan-sticky { position: relative; height: auto; padding: 0; }
  .plan-track { width: auto; flex-direction: column; transform: none !important; gap: 58px; padding: 52px 0 64px; }
  .plan-panel { padding: 0 var(--gutter); height: auto; }
  .plan-panel::before { display: none; }
  .plan-numeral {
    font-size: clamp(112px, 34vw, 140px);
    line-height: 0.78;
  }
  .plan-progress { display: none; }
  .plan-panel-inner {
    padding-left: 0;
    gap: 24px;
  }
  .plan-step-eyebrow {
    margin-bottom: 18px;
  }
  .plan-content h3 {
    max-width: 100%;
    font-size: clamp(32px, 8.8vw, 38px);
    line-height: 1.04;
    margin-bottom: 18px;
  }
  .plan-content p {
    font-size: 16.5px;
    line-height: 1.58;
    margin-bottom: 26px;
  }
  .plan-content .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Explanatory paragraph
   ============================================================ */
.explain {
  background: var(--paper);
}
.explain-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (min-width: 880px) {
  .explain-inner { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}
.explain h2 {
  max-width: 14ch;
  color: var(--navy-deep);
}
.explain .body-rich p {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  margin-bottom: 1.3em;
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .explain {
    padding-top: 58px;
    padding-bottom: 60px;
  }
  .explain-inner {
    gap: 26px;
  }
  .explain h2 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.04;
  }
  .explain .body-rich p {
    font-size: 17px;
    line-height: 1.6;
  }
}

/* ============================================================
   Final CTA — architectural, not aurora
   ============================================================ */
.final-cta {
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(48px, 7vw, 112px);
  max-width: 18ch;
  margin: 0 auto 40px;
  letter-spacing: 0;
}
.final-cta p {
  color: rgba(255,255,255,0.74);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  max-width: 52ch;
  margin: 0 auto 56px;
  letter-spacing: 0;
}
.final-cta .btn-row { justify-content: center; margin-bottom: 36px; }
.final-cta-note {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--slate-soft);
}

@media (max-width: 640px) {
  #contact.final-cta {
    padding-top: 70px;
    padding-bottom: 72px;
  }
  #contact.final-cta h2 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.02;
    margin-bottom: 24px;
  }
  #contact.final-cta p {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 34px;
  }
  #contact.final-cta .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 0;
  }
  #contact.final-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* ============================================================
   Foundation — Who this is for (editorial 2-entry)
   ============================================================ */
.foundation-who {
  background: var(--paper);
}
.two-entry-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-width: 0;
}
@media (min-width: 900px) {
  .two-entry-list { grid-template-columns: 1fr 1fr; gap: clamp(56px, 7vw, 96px); }
}
.who-entry {
  padding-top: 40px;
  border-top: 1px solid var(--line);
  min-width: 0;
}
.who-entry .offer-kicker { margin-bottom: 24px; }
.who-entry h3 {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--navy-deep);
  margin-bottom: 20px;
  max-width: 18ch;
}
.who-entry p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 52ch;
}
@media (max-width: 640px) {
  .foundation-who .section-head .display {
    max-width: 12ch;
  }
  .foundation-who .section-head .lead,
  .who-entry p {
    max-width: 30ch;
  }
}

/* ============================================================
   Foundation — What you get (numbered editorial list)
   ============================================================ */
.what-you-get {
  background: var(--cool-gray);
}
.item-list {
  display: flex;
  flex-direction: column;
}
.item-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.item-row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 800px) {
  .item-row { grid-template-columns: 0.2fr 0.4fr 0.6fr; gap: clamp(40px, 5vw, 80px); }
}
.item-num {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.85;
  color: var(--slate);
  letter-spacing: 0;
  font-style: italic;
}
.item-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--navy-deep);
  max-width: 16ch;
}
.item-body {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 56ch;
}

/* ============================================================
   Foundation — 3-day timeline (hanging-numeral list on navy)
   ============================================================ */
.timeline {
  background: var(--navy);
  color: rgba(255,255,255,0.86);
}
.timeline-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(56px, 7vw, 96px);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--line-dark-soft);
  align-items: start;
}
@media (min-width: 800px) {
  .timeline-item { grid-template-columns: 0.32fr 0.32fr 0.46fr; gap: clamp(40px, 5vw, 80px); }
}
.timeline-day {
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate-soft);
  font-weight: 500;
}
.timeline-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  max-width: 14ch;
}
.timeline-body {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.74);
  max-width: 56ch;
}

/* ============================================================
   Foundation — Why this not that
   ============================================================ */
.compare {
  background: var(--paper);
}
.compare-list {
  display: flex;
  flex-direction: column;
}
.compare-row {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.compare-row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 880px) {
  .compare-row { grid-template-columns: 1fr 1.3fr; gap: clamp(56px, 7vw, 96px); }
}
.compare-side {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.9vw, 38px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--navy-deep);
  font-style: italic;
  max-width: 16ch;
}
.compare-side .vs {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate);
  font-style: normal;
  font-weight: 500;
  margin-top: 16px;
  letter-spacing: 0.22em;
}
.compare-side .vs::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  margin-right: 12px;
}
.compare-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 60ch;
}

/* ============================================================
   Bio — Who's Behind It (Foundation + MD)
   ============================================================ */
.bio {
  background: var(--cool-gray);
}
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
@media (min-width: 900px) {
  .bio-grid { grid-template-columns: 7fr 5fr; gap: clamp(56px, 8vw, 120px); }
}
.bio h2 { max-width: 18ch; }
.bio .empathy-sub { margin-bottom: 36px; }
.bio .body-rich {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 56ch;
}

/* ============================================================
   Foundation — What happens after
   ============================================================ */
.what-after {
  background: var(--paper);
}
.what-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (min-width: 880px) {
  .what-after-grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
}
.what-after h2 { max-width: 16ch; }
.what-after .body-rich {
  font-size: 17px;
  line-height: 1.75;
  max-width: 58ch;
}

/* ============================================================
   Foundation — Pricing block (the page's hero moment)
   ============================================================ */
.pricing {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.86);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(56px, 7vw, 96px);
}
@media (min-width: 980px) {
  .pricing-grid { grid-template-columns: 0.4fr 0.6fr; align-items: start; }
}
.pricing h2 {
  color: #fff;
  max-width: 12ch;
}
.pricing-box {
  padding-top: 40px;
  border-top: 1px solid var(--line-dark-soft);
}
.pricing-price {
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: 0;
  color: var(--pink);
  margin-bottom: 24px;
  font-style: italic;
}
.pricing-tagline {
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  display: inline-flex;
  align-items: center;
}
.pricing-tagline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  margin-right: 16px;
}
.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 52px;
  list-style: none;
}
@media (min-width: 600px) {
  .check-list { grid-template-columns: 1fr 1fr; gap: 14px 32px; }
}
.check-list li {
  display: flex;
  align-items: start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--pink);
  border-radius: 50%;
  position: relative;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230F1626' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

/* Light variant — for Partnership/MD path cards */
.check-list-light li { color: var(--charcoal); }
.check-list-light li::before {
  background-color: var(--navy-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ============================================================
   Reassurance — slate rules, not pink dots
   ============================================================ */
.reassure {
  background: var(--paper);
}
.reassure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
@media (min-width: 880px) {
  .reassure-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.reassure h2 { max-width: 16ch; }
.reassure .body-rich {
  font-size: 17px;
  line-height: 1.8;
  max-width: 58ch;
}
.reassure .body-rich p {
  padding-left: 40px;
  position: relative;
  margin-bottom: 1.6em;
}
.reassure .body-rich p::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 24px;
  height: 1px;
  background: var(--slate);
  opacity: 0.6;
}

/* ============================================================
   MD — Two paths
   ============================================================ */
.paths {
  background: var(--paper);
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 980px) {
  .paths-grid { grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: stretch; }
}
.path-card {
  background: var(--paper-2);
  padding: clamp(48px, 5vw, 64px);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}
.path-card.hero-card {
  background: var(--navy-deep);
  color: #fff;
  border-color: transparent;
}
.path-card.hero-card .path-eyebrow { color: var(--slate-soft); }
.path-card.hero-card h3 { color: #fff; }
.path-card.hero-card .path-tagline { color: var(--pink); }
.path-card.hero-card .body-rich { color: rgba(255,255,255,0.78); }
.path-card.hero-card .body-rich strong { color: #fff; }

.path-eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--slate);
  margin-bottom: 32px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.path-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  margin-right: 16px;
}
.path-card h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--navy-deep);
  margin-bottom: 20px;
}
.path-card.hero-card h3 {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.path-card.hero-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: var(--pink);
}
.path-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 26px);
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 36px;
  letter-spacing: 0;
  max-width: 22ch;
}
.path-card .body-rich {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.path-card.hero-card .check-list a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.path-result {
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 16.5px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.path-card.hero-card .path-result {
  color: #fff;
}
.pricing-note {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.path-card .check-list { margin-bottom: 40px; }
.path-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   MD — 4 beats (editorial list)
   ============================================================ */
.how-work { background: var(--cool-gray); }
.beats-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 800px) {
  .beats-list { grid-template-columns: 1fr 1fr; gap: 0 clamp(56px, 7vw, 96px); }
}
.beat {
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
}
.beat-num {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--slate);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}
.beat-num::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  margin-right: 16px;
}
.beat h3 {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: var(--navy-deep);
  max-width: 18ch;
}
.beat p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 50ch;
}

/* ============================================================
   Steps flow (MD start, foundation reassure)
   ============================================================ */
.steps-flow { background: var(--paper); }
.steps-grid {
  display: flex;
  flex-direction: column;
}
.step-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step-row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 800px) {
  .step-row { grid-template-columns: 0.2fr 0.4fr 0.6fr; gap: clamp(40px, 5vw, 80px); }
}
.step-num {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.85;
  color: var(--slate);
  letter-spacing: 0;
  font-style: italic;
}
.step-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--navy-deep);
  max-width: 16ch;
}
.step-body {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 56ch;
}
.step-body .btn { margin-top: 24px; }

/* ============================================================
   Modal — kept clean
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.modal.open { visibility: visible; opacity: 1; }
.modal-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 22, 38, 0.92), rgba(19, 42, 82, 0.88)),
    var(--navy-deep);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-card {
  position: relative;
  background: var(--paper-2);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  box-shadow: 0 28px 80px rgba(5, 10, 20, 0.38);
  padding: clamp(24px, 3.6vw, 42px);
  max-width: 820px;
  width: 100%;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  scrollbar-width: none;
  transform: translateY(16px);
  transition: transform 0.4s var(--ease);
}
.modal-card::-webkit-scrollbar { display: none; }
.modal.open .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.modal-close:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.modal h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--navy-deep);
  margin: 0 56px 14px 0;
  max-width: 9ch;
}
.modal h3 em {
  display: block;
  font-style: italic;
  color: var(--pink);
}
.modal-sub {
  font-size: clamp(15.5px, 1.3vw, 17px);
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: clamp(18px, 2.4vw, 24px);
  max-width: 46ch;
}
.modal form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.form-honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--navy);
}
.form-row input,
.form-row textarea {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.25;
  color: var(--navy-deep);
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  border-radius: var(--r-sm);
}
.form-row input { min-height: 44px; }
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(19, 42, 82, 0.08);
}
.form-row textarea {
  height: clamp(90px, 12vh, 118px);
  min-height: 90px;
  resize: none;
}
.form-submit {
  margin-top: 2px;
  padding: 15px 28px;
  background: var(--pink);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--r-pill);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
  align-self: flex-start;
  border: 0;
  letter-spacing: 0;
}
.form-submit:hover { background: var(--navy-deep); color: #fff; }
.form-submit:disabled { opacity: 0.6; cursor: wait; }
@media (min-width: 720px) {
  .modal form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }
  .form-row:nth-of-type(5),
  .form-submit {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .modal {
    align-items: flex-start;
    padding: max(10px, env(safe-area-inset-top)) 8px max(10px, env(safe-area-inset-bottom));
  }
  .modal-card {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    flex: 0 1 calc(100vw - 32px);
    max-height: calc(100svh - 16px);
    max-height: calc(100dvh - 16px);
    padding: 14px 14px 10px;
    overflow-x: hidden;
  }
  .modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  .modal h3 {
    font-size: clamp(30px, 9.4vw, 38px);
    margin: 0 44px 8px 0;
  }
  .modal-sub {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 8px;
    max-width: 100%;
  }
  .modal form {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .form-row {
    gap: 5px;
    min-width: 0;
  }
  .form-row label {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .form-row input,
  .form-row textarea {
    width: 100%;
    min-width: 0;
    font-size: 14.5px;
    padding: 7px 9px;
  }
  .form-row input { min-height: 34px; }
  .form-row:nth-of-type(5),
  .form-submit {
    grid-column: 1 / -1;
  }
  .form-row textarea {
    height: clamp(48px, 10svh, 66px);
    min-height: 48px;
  }
  .form-submit {
    width: 100%;
    min-height: 38px;
    padding: 9px 20px;
  }
}

/* ============================================================
   Footer — simple, no watermark
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.74);
  padding: clamp(96px, 11vw, 140px) 0 56px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
  }
}
.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 28px;
  align-items: flex-start;
}
.footer-brand .nav-logo-full {
  display: block;
  width: min(190px, 58vw);
  max-height: none;
}
.footer-brand .nav-logo-mark,
.footer-brand .nav-logo-text {
  display: none;
}
.footer-brand .nav-logo-name,
.footer-brand .nav-logo-tag { color: #fff; }
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 32ch;
  color: rgba(255,255,255,0.6);
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate-soft);
  margin-bottom: 28px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.footer-col h4::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  margin-right: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  transition: color 0.3s var(--ease);
  letter-spacing: 0;
}
.footer-col a:hover { color: #fff; }
.contact-item { display: flex; flex-direction: column; gap: 4px; font-size: 14.5px; }
.contact-label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-soft);
}
.footer-bot {
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   Confirmation pages
   ============================================================ */
.confirm-hero {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 9vw, 120px);
  text-align: center;
}
.confirm-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  color: var(--pink);
}
.confirm-hero h1 {
  font-family: var(--f-display);
  font-style: normal;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 28px;
}
.confirm-hero h1 .accent {
  color: inherit;
  font-style: normal;
}
.confirm-hero .lead {
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  max-width: 50ch;
}

/* Foundation thank-you specifics */
.thank-steps { background: var(--paper); }
.thank-steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 760px) {
  .thank-steps-list { grid-template-columns: repeat(3, 1fr); gap: 0; }
}
.thank-step {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) {
  .thank-step {
    padding: 40px clamp(32px, 4vw, 48px) 40px 0;
    border-right: 1px solid var(--line);
  }
  .thank-step:last-child { border-right: 0; padding-right: 0; }
  .thank-step:not(:first-child) { padding-left: clamp(32px, 4vw, 48px); }
}
.thank-step.is-done {
  position: relative;
}
.thank-step.is-done::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--pink);
}
.thank-step-eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.thank-step.is-done .thank-step-eyebrow { color: var(--pink); }
.thank-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
}
.thank-step.is-done .thank-step-num {
  background: var(--pink);
  color: var(--navy-deep);
  border-color: var(--pink);
}
.thank-step h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--navy-deep);
  margin-bottom: 14px;
  max-width: 18ch;
}
.thank-step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--charcoal);
}

.calendly-embed-section { background: var(--cool-gray); }
.calendly-embed-section .section-head { text-align: center; margin-bottom: 56px; }
.calendly-embed-section h2 {
  color: var(--navy-deep);
  font-size: clamp(40px, 5vw, 64px);
}
.calendly-wrap {
  background: #fff;
  overflow: hidden;
  border-top: 1px solid var(--line);
  max-width: 100%;
}
.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 1000px;
}
@media (max-width: 720px) {
  .calendly-wrap {
    width: 100%;
    max-width: calc(100vw - (2 * var(--gutter)));
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .calendly-inline-widget {
    width: 100%;
    min-width: 0;
    height: 1080px;
  }
}

.alt-path {
  background: var(--paper);
  text-align: center;
}
.alt-path h2 {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 24ch;
  margin: 0 auto 20px;
}
.alt-path p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 54ch;
  margin: 0 auto;
}

.note-from {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.84);
  text-align: center;
}
.note-from .body-rich {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6;
  max-width: 54ch;
  margin: 0 auto;
  text-align: left;
}
.note-from .body-rich p { margin-bottom: 1.4em; }
.note-from h2 { color: #fff; max-width: 24ch; margin: 0 auto; }
.signature {
  margin-top: 36px;
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--pink);
  font-style: italic;
  letter-spacing: 0;
}

/* ============================================================
   /book/
   ============================================================ */
.book-hero {
  background: var(--paper);
  padding: clamp(100px, 12vw, 160px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
}
.book-hero .eyebrow {
  justify-content: center;
  display: inline-flex;
  margin-bottom: 32px;
}
.book-hero h1 {
  font-family: var(--f-display);
  font-style: normal;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--navy-deep);
  margin-bottom: 24px;
}
.book-hero h1 em {
  font-style: normal;
  color: inherit;
}
.book-hero p {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  color: var(--charcoal);
  max-width: 56ch;
  margin: 0 auto;
  letter-spacing: 0;
}
@media (max-width: 640px) {
  .book-hero {
    padding-top: 88px;
  }
  .book-hero h1 {
    font-size: clamp(42px, 12vw, 54px);
    line-height: 1;
  }
  .book-hero p {
    max-width: 29ch;
    font-size: 18px;
  }
}
.book-calendly { background: var(--paper); padding-top: 0; padding-bottom: clamp(72px, 9vw, 120px); }
.trust-strip {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding: 28px 0;
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}
.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
}
.trust-strip-inner span::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--slate-soft);
  margin-right: 14px;
  opacity: 0.6;
}

/* ============================================================
   /thanks/ + /thank-you/
   ============================================================ */
.confirm-body {
  background: var(--paper);
  padding: clamp(72px, 9vw, 120px) 0;
}
.confirm-body .container { text-align: center; max-width: 720px; }
.confirm-card {
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  text-align: left;
  margin-bottom: 56px;
}
.confirm-card h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.confirm-card-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 600px) {
  .confirm-card-row { grid-template-columns: 1fr auto; }
}
.confirm-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
}
.confirm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  counter-reset: litem;
  text-align: left;
}
.confirm-list li {
  display: grid;
  grid-template-columns: 0.16fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.confirm-list li::before {
  content: counter(litem, decimal-leading-zero);
  counter-increment: litem;
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.85;
  color: var(--slate);
  font-style: italic;
  letter-spacing: 0;
}
.confirm-list strong {
  display: block;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
  font-size: 17px;
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: 0;
}
.home-link-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Shared microcopy labels — less tiny, less spaced-out, still editorial */
.mono-label,
.editorial-link,
.hero-package .hero-trust,
.ticker-label,
.value-top,
.steven-meta,
.authority-item,
.plan-step-eyebrow,
.final-cta-note,
.timeline-day,
.compare-side .vs,
.pricing-tagline,
.path-eyebrow,
.beat-num,
.footer-col h4,
.contact-label,
.footer-bot,
.thank-step-eyebrow,
.trust-strip {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

/* ============================================================
   Utility
   ============================================================ */
.center { text-align: center; }
.muted { color: var(--slate); }
