/* ==========================================================================
   FogWorks AI shared stylesheet
   Brand: Navy #102A43 · Silver #D9D9D9 · Gold #D4AF37 · Pink #FF2D8E
   Headings: Cinzel · Body: Montserrat
   ========================================================================== */

:root {
  --navy: #102A43;
  --navy-deep: #0a1e30;
  --navy-soft: #1c3d5a;
  --cream: #FAF7F2;
  --cream-deep: #F2ECE1;
  --white: #ffffff;
  --silver: #D9D9D9;
  --gold: #D4AF37;
  --gold-light: #F1C75B;
  /* Brand gold is ~2:1 on cream and fails WCAG for text. This darker gold is
     used for gold-coloured TEXT on light bands (4.6:1). Rules, borders, and
     text on navy keep the true brand gold. */
  --gold-ink: #8A6E1A;
  --pink: #FF2D8E;
  --pink-light: #FF6AAC;
  /* Brand kit: Hot Pink is every button and call to action. Kept exact. */
  --pink-btn: #FF2D8E;
  --pink-btn-2: #FF6AAC;

  --ink: var(--navy);
  --ink-muted: rgba(16, 42, 67, 0.68);
  --ink-faint: rgba(16, 42, 67, 0.45);
  --on-dark: #D9D9D9;            /* brand kit: Silver Gray is body text on navy */
  --on-dark-faint: rgba(255, 255, 255, 0.55);

  --rule-light: rgba(16, 42, 67, 0.12);
  --rule-dark: rgba(212, 175, 55, 0.22);

  --wrap: 1140px;
  --pad-y: 74px;
  --pad-x: 32px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* height:auto is required, not cosmetic. The HTML height="" attribute acts as a
   low-priority CSS height and will otherwise beat any aspect-ratio we set. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Typography primitives
   -------------------------------------------------------------------------- */

.display,
h1, h2, h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.005em;
}

h1, h2 { text-transform: uppercase; }   /* brand kit: Cinzel, all caps preferred */
h1 { font-size: clamp(1.85rem, 4.6vw, 3.2rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.45rem, 3.2vw, 2.25rem); letter-spacing: 0.01em; }
h3 { font-family: 'Cinzel', Georgia, serif; font-size: 1.12rem; font-weight: 600; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.no-rule::before { display: none; }
.band-dark .eyebrow { color: var(--gold); }

.lede {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 44ch;
}

.rule-gold {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 22px 0 34px;
  border: 0;
}

.gold { color: var(--gold-ink); }
.band-dark .gold { color: var(--gold); }

/* Tagline lockup */
.tagline {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--ink-faint);
}
.tagline .sep { color: var(--gold); }
.on-dark .tagline,
.band-dark .tagline { color: var(--on-dark-faint); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

section { padding: var(--pad-y) var(--pad-x); }

.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap-narrow { max-width: 780px; margin: 0 auto; }

.band-cream { background: var(--cream); }
.band-white { background: var(--white); }
.band-dark {
  background:
    radial-gradient(ellipse at 25% 20%, rgba(212, 175, 55, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 85%, rgba(255, 45, 142, 0.07) 0%, transparent 50%),
    var(--navy-deep);
  color: var(--on-dark);
}
.band-dark h1,
.band-dark h2,
.band-dark h3 { color: var(--white); }
.band-dark .lede { color: var(--on-dark); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease);
}

/* Pink is reserved exclusively for primary CTAs. */
.btn-primary {
  background: linear-gradient(135deg, var(--pink-btn), var(--pink-btn-2));
  color: var(--white);
  box-shadow: 0 6px 26px rgba(255, 45, 142, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(255, 45, 142, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(16, 42, 67, 0.3);
}
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.band-dark .btn-outline,
.btn-outline-light {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.band-dark .btn-outline:hover,
.btn-outline-light:hover { background: var(--gold); color: var(--navy); }

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 26px;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--pad-x);
  background: rgba(10, 30, 48, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-dark);
  transition: background-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.is-scrolled { padding-top: 11px; padding-bottom: 11px; background: rgba(10, 30, 48, 0.98); }

.nav-logo {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo .accent { color: var(--pink); }  /* brand kit: AI is always Hot Pink */

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-dark);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-actions .btn { padding: 11px 20px; font-size: 0.66rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--rule-dark);
  border-radius: 2px;
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  padding: 96px var(--pad-x) 64px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
}
/* Capped so the navy block never runs longer than a screen. */
.hero-media { max-width: 400px; margin-left: auto; width: 100%; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.hero .lede { max-width: 46ch; font-size: 1.04rem; line-height: 1.65; }
.hero h1 { font-size: clamp(1.6rem, 3.1vw, 2.35rem); line-height: 1.12; margin-bottom: 16px; }
.hero .tagline {
  display: block;
  margin-top: 46px;   /* clears the offset gold frame, which sits 22px below the photo */
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
}

/* Proof strip: gives the hero substance instead of empty navy. */
.proof-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-dark);
}
/* min-width:0 stops grid items from refusing to shrink below their content,
   which is what pushed the whole page wider than the phone viewport. */
.proof-strip li { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hero-grid > *, .split > *, .detail-grid > * { min-width: 0; }
.proof-strip strong {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.proof-strip span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--on-dark-faint);
}

/* Portrait with offset gold frame */
.framed { position: relative; }
.framed img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 3px;
  position: relative;
  z-index: 2;
}
.framed::before {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   The Gap
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
/* The swap panel splits again into two lists of its own, so an even split
   leaves each of those columns too narrow to read. */
.split-wide-right { grid-template-columns: 0.85fr 1.15fr; gap: 52px; }
.prose p { color: var(--ink-muted); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 600; }

.quote-stack { display: flex; flex-direction: column; gap: 14px; }
.quote {
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  padding: 20px 24px;
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-muted);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.quote:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(16, 42, 67, 0.08);
}

/* --------------------------------------------------------------------------
   Statement band
   -------------------------------------------------------------------------- */

.statement { text-align: center; }
.statement .lines {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.55;
  color: var(--on-dark);
  max-width: 42ch;      /* wide enough that each line fits on one line */
  margin: 0 auto;
}
.statement .lines .punch {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 1.3em;
}
.statement .kicker {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--rule-dark);
  font-size: 1.05rem;
  color: var(--on-dark);
  max-width: 46ch;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }

.card {
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-radius: 4px;
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 14px 40px rgba(16, 42, 67, 0.09);
}
.card:hover::before { transform: scaleX(1); }

.card .mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--gold-ink);
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.96rem; line-height: 1.72; color: var(--ink-muted); }

.card .more {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.card .more::after { content: ' \2192'; }

/* Who we serve */
.card-num {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-ink);
  line-height: 1;
  margin-bottom: 14px;
}
.card-center { text-align: center; padding: 44px 30px; }

/* --------------------------------------------------------------------------
   Plain photo block. Explicit width plus aspect-ratio, same reason as .framed:
   a replaced element with both dimensions auto ignores aspect-ratio entirely.
   -------------------------------------------------------------------------- */

.photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 3px;
}
.photo.wide img { aspect-ratio: 4 / 3; }
.photo.tall img { aspect-ratio: 4 / 5; }
.photo-cap {
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}
.band-dark .photo-cap { color: var(--on-dark-faint); }

/* --------------------------------------------------------------------------
   Program arc (the five weeks) and growth path tiers
   -------------------------------------------------------------------------- */

.arc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.arc-step {
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-top: 2px solid var(--gold);
  border-radius: 4px;
  padding: 26px 22px;
  min-width: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.arc-step:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(16, 42, 67, 0.09); }
.arc-step .wk {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.arc-step h3 { margin-bottom: 10px; letter-spacing: 0.1em; }
.arc-step p { font-size: 0.89rem; line-height: 1.6; color: var(--ink-muted); }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.tier {
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-radius: 4px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  /* These are anchors, so the default link underline and colour have to go. */
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 14px 40px rgba(16, 42, 67, 0.09);
}
/* The foundation is the entry point for everything else, so it reads first. */
.tier.is-featured { border-color: rgba(212, 175, 55, 0.55); box-shadow: 0 14px 40px rgba(16, 42, 67, 0.08); }
.tier .step {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-ink);
  margin-bottom: 12px;
}
.tier h3 { margin-bottom: 12px; }
.tier p { font-size: 0.92rem; line-height: 1.65; color: var(--ink-muted); margin-bottom: 20px; }
/* margin-top:auto pins the "who" line to the bottom so it aligns across all
   four cards even when the descriptions run to different lengths. */
.tier .who {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--ink-faint);
  border-top: 1px solid var(--rule-light);
}

/* --------------------------------------------------------------------------
   Tabs. Panels are visible by default and only get hidden once site.js adds
   .js-tabs, so a no-JS visitor still reads every week.
   -------------------------------------------------------------------------- */

.tabs { margin-top: 40px; }

.tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  border-bottom: 1px solid var(--rule-light);
}
.band-dark .tablist { border-bottom-color: var(--rule-dark); }

.tab {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 13px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tab:hover { color: var(--navy); }
.tab .n {
  display: block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  margin-bottom: 3px;
  opacity: 0.7;
}
.tab[aria-selected="true"] { color: var(--navy); border-bottom-color: var(--gold); }

.tabpanel { padding-top: 30px; }
.js-tabs .tabpanel { display: none; }
.js-tabs .tabpanel.is-active {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.tabpanel h3 { font-size: 1.3rem; margin-bottom: 12px; letter-spacing: 0.06em; }
.tabpanel p { color: var(--ink-muted); font-size: 0.98rem; line-height: 1.7; }
.tabpanel > div { min-width: 0; }

.builds { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.builds li {
  display: flex;
  gap: 13px;
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.builds li::before {
  content: '\25CF';
  color: var(--pink);
  font-size: 0.55rem;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Two-panel swap: the hours AI takes, and where those hours go back to. */
.swap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 38px;
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-radius: 4px;
  overflow: hidden;
}
.swap-col { padding: 30px 32px; min-width: 0; }
.swap-col:first-child { background: var(--cream-deep); }
.swap-col:last-child { border-left: 1px solid var(--rule-light); }
.swap-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.swap-col:first-child .swap-label { color: var(--ink-faint); }
.swap-col:last-child .swap-label { color: var(--gold-ink); }
.swap ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.swap li {
  display: flex;
  gap: 12px;
  min-width: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.swap li::before { content: '\25CF'; font-size: 0.5rem; margin-top: 8px; flex-shrink: 0; }
.swap-col:first-child li::before { color: var(--ink-faint); }
.swap-col:last-child li::before { color: var(--pink); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
}
/* Inside a half-width column, four across is too tight. */
.split .stats { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 34px; padding-top: 28px; }
.stat { min-width: 0; }
.stat strong {
  display: block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-ink);
}
.stat span { display: block; margin-top: 9px; font-size: 0.82rem; line-height: 1.5; color: var(--ink-muted); }
.band-dark .stats { border-top-color: var(--rule-dark); }
.band-dark .stat strong { color: var(--gold); }
.band-dark .stat span { color: var(--on-dark-faint); }

/* Pull statement between blocks. Carries a point that used to need its own
   full-height band. */
.pull {
  max-width: 78ch;
  margin: 44px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-muted);
}
.pull strong { color: var(--navy); font-weight: 600; }

/* The client quotes, as one compact row instead of five stacked cards. */
.quote-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--rule-light);
}
.quote-row li {
  min-width: 0;
  font-size: 0.93rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-muted);
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

/* Who we serve, as a plain row. The card chrome cost height without adding
   information. */
.serve {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 42px;
}
.serve li { min-width: 0; }
.serve .n {
  display: block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-ink);
  margin-bottom: 12px;
}
.serve h3 { margin-bottom: 8px; }
.serve p { font-size: 0.94rem; line-height: 1.65; color: var(--ink-muted); }

/* Compact compliance strip. Replaces a full section so the point still gets
   made without costing most of a screen. */
.strip { padding: 44px var(--pad-x); }
.strip .wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.strip-head { min-width: 0; }
.strip-head .eyebrow { margin-bottom: 8px; }
.strip-head p { font-size: 0.97rem; line-height: 1.6; color: var(--on-dark); }
.strip-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  min-width: 0;
}
.strip-list li {
  display: flex;
  gap: 11px;
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--on-dark-faint);
}
.strip-list li::before {
  content: '\25CF';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 7px;
  flex-shrink: 0;
}

/* Safeguards: two columns of plain statements, no card chrome. */
.safeguards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-top: 36px;
}
.safeguards li {
  display: flex;
  gap: 13px;
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--on-dark);
}
.safeguards li::before {
  content: '\25CF';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Day-by-day listing on the program page */
.days { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 30px; }
.days li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-light);
  min-width: 0;
}
.days li:last-child { border-bottom: 0; }
.days .d {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-ink);
  text-transform: uppercase;
}
.days .t { font-size: 0.97rem; line-height: 1.6; color: var(--ink-muted); min-width: 0; }
.days .t b { color: var(--navy); font-weight: 600; }

/* --------------------------------------------------------------------------
   Founder
   -------------------------------------------------------------------------- */

/* Stacked at the full width of the column, roughly double the side-by-side
   size. Every image gets an explicit width, because aspect-ratio is ignored on
   a replaced element when both dimensions are auto. The stage shot is landscape
   and the campus shot is a standing figure, so they take different ratios
   rather than one shared crop that would cut her off at the knees. */
.founder-media { display: flex; flex-direction: column; gap: 22px; }
.founder-media figure { min-width: 0; }

.founder-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 3px;
}

.founder-media .stage img { aspect-ratio: 4 / 3; object-position: center 30%; }
.founder-media .portrait img { aspect-ratio: 4 / 5; object-position: center 28%; }

.founder-caption {
  margin-top: 10px;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.creds {
  list-style: none;
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--rule-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.creds li {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.creds li::before {
  content: '\25CF';
  color: var(--pink);
  font-size: 0.55rem;
  margin-top: 7px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Services page detail blocks
   -------------------------------------------------------------------------- */

.service-block { padding: 72px var(--pad-x); border-bottom: 1px solid var(--rule-light); }
.service-block:last-of-type { border-bottom: 0; }

.service-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 8px; }
.service-head .idx {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-ink);
  letter-spacing: 0.1em;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 36px;
}

.detail-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 14px;
}

.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex;
  gap: 13px;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.checklist li::before {
  content: '\25CF';
  color: var(--pink);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.outcome {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  padding: 24px 26px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   Waitlist form
   -------------------------------------------------------------------------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-radius: 5px;
  padding: 48px 46px;
  box-shadow: 0 18px 50px rgba(16, 42, 67, 0.07);
}

.form-group { margin-bottom: 30px; }
.form-group > label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 4px;
}
.sublabel {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card textarea {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--rule-light);
  border-radius: 2px;
  padding: 14px 16px;
  margin-top: 8px;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.form-card textarea { min-height: 130px; resize: vertical; }
.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-card ::placeholder { color: rgba(16, 42, 67, 0.68); }

.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.options-grid.single-col { grid-template-columns: 1fr; }

.option-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--rule-light);
  border-radius: 2px;
  padding: 13px 15px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-muted);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.option-item:hover { border-color: rgba(212, 175, 55, 0.5); }
.option-item input { accent-color: var(--pink); margin-top: 3px; flex-shrink: 0; }
.option-item:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--navy);
}

.form-divider { height: 1px; background: var(--rule-light); margin: 38px 0; }

.form-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
}

.success {
  display: none;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-top: 3px solid var(--gold);
  border-radius: 5px;
  padding: 76px 46px;
  box-shadow: 0 18px 50px rgba(16, 42, 67, 0.07);
}
.success.show { display: block; }
.success .mark {
  font-size: 2rem;
  color: var(--gold-ink);
  margin-bottom: 20px;
}
.success p { color: var(--ink-muted); max-width: 46ch; margin: 18px auto 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--navy-deep);
  color: var(--on-dark-faint);
  padding: 62px var(--pad-x) 40px;
  border-top: 1px solid var(--rule-dark);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer .nav-logo { display: block; margin-bottom: 10px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; list-style: none; }
.footer-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--on-dark);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-mail {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.footer-mail:hover { text-decoration: underline; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.74rem;
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  :root { --pad-y: 68px; --pad-x: 26px; }
  .hero-grid { gap: 48px; }
  .split, .detail-grid { gap: 44px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 30, 48, 0.99);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule-dark);
    padding: 8px 26px 22px;
    margin-left: 0;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.78rem;
  }
  .nav-links a::after { display: none; }
  .nav-actions .btn-outline-light { display: none; }
  .nav-actions { margin-left: auto; }

  .hero { padding: 112px var(--pad-x) 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; max-width: 320px; margin-inline: auto; }
  .proof-strip { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
  .framed::before { inset: 16px -16px -16px 16px; }

  .split { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }

  .arc, .tiers { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
  .swap { grid-template-columns: 1fr; }
  .swap-col:last-child { border-left: 0; border-top: 1px solid var(--rule-light); }
  .js-tabs .tabpanel.is-active { grid-template-columns: 1fr; gap: 24px; }
  .quote-row { grid-template-columns: 1fr 1fr; }
  .serve { grid-template-columns: 1fr; gap: 26px; }
  .strip .wrap { grid-template-columns: 1fr; gap: 26px; }
  .founder-media { gap: 18px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 26px; }
  .safeguards { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 560px) {
  :root { --pad-y: 64px; --pad-x: 20px; }
  body { font-size: 1rem; }
  .lede { font-size: 1.03rem; }
  .nav-logo { font-size: 0.85rem; letter-spacing: 0.14em; }
  .nav-actions .btn { padding: 10px 15px; font-size: 0.6rem; letter-spacing: 0.1em; }
  .btn-row .btn { width: 100%; text-align: center; }
  .card { padding: 28px 24px; }
  .proof-strip { grid-template-columns: 1fr; gap: 14px; }
  .hero-media { max-width: 260px; }
  .form-card, .success { padding: 32px 22px; }
  .options-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 26px; }
  .arc, .tiers { grid-template-columns: 1fr; }
  .strip-list { grid-template-columns: 1fr; }
  .quote-row { grid-template-columns: 1fr; }
  /* Let the tab row scroll sideways rather than wrap into a tall block. */
  .tablist { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab { padding: 12px 16px; font-size: 0.64rem; }
  .stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .days li { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
