/* ============================================================
   EVOLVE TO GROW — LO-FIDELITY WIREFRAME SYSTEM
   Black / white / grey only. Best-practice layout primitives.
   No brand polish until structure approved.
   ============================================================ */

/* ---- 1. RESET ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: 0; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid #000; outline-offset: 2px; }

/* ---- 2. TOKENS ---- */
:root {
  --ink: #111;
  --ink-2: #444;
  --ink-3: #777;
  --ink-4: #aaa;
  --line: #d8d8d8;
  --line-2: #ebebeb;
  --bg-1: #fff;
  --bg-2: #f5f5f5;
  --bg-3: #ececec;
  --bg-4: #1a1a1a;        /* dark sections */
  --on-dark: #f0f0f0;
  --on-dark-2: #b8b8b8;
  --on-dark-3: #777;
  --on-dark-line: #2a2a2a;

  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'Menlo', 'Consolas', monospace;

  --max: 1280px;
  --max-narrow: 880px;
  --max-text: 680px;
  --pad-x: clamp(20px, 5vw, 56px);
  --pad-y: clamp(64px, 8vw, 120px);
  --pad-y-tight: clamp(40px, 5vw, 80px);

  --d: 160ms;
  --d-2: 280ms;
}

/* ---- 3. BASE ---- */
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg-1);
}
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -0.025em; }
h3 { font-size: clamp(24px, 2.6vw, 36px); }
h4 { font-size: clamp(20px, 1.8vw, 24px); }
h5 { font-size: 18px; }
h6 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; color: var(--ink-2); }
p { color: var(--ink-2); text-wrap: pretty; }

a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--line); }
a:hover { text-decoration-color: var(--ink); }

/* ---- 4. UTIL ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--pad-x); }
.container-text { max-width: var(--max-text); margin: 0 auto; padding: 0 var(--pad-x); }

.section { padding: var(--pad-y) 0; border-top: 1px solid var(--line); }
.section-tight { padding: var(--pad-y-tight) 0; border-top: 1px solid var(--line); }
.section-dark { background: var(--bg-4); color: var(--on-dark); border-color: var(--on-dark-line); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6 { color: #fff; }
.section-dark p { color: var(--on-dark-2); }
.section-dark a { color: #fff; text-decoration-color: var(--on-dark-3); }
.section-dark a:hover { text-decoration-color: #fff; }

.section-grey { background: var(--bg-2); }

.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); display: inline-block; margin-bottom: 18px;
}
.section-dark .eyebrow { color: var(--on-dark-3); }

.lede { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; color: var(--ink-2); max-width: 60ch; }
.section-dark .lede { color: var(--on-dark-2); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.section-dark .rule { background: var(--on-dark-line); }

.label-bracket {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); display: inline-block; padding: 4px 10px;
  border: 1px solid var(--line); border-radius: 2px;
}

/* ---- 5. NAV — big, obvious, sticky ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--line);
}
.site-header .bar {
  max-width: var(--max); margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.site-header .brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
  text-decoration: none;
}
.site-header .brand .mark {
  width: 32px; height: 32px; border: 1.5px solid var(--ink); border-radius: 50%;
  display: inline-grid; place-items: center; font-weight: 800; font-size: 14px;
}
.site-header .brand .word { line-height: 1; }
.site-header .brand .word small {
  display: block; font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 500;
  margin-bottom: 2px;
}
.site-header nav { display: flex; align-items: center; gap: 4px; }
.site-header nav a {
  text-decoration: none; padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--ink-2); border-radius: 4px; transition: background var(--d), color var(--d);
}
.site-header nav a:hover { background: var(--bg-2); color: var(--ink); }
.site-header nav a.is-current { color: var(--ink); border-bottom: 2px solid var(--ink); border-radius: 0; padding-bottom: 8px; }
.site-header nav a.cta {
  background: var(--ink); color: #fff; padding: 10px 18px; margin-left: 8px;
}
.site-header nav a.cta:hover { background: #000; }

@media (max-width: 880px) {
  .site-header nav a:not(.cta) { display: none; }
  .site-header .bar { padding: 12px var(--pad-x); }
}

/* ---- 6. BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  padding: 14px 22px; border-radius: 4px; text-decoration: none;
  transition: background var(--d), color var(--d), border-color var(--d);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { text-decoration: underline; }
.btn .arr { transition: transform var(--d-2); }
.btn:hover .arr { transform: translateX(3px); }
.btn-lg { padding: 18px 28px; font-size: 15px; }

.section-dark .btn-primary { background: #fff; color: var(--ink); }
.section-dark .btn-primary:hover { background: var(--on-dark-2); }
.section-dark .btn-outline { color: #fff; border-color: #fff; }
.section-dark .btn-outline:hover { background: #fff; color: var(--ink); }

/* ---- 7. WIREFRAME PHOTO PLACEHOLDER ---- */
/* Used inline OR as a skin on <image-slot>. Looks like a wireframe block. */
.wf-photo {
  position: relative;
  background: var(--bg-3);
  border: 1px dashed var(--ink-4);
  display: grid; place-items: center;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  padding: 20px;
}
/* diagonal cross marks */
.wf-photo::before, .wf-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top right, transparent calc(50% - 0.5px), var(--ink-4) calc(50% - 0.5px), var(--ink-4) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  pointer-events: none; opacity: 0.4;
}
.wf-photo::after {
  background: linear-gradient(to top left, transparent calc(50% - 0.5px), var(--ink-4) calc(50% - 0.5px), var(--ink-4) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.wf-photo > .wf-label {
  position: relative; z-index: 1;
  background: var(--bg-3);
  padding: 6px 12px;
  border: 1px solid var(--ink-4);
  border-radius: 2px;
  max-width: 80%;
}
.wf-photo[data-aspect="1/1"] { aspect-ratio: 1/1; }
.wf-photo[data-aspect="4/3"] { aspect-ratio: 4/3; }
.wf-photo[data-aspect="4/5"] { aspect-ratio: 4/5; }
.wf-photo[data-aspect="3/4"] { aspect-ratio: 3/4; }
.wf-photo[data-aspect="16/9"] { aspect-ratio: 16/9; }
.wf-photo[data-aspect="2/3"] { aspect-ratio: 2/3; }
.wf-photo[data-aspect="2/1"] { aspect-ratio: 2/1; }

/* When a real <image-slot> drops in, it overrides */
image-slot {
  --slot-bg: var(--bg-3);
  --slot-border: var(--ink-4);
  --slot-fg: var(--ink-3);
}

/* ---- 8. HERO ---- */
.hero {
  padding: clamp(56px, 8vw, 120px) 0 clamp(56px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}
.hero .grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .hero .grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 24px; max-width: 18ch; }
.hero .sub { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; color: var(--ink-2); margin-bottom: 32px; max-width: 56ch; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .meta { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 32px; flex-wrap: wrap; }
.hero .meta .item .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.hero .meta .item .v { font-weight: 600; font-size: 14px; margin-top: 2px; }

/* ---- 9. STATS BAR ---- */
.stats-bar { padding: clamp(40px, 5vw, 64px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-bar .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 760px) { .stats-bar .grid { grid-template-columns: repeat(2, 1fr); } }
.stats-bar .stat .n { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.stats-bar .stat .l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 10px; }

/* ---- 10. LOGO WALL ---- */
.logo-wall .grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line); margin-top: 28px;
}
@media (max-width: 880px) { .logo-wall .grid { grid-template-columns: repeat(3, 1fr); } }
.logo-wall .grid > .cell {
  aspect-ratio: 2/1; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); background: var(--bg-2);
  padding: 12px; text-align: center;
}
.logo-wall .grid > .cell:nth-child(6n) { border-right: 0; }
.logo-wall .grid > .cell:nth-last-child(-n+6) { border-bottom: 0; }
@media (max-width: 880px) {
  .logo-wall .grid > .cell { border-right: 1px solid var(--line); }
  .logo-wall .grid > .cell:nth-child(6n) { border-right: 1px solid var(--line); }
  .logo-wall .grid > .cell:nth-child(3n) { border-right: 0; }
  .logo-wall .grid > .cell:nth-last-child(-n+6) { border-bottom: 1px solid var(--line); }
  .logo-wall .grid > .cell:nth-last-child(-n+3) { border-bottom: 0; }
}

/* ---- 11. PAIN LIST ---- */
.pain-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; margin-top: 40px; }
@media (max-width: 760px) { .pain-list { grid-template-columns: 1fr; } }
.pain-list li { display: flex; gap: 18px; padding: 24px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.pain-list li .num { font-family: var(--mono); font-size: 11px; color: var(--ink-3); padding-top: 4px; flex: 0 0 28px; }
.pain-list li .t { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.4; color: var(--ink); }

/* ---- 12. PROMISE / BEFORE-AFTER ---- */
.promise .head { text-align: center; margin-bottom: 48px; }
.promise .ba {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .promise .ba { grid-template-columns: 1fr; } }
.promise .col { padding: 32px; }
.promise .col-now { background: var(--bg-2); }
.promise .col-then { background: var(--bg-1); }
.promise .col + .col { border-left: 1px solid var(--line); }
@media (max-width: 880px) { .promise .col + .col { border-left: 0; border-top: 1px solid var(--line); } }
.promise .col h3 { margin-bottom: 8px; }
.promise .col .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; display: block; }
.promise .col ul { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.promise .col li { padding-left: 24px; position: relative; font-size: 15px; line-height: 1.4; color: var(--ink-2); }
.promise .col-now li::before { content: "−"; position: absolute; left: 0; color: var(--ink-3); }
.promise .col-then li::before { content: "→"; position: absolute; left: 0; color: var(--ink); font-weight: 600; }

/* ---- 13. BEF MECHANISM (lo-fi) ---- */
.mech .layers { margin-top: 40px; max-width: 880px; }
.mech .layer {
  display: grid; grid-template-columns: 60px 1fr 200px;
  gap: 24px; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--line-2);
}
.mech .layer:first-child { border-top: 1px solid var(--line); }
.mech .layer:last-child { border-bottom: 1px solid var(--line); }
.mech .layer .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-3); }
.mech .layer .name { font-size: clamp(20px, 2vw, 28px); font-weight: 700; letter-spacing: -0.02em; }
.mech .layer .desc { font-size: 14px; color: var(--ink-2); margin-top: 4px; line-height: 1.4; }
.mech .layer .bar { height: 8px; background: var(--bg-3); border: 1px solid var(--line); position: relative; }
.mech .layer .bar > i { display: block; height: 100%; background: var(--ink); }
.mech .layer:nth-child(1) .bar > i { width: 100%; }
.mech .layer:nth-child(2) .bar > i { width: 80%; }
.mech .layer:nth-child(3) .bar > i { width: 60%; }
.mech .layer:nth-child(4) .bar > i { width: 40%; }
.mech .layer:nth-child(5) .bar > i { width: 20%; }
@media (max-width: 760px) {
  .mech .layer { grid-template-columns: 40px 1fr; }
  .mech .layer .bar { display: none; }
}

/* ---- 14. CARDS (cases, articles, episodes) ---- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 1024px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line); background: #fff;
  display: flex; flex-direction: column;
  transition: border-color var(--d-2);
}
.card:hover { border-color: var(--ink); }
.card .photo { border-bottom: 1px solid var(--line); }
.card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.card .meta-row { display: flex; gap: 12px; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.card .title { font-size: 20px; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); }
.card .excerpt { font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.card .footer { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

/* case-specific */
.case-card .quote { font-size: 16px; line-height: 1.4; color: var(--ink); border-top: 1px solid var(--line-2); padding-top: 14px; }
.case-card .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line-2); margin-top: auto; }
.case-card .stats-row .n { font-weight: 700; font-size: 18px; }
.case-card .stats-row .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; }

/* podcast card */
.episode-card .play {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-top: auto;
}
.episode-card .play::before {
  content: "▶"; display: inline-grid; place-items: center;
  width: 28px; height: 28px; border: 1px solid var(--ink); border-radius: 50%;
  font-size: 10px; padding-left: 2px;
}

/* ---- 15. FOUNDER ---- */
.founder .grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
@media (max-width: 1024px) { .founder .grid { grid-template-columns: 1fr; } }
.founder .body p { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.55; max-width: 56ch; margin-bottom: 16px; }
.founder .body p strong { color: var(--ink); }
.founder .sig { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.founder .sig .name { font-weight: 600; font-size: 16px; }
.founder .sig .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }

/* ---- 16. BOOK ---- */
.book .grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
@media (max-width: 880px) { .book .grid { grid-template-columns: 1fr; } }
.book-cover { aspect-ratio: 2/3; max-width: 360px; border: 1px solid var(--line); }
.book .meta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 28px 0 32px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.book .meta-grid .m .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.book .meta-grid .m .v { font-weight: 600; margin-top: 4px; }

/* ---- 17. OFFERS ---- */
.offers .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; margin-top: 40px; }
@media (max-width: 1024px) { .offers .grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }
.offer { display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); background: #fff; position: relative; }
.offer.featured { border-color: var(--ink); border-width: 2px; }
.offer .pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; }
.offer .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.offer h3 { font-size: 22px; line-height: 1.2; margin-bottom: 12px; }
.offer .who { font-size: 14px; line-height: 1.5; color: var(--ink-2); margin-bottom: 24px; }
.offer .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.offer .price-now { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.offer .price-unit { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.offer .what { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.offer .what li { font-size: 14px; line-height: 1.4; padding-left: 22px; position: relative; color: var(--ink-2); }
.offer .what li::before { content: "+"; position: absolute; left: 0; font-weight: 700; color: var(--ink); }
.offer .btn { width: 100%; justify-content: center; }

/* ---- 18. NOT FOR YOU ---- */
.notfor .grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 880px) { .notfor .grid { grid-template-columns: 1fr; } }
.notfor ul { display: flex; flex-direction: column; }
.notfor li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--on-dark-line); align-items: flex-start; font-size: 16px; line-height: 1.4; }
.notfor li:first-child { border-top: 1px solid var(--on-dark-line); }
.notfor li::before { content: "✕"; flex: 0 0 24px; color: var(--on-dark); font-weight: 700; }

/* ---- 19. FAQ ---- */
.faq .head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.faq .list { max-width: 880px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--line); padding: 22px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none;
  font-size: clamp(17px, 1.4vw, 22px); font-weight: 600; line-height: 1.3; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico {
  flex: 0 0 24px; height: 24px; display: grid; place-items: center;
  font-family: var(--mono); font-weight: 400; transition: transform var(--d-2);
}
.faq summary .ico::before { content: "+"; font-size: 18px; }
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq .ans { padding-top: 14px; max-width: 60ch; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ---- 20. FINAL CTA ---- */
.final-cta { text-align: center; padding: clamp(80px, 10vw, 140px) 0; background: var(--ink); color: #fff; border-top: 1px solid var(--ink); }
.final-cta h2 { color: #fff; max-width: 18ch; margin: 0 auto 20px; }
.final-cta p { color: var(--on-dark-2); max-width: 50ch; margin: 0 auto 32px; font-size: 17px; }
.final-cta .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-cta .reassure { margin-top: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-3); }

/* ---- 21. FOOTER (full sitemap) ---- */
.site-footer { padding: 56px 0 32px; background: #fff; border-top: 1px solid var(--line); }
.site-footer .grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 40px; margin-bottom: 48px; }
@media (max-width: 880px) { .site-footer .grid { grid-template-columns: 1fr 1fr; } }
.site-footer h6 { margin-bottom: 14px; }
.site-footer ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer li a { color: var(--ink-2); font-size: 14px; text-decoration: none; }
.site-footer li a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.site-footer .legal { padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

/* ---- 22. SECTION HEADER (reusable) ---- */
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 8px; }
.sec-head .left { max-width: 60ch; }
.sec-head .right a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
@media (max-width: 760px) { .sec-head { flex-direction: column; align-items: flex-start; } }

/* ---- 23. WIREFRAME RIBBON (top of page indicator) ---- */
.wf-ribbon {
  position: fixed; bottom: 16px; left: 16px; z-index: 200;
  background: #fff; border: 1px solid var(--ink); padding: 8px 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
}
