/* ============================================================
   The Growth Project — quiet luxury, mobile-first.
   Palette: bone, cream, ink, charcoal, stone, forest, gold.
   Type: GT Sectra (display) → Playfair Display fallback, Inter (body).
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Surface */
  --bone:     #F5EFE4;
  --cream:    #F1E8D5;
  --paper:    #FAF6EE;
  --surface-cool: #FAF7EF;   /* a paper that leans cool — used to relieve back-to-back warm sections */
  --ink:      #1A1A18;
  --charcoal: #3D3D3A;
  --stone:    #B1A89F;
  --stone-2:  #C9C0B5;
  --forest:   #2C4A36;
  --gold:         #A8873A;      /* decorative ONLY — hairlines, rules, eyebrows. Do not use for text. */
  --gold-ink:     #6E5824;      /* readable gold for body/link text on light surfaces, AA on bone */
  --gold-on-dark: #D7B86E;      /* readable gold for text on ink/charcoal surfaces, AA on ink */
  --stone-text:   #6B5F54;      /* readable stone-toned text on light surfaces, AA on bone/paper/cream */
  --rule:     rgba(26,26,24,0.10);

  /* Type */
  --font-display: "GT Sectra Display", "GT Sectra", "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Sizes — measured, not theatrical */
  --eyebrow:  0.6875rem;   /* 11px uppercase */
  --t-xs:     0.8125rem;   /* 13px */
  --t-sm:     0.9375rem;   /* 15px — softened from 14px for editorial calm */
  --t-base:   1rem;        /* 16px */
  --t-lg:     1.125rem;    /* 18px */
  --t-xl:     1.375rem;    /* 22px */
  --t-2xl:    1.75rem;     /* 28px */
  --t-3xl:    clamp(2rem, 1.4rem + 2.5vw, 3rem);            /* 32 → 48 */
  --t-display: clamp(2.25rem, 1.4rem + 4vw, 4rem);          /* 36 → 64 */
  --t-hero:    clamp(2.5rem, 1.6rem + 5vw, 4.75rem);        /* 40 → 76 */

  /* Spacing — 4px base */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;     --s-7: 2.5rem;   --s-8: 3rem;
  --s-9: 4rem;     --s-10: 5rem;    --s-11: 6rem;    --s-12: 8rem;

  /* Layout */
  --max-content: 1080px;   /* tightened from 1180 — editorial measure */
  --max-text:    640px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);

  /* Motion — calmer, single-frame transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --d-fast: 240ms;
  --d:      320ms;
  --d-slow: 520ms;

  /* Radius — flat, zero. Editorial. */
  --r-0: 0;
  --r-1: 0;
  --r-2: 0;

  /* Shadow — barely there */
  --shadow-soft: 0 1px 2px rgba(26,26,24,0.04), 0 8px 24px rgba(26,26,24,0.06);
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-behavior: smooth; scroll-padding-top: 72px; }
@media (min-width: 760px) { html { scroll-padding-top: 96px; } }
body { min-height: 100dvh; font-family: var(--font-body); font-size: var(--t-base); line-height: 1.65; letter-spacing: -0.01em; color: var(--ink); background: var(--bone); }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.015em; text-wrap: balance; color: var(--ink); }
p { text-wrap: pretty; max-width: var(--max-text); }

::selection { background: rgba(44,74,54,0.18); color: var(--ink); }
:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; border-radius: var(--r-1); }

/* Skip link — visually hidden until focused via keyboard */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  background: var(--ink);
  color: var(--bone);
  padding: var(--s-3) var(--s-5);
  font-family: var(--font-body);
  font-size: var(--t-sm);
  letter-spacing: 0.04em;
  z-index: 999;
  transition: transform 180ms var(--ease);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- LAYOUT PRIMITIVES ---------- */
.wrap { width: 100%; max-width: var(--max-content); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { width: 100%; max-width: 760px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(var(--s-9), 10vw, var(--s-12)); }
.section-tight { padding-block: clamp(var(--s-7), 7vw, var(--s-10)); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.eyebrow--gold { color: var(--gold-ink); }
.eyebrow--lead { margin-bottom: var(--s-4); }   /* eyebrow that sits above a heading */

.rule { width: 32px; height: 1px; background: var(--gold); border: none; }
.rule--ink { background: var(--ink); opacity: 0.4; }
.rule--center { margin-inline: auto; }
.rule--mb { margin-bottom: var(--s-5); }

/* ---------- LONG-FORM TEXT UTILITIES ---------- */
.section--paper { background: var(--paper); }
.text-center { text-align: center; }

/* Standard h2 used inside text sections (paired with eyebrow) */
.section-h2 {
  font-size: var(--t-2xl);
  font-weight: 400;
  margin-bottom: var(--s-5);
  line-height: 1.2;
}
.section-h2--no-mb { margin-bottom: 0; }
.section-h2--mb-lg { margin-bottom: var(--s-6); }   /* 2rem variant */

/* Large h2 above the three pillars */
.section-h2-lg {
  font-size: var(--t-3xl);
  font-weight: 400;
}

/* Charcoal long-form paragraph (1.75 line-height, 1rem bottom margin) */
.prose {
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: var(--s-4);
}
.prose:last-child { margin-bottom: 0; }

/* Section-head wrapper (eyebrow + heading combo) */
.section-head { margin-bottom: var(--s-8); }
.section-head--lg { margin-bottom: 3.5rem; max-width: 60ch; }

/* Centered "who is it for" body copy */
.who-copy {
  color: var(--charcoal);
  font-size: var(--t-lg);
  line-height: 1.7;
  margin: 0 auto var(--s-4);
  max-width: 56ch;
}
.who-copy:last-child { margin-bottom: 0; }

/* The single italic display quote on the VSL page */
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-xl);
  line-height: 1.4;
  color: var(--ink);
  max-width: 30ch;
  margin-inline: auto;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 228, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--d) var(--ease), background var(--d) var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--rule); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s-4);
  gap: var(--s-5);
}
.brand {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.brand__mark {
  /* The clock SVG was removed from .brand markup across every page — keep this
     class as a no-op so any cached HTML still parses safely. */
  display: none;
}
.nav { display: none; }
.nav__list { display: flex; gap: var(--s-6); align-items: center; }
.nav__link { font-size: var(--t-sm); color: var(--charcoal); transition: color var(--d) var(--ease); }
.nav__link:hover { color: var(--ink); }
.nav__cta {
  font-size: var(--t-sm);
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: var(--r-1);
  color: var(--ink);
  transition: background var(--d) var(--ease), color var(--d) var(--ease);
}
.nav__cta:hover { background: var(--ink); color: var(--bone); }

@media (min-width: 760px) {
  .nav { display: flex; align-items: center; gap: var(--s-6); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  /* Fallback so hero text remains readable if the image fails to load,
     and so accessibility tooling can compute contrast against a real surface. */
  background-color: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
@media (min-width: 880px) {
  .hero__media img { object-position: center center; }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,24,0.10) 0%, rgba(26,26,24,0.30) 55%, rgba(26,26,24,0.70) 100%);
}
.hero__inner {
  padding-block: var(--s-10) var(--s-9);
  color: var(--bone);
}
.hero__eyebrow {
  color: var(--bone);
  opacity: 0.85;
  margin-bottom: var(--s-5);
}
.hero__title {
  font-size: var(--t-hero);
  color: var(--bone);
  max-width: 22ch;          /* widened from 16ch — a calmer line, less theatrical break */
  margin-bottom: var(--s-5);
  font-weight: 400;
}
.hero__sub {
  font-size: var(--t-lg);
  line-height: 1.55;
  color: var(--bone);
  opacity: 0.92;
  max-width: 44ch;
  margin-bottom: var(--s-7);
  font-weight: 400;         /* lifted from 300 — readable at body size, less ghosted */
}
@media (max-width: 760px) {
  .hero__sub { max-width: 36ch; }
}
.hero__ctas { display: flex; flex-direction: column; gap: var(--s-3); align-items: flex-start; }
.hero__price-floor { font-size: var(--t-xs); color: var(--bone); opacity: 0.75; letter-spacing: 0.04em; margin-top: var(--s-1); font-variant-numeric: tabular-nums lining-nums; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r-1);
  transition: all var(--d) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
/* All button variants collapse to two visual treatments: a single primary
   ink-on-paper rectangle, and a quiet text-link with a hairline. Existing class
   names (.btn--ghost, .btn--ink, .btn--forest, .btn--outline-ink) are preserved
   so cached HTML keeps compiling, but they all render as .btn--primary. */
.btn--primary,
.btn--ink,
.btn--forest,
.btn--outline-ink { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--primary:hover,
.btn--ink:hover,
.btn--forest:hover,
.btn--outline-ink:hover { background: var(--forest); border-color: var(--forest); color: var(--bone); }

/* Quiet ghost — used on dark grounds (hero), now a hairline text-link feel. */
.btn--ghost { background: transparent; color: var(--bone); border-color: rgba(245,239,228,0.55); }
.btn--ghost:hover { border-color: var(--bone); background: transparent; }

/* New, preferred treatment for secondary actions: text + hairline underline. */
.btn--text {
  background: transparent;
  color: var(--ink);
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  letter-spacing: 0.02em;
}
.btn--text:hover { color: var(--forest); border-bottom-color: var(--forest); }

.btn__arrow { transition: opacity var(--d) var(--ease); }
/* Removed the translateX hover — the arrow stays still; the link simply darkens. */

/* ---------- FOUNDER LINE (single sentence section) ---------- */
.thesis {
  text-align: center;
  padding-block: clamp(var(--s-9), 8vw, var(--s-11));
}
.thesis__line {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 28ch;
  margin-inline: auto;
  text-wrap: balance;
}

/* ---------- HARD FACT BAND ---------- */
.fact {
  background: var(--forest);
  color: var(--bone);
  padding-block: clamp(var(--s-9), 9vw, var(--s-11));
  text-align: center;
}
.fact__line {
  font-family: var(--font-display);
  font-size: var(--t-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--bone);
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance;
}
.fact__rule {
  width: 32px; height: 1px; background: var(--gold);
  border: 0; margin: 0 auto var(--s-6);
}
.fact__line--secondary {
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  color: rgba(245, 239, 228, 0.86);
  font-style: italic;
  margin-top: var(--s-4);
  max-width: 28ch;
}
.fact__caption {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin-top: var(--s-6);
}
.fact__note {
  font-size: var(--t-xs);
  line-height: 1.6;
  color: rgba(245, 239, 228, 0.7);
  max-width: 52ch;
  margin: var(--s-4) auto 0;
}

/* ---------- THREE PILLARS ---------- */
.pillars { display: grid; gap: var(--s-9); }
.pillar__media { aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: var(--s-5); }
.pillar__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease); }
.pillar:hover .pillar__media img { transform: scale(1.03); }
.pillar__num {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  color: var(--gold-ink);
  margin-bottom: var(--s-3);
  display: block;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  margin-bottom: var(--s-3);
  line-height: 1.2;
}
.pillar__body { font-size: var(--t-base); color: var(--charcoal); line-height: 1.65; }
@media (min-width: 760px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); }
}

/* ---------- WHAT MEMBERSHIP HOLDS — five components ---------- */
.holds { display: grid; gap: var(--s-7); }
.holds__item {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-5);
  max-width: 56ch;
}
.holds__num {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  color: var(--gold-ink);
  margin-bottom: var(--s-3);
  display: block;
}
.holds__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: var(--s-3);
  letter-spacing: -0.005em;
}
.holds__body {
  color: var(--charcoal);
  font-size: var(--t-base);
  line-height: 1.7;
}
@media (min-width: 760px) {
  .holds { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-9); row-gap: var(--s-8); }
  .holds__item:nth-child(5) { grid-column: 1 / -1; max-width: 64ch; }
}

/* ---------- HOW IT RUNS — two-column ---------- */
.how { display: grid; gap: var(--s-7); align-items: start; }
.how__text { max-width: 52ch; }
.how__heading { font-size: var(--t-2xl); margin-bottom: var(--s-5); }
.how__para { color: var(--charcoal); margin-bottom: var(--s-4); font-size: var(--t-base); line-height: 1.7; }
.how__media { aspect-ratio: 4 / 5; overflow: hidden; position: relative; }
.how__media picture { display: block; width: 100%; height: 100%; }
.how__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 880px) {
  .how__media { aspect-ratio: 5 / 4; }
}
@media (min-width: 880px) {
  .how { grid-template-columns: 1.2fr 1fr; gap: var(--s-9); }
}

/* ---------- MEMBERS GRID ---------- */
.members { padding-block: clamp(var(--s-9), 9vw, var(--s-11)); background: var(--paper); }
.members__head { text-align: center; margin-bottom: var(--s-9); }
.members__title { font-size: var(--t-3xl); margin-bottom: var(--s-3); }
.members__grid { display: grid; gap: var(--s-5); }
.member {
  background: var(--bone);
  padding: var(--s-6) var(--s-5);
  border-top: 1px solid var(--rule);
}
.member__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-lg);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--s-4);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.member__attr {
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.member__role { color: var(--stone-text); display: block; margin-top: var(--s-1); font-size: 0.6875rem; }
.members__note {
  text-align: center;
  margin-top: var(--s-7);
  font-size: var(--t-xs);
  color: var(--charcoal);
  font-style: italic;
}
@media (min-width: 760px) {
  .members__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
}
@media (min-width: 1280px) {
  .members__grid { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- FOUNDERS BLOCK ---------- */
.founders { display: grid; gap: var(--s-7); align-items: center; }
.founders__media { aspect-ratio: 4 / 5; overflow: hidden; max-width: 480px; }
.founders__media img { width: 100%; height: 100%; object-fit: cover; }
.founders__text { max-width: 48ch; }
.founders__name { font-size: var(--t-2xl); margin-bottom: var(--s-5); }
.founders__para { color: var(--charcoal); margin-bottom: var(--s-4); line-height: 1.7; }
@media (min-width: 880px) {
  .founders { grid-template-columns: 1fr 1.2fr; gap: var(--s-10); }
}

/* ---------- SCENE BAND (full-bleed image with overlay line) ---------- */
.scene { position: relative; overflow: hidden; isolation: isolate; max-width: 820px; margin-inline: auto; }
.scene img { width: 100%; height: auto; display: block; aspect-ratio: auto; }
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,24,0) 30%, rgba(26,26,24,0.55) 100%);
}
.scene__line {
  position: absolute;
  bottom: var(--s-5);
  left: var(--gutter);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-base);
  color: var(--bone);
  z-index: 1;
  letter-spacing: 0.01em;
}
@media (min-width: 760px) {
  .scene__line { font-size: var(--t-lg); bottom: var(--s-6); left: var(--s-6); }
}

/* ---------- CLOSING CTA BAND ---------- */
.close {
  text-align: center;
  padding-block: clamp(var(--s-10), 10vw, var(--s-12));
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.close__title { font-size: var(--t-3xl); margin-bottom: var(--s-5); max-width: 22ch; margin-inline: auto; }
.close__body { color: var(--charcoal); max-width: 56ch; margin: 0 auto var(--s-7); font-size: var(--t-base); line-height: 1.7; }
.close__floor { font-size: var(--t-xs); color: var(--charcoal); letter-spacing: 0.04em; margin-top: var(--s-4); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--stone-2);
  padding-block: var(--s-7);
  font-size: var(--t-xs);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  text-align: center;
  letter-spacing: 0.04em;
}
.footer__brand { color: var(--bone); font-family: var(--font-display); font-size: var(--t-base); letter-spacing: 0; }
.footer__line { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); justify-content: center; align-items: center; }
.footer a:hover { color: var(--gold); }
@media (min-width: 760px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ===========================================================
   CHECKOUT PAGE
   =========================================================== */
.co-hero {
  display: grid;
  gap: var(--s-7);
  padding-block: clamp(var(--s-9), 9vw, var(--s-11));
  align-items: center;
}
.co-hero__media { aspect-ratio: 4 / 3; overflow: hidden; }
.co-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.co-hero__title { font-size: var(--t-3xl); margin: var(--s-5) 0; }
.co-hero__body { color: var(--charcoal); line-height: 1.7; max-width: 52ch; }
@media (min-width: 880px) {
  .co-hero { grid-template-columns: 1fr 1fr; gap: var(--s-10); }
  .co-hero__media { aspect-ratio: 4 / 5; }
}

.co-section { padding-block: clamp(var(--s-7), 6vw, var(--s-9)); border-top: 1px solid var(--rule); }
.co-section--alt { background: var(--paper); margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
.co-section__head { font-size: var(--t-xl); margin-bottom: var(--s-5); }
.co-section__body { color: var(--charcoal); line-height: 1.75; max-width: 56ch; margin-bottom: var(--s-4); }

.co-button-block {
  padding-block: clamp(var(--s-9), 8vw, var(--s-10));
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  border-top: 1px solid var(--rule);
}
.co-button-block .co-fineprint { text-align: left; margin-inline: auto; }
.co-button {
  display: inline-flex; align-items: center; gap: var(--s-3);
  background: var(--ink); color: var(--bone);
  padding: 1.15rem 2rem;
  font-family: var(--font-body); font-size: var(--t-base); font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r-1);
  transition: background var(--d) var(--ease), transform var(--d) var(--ease);
}
.co-button:hover { background: var(--forest); transform: translateY(-1px); }
.co-fineprint { margin-top: var(--s-6); display: grid; gap: var(--s-2); font-size: var(--t-xs); color: var(--charcoal); letter-spacing: 0.02em; max-width: 56ch; }
.co-fineprint li { padding-left: var(--s-4); position: relative; line-height: 1.6; }
.co-fineprint li::before { content: "·"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.co-note {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--charcoal);
  font-size: var(--t-base);
  line-height: 1.6;
  max-width: 56ch;
}
.co-note__sig { display: block; margin-top: var(--s-3); color: var(--ink); font-style: normal; font-family: var(--font-body); font-size: var(--t-sm); letter-spacing: 0.02em; }

.co-escape { padding-block: clamp(var(--s-7), 6vw, var(--s-9)); border-top: 1px solid var(--rule); }
.co-escape__body { color: var(--charcoal); line-height: 1.7; max-width: 56ch; }
.co-escape__body a { border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: color var(--d) var(--ease); }
.co-escape__body a:hover { color: var(--forest); }

/* ===========================================================
   VSL PAGE
   =========================================================== */
.vsl-hero { padding-block: clamp(var(--s-9), 8vw, var(--s-11)); text-align: center; }
.vsl-hero__title { font-size: var(--t-3xl); margin: var(--s-4) 0 var(--s-3); max-width: 22ch; margin-inline: auto; }
.vsl-hero__sub { color: var(--charcoal); max-width: 56ch; margin: 0 auto; line-height: 1.65; }

.vsl-sections { display: grid; gap: var(--s-7); padding-block: clamp(var(--s-9), 8vw, var(--s-10)); }
.vsl-block { border-top: 1px solid var(--rule); padding-top: var(--s-5); }
.vsl-block__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  margin-bottom: var(--s-3);
  line-height: 1.2;
}
.vsl-block__body { color: var(--charcoal); line-height: 1.7; max-width: 56ch; font-size: var(--t-base); }
@media (min-width: 760px) {
  .vsl-sections { grid-template-columns: repeat(2, 1fr); gap: var(--s-8) var(--s-9); }
}

.vsl-fact {
  margin-top: var(--s-7);
  padding: var(--s-7) var(--s-5);
  background: var(--forest);
  color: var(--bone);
  text-align: center;
}
.vsl-fact__rule { width: 32px; height: 1px; background: var(--gold); border: 0; margin: 0 auto var(--s-5); }
.vsl-fact__line {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  line-height: 1.2;
  max-width: 30ch;
  margin-inline: auto;
}

.vsl-invest { padding-block: clamp(var(--s-8), 7vw, var(--s-10)); border-top: 1px solid var(--rule); }
.vsl-invest__title { font-size: var(--t-2xl); margin-bottom: var(--s-5); }
.vsl-invest__body { color: var(--charcoal); line-height: 1.75; max-width: 60ch; margin-bottom: var(--s-4); font-size: var(--t-base); }

.vsl-not { padding-block: clamp(var(--s-7), 6vw, var(--s-9)); border-top: 1px solid var(--rule); }
.vsl-not__intro { color: var(--charcoal); margin-bottom: var(--s-5); }
.vsl-not__list { display: grid; gap: var(--s-3); max-width: 60ch; }
.vsl-not__list li {
  padding-left: var(--s-5);
  position: relative;
  color: var(--charcoal);
  line-height: 1.6;
}
.vsl-not__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 14px; height: 1px;
  background: var(--gold);
}

/* ---------- REVEAL (disabled — content always visible) ---------- */
.reveal { opacity: 1; transform: none; transition: none; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- SR-ONLY ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   APRIL 2026 — Sample / Fit / Cases / Directory / New pages
   ============================================================ */

/* Generic page chrome for new sub-pages */
.page-hero { padding: clamp(7rem, 12vw, 10rem) 0 var(--s-9); border-bottom: 1px solid var(--rule); }
.page-hero__eyebrow { display: block; margin-bottom: var(--s-4); color: var(--gold-ink); font-size: var(--eyebrow); letter-spacing: 0.18em; text-transform: uppercase; }
.page-hero__title { font-size: var(--t-display); margin-bottom: var(--s-5); max-width: 18ch; }
.page-hero__sub { font-size: var(--t-lg); color: var(--charcoal); max-width: 60ch; line-height: 1.6; }

.prose { max-width: var(--max-text); margin: 0 auto; padding: var(--s-9) 0; }
.prose h2 { font-size: var(--t-2xl); margin: var(--s-8) 0 var(--s-4); }
.prose h3 { font-family: var(--font-body); font-weight: 500; font-size: var(--t-base); letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-ink); margin: var(--s-7) 0 var(--s-3); }
.prose p { margin-bottom: var(--s-4); color: var(--charcoal); line-height: 1.75; }
.prose ul { padding-left: var(--s-5); margin-bottom: var(--s-5); }
.prose ul li { color: var(--charcoal); line-height: 1.75; margin-bottom: var(--s-2); list-style: disc; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose a { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--ink); }
.prose hr { border: 0; border-top: 1px solid var(--rule); margin: var(--s-8) 0; }

.link { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.link:hover { color: var(--ink); }

/* SAMPLE WEEK / MONTH */
.sample { display: grid; grid-template-columns: 1fr; gap: var(--s-8); margin-top: var(--s-7); }
@media (min-width: 760px) { .sample { grid-template-columns: 1fr 1fr; gap: var(--s-9); } }
.sample__col { padding-top: var(--s-5); border-top: 1px solid var(--rule); }
.sample__title { font-size: var(--t-2xl); margin-bottom: var(--s-5); }
.sample__list { display: flex; flex-direction: column; gap: var(--s-3); }
.sample__list li { display: grid; grid-template-columns: 7rem 1fr; gap: var(--s-4); align-items: baseline; padding-bottom: var(--s-3); border-bottom: 1px solid var(--rule); }
.sample__day { font-family: var(--font-body); font-size: var(--t-sm); letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-ink); }
.sample__item { color: var(--charcoal); line-height: 1.6; }
.sample__note { margin-top: var(--s-7); font-style: italic; color: var(--charcoal); font-size: var(--t-sm); text-align: center; max-width: 60ch; margin-left: auto; margin-right: auto; }

/* FIT / NON-FIT */
.fit { display: grid; grid-template-columns: 1fr; gap: var(--s-7); margin-top: var(--s-7); }
@media (min-width: 760px) { .fit { grid-template-columns: 1fr 1fr; gap: var(--s-9); } }
.fit__col { padding: var(--s-7); background: var(--paper); border-top: 2px solid var(--gold); }
.fit__col--alt { background: transparent; border-top-color: var(--stone); }
.fit__title { font-size: var(--t-2xl); margin-bottom: var(--s-5); }
.fit__list { display: flex; flex-direction: column; gap: var(--s-4); }
.fit__list li { padding-left: var(--s-5); position: relative; color: var(--charcoal); line-height: 1.6; }
.fit__list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 12px; height: 1px; background: var(--gold-ink); }
.fit__col--alt .fit__list li::before { background: var(--stone); }
.fit__note { margin-top: var(--s-7); font-style: italic; color: var(--charcoal); font-size: var(--t-sm); text-align: center; max-width: 70ch; margin-left: auto; margin-right: auto; }

/* CASE NOTES */
.cases { display: grid; grid-template-columns: 1fr; gap: var(--s-6); margin-top: var(--s-7); }
@media (min-width: 760px) { .cases { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }
.case { padding: var(--s-6); background: var(--bone); border-top: 1px solid var(--rule); }
.case__role { font-family: var(--font-body); font-size: var(--t-sm); letter-spacing: 0.04em; color: var(--gold-ink); margin-bottom: var(--s-5); padding-bottom: var(--s-3); border-bottom: 1px solid var(--rule); }
.case__measures { display: flex; flex-direction: column; gap: var(--s-4); }
.case__measures div { display: flex; flex-direction: column; gap: var(--s-1); }
.case__measures dt { font-family: var(--font-body); font-size: var(--eyebrow); letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-text); }
.case__measures dd { color: var(--ink); line-height: 1.55; }
.cases__note { margin-top: var(--s-7); font-style: italic; color: var(--charcoal); font-size: var(--t-sm); text-align: center; max-width: 70ch; margin-left: auto; margin-right: auto; }

/* DIRECTORY */
.directory { display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-top: var(--s-7); }
@media (min-width: 760px) { .directory { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (min-width: 1024px) { .directory { grid-template-columns: repeat(2, 1fr); } }
.dirent { padding: var(--s-6); background: var(--paper); border-left: 2px solid var(--gold); }
.dirent__role { font-family: var(--font-display); font-size: var(--t-xl); color: var(--ink); margin-bottom: var(--s-3); line-height: 1.25; }
.dirent__build, .dirent__help, .dirent__welcome { color: var(--charcoal); line-height: 1.55; margin-bottom: var(--s-2); font-size: var(--t-sm); }
.dirent__help, .dirent__welcome { padding-top: var(--s-2); border-top: 1px solid var(--rule); }
.directory__note { margin-top: var(--s-7); font-style: italic; color: var(--charcoal); font-size: var(--t-sm); text-align: center; max-width: 70ch; margin-left: auto; margin-right: auto; }

/* APPLY FORM */
.apply-shell { max-width: 720px; margin: 0 auto; padding: var(--s-9) 0; }
.apply-intro { margin-bottom: var(--s-8); }
.apply-intro p { color: var(--charcoal); line-height: 1.75; margin-bottom: var(--s-4); }
.apply-form { display: flex; flex-direction: column; gap: var(--s-6); }
.apply-form__field { display: flex; flex-direction: column; gap: var(--s-2); }
.apply-form__label { font-family: var(--font-body); font-size: var(--t-sm); letter-spacing: 0.04em; color: var(--ink); font-weight: 500; }
.apply-form__hint { font-size: var(--t-xs); color: var(--charcoal); font-style: italic; }
.apply-form__input,
.apply-form__textarea,
.apply-form__select {
  width: 100%;
  padding: var(--s-4);
  font-family: var(--font-body);
  font-size: var(--t-base);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-1);
  transition: border-color 180ms var(--ease);
}
.apply-form__textarea { min-height: 8rem; resize: vertical; line-height: 1.6; }
.apply-form__input:focus,
.apply-form__textarea:focus,
.apply-form__select:focus { outline: none; border-color: var(--gold-ink); }
.apply-form__submit { align-self: flex-start; margin-top: var(--s-4); }
.apply-form__legal { font-size: var(--t-xs); color: var(--charcoal); margin-top: var(--s-3); line-height: 1.55; }
.apply-form__legal a { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; }

/* THANK YOU + 404 */
.simple-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: var(--s-10) var(--gutter); }
.simple-page--top { min-height: 0; align-items: flex-start; padding-top: clamp(8rem, 14vw, 12rem); padding-bottom: clamp(6rem, 10vw, 9rem); }
.simple-page__inner { max-width: 60ch; text-align: center; }
.simple-page__eyebrow { color: var(--gold-ink); font-size: var(--eyebrow); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: var(--s-5); }
.simple-page__title { font-size: var(--t-display); margin-bottom: var(--s-5); }
.simple-page__body { color: var(--charcoal); line-height: 1.85; margin-bottom: var(--s-6); max-width: 54ch; margin-left: auto; margin-right: auto; }
.simple-page__body + .simple-page__body { margin-top: calc(-1 * var(--s-3)); }
.simple-page__body--quiet { font-size: var(--t-sm); color: var(--charcoal); margin-top: var(--s-8); opacity: 0.85; }

/* /applied next-step card — luxurious breathing room, instantly scannable optionality */
.next-card { margin: clamp(3.5rem, 7vw, 5.5rem) auto 0; padding: clamp(2.75rem, 5vw, 4rem) clamp(2rem, 4vw, 3.25rem); border: 1px solid var(--rule); border-radius: 6px; background: rgba(255,255,255,0.55); text-align: left; max-width: 62ch; box-shadow: 0 1px 0 rgba(26,26,24,0.02), 0 24px 56px -32px rgba(26,26,24,0.12); }
.next-card__tag { display: inline-block; margin: 0 0 var(--s-6); padding: 0.5rem 0.95rem; border: 1px solid var(--rule); border-radius: 999px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); background: var(--bone); }
.next-card__title { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.15; margin: 0 0 var(--s-5); color: var(--ink); max-width: 22ch; }
.next-card__body { color: var(--charcoal); line-height: 1.8; margin: 0 0 var(--s-7); max-width: 52ch; }
.next-card__actions { display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; }
.next-card .btn { padding: 1.05rem 1.9rem; }
.next-card .btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--rule); }
.next-card .btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(26,26,24,0.04); }
@media (max-width: 560px) {
  .next-card { padding: var(--s-7) var(--s-6); border-radius: 4px; }
  .next-card__tag { font-size: 0.72rem; padding: 0.4rem 0.8rem; }
  .next-card__actions { flex-direction: column; align-items: stretch; gap: var(--s-3); }
  .next-card__actions .btn { text-align: center; justify-content: center; }
}

/* GIFT HERO (care-package) — the single word is the hero */
.gift-hero { padding: clamp(7rem, 14vw, 12rem) 0 clamp(3rem, 6vw, 5rem); border-bottom: 1px solid var(--rule); text-align: center; }
.gift-hero__inner { max-width: 64ch; }
.gift-hero__eyebrow { display: block; margin-bottom: var(--s-6); color: var(--gold-ink); font-size: var(--eyebrow); letter-spacing: 0.22em; text-transform: uppercase; }
.gift-hero__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(5rem, 14vw, 11rem); line-height: 0.95; letter-spacing: -0.02em; margin: 0 auto var(--s-7); color: var(--ink); font-style: italic; }
.gift-hero__sub { font-size: var(--t-lg); color: var(--charcoal); line-height: 1.6; max-width: 52ch; margin: 0 auto; }

/* GIFT CARDS — each gift presented as a wrapped present */
.gift-list { list-style: none; padding: 0; margin: clamp(3rem, 6vw, 5rem) 0 0; display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.gift-card { position: relative; padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.25rem) clamp(2rem, 4vw, 3rem); border: 1px solid var(--rule); border-radius: 6px; background: rgba(255,255,255,0.55); box-shadow: 0 1px 0 rgba(26,26,24,0.02), 0 30px 60px -40px rgba(26,26,24,0.18); transition: transform var(--d) var(--ease), box-shadow var(--d) var(--ease), border-color var(--d) var(--ease); }
.gift-card[hidden] { display: none; }
.gift-card:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(26,26,24,0.02), 0 40px 80px -40px rgba(26,26,24,0.28); border-color: rgba(26,26,24,0.18); }
.gift-card:focus-within { box-shadow: 0 1px 0 rgba(26,26,24,0.02), 0 40px 80px -40px rgba(26,26,24,0.28), 0 0 0 2px var(--gold); }
.gift-card__ribbon { position: absolute; top: 0; left: clamp(2rem, 6vw, 3.5rem); right: clamp(2rem, 6vw, 3.5rem); height: 3px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent); border-radius: 0 0 3px 3px; }
.gift-card__label { display: inline-block; margin: 0 0 var(--s-5); padding: 0.4rem 0.85rem; border: 1px solid var(--gold); border-radius: 999px; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-ink); background: rgba(110,88,36,0.04); font-weight: 500; }
.gift-card__title { font-size: clamp(2rem, 4.2vw, 2.75rem); line-height: 1.1; margin: 0 0 var(--s-5); color: var(--ink); }
.gift-card__link { color: inherit; }
.gift-card__body { color: var(--charcoal); line-height: 1.75; font-size: var(--t-lg); margin: 0 0 var(--s-5); max-width: 56ch; }
.gift-card__meta { color: var(--gold-ink); font-size: var(--t-sm); letter-spacing: 0.06em; margin: 0 0 var(--s-6); }
.gift-card__cta { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--ink); font-family: var(--font-body); font-size: var(--t-sm); font-weight: 500; letter-spacing: 0.04em; padding-bottom: 2px; border-bottom: 1px solid var(--ink); position: relative; z-index: 2; transition: gap var(--d) var(--ease); }
.gift-card__cta:hover { gap: 0.85rem; }
.gift-card:hover .gift-card__cta { gap: 0.85rem; }
.gift-list[data-recommend="money"] > .gift-card[data-part="two"],
.gift-list[data-recommend="money"] > .gift-card[data-part="three"],
.gift-list[data-recommend="systems"] > .gift-card[data-part="one"],
.gift-list[data-recommend="systems"] > .gift-card[data-part="three"],
.gift-list[data-recommend="body"] > .gift-card[data-part="one"],
.gift-list[data-recommend="body"] > .gift-card[data-part="two-body"] {
  border-color: rgba(110,88,36,0.35);
  box-shadow: 0 1px 0 rgba(26,26,24,0.02), 0 40px 80px -40px rgba(110,88,36,0.35);
}
@media (max-width: 560px) {
  .gift-card { padding: var(--s-7) var(--s-6); border-radius: 4px; }
  .gift-card__title { font-size: 1.75rem; }
  .gift-card__body { font-size: var(--t-base); }
}

/* ABOUT specific */
.about-letter { max-width: var(--max-text); margin: 0 auto; padding: var(--s-9) 0; }
.about-letter__sig { font-family: var(--font-display); font-style: italic; font-size: var(--t-xl); color: var(--ink); margin-top: var(--s-7); }
.about-letter__sig-meta { display: block; font-family: var(--font-body); font-style: normal; font-size: var(--t-sm); color: var(--charcoal); letter-spacing: 0.02em; margin-top: var(--s-2); }

/* NOTES (FAQ) */
.notes { max-width: var(--max-text); margin: 0 auto; padding: var(--s-9) 0; }
.note { padding: var(--s-7) 0; border-bottom: 1px solid var(--rule); }
.note:first-child { padding-top: 0; }
.note__q { font-size: var(--t-2xl); margin-bottom: var(--s-4); color: var(--ink); line-height: 1.2; }
.note__a { color: var(--charcoal); line-height: 1.75; }
.note__a + .note__a { margin-top: var(--s-3); }

/* Section dividers between new home sections — keep restraint */
#sample + #who { border-top: 1px solid var(--rule); }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* care-package page */
.care-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
}
.care-grid + .care-grid { margin-top: var(--s-7); }
.care-grid__item {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-5);
}
.care-grid__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  color: var(--gold-ink);
  margin-bottom: var(--s-3);
  text-transform: none;
}
.care-grid__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: var(--s-3);
  letter-spacing: -0.005em;
}
.care-grid__body {
  color: var(--charcoal);
  font-size: var(--t-base);
  line-height: 1.7;
  margin-bottom: var(--s-4);
  max-width: 56ch;
}
.care-grid__cta { font-size: var(--t-base); }
.care-grid--single { max-width: 56ch; margin-left: auto; margin-right: auto; }
@media (min-width: 760px) {
  .care-grid--pair { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-7); }
  .care-grid--pair .care-grid__body { max-width: none; }
}
.care-close { max-width: 60ch; }
.care-close__body { color: var(--charcoal); line-height: 1.75; margin-bottom: var(--s-4); }
.care-close__body--quiet { font-size: var(--t-sm); color: var(--charcoal); }

/* care-package page — Day 1 three parts */
.care-three {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
}
.care-three__item {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-5);
  padding-left: var(--s-5);
  border-top: 1px solid var(--rule);
  border-left: 2px solid transparent;
  transition: border-left-color 220ms var(--ease);
}
/* Honor the [hidden] attribute on flex items — used by the body-focus swap */
.care-three__item[hidden] { display: none; }
.care-three__item:first-child { border-top: none; padding-top: 0; }
.care-three__num {
  font-family: var(--font-body);
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.care-three__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0;
}
.care-three__link {
  color: inherit;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 180ms var(--ease);
}
.care-three__link:hover,
.care-three__link:focus-visible { border-bottom-color: var(--ink); }
.care-three__body {
  color: var(--charcoal);
  font-size: var(--t-base);
  line-height: 1.7;
  margin: 0;
  max-width: 56ch;
}
.care-three__meta {
  color: var(--stone-text);
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  margin: 0;
}

/* Q7 routing accent — money pair: items two + three */
.care-three[data-recommend="money"] > .care-three__item[data-part="two"],
.care-three[data-recommend="money"] > .care-three__item[data-part="three"] { border-left-color: var(--gold); }
/* systems pair: items one + three */
.care-three[data-recommend="systems"] > .care-three__item[data-part="one"],
.care-three[data-recommend="systems"] > .care-three__item[data-part="three"] { border-left-color: var(--gold); }
/* body pair: Diagnostic + Sunday Night Reset (one + two-body). When focus=body, JS swaps in the data-part="two-body" item in place of the standard part-two. */
.care-three[data-recommend="body"] > .care-three__item[data-part="one"],
.care-three[data-recommend="body"] > .care-three__item[data-part="two-body"] { border-left-color: var(--gold); }

/* diagnostic page */
.diagnostic-shell { max-width: 720px; margin: 0 auto; padding: var(--s-9) 0; }
.diagnostic-intro { margin-bottom: var(--s-8); }
.diagnostic-intro p { color: var(--charcoal); line-height: 1.75; max-width: 60ch; }

.diagnostic-form { display: flex; flex-direction: column; gap: var(--s-7); }

.diagnostic-counter {
  align-self: flex-end;
  font-size: var(--t-xs);
  color: var(--charcoal);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  margin-bottom: calc(-1 * var(--s-3));
}

.diagnostic-section {
  border: none;
  border-top: 1px solid var(--rule);
  padding: var(--s-7) 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.diagnostic-section:first-of-type { border-top: none; padding-top: 0; }
.diagnostic-section__legend {
  display: block;
  padding: 0;
  margin-bottom: var(--s-3);
  width: 100%;
}
.diagnostic-section__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  color: var(--gold-ink);
  margin-bottom: var(--s-3);
}
.diagnostic-section__title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--s-3);
  letter-spacing: -0.005em;
}
.diagnostic-section__lede {
  display: block;
  color: var(--charcoal);
  line-height: 1.7;
  font-size: var(--t-base);
  max-width: 56ch;
}

.diagnostic-currency,
.diagnostic-suffix,
.diagnostic-with-unit {
  display: flex;
  align-items: stretch;
  gap: var(--s-2);
}
.diagnostic-currency__prefix,
.diagnostic-suffix__label {
  display: inline-flex;
  align-items: center;
  padding: 0 var(--s-4);
  font-family: var(--font-body);
  font-size: var(--t-base);
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-1);
  min-width: 2.5rem;
  justify-content: center;
}
.diagnostic-currency__input,
.diagnostic-suffix__input { flex: 1 1 auto; min-width: 0; }
.diagnostic-with-unit__input { flex: 1 1 auto; min-width: 0; }
.diagnostic-with-unit__select { flex: 0 0 auto; width: auto; min-width: 5.5rem; }

.diagnostic-submit {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-4);
}
.diagnostic-submit__note {
  font-size: var(--t-xs);
  color: var(--charcoal);
  line-height: 1.55;
}
.diagnostic-submit__error {
  font-size: var(--t-sm);
  color: var(--ink);
  background: var(--paper);
  border-left: 2px solid var(--gold);
  padding: var(--s-3) var(--s-4);
  line-height: 1.55;
}

.diagnostic-success {
  border-top: 1px solid var(--rule);
  padding: var(--s-9) 0 var(--s-7);
  max-width: 60ch;
}
.diagnostic-success__title {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--s-5);
  letter-spacing: -0.01em;
}
.diagnostic-success__body {
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: var(--s-4);
}
.diagnostic-success__body--quiet { font-size: var(--t-sm); }

@media (max-width: 480px) {
  .diagnostic-with-unit { flex-direction: row; }
  .diagnostic-currency__prefix,
  .diagnostic-suffix__label { padding: 0 var(--s-3); min-width: 2.25rem; }
}

/* math page */
.math-shell { max-width: 720px; margin: 0 auto; padding: var(--s-9) 0; }
.math-intro { margin-bottom: var(--s-8); }
.math-intro p { color: var(--charcoal); line-height: 1.75; max-width: 60ch; }

.math-form { display: flex; flex-direction: column; gap: var(--s-7); }

.math-section {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.math-section__legend {
  display: block;
  padding: 0;
  margin-bottom: var(--s-3);
  width: 100%;
}
.math-section__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  color: var(--gold-ink);
  margin-bottom: var(--s-3);
}
.math-section__title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.math-currency,
.math-suffix {
  display: flex;
  align-items: stretch;
  gap: var(--s-2);
}
.math-currency__prefix,
.math-suffix__label {
  display: inline-flex;
  align-items: center;
  padding: 0 var(--s-4);
  font-family: var(--font-body);
  font-size: var(--t-base);
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-1);
  min-width: 2.5rem;
  justify-content: center;
}
.math-currency__input,
.math-suffix__input { flex: 1 1 auto; min-width: 0; }

.math-reveal {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-7) 0;
  margin: var(--s-2) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.math-reveal__line {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin: 0;
  max-width: none;
}
@media (min-width: 600px) {
  .math-reveal__line {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--s-5);
  }
}
.math-reveal__label {
  color: var(--charcoal);
  font-size: var(--t-sm);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.math-reveal__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-2xl);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.math-reveal__value--lg {
  font-size: var(--t-3xl);
}
.math-reveal__coverage {
  color: var(--charcoal);
  font-size: var(--t-base);
  line-height: 1.7;
  margin: 0;
  max-width: none;
}
.math-reveal__coverage-num {
  font-family: var(--font-display);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.math-reveal__hint {
  color: var(--stone-text);
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  font-style: italic;
  margin: 0;
}

.math-cohort {
  border-left: 2px solid var(--gold);
  padding: var(--s-5) 0 var(--s-5) var(--s-6);
  background: var(--paper);
  padding-right: var(--s-6);
}
.math-cohort__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  color: var(--gold-ink);
  margin-bottom: var(--s-3);
}
.math-cohort__body {
  color: var(--charcoal);
  line-height: 1.75;
  font-size: var(--t-base);
  margin: 0 0 var(--s-3);
  max-width: 60ch;
}
.math-cohort__source {
  color: var(--stone-text);
  font-size: var(--t-xs);
  font-style: italic;
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 60ch;
}

.math-snapshot {
  margin-top: var(--s-9);
  padding-top: var(--s-7);
  border-top: 1px solid var(--rule);
}
.math-snapshot__title {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--s-4);
  letter-spacing: -0.005em;
}
.math-snapshot__body {
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: var(--s-6);
  max-width: 60ch;
}
.math-snapshot__form { gap: var(--s-4); }
.math-snapshot__error {
  font-size: var(--t-sm);
  color: var(--ink);
  background: var(--paper);
  border-left: 2px solid var(--gold);
  padding: var(--s-3) var(--s-4);
  line-height: 1.55;
  margin-top: var(--s-3);
}

.math-success {
  margin-top: var(--s-9);
  padding-top: var(--s-7);
  border-top: 1px solid var(--rule);
  max-width: 60ch;
}
.math-success__title {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--s-5);
  letter-spacing: -0.01em;
}
.math-success__body {
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: var(--s-4);
}
.math-success__body--quiet { font-size: var(--t-sm); }

.math-close {
  margin-top: var(--s-9);
  padding-top: var(--s-6);
  border-top: 1px solid var(--rule);
  font-size: var(--t-sm);
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 60ch;
}

/* rewire stack page */
.rewire-shell { max-width: 760px; margin: 0 auto; padding: var(--s-9) 0; }
.rewire-intro { margin-bottom: var(--s-8); }
.rewire-intro p { color: var(--charcoal); line-height: 1.75; max-width: 60ch; }

.rewire-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--s-5);
  font-family: var(--font-body);
}
.rewire-table thead { border-bottom: 1px solid var(--rule); }
.rewire-table__th {
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: var(--s-3) 0 var(--s-4);
}
.rewire-table__th--rate { text-align: right; }

.rewire-row { border-bottom: 1px solid var(--rule); }
.rewire-row__component {
  padding: var(--s-5) var(--s-5) var(--s-5) 0;
  vertical-align: top;
  text-align: left;
  font-weight: 400;
}
.rewire-row__title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: var(--s-2);
}
.rewire-row__detail {
  display: block;
  font-family: var(--font-body);
  font-size: var(--t-sm);
  color: var(--charcoal);
  line-height: 1.6;
  max-width: 52ch;
}
.rewire-row__rate {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  text-align: right;
  vertical-align: top;
  padding: var(--s-5) 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.rewire-fn { font-size: 0.65em; margin-left: 0.15em; line-height: 0; vertical-align: super; }
.rewire-fn a {
  color: var(--gold-ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding: 0 0.1em;
}
.rewire-fn a:hover,
.rewire-fn a:focus-visible { border-bottom-color: var(--gold-ink); }

.rewire-total { border-top: 2px solid var(--ink); }
.rewire-total__label {
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--ink);
  padding: var(--s-6) var(--s-5) var(--s-5) 0;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.rewire-total__value {
  text-align: right;
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 400;
  color: var(--ink);
  padding: var(--s-6) 0 var(--s-5);
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1.05;
}

.rewire-total-note {
  font-size: var(--t-xs);
  color: var(--stone-text);
  font-style: italic;
  line-height: 1.55;
  max-width: 60ch;
  margin-bottom: var(--s-9);
}

.rewire-observation {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: 50ch;
  margin-bottom: var(--s-7);
}

.rewire-print {
  margin-top: var(--s-3);
  margin-bottom: var(--s-9);
  font-size: var(--t-sm);
  color: var(--charcoal);
}
.rewire-print a {
  color: var(--gold-ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
}
.rewire-print a:hover,
.rewire-print a:focus-visible { border-bottom-color: var(--gold-ink); }

.rewire-sources {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-7);
}
.rewire-sources__heading {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: var(--s-4);
  line-height: 1.2;
}
.rewire-sources__preamble {
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--s-6);
  max-width: 60ch;
}
.rewire-sources__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-7);
}
.rewire-sources__item {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: var(--s-2);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--rule);
}
.rewire-sources__item:last-child { border-bottom: 0; }
.rewire-sources__num {
  font-family: var(--font-display);
  font-size: var(--t-base);
  color: var(--gold-ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.7;
}
.rewire-sources__body {
  color: var(--charcoal);
  line-height: 1.7;
  font-size: var(--t-sm);
}
.rewire-sources__body em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.rewire-sources__back {
  margin-left: var(--s-2);
  color: var(--gold-ink);
  font-size: var(--t-xs);
  border-bottom: 1px solid transparent;
}
.rewire-sources__back:hover,
.rewire-sources__back:focus-visible { border-bottom-color: var(--gold-ink); }
.rewire-sources__method {
  font-size: var(--t-xs);
  color: var(--stone-text);
  font-style: italic;
  line-height: 1.6;
  max-width: 60ch;
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
}

@media (max-width: 540px) {
  .rewire-row__component { padding-right: var(--s-3); }
  .rewire-row__rate { font-size: var(--t-xl); }
  .rewire-total__label { font-size: var(--t-lg); padding-right: var(--s-3); }
  .rewire-total__value { font-size: var(--t-2xl); }
  .rewire-row__title { font-size: var(--t-base); }
}

@media print {
  @page { margin: 18mm; }
  html, body { background: #fff !important; color: #000 !important; }
  body { font-size: 11pt; line-height: 1.45; }

  .skip-link,
  .header,
  .footer,
  [data-no-print],
  .rewire-print { display: none !important; }

  main, .page-hero, .rewire-shell, .rewire-sources { padding: 0 !important; }
  .page-hero { border-bottom: 1px solid #888; padding-bottom: 6mm !important; margin-bottom: 6mm !important; }
  .page-hero__title { font-size: 22pt; line-height: 1.15; color: #000; }
  .page-hero__sub { font-size: 11pt; color: #222; }
  .page-hero__eyebrow { color: #555; }

  .rewire-intro p,
  .rewire-row__detail,
  .rewire-sources__preamble,
  .rewire-sources__body { color: #222 !important; }
  .rewire-row__title,
  .rewire-row__rate,
  .rewire-total__label,
  .rewire-total__value,
  .rewire-observation,
  .rewire-sources__heading,
  .rewire-sources__body em { color: #000 !important; }
  .rewire-fn a,
  .rewire-sources__num,
  .rewire-sources__back { color: #555 !important; }

  .rewire-row { page-break-inside: avoid; }
  .rewire-total { page-break-before: avoid; }
  .rewire-sources { page-break-before: auto; }
  .rewire-sources__item { page-break-inside: avoid; }

  a { color: inherit; text-decoration: none; }
  .rewire-table { border-collapse: collapse; }
  .rewire-row { border-bottom: 1px solid #aaa; }
  .rewire-total { border-top: 1.5pt solid #000; }

  .rewire-row__rate { font-size: 14pt; }
  .rewire-total__value { font-size: 18pt; }
  .rewire-total__label { font-size: 12pt; }
  .rewire-row__title { font-size: 11.5pt; }
  .rewire-row__detail { font-size: 9.5pt; }
  .rewire-observation { font-size: 12pt; margin-top: 6mm; }
  .rewire-total-note { font-size: 9pt; }
  .rewire-sources__heading { font-size: 13pt; padding-top: 6mm; }
  .rewire-sources__list { font-size: 9.5pt; }
  .rewire-sources__method { font-size: 8.5pt; }
}

/* day-one nav (gift pages) */
.day1-nav-shell {
  padding: var(--s-9) 0 var(--s-7);
}
.day1-nav {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-7);
}
.day1-nav__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--s-5);
  max-width: none;
}
.day1-nav__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) {
  .day1-nav__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s-6);
  }
}
.day1-nav__item {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .day1-nav__item { border-top: none; padding-top: 0; }
}
.day1-nav__num {
  font-family: var(--font-body);
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.day1-nav__link,
.day1-nav__current {
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.day1-nav__link {
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 180ms var(--ease);
  align-self: flex-start;
}
.day1-nav__link:hover,
.day1-nav__link:focus-visible { border-bottom-color: var(--ink); }
.day1-nav__current {
  color: var(--charcoal);
  align-self: flex-start;
}
.day1-nav__meta {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  color: var(--charcoal);
  line-height: 1.5;
}
.day1-nav__return {
  font-size: var(--t-sm);
  color: var(--charcoal);
  margin: 0;
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
}

@media print {
  .day1-nav-shell, .day1-nav { display: none !important; }
}

/* ============================================================================
   Sunday Night Reset (care-package gift two for body-focus)
   ============================================================================ */
.reset-shell { max-width: 760px; margin: 0 auto; padding: var(--s-9) 0; }
.reset-intro { margin-bottom: var(--s-8); }
.reset-intro p { color: var(--charcoal); line-height: 1.75; max-width: 60ch; }

.reset-list {
  list-style: none;
  margin: 0 0 var(--s-7) 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-7);
}

.reset-step {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-6);
}
.reset-step:first-child { border-top: none; padding-top: 0; }

.reset-step__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: var(--s-4);
  margin-bottom: var(--s-3);
}
.reset-step__num {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  color: var(--gold-ink);
  text-transform: uppercase;
}
.reset-step__title {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.reset-step__time {
  font-size: var(--t-xs);
  color: var(--stone-text);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.reset-step__body {
  color: var(--charcoal);
  font-size: var(--t-base);
  line-height: 1.75;
  max-width: 62ch;
  margin: 0;
}

.reset-observation {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: 52ch;
  margin: var(--s-7) 0 var(--s-5) 0;
}

.reset-print {
  margin-top: var(--s-3);
  margin-bottom: var(--s-9);
  font-size: var(--t-sm);
  color: var(--charcoal);
}
.reset-print a {
  color: var(--gold-ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
}
.reset-print a:hover,
.reset-print a:focus-visible { border-bottom-color: var(--gold-ink); }

@media print {
  .reset-print { display: none !important; }
  .reset-shell { padding: 0 !important; }
  .reset-step__title { font-size: 14pt; color: #000; }
  .reset-step__body { font-size: 10.5pt; color: #222; }
  .reset-step__num { color: #555; font-size: 9pt; }
  .reset-step__time { color: #555; font-size: 9pt; }
  .reset-step { page-break-inside: avoid; }
  .reset-observation { font-size: 12pt; color: #000; }
}

/* ============================================================================
   Care-package CTA (gated by MQL grade — A/B see apply CTA, C/D see offramp)
   ============================================================================ */
.care-close__cta {
  margin: var(--s-5) 0 var(--s-6) 0;
}
[data-care-cta] [data-care-cta-qualified],
[data-care-cta] [data-care-cta-unqualified] {
  margin-bottom: var(--s-5);
}

/* ============================================================================
   AUDIT TRACK A — Persistent CTA, intake strip, hero numbers, authority bar
   ============================================================================ */

/* Date-stamped intake strip — a quiet paper-on-charcoal note under the header.
   Softened from the prior gold/uppercase/letterspaced “masthead” look. */
.intake-strip {
  background: var(--paper);
  color: var(--charcoal);
  font-size: var(--t-xs);
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  padding: 0.6rem var(--gutter);
  border-bottom: 1px solid var(--rule);
  font-variant-numeric: tabular-nums lining-nums;
}
.intake-strip__inner { max-width: var(--max-content); margin-inline: auto; }
.intake-strip strong { color: var(--ink); font-weight: 500; letter-spacing: 0; }
.intake-strip__sep { display: inline-block; margin: 0 0.6rem; opacity: 0.4; }
.intake-strip__link { color: var(--ink); border-bottom: 1px solid var(--rule); padding-bottom: 1px; transition: border-color var(--d) var(--ease), color var(--d) var(--ease); }
.intake-strip__link:hover { color: var(--forest); border-bottom-color: var(--forest); }
@media (max-width: 540px) {
  .intake-strip { font-size: 0.78rem; padding: 0.55rem var(--gutter); }
  .intake-strip__sep--hide-sm { display: none; }
}

/* Persistent visible Apply link inside primary nav (in addition to .nav__cta).
   The Raffle link no longer carries gold — the brief restricts gold to /raffle*
   surfaces only, and the nav itself is restrained. */
.nav__link--apply { color: var(--charcoal); font-weight: 500; }
.nav__link--apply:hover { color: var(--ink); }

/* Sticky mobile CTA bar — hidden on desktop and on form pages via .no-sticky-cta on body */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 0.85rem var(--gutter);
  padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: var(--ink);
  color: var(--bone);
  border-top: 1px solid rgba(245,239,228,0.08);
  box-shadow: 0 -8px 24px rgba(26,26,24,0.18);
  transform: translateY(0);
  transition: transform var(--d) var(--ease);
}
.mobile-cta-bar[hidden] { display: none; }
.mobile-cta-bar__line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--bone);
  letter-spacing: -0.01em;
  flex: 1 1 auto;
  max-width: 22ch;
}
/* Softened from gold-pill-with-arrow to a quiet hairline link.
   No pill, no chevron — just a plain word, underlined. */
.mobile-cta-bar__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--bone);
  padding: 0.5rem 0;
  border-radius: 0;
  font-size: var(--t-sm);
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
  border: 0;
  border-bottom: 1px solid var(--bone);
  transition: opacity var(--d) var(--ease);
}
.mobile-cta-bar__cta:hover { opacity: 0.78; }
.mobile-cta-bar__cta span { display: none; }   /* hide the bare → arrow */
@media (min-width: 760px) { .mobile-cta-bar { display: none; } }
body.no-sticky-cta .mobile-cta-bar { display: none; }
/* Add safe space at bottom of page to avoid sticky bar covering content */
@media (max-width: 759px) {
  body:not(.no-sticky-cta) .footer { padding-bottom: calc(var(--s-9) + 4.5rem); }
}

/* .hero__hard-eyebrow is removed from the homepage markup per the audit P0 fix.
   This block remains as a no-op so any cached HTML keeps parsing safely. */
.hero__hard-eyebrow { display: none; }
.hero__hard-eyebrow strong, .hero__hard-eyebrow .hero__hard-sep { display: none; }

/* "If this is the room, write to us." — italic closer placed at end of major sections */
.if-room {
  margin: var(--s-9) auto var(--s-6);
  max-width: 56ch;
  text-align: center;
}
.if-room__line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-4);
}
.if-room__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-ink);
  font-size: var(--t-sm);
  letter-spacing: 0.06em;
  font-weight: 500;
  border-bottom: 1px solid var(--gold-ink);
  padding-bottom: 2px;
  transition: gap var(--d) var(--ease);
}
.if-room__link:hover { gap: 0.85rem; color: var(--ink); border-bottom-color: var(--ink); }

/* Authority bar — a single horizontal stripe of clipped credentials */
.authority-bar {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(1.5rem, 3vw, 2.25rem) var(--gutter);
}
.authority-bar__inner {
  max-width: var(--max-content);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 1.4rem;
  font-size: var(--t-sm);
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-align: center;
}
.authority-bar__item { display: inline-flex; align-items: center; gap: 0.5rem; line-height: 1.5; }
.authority-bar__item strong { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums lining-nums; }
.authority-bar__sep { display: inline-block; color: var(--gold); opacity: 0.5; user-select: none; }
@media (max-width: 540px) {
  .authority-bar { padding: var(--s-6) var(--gutter); }
  .authority-bar__inner { font-size: 0.82rem; gap: 0.5rem 0.95rem; }
}

/* Testimonial headline — a hairline-separated label, no pill.
   Reads as a quiet editorial eyebrow above the pull-quote. */
.member__figure {
  display: block;
  margin-bottom: var(--s-4);
  padding: 0 0 var(--s-3) 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  font-variant-numeric: tabular-nums lining-nums;
}
/* A short, quiet facts block beneath each quote — measured numbers, not pills. */
.member__measures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-4);
  margin: var(--s-4) 0 0 0;
  padding: var(--s-4) 0 0 0;
  border-top: 1px solid var(--rule);
  font-variant-numeric: tabular-nums lining-nums;
}
.member__measure dt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-text);
  margin-bottom: 0.15rem;
  font-weight: 400;
}
.member__measure dd {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
}

/* "What the work is not" negation block on home */
.what-not {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(var(--s-9), 8vw, var(--s-11)) var(--gutter);
}
.what-not__inner {
  max-width: var(--max-content);
  margin-inline: auto;
  text-align: center;
}
.what-not__eyebrow {
  display: block;
  margin-bottom: var(--s-6);
  color: var(--gold-on-dark);
  font-size: var(--eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.what-not__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-display);
  color: var(--bone);
  line-height: 1.1;
  margin: 0 auto var(--s-7);
  max-width: 22ch;
}
.what-not__list {
  list-style: none;
  padding: 0;
  margin: var(--s-7) auto 0;
  display: grid;
  gap: var(--s-4);
  max-width: 66ch;
  text-align: left;
}
.what-not__list li {
  font-size: var(--t-lg);
  line-height: 1.6;
  color: rgba(245,239,228,0.85);
  padding-left: var(--s-6);
  position: relative;
}
.what-not__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-on-dark);
  font-weight: 500;
}
.what-not__close {
  margin-top: var(--s-7);
  font-style: italic;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--gold-on-dark);
}
@media (min-width: 760px) {
  .what-not__list { grid-template-columns: 1fr 1fr; gap: var(--s-5) var(--s-9); }
}

/* Care-package surface on home */
.care-surface {
  padding: clamp(var(--s-9), 8vw, var(--s-11)) var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.care-surface__inner { max-width: var(--max-content); margin-inline: auto; }
.care-surface__head { text-align: center; margin-bottom: var(--s-9); }
.care-surface__eyebrow {
  display: block;
  margin-bottom: var(--s-4);
  color: var(--gold-ink);
  font-size: var(--eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.care-surface__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-display);
  font-style: italic;
  line-height: 1.05;
  margin: 0 auto var(--s-5);
  max-width: 18ch;
}
.care-surface__sub {
  font-size: var(--t-lg);
  color: var(--charcoal);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.6;
}
.care-surface__grid {
  display: grid;
  gap: var(--s-6);
  margin-top: var(--s-8);
}
@media (min-width: 760px) { .care-surface__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); } }
.care-surface__item {
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform var(--d) var(--ease), box-shadow var(--d) var(--ease);
}
.care-surface__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -40px rgba(26,26,24,0.18);
}
.care-surface__num {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.care-surface__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: var(--s-4);
  color: var(--ink);
}
.care-surface__body {
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--s-5);
  font-size: 0.97rem;
}
.care-surface__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--t-sm);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  letter-spacing: 0.04em;
  transition: gap var(--d) var(--ease);
}
.care-surface__cta:hover { gap: 0.85rem; }
.care-surface__foot { text-align: center; margin-top: var(--s-8); font-size: var(--t-sm); color: var(--charcoal); font-style: italic; font-family: var(--font-display); }

/* About page — numerical authority paragraph */
.about-numbers {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3.5vw, 2.5rem);
  margin: var(--s-9) 0;
  position: relative;
}
.about-numbers::before {
  content: "";
  position: absolute;
  top: -1px;
  left: clamp(2rem, 6vw, 3rem);
  right: clamp(2rem, 6vw, 3rem);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  border-radius: 0 0 3px 3px;
}
.about-numbers__eyebrow {
  display: block;
  margin-bottom: var(--s-4);
  color: var(--gold-ink);
  font-size: var(--eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.about-numbers__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: var(--s-5);
  letter-spacing: -0.01em;
}
.about-numbers__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
}
.about-numbers__list li {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.55;
}
.about-numbers__list strong {
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--ink);
  font-weight: 500;
  font-feature-settings: "tnum";
  flex: 0 0 auto;
  min-width: 4ch;
}
.about-numbers__list span { flex: 1 1 auto; }
.about-numbers__note {
  margin-top: var(--s-5);
  font-size: var(--t-sm);
  color: var(--charcoal);
  font-style: italic;
}

/* Income floor inside .fit__list — gentle highlight on its line */
.fit__list li.fit__list-item--income {
  border-left: 2px solid var(--gold);
  padding-left: 0.85rem;
  margin-left: -0.85rem;
}

/* ============================================================================
   TRACK B — RAFFLE FUNNEL — louder Iman-style register, still on-brand
   ============================================================================ */

/* Full-bleed dark hero with hard numbers */
.raffle-hero {
  background: linear-gradient(180deg, #0e0e0d 0%, #1A1A18 60%, #1A1A18 100%);
  color: var(--bone);
  padding: clamp(7rem, 13vw, 11rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.raffle-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(168,135,58,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.raffle-hero__inner {
  max-width: 880px;
  margin-inline: auto;
  position: relative;
  text-align: center;
}
/* Softened from a glowing pulsing pill to a quiet hairline label.
   Still legible — still gold (raffle is the only surface where gold lives) —
   but no animation, no glow, no rounded badge. */
.raffle-hero__urgency {
  display: inline-block;
  margin-bottom: var(--s-6);
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid rgba(215,184,110,0.55);
  background: transparent;
  border-radius: 0;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  font-weight: 500;
  font-variant-numeric: tabular-nums lining-nums;
}
.raffle-hero__urgency::before { content: none; }   /* removed pulsing dot */
.raffle-hero__eyebrow {
  display: block;
  margin-bottom: var(--s-5);
  color: rgba(245,239,228,0.7);
  font-size: var(--eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.raffle-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto var(--s-6);
  max-width: 22ch;
  color: var(--bone);
}
.raffle-hero__title em { font-style: italic; color: var(--gold-on-dark); }
.raffle-hero__prize {
  display: block;
  margin: var(--s-6) auto var(--s-6);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold-on-dark);
  font-style: italic;
}
.raffle-hero__prize-amount {
  font-style: normal;
  font-feature-settings: "tnum";
  color: var(--bone);
  border-bottom: 1px solid rgba(215,184,110,0.5);
  padding-bottom: 2px;
}
.raffle-hero__sub {
  font-size: var(--t-lg);
  line-height: 1.65;
  color: rgba(245,239,228,0.82);
  max-width: 56ch;
  margin: 0 auto var(--s-7);
}

/* Three-stat row */
.raffle-stats {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto var(--s-7);
}
@media (min-width: 600px) { .raffle-stats { grid-template-columns: repeat(3, 1fr); } }
.raffle-stat {
  padding: var(--s-5) var(--s-4);
  border: 1px solid rgba(245,239,228,0.12);
  border-radius: 6px;
  background: rgba(245,239,228,0.03);
}
.raffle-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold-on-dark);
  line-height: 1;
  margin-bottom: var(--s-3);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums lining-nums;
}
.raffle-stat__label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.7);
}

/* Step-1 inline lead form on the raffle hero */
.raffle-form {
  max-width: 480px;
  margin: var(--s-7) auto 0;
  text-align: left;
  display: grid;
  gap: var(--s-4);
}
.raffle-form__field { display: block; }
.raffle-form__label {
  display: block;
  margin-bottom: var(--s-2);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.7);
  font-weight: 500;
}
.raffle-form__input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(245,239,228,0.06);
  border: 1px solid rgba(245,239,228,0.2);
  border-radius: 4px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--d) var(--ease), background var(--d) var(--ease);
}
.raffle-form__input::placeholder { color: rgba(245,239,228,0.4); }
.raffle-form__input:focus {
  outline: none;
  border-color: var(--gold-on-dark);
  background: rgba(245,239,228,0.08);
  box-shadow: 0 0 0 2px rgba(215,184,110,0.18);
}
.raffle-form__submit {
  width: 100%;
  margin-top: var(--s-3);
  padding: 1.1rem 1.5rem;
  background: var(--gold-on-dark);
  color: var(--ink);
  border: 1px solid var(--gold-on-dark);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--d) var(--ease), transform var(--d) var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.raffle-form__submit:hover { background: var(--gold); }
.raffle-form__submit[disabled] { opacity: 0.6; cursor: wait; transform: none; }
.raffle-form__legal {
  font-size: 0.78rem;
  color: rgba(245,239,228,0.6);
  margin-top: var(--s-3);
  line-height: 1.5;
  text-align: center;
}
.raffle-form__legal a { color: var(--gold-on-dark); border-bottom: 1px solid rgba(215,184,110,0.4); }

/* Section after raffle hero — what you get / proof / fit */
.raffle-section {
  padding: clamp(var(--s-9), 8vw, var(--s-11)) var(--gutter);
}
.raffle-section--paper { background: var(--paper); }
.raffle-section__inner {
  max-width: var(--max-content);
  margin-inline: auto;
}
.raffle-section__head { text-align: center; margin-bottom: var(--s-8); }
.raffle-section__eyebrow {
  display: block;
  margin-bottom: var(--s-4);
  color: var(--gold-ink);
  font-size: var(--eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.raffle-section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-display);
  line-height: 1.1;
  margin: 0 auto var(--s-5);
  max-width: 22ch;
}
.raffle-section__sub {
  font-size: var(--t-lg);
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 56ch;
  margin: 0 auto;
}

/* What you get — list of inclusions */
.raffle-includes {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-8);
}
@media (min-width: 760px) { .raffle-includes { grid-template-columns: 1fr 1fr; gap: var(--s-6) var(--s-7); } }
.raffle-includes__item {
  padding: var(--s-5);
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}
/* The check spot was a filled gold circle with “✓”. It is now a quiet serif
   numeral (I, II, III, IV, V, VI …) with no background — the markup is updated
   in raffle.html to use Roman numerals instead of ✓. */
.raffle-includes__check {
  flex: 0 0 auto;
  width: auto;
  min-width: 2.2rem;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold-ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 0.05rem;
  font-variant-numeric: tabular-nums lining-nums;
}
.raffle-includes__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
  line-height: 1.25;
}
.raffle-includes__body { color: var(--charcoal); line-height: 1.6; font-size: 0.95rem; }

/* Quiz page styling */
.raffle-quiz-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 10rem) var(--gutter) var(--s-11);
}
.raffle-quiz-progress {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.raffle-quiz-progress__bar {
  flex: 1 1 auto;
  height: 4px;
  background: var(--rule);
  border-radius: 999px;
  overflow: hidden;
}
.raffle-quiz-progress__fill {
  display: block;
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
  transition: width 320ms var(--ease);
  width: 0%;
}
.raffle-quiz-progress__text { flex: 0 0 auto; color: var(--gold-ink); font-weight: 500; }
.raffle-question { margin-bottom: var(--s-9); }
.raffle-question[hidden] { display: none; }
.raffle-question__num {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.raffle-question__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: var(--s-3);
  color: var(--ink);
}
.raffle-question__sub {
  color: var(--charcoal);
  margin-bottom: var(--s-6);
  font-size: var(--t-lg);
  line-height: 1.5;
}
.raffle-options { display: grid; gap: var(--s-3); }
.raffle-option {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: 1.1rem 1.4rem;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color var(--d) var(--ease), background var(--d) var(--ease), transform var(--d) var(--ease);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.4;
}
.raffle-option:hover { border-color: var(--gold); background: rgba(168,135,58,0.04); transform: translateY(-1px); }
.raffle-option input[type="radio"] {
  flex: 0 0 auto;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: border-color var(--d) var(--ease);
  margin: 0;
}
.raffle-option input[type="radio"]:checked { border-color: var(--gold-ink); }
.raffle-option input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--gold-ink);
  border-radius: 50%;
}
.raffle-option:has(input:checked) {
  border-color: var(--gold-ink);
  background: rgba(110,88,36,0.04);
}
.raffle-question__nav {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-7);
}
.raffle-quiz-back, .raffle-quiz-next {
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--d) var(--ease), color var(--d) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.raffle-quiz-back {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--rule);
}
.raffle-quiz-back:hover { color: var(--ink); border-color: var(--ink); }
.raffle-quiz-back:disabled, .raffle-quiz-back[hidden] { display: none; }
.raffle-quiz-next {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  margin-left: auto;
}
.raffle-quiz-next:hover { background: var(--forest); border-color: var(--forest); }
.raffle-quiz-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Range scale (1–10 commitment) */
.raffle-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-top: var(--s-3);
}
@media (min-width: 540px) { .raffle-scale { grid-template-columns: repeat(10, 1fr); } }
.raffle-scale__btn {
  padding: 0.85rem 0.4rem;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--d) var(--ease), background var(--d) var(--ease);
}
.raffle-scale__btn:hover { border-color: var(--gold); }
.raffle-scale__btn[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.raffle-scale__caps {
  display: flex;
  justify-content: space-between;
  margin-top: var(--s-3);
  font-size: 0.78rem;
  color: var(--charcoal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Result page (raffle-applied) */
.raffle-result {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 10rem) var(--gutter) var(--s-11);
  text-align: center;
}
.raffle-result__badge {
  display: inline-block;
  margin-bottom: var(--s-6);
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  background: rgba(168,135,58,0.04);
  font-weight: 500;
}
.raffle-result__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 auto var(--s-6);
  max-width: 18ch;
}
.raffle-result__lead {
  font-size: var(--t-lg);
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 56ch;
  margin: 0 auto var(--s-7);
}
.raffle-result__card {
  text-align: left;
  margin: var(--s-7) auto;
  max-width: 560px;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  position: relative;
}
.raffle-result__card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: clamp(1.5rem, 5vw, 2.5rem);
  right: clamp(1.5rem, 5vw, 2.5rem);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  border-radius: 0 0 3px 3px;
}
.raffle-result__card-eyebrow {
  display: block;
  margin-bottom: var(--s-4);
  color: var(--gold-ink);
  font-size: var(--eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.raffle-result__card-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: var(--s-5);
  color: var(--ink);
}
.raffle-result__card-body { color: var(--charcoal); line-height: 1.7; margin-bottom: var(--s-5); }
.raffle-result__bullets { display: grid; gap: var(--s-3); margin-bottom: var(--s-6); }
.raffle-result__bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.raffle-result__bullets li::before {
  content: "—";
  color: var(--gold-ink);
  flex: 0 0 auto;
  margin-top: 0.05rem;
}
.raffle-result__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.05rem 1.9rem;
  background: var(--ink);
  color: var(--bone);
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: background var(--d) var(--ease), transform var(--d) var(--ease);
}
.raffle-result__cta:hover { background: var(--forest); transform: translateY(-1px); }
.raffle-result__cta--gold {
  background: var(--gold-ink);
  color: var(--bone);
}
.raffle-result__cta--gold:hover { background: var(--ink); }
.raffle-result__foot {
  margin-top: var(--s-8);
  font-size: var(--t-sm);
  color: var(--charcoal);
}
.raffle-result__foot a { color: var(--gold-ink); border-bottom: 1px solid var(--rule); }

/* Hide raffle result blocks by default — JS reveals matching one */
[data-raffle-track] { display: none; }
[data-raffle-track].is-active { display: block; }


/* ---------- HERO MOBILE LEGIBILITY (2026-05-02e) ---------- */
/* The mountain hero image has too much detail and mid-tone contrast for
   light type to sit cleanly on it on small screens. We:
   - Strengthen the bottom-up gradient and add a subtle vignette
   - Drop the title size on phones so it wraps in 2-3 lines, not 5
   - Add a soft text-shadow to anchor letterforms on busy regions
   - Brighten the eyebrow + sub for AAA contrast */
@media (max-width: 760px) {
  .hero__media::after {
    background:
      linear-gradient(180deg,
        rgba(26,26,24,0.45) 0%,
        rgba(26,26,24,0.55) 35%,
        rgba(26,26,24,0.78) 70%,
        rgba(26,26,24,0.92) 100%);
  }
  .hero__inner {
    padding-block: var(--s-9) var(--s-8);
  }
  .hero__title {
    font-size: clamp(2.1rem, 9.2vw, 3.1rem);
    line-height: 1.05;
    max-width: 18ch;
    text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  }
  .hero__eyebrow {
    opacity: 1;
    color: #F5EFE4;
    text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  }
  .hero__sub {
    color: #F5EFE4;
    opacity: 1;
    text-shadow: 0 1px 10px rgba(0,0,0,0.55);
    font-weight: 400;
    max-width: 32ch;
  }
  .hero__hard-eyebrow {
    text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  }
}

/* Even tighter type on the smallest phones (≤380px) so the title doesn't
   overflow into the photograph's bright sky area. */
@media (max-width: 380px) {
  .hero__title {
    font-size: clamp(1.85rem, 8.8vw, 2.4rem);
    max-width: 14ch;
  }
  .hero__sub { font-size: 1rem; }
}

/* ============================================================================
   EDITORIAL UTILITIES — added in the May 2026 luxury rebuild
   - .editorial-band     full-bleed image band with a soft caption line
   - .editorial-quote    a single line of display type set on a quiet ground
   - .cover-figure       4:5 cover image with hairline + caption (page-hero accompaniment)
   - .tabular            opt-in tabular figures for any numeric run of text
   ============================================================================ */

.tabular { font-variant-numeric: tabular-nums lining-nums; }

/* Single editorial photograph that breaks a long page into chapters.
   Caption sits below at body size, not over the image. */
.editorial-band {
  margin: clamp(var(--s-9), 9vw, var(--s-11)) 0;
}
.editorial-band__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper);
  max-width: var(--max-content);
  margin-inline: auto;
}
.editorial-band__media > picture > img,
.editorial-band__media > img { object-position: center 80%; }
.editorial-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .editorial-band__media { aspect-ratio: 4 / 5; }
}
/* Portrait variant: image is taller than wide. Use a portrait-friendly display so the subject reads. */
.editorial-band--portrait .editorial-band__media { aspect-ratio: 5 / 6; max-width: 720px; }
.editorial-band--portrait .editorial-band__media > picture > img,
.editorial-band--portrait .editorial-band__media > img { object-position: center 78%; }
@media (max-width: 760px) {
  .editorial-band--portrait .editorial-band__media { aspect-ratio: 4 / 5; max-width: 100%; }
}
/* Coda variant: constrained width below the form, acts as a quiet closing image. */
.cover-figure--coda { max-width: 480px; padding-block: clamp(var(--s-7), 6vw, var(--s-10)) clamp(var(--s-9), 8vw, var(--s-12)); }
.editorial-band__caption {
  max-width: 56ch;
  margin: var(--s-4) auto 0;
  padding-inline: var(--gutter);
  text-align: center;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-base);
  line-height: 1.5;
}

/* A pull-quote band — display serif, large, single line of feeling.
   Used between sections of dense copy for breathing room. */
.editorial-quote {
  padding: clamp(var(--s-9), 9vw, var(--s-11)) var(--gutter);
  background: var(--surface-cool);
  border-block: 1px solid var(--rule);
  text-align: center;
}
.editorial-quote__line {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto;
  text-wrap: balance;
}
.editorial-quote__attr {
  display: block;
  margin-top: var(--s-5);
  font-family: var(--font-body);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* Cover figure — used in page-hero areas alongside copy. 4:5 portrait,
   hairline below, caption underneath. When combined with .wrap-narrow
   it must remain horizontally centered (auto inline margins).            */
.cover-figure {
  margin-block: 0;
  margin-inline: auto;
  display: block;
}
.cover-figure picture { display: block; }
.cover-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.cover-figure__caption {
  display: block;
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
@media (min-width: 880px) {
  .cover-figure img { aspect-ratio: 3 / 4; }
}

/* Page-hero augmentation: an editorial figure beside the title block. */
.page-hero--editorial .wrap-narrow,
.page-hero--editorial > .page-hero__inner { /* fallback if subclass used */
  display: grid;
  gap: clamp(var(--s-7), 5vw, var(--s-10));
  align-items: end;
}
@media (min-width: 880px) {
  .page-hero--editorial .wrap-narrow { grid-template-columns: 1.1fr 1fr; max-width: var(--max-content); }
}

/* Page-hero softening for /terms and /privacy: a single hairline above the eyebrow. */
.page-hero--legal { padding-block: clamp(var(--s-9), 8vw, var(--s-11)); }
.page-hero--legal .page-hero__eyebrow { position: relative; padding-top: var(--s-5); display: inline-block; }
.page-hero--legal .page-hero__eyebrow::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--charcoal);
  opacity: 0.4;
}

/* Care-package gift cards: a quieter hover (no pill), hairline under titles. */
.gift-card { transition: transform var(--d) var(--ease); }
.gift-card:hover { transform: translateY(-2px); }
.gift-card__title { padding-bottom: var(--s-3); border-bottom: 1px solid var(--rule); margin-bottom: var(--s-4); }

/* Roman numerals in the notes list — quiet, serif, gold-ink (notes is editorial). */
.notes-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-ink);
  font-size: var(--t-base);
  margin-right: 0.5em;
  letter-spacing: 0.04em;
}

/* Raffle-quiz quiet header — editorial continuity from raffle hero. */
.raffle-quiz-header {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--s-8) var(--s-5) var(--s-5);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.raffle-quiz-header__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-ink);
  font-size: var(--t-sm);
  letter-spacing: 0.04em;
  margin-bottom: var(--s-2);
}
.raffle-quiz-header__line {
  font-family: var(--font-body);
  color: var(--charcoal);
  opacity: 0.78;
  font-size: var(--t-base);
  margin: 0;
}
