/* Tracey Potter Coaching production site — "Performance Editorial".
   Shape rule: hairlines, square corners, no soft shadows.
   Type rule: heavy grotesk display (Archivo, self-hosted) + timing-sheet mono meta.
   Motion rule: three moments only — hero entrance, method sequence, one image drift.
   Every colour is defined in both themes; nothing lives only in a media query. */

/* ---------- Self-hosted display face ---------- */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("assets/fonts/archivo-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("assets/fonts/archivo-latin-ext-var.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */

:root {
  color-scheme: light dark;

  /* ground + ink */
  --bg: #eff3f1;              /* ice */
  --surface: #f8faf9;         /* paper */
  --surface-strong: #e5ebe8;
  --ink: #171d1a;             /* graphite */
  --body: #5d6e68;            /* steel */
  --muted: #8a9a93;           /* steel-2 */
  --line: #d6deda;            /* hairline */

  /* greens */
  --accent: #1d3d2e;          /* forest — solid fills */
  --accent-hover: #0f2419;
  --accent-text: #eff3f1;
  --link: #1d3d2e;            /* forest — text links, eyebrows */
  --band: #0f2419;            /* forest-deep — method + closing bands */

  /* the one warm accent */
  --clay: #b5502e;
  --clay-hover: #9d4426;
  --clay-text: #fbf2ed;
  --marker: #b5502e;          /* mono numerals / stage markers on light */
  --clay-bright: #e8a183;     /* clay legible on the deep bands */

  /* colours that live inside the deep bands (same in both themes) */
  --band-ink: #f2f7f4;
  --band-body: #93a89e;
  --band-meta: #8a9a93;
  --band-line: rgba(220, 231, 225, 0.14);
  --band-chip-line: rgba(220, 231, 225, 0.24);
  --band-chip-ink: #b7c7bf;

  /* neutral frame behind partner logos, constant across themes */
  --logo-ground: #f4f6f5;
  --logo-ground-dark: #111512;

  --page: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 0px;
  --control-radius: 2px;

  --font: "Archivo", "Helvetica Neue", Helvetica, "Segoe UI", Arial, system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d1210;
    --surface: #131a17;
    --surface-strong: #1a231e;
    --ink: #eff3f1;
    --body: #a9bab2;
    --muted: #7d8f87;
    --line: #27332d;

    --accent: #35785c;
    --accent-hover: #45906f;
    --accent-text: #f2f7f4;
    --link: #8fcbae;
    --band: #12291d;

    --clay: #b5502e;
    --clay-hover: #c65f3b;
    --clay-text: #fbf2ed;
    --marker: #e8a183;
    --clay-bright: #e8a183;

    --band-ink: #f2f7f4;
    --band-body: #93a89e;
    --band-meta: #8a9a93;
    --band-line: rgba(220, 231, 225, 0.14);
    --band-chip-line: rgba(220, 231, 225, 0.24);
    --band-chip-ink: #b7c7bf;

    --logo-ground: #f4f6f5;
    --logo-ground-dark: #111512;
  }
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }

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

a:hover { text-decoration: none; }

button, input, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--control-radius);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(100%, var(--page));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(66px, 9vw, 116px); }
.section-compact { padding-block: clamp(44px, 6vw, 76px); }
.surface { background: var(--surface); }

.section-title {
  max-width: 780px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-title h2 {
  font-size: clamp(31px, 4.4vw, 54px);
  letter-spacing: -0.038em;
  max-width: 16ch;
}

.section-title p {
  max-width: 58ch;
  margin-top: 16px;
  font-size: clamp(15.5px, 1.6vw, 18px);
}

/* mono "timing sheet" voice */
.eyebrow,
.method-time,
.weeks,
.footer-label,
.trust-item strong,
.outcome .number,
.audience-item::before,
.prep-item::before {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--link);
  font-size: 10.5px;
  letter-spacing: 0.18em;
}

/* ---------- Buttons ---------- */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid var(--accent);
  border-radius: var(--control-radius);
  background: var(--accent);
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button.small {
  min-height: 40px;
  padding: 10px 17px;
  font-size: 11px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
}

.brand::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  background: var(--accent);
  vertical-align: baseline;
}

.brand span {
  display: block;
  margin-top: 5px;
  margin-left: 19px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a:not(.button) {
  position: relative;
  color: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right 160ms ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }

.menu-button {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: transparent;
  padding: 9px 15px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  align-items: stretch;
  min-height: min(calc(100dvh - 72px), 700px);
  padding: 0;
  border-bottom: 1px solid var(--line);
}

/* copy holds the container's left edge; the photo runs to the page edge */
.hero-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(var(--gutter), calc((100% - var(--page)) / 2 + var(--gutter))) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: stretch;
}

.hero-copy {
  align-self: center;
  padding-block: clamp(52px, 7vw, 96px);
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(46px, 6.4vw, 80px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-copy > p {
  max-width: 45ch;
  margin-block: 24px 32px;
  font-size: clamp(17px, 1.9vw, 20px);
}

.hero-photo {
  position: relative;
  min-height: min(70dvh, 700px);
  background: var(--surface-strong);
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 0;
}

/* motion 1 of 3 — one staggered rise on load */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-copy > * { animation: rise 700ms cubic-bezier(.2, .6, .2, 1) both; }
.hero-copy > *:nth-child(2) { animation-delay: 80ms; }
.hero-copy > *:nth-child(3) { animation-delay: 160ms; }
.hero-copy > *:nth-child(4) { animation-delay: 240ms; }
.hero-copy > *:nth-child(5) { animation-delay: 320ms; }
.hero-photo img { animation: fade-in 900ms ease 150ms both; }

/* ---------- Credential strip ---------- */

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.trust-item {
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; padding-right: 0; }

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: 0.16em;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12.5px;
}

/* ---------- The Method — the signature band ---------- */

.method-band {
  background: var(--band);
  color: var(--band-body);
}

.method-band h2,
.method-band h3 { color: var(--band-ink); }

.method-band .section-title p { color: var(--band-body); }

.method-grid {
  display: block;
  border: 0;
  border-radius: 0;
  background: none;
}

.method-step {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) minmax(0, 300px);
  gap: 12px 36px;
  align-items: baseline;
  min-height: 0;
  padding: 30px 0;
  border: 0;
  border-top: 1px solid var(--band-line);
  background: none;
}

.method-step:nth-child(even) { background: none; }

.method-time {
  color: var(--band-meta);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.method-step h3 {
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

/* load builds through the block */
.method-step.s1 h3 { font-size: clamp(30px, 4.6vw, 54px); }
.method-step.s2 h3 { font-size: clamp(34px, 5.4vw, 64px); }
.method-step.s3 h3 { font-size: clamp(37px, 6.2vw, 76px); }
.method-step.s4 h3 { font-size: clamp(41px, 7.2vw, 90px); color: var(--clay-bright); }
.method-step.s4 .method-time { color: var(--clay-bright); }

.method-body p,
.method-step p {
  margin-top: 0;
  color: var(--band-body);
  font-size: 14.5px;
  line-height: 1.6;
}

.method-action {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 10px;
  border: 1px solid var(--band-chip-line);
  border-radius: var(--control-radius);
  color: var(--band-chip-ink);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 0;
  padding-top: 34px;
  border-top: 1px solid var(--band-line);
}

.method-note p {
  max-width: 52ch;
  color: var(--band-meta);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.method-band .button.secondary {
  color: var(--band-ink);
  border-color: var(--band-chip-line);
}

.method-band .button.secondary:hover {
  color: var(--band-ink);
  border-color: var(--band-ink);
}

/* motion 2 of 3 — the stages reveal in order */
[data-stage].will-stage { opacity: 0; transform: translateY(22px); }
[data-stage].will-stage.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .6, .2, 1);
}

/* ---------- Audience — editorial rows, no boxes ---------- */

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}

.audience-layout h2 {
  position: static;
  max-width: 16ch;
  font-size: clamp(31px, 4.4vw, 54px);
  letter-spacing: -0.038em;
}

.audience-list {
  display: grid;
  gap: 0;
  counter-reset: audience;
}

.audience-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 8px 36px;
  align-items: baseline;
  margin: 0;
  padding: 26px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: none;
}

.audience-item:last-child { border-bottom: 1px solid var(--line); }

.audience-item::before {
  counter-increment: audience;
  content: counter(audience, decimal-leading-zero);
  color: var(--marker);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.audience-item:nth-child(2) { margin-left: 0; }

.audience-item h3 {
  max-width: 22ch;
  font-size: clamp(21px, 2.4vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.audience-item p {
  max-width: 54ch;
  margin-top: 0;
  font-size: 15px;
}

/* ---------- Story block ---------- */

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
  padding-top: clamp(30px, 4vw, 46px);
  border-top: 1px solid var(--line);
}

.story-block h2 { font-size: clamp(32px, 4.6vw, 58px); max-width: 13ch; }
.story-copy p + p { margin-top: 16px; }
.story-copy .button { margin-top: 28px; }

/* ---------- Interior page headers ---------- */

.page-hero {
  padding-block: clamp(64px, 9vw, 118px);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: end;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(44px, 6.4vw, 80px);
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.page-hero p {
  max-width: 46ch;
  font-size: clamp(16.5px, 1.8vw, 19px);
}

.program-hero-side {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.program-hero-side img {
  width: min(100%, 300px);
  height: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--logo-ground);
}

/* ---------- Feature imagery ---------- */

.feature-media {
  margin: 0 0 clamp(40px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

/* motion 3 of 3 — one very slight drift */
.feature-media img[data-drift] {
  transform: scale(1.05);
  will-change: transform;
}

.method-band .feature-media { border-color: var(--band-line); }

/* ---------- Program rows (The Method page) ---------- */

.program-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) minmax(0, 320px);
  gap: 12px 36px;
  align-items: baseline;
  padding-block: 30px;
  border-top: 1px solid var(--band-line);
}

.program-row:last-child { border-bottom: 1px solid var(--band-line); }

.program-row .weeks {
  color: var(--band-meta);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.program-row h2 {
  color: var(--band-ink);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.program-row.s1 h2 { font-size: clamp(30px, 4.6vw, 54px); }
.program-row.s2 h2 { font-size: clamp(34px, 5.4vw, 64px); }
.program-row.s3 h2 { font-size: clamp(37px, 6.2vw, 76px); }
.program-row.s4 h2 { font-size: clamp(41px, 7.2vw, 90px); color: var(--clay-bright); }
.program-row.s4 .weeks { color: var(--clay-bright); }

.program-row h2 span {
  display: block;
  width: fit-content;
  margin-top: 16px;
  padding: 6px 10px;
  border: 1px solid var(--band-chip-line);
  border-radius: var(--control-radius);
  color: var(--band-chip-ink);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.program-row p {
  max-width: 56ch;
  color: var(--band-body);
  font-size: 14.5px;
}

/* ---------- Included list ---------- */

.included-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 88px);
}

.included-grid h2 { font-size: clamp(31px, 4.4vw, 54px); max-width: 11ch; }
.included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }

.included-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.included-item strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.included-item span { display: block; margin-top: 6px; font-size: 14.5px; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 0; max-width: 900px; }

.faq details {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: none;
}

.faq details:last-of-type { border-bottom: 1px solid var(--line); }

.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 20px 56px 20px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 15px;
  color: var(--marker);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
}

.faq details[open] summary::after { content: "\2013"; }
.faq details p { max-width: 68ch; padding: 0 56px 24px 0; font-size: 15.5px; }

/* ---------- About ---------- */

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.about-photo { margin: 0; border: 1px solid var(--line); }

.about-photo img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center 17%;
  border-radius: 0;
  box-shadow: none;
}

.long-copy { max-width: 64ch; }
.long-copy p { font-size: clamp(16.5px, 1.7vw, 19px); }
.long-copy p + p { margin-top: 20px; }
.long-copy strong { color: var(--ink); font-weight: 700; }

/* credentials as hairline rows */
.credential-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  counter-reset: credential;
}

.credential {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 8px 36px;
  align-items: baseline;
  min-height: 0;
  padding: 26px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: none;
}

.credential:last-child { border-bottom: 1px solid var(--line); }
.credential:first-child { grid-row: auto; display: grid; }

.credential::before {
  counter-increment: credential;
  content: counter(credential, decimal-leading-zero);
  color: var(--marker);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

.credential strong {
  display: block;
  color: var(--ink);
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 780;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.credential p { max-width: 54ch; margin-top: 0; font-size: 15px; }

/* partner logos — square, disciplined neutral frames */
.affiliations {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
}

.affiliation-logo {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 0;
  text-decoration: none;
  transition: border-color 160ms ease;
}

.affiliation-logo:hover { transform: none; border-color: var(--ink); }
.affiliation-logo img { width: 100%; height: auto; object-fit: contain; }

.sod-logo { background: var(--logo-ground-dark); }
.sod-logo img { max-width: 320px; }
.kinder-logo { background: var(--logo-ground); }
.kinder-logo img { max-width: 580px; }

/* ---------- Results ---------- */

.outcome-list { display: grid; gap: 0; }

.outcome {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 8px 36px;
  align-items: baseline;
  padding-block: 26px;
  border-top: 1px solid var(--line);
}

.outcome:last-child { border-bottom: 1px solid var(--line); }

.outcome .number {
  color: var(--marker);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.outcome h2 {
  max-width: 22ch;
  font-size: clamp(21px, 2.4vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.outcome p { max-width: 54ch; font-size: 15px; }

.measure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.measure-grid h2 { font-size: clamp(31px, 4.4vw, 54px); max-width: 11ch; }
.measure-copy p + p { margin-top: 16px; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
}

.contact-card {
  min-height: 340px;
  padding: clamp(28px, 4.5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-card + .contact-card { border-left: 0; }

.contact-card.primary {
  background: var(--band);
  color: var(--band-body);
  border-color: var(--band);
}

.contact-card.primary h2 { color: var(--band-ink); }
.contact-card.primary p { color: var(--band-body); }
.contact-card h2 { font-size: clamp(28px, 3.6vw, 44px); max-width: 11ch; }
.contact-card p { max-width: 42ch; margin-top: 16px; font-size: 15.5px; }
.contact-card .button, .contact-email { margin-top: auto; }

.contact-card.primary .button {
  background: var(--band-ink);
  color: var(--band);
  border-color: var(--band-ink);
}

.contact-card.primary .button:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--clay-text);
}

.contact-email { display: grid; gap: 6px; }

.contact-link {
  display: inline-block;
  color: var(--ink);
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 780;
  letter-spacing: -0.03em;
}

.contact-email span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 88px);
}

.prep-grid h2 { font-size: clamp(31px, 4.4vw, 54px); max-width: 11ch; }
.prep-list { display: grid; gap: 0; counter-reset: prep; }

.prep-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 6px 36px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: none;
}

.prep-item:last-child { border-bottom: 1px solid var(--line); }

.prep-item::before {
  counter-increment: prep;
  content: counter(prep, decimal-leading-zero);
  grid-row: span 2;
  color: var(--marker);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.prep-item strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.prep-item p { margin-top: 6px; font-size: 15px; }

/* ---------- Closing CTA band ---------- */

.cta-section {
  padding-block: clamp(72px, 10vw, 118px);
  background: var(--band);
  color: var(--band-body);
}

.cta-box {
  padding: 0;
  border-radius: 0;
  background: none;
  text-align: center;
}

.cta-box h2 {
  max-width: 16ch;
  margin-inline: auto;
  color: var(--band-ink);
  font-size: clamp(34px, 4.8vw, 60px);
  letter-spacing: -0.042em;
}

.cta-box p {
  max-width: 46ch;
  margin: 18px auto 30px;
  color: var(--band-body);
  font-size: 16.5px;
}

.cta-box .button-row { justify-content: center; }

/* the closing CTA is the second and last place clay appears */
.cta-box .button {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--clay-text);
}

.cta-box .button:hover {
  background: var(--clay-hover);
  border-color: var(--clay-hover);
}

.cta-box .button.secondary {
  background: transparent;
  border-color: var(--band-chip-line);
  color: var(--band-ink);
}

.cta-box .button.secondary:hover {
  background: transparent;
  border-color: var(--band-ink);
  color: var(--band-ink);
}

/* ---------- Footer ---------- */

.site-footer {
  padding-block: 56px 30px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 44px;
}

.footer-brand {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-copy { max-width: 42ch; margin-top: 14px; font-size: 14px; }

.footer-label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li + li { margin-top: 8px; }
.footer-links a { color: var(--body); font-size: 14px; }

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
}

/* ---------- Reduced motion / transparency ---------- */

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .hero-copy > *, .hero-photo img { opacity: 1; transform: none; }
  [data-stage].will-stage { opacity: 1; transform: none; }
  .feature-media img[data-drift] { transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .menu-button { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 20px var(--gutter) 30px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.button) { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .site-nav a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 20px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr); gap: 32px; }
  .hero-photo { min-height: 480px; }
  .method-step, .program-row { grid-template-columns: 108px minmax(0, 1fr); }
  .method-body, .program-row p { grid-column: 2; }
  .audience-item, .outcome, .credential { grid-template-columns: 52px minmax(0, 1fr); }
  .audience-item p, .outcome p, .credential p { grid-column: 2; }
  .included-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding-block: 60px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); padding-inline: 0; gap: 0; }
  .hero-copy { padding: 44px var(--gutter) 42px; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 62px); }
  .hero-copy > p { margin-block: 18px 26px; }
  .hero-photo { min-height: min(92vw, 440px); }
  .page-hero-grid, .story-block, .about-intro, .included-grid, .measure-grid, .prep-grid { grid-template-columns: minmax(0, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); text-align: left; }
  .trust-item:last-child { border-bottom: 0; }
  .method-step, .program-row { grid-template-columns: minmax(0, 1fr); gap: 8px; padding-block: 24px; }
  .method-body, .program-row p { grid-column: auto; }
  .method-note { padding-top: 28px; }
  .audience-item, .outcome, .credential, .prep-item { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .audience-item p, .outcome p, .credential p, .prep-item p, .prep-item strong { grid-column: auto; }
  .prep-item::before { grid-row: auto; }
  .page-hero { padding-block: 62px; }
  .page-hero p { margin-top: 20px; }
  .affiliations { grid-template-columns: 1fr; }
  .affiliation-logo { min-height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 300px; }
  .contact-card + .contact-card { border-left: 1px solid var(--line); border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-base { flex-direction: column; gap: 8px; }
}

@media (max-width: 440px) {
  .brand span { display: none; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; white-space: normal; }
}
