/* ============================================================
   HEAVY HITTERS PROJECT — Direction B (revised)
   Crisis pattern preview build.

   Palette — pivoted from stage-black + saturated amber to a
   calmer scheme aligned with established mental-health UI
   conventions (988 Lifeline, Crisis Text Line, NAMI), built
   on top of HHP's existing brand navy so the new identity is
   continuous with the old, not a replacement.

   --slate      : slate navy (HHP brand, warmed)   dominant ground
   --slate-2    : slate navy darker variant         section breaks
   --bone       : warm cream                        type
   --bone-dim   : warm cream, secondary             labels, dates
   --lamp       : lamp gold (drawn from crest rope) signature accent
   --lamp-deep  : lamp gold, hover/active           interaction states
   --hachi      : hachi red (HHP)                   reserved, Hachi Fund only
   --crest-gold : crest gold (HHP)                  used only on the crest
   --rule       : low-contrast divider line
============================================================ */
:root {
  --slate: #142139;
  --slate-2: #0E1828;
  --bone: #EFE7D4;
  --bone-dim: #BCB5A0;
  --lamp: #C99450;
  --lamp-deep: #A87A3D;
  --hachi: #9E2B1F;
  --crest-gold: #C9A24C;
  --rule: rgba(239, 231, 212, 0.14);
  /* Height of the sticky crisis bar. Used to offset in-page
     anchor jumps so they land flush with the bottom of the bar,
     not in a blank zone above the section's running head. */
  --sticky-top: 104px;

  /* Legacy aliases — let any remaining old references resolve
     without breaking. Will be removed when the design is settled. */
  --stage: var(--slate);
  --stage-2: var(--slate-2);
  --card: var(--bone);
  --card-dim: var(--bone-dim);
  --amber: var(--lamp);
  --amber-deep: var(--lamp-deep);
  --coffee: var(--slate-2);
  --navy: var(--slate);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchor jumps land just below the sticky crisis bar. We use
     scroll-padding-top alone (not stacked with scroll-margin-top
     on each target) so the offsets don't sum and over-shoot. */
  scroll-padding-top: var(--sticky-top);
}
@media (max-width: 880px) { :root { --sticky-top: 184px; } }
@media (max-width: 620px) { :root { --sticky-top: 244px; } }
body {
  background: var(--stage);
  color: var(--card);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

/* Skip link — must be present for a sticky-header layout */
.skip {
  position: absolute;
  left: 0; top: 0;
  padding: 12px 18px;
  background: var(--amber);
  color: var(--stage);
  font-weight: 700;
  transform: translateY(-110%);
  transition: transform 200ms ease;
  z-index: 1000;
}
.skip:focus { transform: translateY(0); }

/* ============================================================
   THE CRISIS BAR
   The most important pattern on the site. Sticky to top of
   every page, structural rather than promotional. Two-row on
   desktop, collapses on long scroll, wraps on mobile.
============================================================ */
.crisis-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px 26px;
  background: var(--stage);
  border-bottom: 1px solid var(--rule);
  /* Subtle inner top rule — a small craft signal in the spirit
     of a record-sleeve heading. */
  box-shadow: inset 0 1px 0 rgba(201, 148, 80, 0.15);
  /* No transition on the compact toggle. Animating padding while
     labels snap via display:none created visible jitter on scroll.
     The class swap is instant and reads as a clean compaction. */
}

/* Home link — the HHP crest rendered as a single-ink stamp.
   Uses CSS mask so the same PNG can be flat-filled with the
   card-stock cream, matching the bar's typographic ink. */
.crisis-bar__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  transition: border-color 200ms ease, transform 200ms ease;
}
.crisis-bar__home:hover {
  border-color: rgba(201, 148, 80, 0.55);
  transform: rotate(-3deg);
}
.crisis-bar__home:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.crisis-bar__seal {
  display: block;
  width: 26px; height: 26px;
  /* The crest at small scale reads as a printed label-mark.
     A slight desaturation pushes it toward the "back-of-the-
     record-sleeve" treatment without losing brand color. */
  filter: saturate(0.88) brightness(1.02);
  border-radius: 50%;
}

.crisis-bar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 6px;
  min-width: 0;
}

/* Eyebrow — the "studio is always open" line, set as a kicker.
   Card-stock cream, small, tracked. The on-air dot is the
   signature mark of the entire site — appears here at the
   same scale, same color, same animation it has elsewhere. */
.crisis-bar__eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--card-dim);
}
.on-air__label { white-space: nowrap; }

/* The on-air light — the signature device. Reused unchanged
   anywhere on the site that "a person is here right now." */
.on-air {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 2px rgba(201, 148, 80, 0.18), 0 0 12px rgba(201, 148, 80, 0.55);
  animation: on-air-breath 2400ms ease-in-out infinite;
}
@keyframes on-air-breath {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(201, 148, 80, 0.10), 0 0 8px rgba(201, 148, 80, 0.35);
    transform: scale(0.95);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(201, 148, 80, 0.22), 0 0 18px rgba(201, 148, 80, 0.75);
    transform: scale(1.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .on-air { animation: none; }
}

/* Resources list — the actual phone numbers and text codes. */
.crisis-bar__resources {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 22px;
}
.crisis-bar__resources li {
  position: relative;
  padding-right: 22px;
}
.crisis-bar__resources li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: var(--rule);
}
.crisis-bar__resources li:last-child { padding-right: 0; }
.crisis-bar__resources li:last-child::after { display: none; }

.crisis-bar__resources a {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}
.crisis-bar__resources a:hover,
.crisis-bar__resources a:focus-visible {
  border-bottom-color: var(--amber);
  color: var(--amber);
  outline: none;
}

.r-num {
  font-family: 'Roboto Slab', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  color: var(--card);
  white-space: nowrap;
}
.r-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--card-dim);
  white-space: nowrap;
}

/* Veterans line — drawn slightly heavier as it's the line
   most likely to be the right route for HHP's primary audience.
   No color callout — committed to one accent (amber) only. */
.crisis-bar__resources li.vet .r-num { color: var(--card); }
.crisis-bar__resources li.vet a:hover .r-num { color: var(--amber); }

/* Discord — the only outbound to a "talk to a person" channel,
   styled as a verb rather than a number. The arrow signals
   leaving the page. */
.crisis-bar__resources li.discord .r-num::after {
  content: " \2192";
  color: var(--amber);
  font-weight: 800;
}

/* Compact state — triggered by JS after scroll threshold.
   Bar slims to a single row, eyebrow line collapses, resources
   shrink. Keeps every line tappable. */
.crisis-bar.is-compact {
  padding: 8px 26px;
}
.crisis-bar.is-compact .crisis-bar__inner {
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 22px;
  row-gap: 0;
}
.crisis-bar.is-compact .crisis-bar__eyebrow .on-air__label {
  display: none;
}
.crisis-bar.is-compact .r-label {
  display: none;
}
.crisis-bar.is-compact .r-num {
  font-size: 13.5px;
}
.crisis-bar.is-compact .crisis-bar__home {
  width: 30px; height: 30px;
}
.crisis-bar.is-compact .crisis-bar__seal {
  width: 20px; height: 20px;
}

/* Mobile: the bar must remain functional. Resources wrap into
   two rows; the eyebrow stays; the home seal stays. The on-air
   dot is the anchor everything else orbits. */
@media (max-width: 880px) {
  .crisis-bar { padding: 12px 16px; gap: 14px; }
  .crisis-bar__resources { gap: 4px 16px; }
  .crisis-bar__resources li { padding-right: 16px; }
  .crisis-bar__resources li::after { height: 18px; }
  .r-num { font-size: 14px; }
  .r-label { font-size: 9.5px; letter-spacing: 0.05em; }
}
@media (max-width: 620px) {
  /* Mobile: a much tighter bar. The 2x2 resource grid was a third
     of the viewport; single-row inline labels cut it roughly in
     half. Resource rows use a thin rule between them, so they
     read like a printed contact card. */
  .crisis-bar {
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 10px;
    row-gap: 4px;
    padding: 10px 14px;
  }
  .crisis-bar__home {
    width: 28px; height: 28px;
    margin-top: 2px;
  }
  .crisis-bar__seal { width: 18px; height: 18px; }
  .crisis-bar__inner { row-gap: 4px; }
  .crisis-bar__eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.20em;
    gap: 8px;
  }
  .on-air { width: 7px; height: 7px; }

  .crisis-bar__resources {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .crisis-bar__resources li {
    padding: 4px 0;
    border-left: 0;
    border-bottom: 1px solid var(--rule);
  }
  .crisis-bar__resources li:last-child { border-bottom: 0; }
  .crisis-bar__resources li::after { display: none; }
  .crisis-bar__resources a {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    padding: 1px 0;
    border-bottom: 0;
  }
  .r-num {
    font-size: 12.5px;
    flex: 0 0 auto;
  }
  .r-label {
    font-size: 9px;
    letter-spacing: 0.04em;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
    min-width: 0;
    color: var(--bone-dim);
  }
  /* Mobile already runs the most compact layout — disable the
     scroll-driven compact swap (it was the source of jitter on
     touch scroll). */
  .crisis-bar.is-compact { padding: 10px 14px; }
  .crisis-bar.is-compact .on-air__label,
  .crisis-bar.is-compact .r-label { display: inline; }
  .crisis-bar.is-compact .r-num { font-size: 12.5px; }
  .crisis-bar.is-compact .crisis-bar__home { width: 28px; height: 28px; }
  .crisis-bar.is-compact .crisis-bar__seal { width: 18px; height: 18px; }
}

/* ============================================================
   PAGE NAV — the site's own header, below the crisis bar.
   The HHP crest appears here in full color at small scale.
============================================================ */
.page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--rule);
  background: var(--stage);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand__crest {
  width: 44px; height: 44px;
  display: block;
}
.brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__wordmark > span:first-child {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--card);
}
.brand__since {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--card-dim);
  margin-top: 2px;
}
.page-nav__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.page-nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--card);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-nav__links a:hover,
.page-nav__links a:focus-visible {
  border-bottom-color: var(--amber);
  outline: none;
}
.page-nav__links .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(201,148,80,0.55);
}
.page-nav__links .cta {
  padding: 10px 18px;
  border: 1px solid var(--card);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.page-nav__links .cta:hover {
  background: var(--card);
  color: var(--stage);
  border-color: var(--card);
  border-bottom-color: var(--card);
}
@media (max-width: 880px) {
  .page-nav { padding: 16px 18px; gap: 16px; flex-wrap: wrap; }
  .brand__crest { width: 36px; height: 36px; }
  .brand__wordmark > span:first-child { font-size: 16px; }
  .page-nav__links { gap: 16px; flex-wrap: wrap; }
}

/* ============================================================
   HERO — included so the crisis bar can be reviewed in
   context. Type-only full-bleed (Archetype H2). The display
   words bleed past the gutter in Anton, the way a stacked
   title card looks on a Reid Miles sleeve.
============================================================ */
.hero {
  position: relative;
  padding: 96px 32px 72px;
  max-width: 1180px;
  margin: 0 auto;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--card-dim);
}
.hero__title {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 11.5vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--card);
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__title-2 { color: var(--amber); padding-left: 0.18em; }
.hero__title-3 { padding-left: 0.34em; }
.hero__title-4 { padding-left: 0.07em; }
.hero__title-5 { padding-left: 0.42em; }

.hero__sub {
  max-width: 58ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--card);
  margin: 0 0 32px;
}
.hero__byline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--card-dim);
}
.hero__byline .rule {
  width: 48px;
  height: 1px;
  background: var(--card-dim);
}

/* ============================================================
   SLAB UTILITY — T1 single-word highlight. Used twice on the
   home (hero "talk" in Hachi red, Stand With Us "with" in
   lamp gold). Slight rotation, pressed-stamp shadow.
============================================================ */
.slab {
  display: inline-block;
  background: var(--slab-color, var(--lamp));
  color: var(--slate);
  padding: 0.02em 0.14em 0.07em;
  margin: 0 0.04em;
  transform: rotate(-1.3deg) translateY(-0.03em);
  box-shadow: 0 0.06em 0 rgba(0, 0, 0, 0.22);
  border-radius: 2px;
}
.slab--hachi { --slab-color: var(--hachi); color: var(--bone); }
.slab--gold  { --slab-color: var(--lamp);  color: var(--slate); }

/* ============================================================
   SHARED — section width, running heads, buttons, helpers.
============================================================ */
.section-title {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 14ch;
}
.section-title.section-title--quiet {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.014em;
  text-transform: none;
  max-width: 22ch;
  font-weight: 800;
}
.section-title .amber { color: var(--lamp); }
.section-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--bone);
  max-width: 62ch;
  margin: 0 0 56px;
}

.running-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding-bottom: 14px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.running-head > span:last-child { color: var(--bone-dim); opacity: 0.7; }

/* Buttons — Direction B treatment. T22 (depressing) on the
   primary, ghost for tertiary. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--bone);
  color: var(--bone);
  background: transparent;
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 120ms ease, border-color 180ms ease;
}
.btn:hover {
  background: var(--bone);
  color: var(--slate);
}
.btn:active { transform: translateY(1px); }
.btn--ghost {
  border-color: var(--rule);
  color: var(--bone-dim);
}
.btn--ghost:hover {
  background: transparent;
  border-color: var(--lamp);
  color: var(--lamp);
}
.btn--solid {
  background: var(--bone);
  color: var(--slate);
  border-color: var(--bone);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.28);
}
.btn--solid:hover { transform: translateY(-1px); box-shadow: 0 6px 0 rgba(0, 0, 0, 0.34); }
.btn--solid:active { transform: translateY(3px); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.32); }
.btn--hachi {
  background: var(--hachi);
  color: var(--bone);
  border-color: var(--hachi);
  box-shadow: 0 5px 0 #6F1E15;
}
.btn--hachi:hover { background: #B53626; border-color: #B53626; transform: translateY(-1px); box-shadow: 0 6px 0 #6F1E15; }
.btn--hachi:active { transform: translateY(3px); box-shadow: 0 2px 0 #6F1E15; }

/* ============================================================
   MISSION — short prose plus T5 editorial-scale stat row.
============================================================ */
.mission {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 32px 72px;
  border-top: 1px solid var(--rule);
}
.mission__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: start;
}
.mission__lede h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--bone);
  margin: 0 0 22px;
  max-width: 22ch;
}
/* Hand-drawn marker stroke under "been there." Lamp gold,
   wavy, sits behind the text baseline. Editorial highlight
   without the loudness of a slab block. */
.mission__hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.mission__hl-mark {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.16em;
  width: 104%;
  height: 0.34em;
  color: var(--lamp);
  opacity: 0.85;
  pointer-events: none;
  overflow: visible;
}
.mission__lede p {
  margin: 0;
  max-width: 56ch;
  color: var(--bone);
  font-size: 17.5px;
  line-height: 1.6;
}
.mission__facts {
  margin: 0;
  display: grid;
  gap: 28px;
  border-left: 1px solid var(--rule);
  padding-left: 32px;
}
.mission__facts > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.mission__facts dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 6px;
}
.mission__facts dd {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.mission__facts dd .unit {
  font-family: 'Roboto Slab', serif;
  font-size: 0.42em;
  vertical-align: 0.6em;
  letter-spacing: 0.06em;
  color: var(--lamp);
}
.mission__facts dd.note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bone-dim);
  margin-top: 6px;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .mission { padding: 56px 20px; }
  .mission__grid { grid-template-columns: 1fr; gap: 40px; }
  .mission__facts { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 32px; }
}

/* ============================================================
   WEDNESDAY NIGHTS — two programs (Twitch, Discord).
   Each card has the lamp dot live-indicator system.
============================================================ */
.wednesday {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 32px 72px;
  border-top: 1px solid var(--rule);
}
.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.program {
  background: var(--slate-2);
  border: 1px solid var(--rule);
  padding: 40px;
  position: relative;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease;
}
.program:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 148, 80, 0.32);
}
.program header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.program__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lamp);
}
.program__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 4px;
}
.program__sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0 0 24px;
}
.program__body {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--bone);
  margin: 0 0 32px;
  max-width: 42ch;
}
.program__actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .wednesday { padding: 56px 20px; }
  .program-row { grid-template-columns: 1fr; }
  .program { padding: 28px; }
}

/* ============================================================
   THE HACHI FUND — Hachi red gets its first context.
   T3 watermark "HACHI" behind. Diptych: story + apply.
============================================================ */
.hachi {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 32px 72px;
  border-top: 1px solid var(--rule);
}
/* Section lead — replaces the old HACHI watermark. The section's
   purpose is now the visual anchor of the block, not a faded
   decorative word. Big condensed Anton at display scale, sits
   above the body/apply grid so the user landing here sees a
   clear identifier the moment they arrive. */
.hachi__lead {
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  color: var(--bone);
}
.hachi__lead > span:last-child { color: var(--hachi); }

.hachi__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 72px;
  align-items: start;
}
.hachi__tagline {
  margin: 0 0 28px;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--lamp);
  max-width: 30ch;
}
.hachi__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--bone);
  margin: 0 0 18px;
  max-width: 52ch;
}
/* The apply card — cream paper pinned to the slate. The pin,
   the handwritten eyebrow, the hand-drawn marker underline,
   and the rubber-stamp corner are deliberate moves AGAINST
   the VA.gov template grammar (navy + red + Roboto + box).
   Every tactile element reads as a real human document. */
.hachi__apply {
  position: relative;
  background: var(--bone);
  color: var(--slate);
  padding: 56px 40px 60px;
  border-radius: 2px;
  box-shadow:
    0 36px 70px -10px rgba(0, 0, 0, 0.55),
    0 12px 24px rgba(0, 0, 0, 0.22),
    0 2px 4px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(20, 33, 57, 0.06);
  transform: rotate(1.2deg);
  overflow: visible;
}
/* A piece of masking tape across the top of the card, slightly
   torn at the edges, semi-translucent so the slate ground shows
   through. The card is taped to the page, not "designed" onto
   it. This is the move that breaks the VA.gov form-card
   grammar most decisively. */
/* Dog-eared corner. The top-right of the paper card is clipped
   off, revealing the slate ground behind. A second triangle
   sits in the cutout corner, slightly darker than the paper,
   reading as the folded-back flap of the page. */
.hachi__apply {
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
}
.hachi__apply-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background:
    linear-gradient(
      225deg,
      #C9BDA0 0%,
      #D9CDB0 35%,
      var(--bone) 60%,
      transparent 60%
    );
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(-2px 2px 2px rgba(0, 0, 0, 0.18));
}
.hachi__apply::before {
  /* Faint paper-grain texture so it doesn't read as a flat panel. */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hachi__apply > * { position: relative; z-index: 1; }

.hachi__apply-eyebrow {
  margin: 0 0 8px;
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  color: var(--hachi);
  transform: rotate(-1.4deg);
  transform-origin: left center;
}
.hachi__apply-headline {
  margin: 0 0 14px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--slate);
  max-width: 14ch;
}
.hachi__apply-sub {
  margin: 0 0 28px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--slate);
  opacity: 0.85;
  max-width: 38ch;
}
/* CTA: text plus a hand-drawn SVG marker underline (in Hachi
   red) rather than a geometric border-bottom. Reads as a
   penmark, not a hyperlink rule. */
.hachi__apply-cta {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 800;
  letter-spacing: -0.008em;
  color: var(--slate);
  padding-bottom: 10px;
  transition: gap 220ms ease, color 200ms ease;
  text-decoration: none;
}
.hachi__apply-underline {
  position: absolute;
  left: -4px;
  right: 38px;
  bottom: -2px;
  width: calc(100% - 34px);
  height: 14px;
  color: var(--hachi);
  pointer-events: none;
  overflow: visible;
}
.hachi__apply-cta .hachi__apply-arrow {
  color: var(--hachi);
  font-size: 1.35em;
  font-weight: 700;
  transition: transform 220ms ease;
}
.hachi__apply-cta:hover { gap: 16px; }
.hachi__apply-cta:hover .hachi__apply-arrow { transform: translateX(6px); }
.hachi__apply-note {
  margin: 22px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--slate);
  opacity: 0.62;
  font-style: italic;
}
/* The rubber-stamp mark in the lower-right. Hand-rotated,
   slightly out of register, sits on top of the paper. */
.hachi__apply-stamp {
  position: absolute;
  right: 18px;
  bottom: 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 8px 12px 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hachi);
  border: 1.5px solid var(--hachi);
  transform: rotate(-9deg);
  opacity: 0.72;
  background: transparent;
}
.hachi__support {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--bone-dim);
}
.hachi__support a {
  color: var(--bone);
  border-bottom: 1px solid var(--hachi);
  padding-bottom: 1px;
  transition: color 160ms ease;
}
.hachi__support a:hover { color: var(--hachi); }
@media (max-width: 880px) {
  .hachi { padding: 64px 20px; }
  .hachi__grid { grid-template-columns: 1fr; gap: 40px; }
  .hachi__apply { padding: 28px 24px; }
}

/* ============================================================
   THE CREW — field-guide grid. Real portraits, treated
   with a duotone-style desaturation so they don't read
   as stock headshots.
============================================================ */
.crew {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 32px 72px;
  border-top: 1px solid var(--rule);
}
.crew__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 36px;
}
.crew__card {
  display: grid;
  gap: 18px;
}
.crew__portrait {
  margin: 0;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--slate-2);
  border: 1px solid var(--rule);
}
.crew__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* T41 duotone-ish — desaturate, slight warmth, raise contrast
     so the portraits feel like printed editorial plates rather
     than stock headshots. */
  filter: grayscale(0.88) contrast(1.06) brightness(0.94) sepia(0.18);
  transition: filter 360ms ease, transform 360ms ease;
}
.crew__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,33,57,0.18) 0%, rgba(20,33,57,0.0) 38%, rgba(20,33,57,0.46) 100%);
  pointer-events: none;
}
.crew__card:hover .crew__portrait img {
  filter: grayscale(0.4) contrast(1.04) brightness(1.0) sepia(0.06);
  transform: scale(1.02);
}
.crew__role {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lamp);
}
.crew__name {
  margin: 4px 0 4px;
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.012em;
  color: var(--bone);
}
.crew__service {
  margin: 0 0 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
}
.crew__line {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--bone);
  max-width: 36ch;
}
@media (max-width: 880px) {
  .crew { padding: 56px 20px; }
  .crew__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
}
@media (max-width: 520px) {
  .crew__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   STAND WITH US — one dominant typographic donate moment
   (Anton scale + lamp-gold slab on "with"), then a thin rule,
   then a clean two-column partner/merch row. No boxed cards.
   The intent is to read as editorial type, not government form.
============================================================ */
.stand {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 32px 72px;
  border-top: 1px solid var(--rule);
}

.stand__donate {
  margin-top: 32px;
  display: grid;
  gap: 26px;
  max-width: 820px;
}
.stand__eyebrow {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.stand__headline {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.18em;
  line-height: 0.94;
  color: var(--bone);
}
.stand__h-1,
.stand__h-3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 84px);
  letter-spacing: -0.014em;
  color: var(--bone);
}
.stand__h-2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(96px, 14vw, 188px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.stand__sub {
  margin: 0;
  max-width: 56ch;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--bone);
}
.stand__cta {
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 6px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--bone);
  border-bottom: 3px solid var(--lamp);
  transition: gap 220ms ease, color 200ms ease;
}
.stand__cta-arrow {
  color: var(--lamp);
  font-size: 1.2em;
  font-weight: 700;
  transition: transform 220ms ease;
}
.stand__cta:hover { gap: 20px; }
.stand__cta:hover .stand__cta-arrow { transform: translateX(8px); }
.stand__meta {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.stand__divider {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 64px 0 56px;
}

.stand__secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
.stand__option-tag {
  margin: 0 0 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lamp);
}
.stand__option h3 {
  margin: 0 0 14px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--bone);
  max-width: 22ch;
}
.stand__option p {
  margin: 0 0 18px;
  max-width: 54ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--bone);
}
.stand__option-link {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bone);
  border-bottom: 2px solid var(--lamp);
  padding-bottom: 3px;
  transition: gap 200ms ease, color 200ms ease;
}
.stand__option-link span { color: var(--lamp); font-size: 1.2em; transition: transform 200ms ease; }
.stand__option-link:hover { gap: 14px; }
.stand__option-link:hover span { transform: translateX(4px); }
.stand__option-note {
  margin: 18px 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

@media (max-width: 880px) {
  .stand { padding: 56px 20px; }
  .stand__divider { margin: 48px 0 40px; }
  .stand__secondary { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   FROM ROBERT'S DESK — A4 first-person letter +
   A7 founder's note. Cream sheet over slate so it reads
   like an actual letter. The crest watermarks behind
   the signature.
============================================================ */
.letter {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 32px 72px;
  border-top: 1px solid var(--rule);
}
.letter__sheet {
  position: relative;
  background: var(--bone);
  color: var(--slate);
  padding: 64px 64px 88px;
  border-radius: 2px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.32),
    0 6px 12px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(20, 33, 57, 0.08);
  overflow: hidden;
}
.letter__sheet::before {
  /* Faint paper grain — barely perceptible texture. */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.letter__sheet::after {
  /* The crest watermark behind the signature. */
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 320px;
  height: 320px;
  background: url("../assets/crest-square.png") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.letter__sheet > * { position: relative; z-index: 1; }
.letter__open {
  font-family: 'Caveat', cursive;
  font-size: 38px;
  margin: 0 0 18px;
  color: var(--slate);
}
.letter__sheet p {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0 0 18px;
  max-width: 62ch;
}
.letter__signoff {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.letter__signature {
  font-family: 'Caveat', cursive;
  font-size: 56px;
  line-height: 1;
  color: var(--hachi);
}
.letter__byline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.7;
}
@media (max-width: 700px) {
  .letter { padding: 56px 16px; }
  .letter__sheet { padding: 36px 28px 56px; }
  .letter__sheet p { font-size: 16.5px; }
  .letter__open { font-size: 30px; }
  .letter__signature { font-size: 42px; }
}

/* ============================================================
   COLOPHON — the institutional seal. The crest appears
   here at full color once, as the back-of-the-sleeve label.
============================================================ */
.colophon {
  background: var(--stage);
  padding: 56px 32px 72px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  max-width: 1180px;
  margin: 64px auto 0;
}
.colophon__seal img {
  width: 88px;
  height: 88px;
  display: block;
}
.colophon__meta { max-width: 64ch; }
.colophon__line {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--card);
}
.colophon__line.muted { color: var(--card-dim); font-size: 13px; }
.colophon__line.muted a {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: border-color 160ms ease, color 160ms ease;
}
.colophon__line.muted a:hover { border-bottom-color: var(--amber); color: var(--amber); }
.colophon__line.tiny {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  line-height: 1.5;
  color: var(--card-dim);
  max-width: 56ch;
}
.colophon__channels {
  list-style: none;
  margin: 18px 0 4px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.colophon__channels a {
  color: var(--bone);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}
.colophon__channels a:hover { color: var(--lamp); border-bottom-color: var(--lamp); }
@media (max-width: 620px) {
  .colophon { grid-template-columns: 1fr; gap: 18px; padding: 36px 18px 48px; }
  .colophon__seal img { width: 64px; height: 64px; }
}

/* ============================================================
   APPLY PAGE — Hachi Fund application.
   Editorial discipline: the whole form sits on a single cream
   paper sheet (echoing the apply card on the home), inputs are
   underline-only so writing them feels like writing on paper,
   not filling a government UI.
============================================================ */
.apply-main { padding-bottom: 96px; }

/* ---------- Layout shell ---------- */
/* Hero + form share one grid column. Sidebar sits next to
   them. The hero's left edge therefore aligns with the form's
   left edge — that was the misalignment users were seeing. */
.apply-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 0;
  align-items: start;
}
.apply-shell__content {
  display: grid;
  gap: 56px;
  min-width: 0;
}

/* ---------- Hero (lives inside shell now) ---------- */
.apply-hero {
  /* No width / margins / padding — the shell handles placement. */
}
.apply-hero__back {
  margin: 0 0 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.apply-hero__back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}
.apply-hero__back a:hover { color: var(--lamp); border-bottom-color: var(--lamp); }
.apply-hero__title {
  margin: 0 0 28px;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: clamp(44px, 6.6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--bone);
  max-width: 16ch;
}
.apply-hero__hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.apply-hero__mark {
  position: absolute;
  left: -1%;
  right: -1%;
  bottom: -0.04em;
  width: 102%;
  height: 0.28em;
  color: var(--lamp);
  opacity: 0.85;
  pointer-events: none;
  overflow: visible;
}
.apply-hero__lede {
  margin: 0 0 36px;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--bone);
  max-width: 62ch;
}
.apply-hero__assurances {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.apply-hero__assurances li { display: flex; gap: 8px; align-items: center; }
.apply-hero__assurances span { color: var(--lamp); }

/* ---------- The form sheet ---------- */
.apply-form {
  position: relative;
  background: var(--bone);
  color: var(--slate);
  padding: 64px 64px 48px;
  border-radius: 2px;
  box-shadow:
    0 40px 80px -16px rgba(0, 0, 0, 0.5),
    0 12px 24px rgba(0, 0, 0, 0.22),
    0 2px 4px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(20, 33, 57, 0.08);
}
.apply-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.apply-form > * { position: relative; z-index: 1; }

/* ---------- Sections within the sheet ---------- */
.apply-section { padding: 12px 0 16px; }
.apply-section__head { margin-bottom: 32px; }
.apply-section__num {
  margin: 0 0 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hachi);
}
.apply-section__title {
  margin: 0 0 6px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.014em;
  color: var(--slate);
}
.apply-section__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate);
  opacity: 0.72;
  max-width: 56ch;
}

.apply-divider {
  border: 0;
  height: 1px;
  background: rgba(20, 33, 57, 0.18);
  margin: 8px 0;
}

/* ---------- Form fields ---------- */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.apply-stack { display: grid; gap: 28px; }
.apply-field { display: flex; flex-direction: column; }
.apply-field--wide { grid-column: 1 / -1; }
.apply-field label {
  margin: 0 0 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.86;
}
.apply-field .req { color: var(--hachi); margin-left: 4px; }
.apply-field .opt {
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  opacity: 0.55;
  margin-left: 6px;
}
.apply-field input[type="text"],
.apply-field input[type="email"],
.apply-field input[type="tel"],
.apply-field input[type="date"],
.apply-field select,
.apply-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--slate);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(20, 33, 57, 0.32);
  padding: 8px 0 10px;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}
.apply-field input::placeholder,
.apply-field textarea::placeholder { color: rgba(20, 33, 57, 0.42); font-style: italic; }
.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
  border-bottom-color: var(--lamp);
  border-bottom-width: 2px;
  background-color: rgba(201, 148, 80, 0.06);
}
.apply-field textarea {
  resize: vertical;
  min-height: 120px;
  padding: 12px 0;
}
.apply-field select {
  padding-right: 32px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--slate) 50%),
    linear-gradient(135deg, var(--slate) 50%, transparent 50%);
  background-position:
    calc(100% - 12px) 18px,
    calc(100% - 6px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.apply-field__hint {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--slate);
  opacity: 0.62;
  font-style: italic;
}

/* ---------- Section 3 file uploads ---------- */
.apply-uploads {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.apply-upload {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 24px;
  padding: 22px 26px;
  background: rgba(20, 33, 57, 0.045);
  border: 1.5px dashed rgba(20, 33, 57, 0.22);
  border-radius: 2px;
}
.apply-upload > label:first-of-type {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: baseline;
  text-transform: none;
  letter-spacing: 0;
  font-family: inherit;
  font-weight: inherit;
  opacity: 1;
  margin: 0;
  cursor: default;
}
.apply-upload__tag {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--hachi);
  color: var(--hachi);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  align-self: center;
}
.apply-upload__title {
  grid-column: 2;
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.008em;
  color: var(--slate);
}
.apply-upload__hint {
  grid-column: 2;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--slate);
  opacity: 0.7;
  margin-top: 2px;
  font-style: italic;
}
.apply-upload input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.apply-upload__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--slate);
  color: var(--bone);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, transform 120ms ease;
  text-decoration: none;
  margin: 0;
  text-transform: uppercase;
  opacity: 1;
}
.apply-upload__btn:hover { background: #243556; }
.apply-upload__btn:active { transform: translateY(1px); }
.apply-upload.is-filled { border-style: solid; border-color: var(--lamp); background: rgba(201, 148, 80, 0.10); }
.apply-upload.is-filled .apply-upload__btn { background: var(--lamp); color: var(--slate); }
.apply-privacy {
  margin: 22px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  font-style: italic;
  color: var(--slate);
  opacity: 0.7;
}

/* ---------- Section 5 signature ---------- */
.apply-agreement {
  margin: 0 0 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--hachi);
  background: rgba(20, 33, 57, 0.04);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--slate);
}
.apply-signature-input {
  font-family: 'Caveat', cursive !important;
  font-size: 32px !important;
  padding-top: 14px !important;
  color: var(--hachi) !important;
}

/* ---------- Submit ---------- */
.apply-submit {
  margin: 56px 0 8px;
  display: grid;
  gap: 14px;
  justify-items: start;
}
.apply-submit__btn {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 14px 4px 18px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.012em;
  color: var(--slate);
  cursor: pointer;
  transition: gap 220ms ease, color 200ms ease;
}
.apply-submit__underline {
  position: absolute;
  left: 0;
  right: 38px;
  bottom: 6px;
  width: calc(100% - 38px);
  height: 14px;
  color: var(--hachi);
  pointer-events: none;
  overflow: visible;
}
.apply-submit__arrow {
  color: var(--hachi);
  font-size: 1.3em;
  font-weight: 700;
  transition: transform 220ms ease;
}
.apply-submit__btn:hover { gap: 20px; }
.apply-submit__btn:hover .apply-submit__arrow { transform: translateX(8px); }
.apply-submit__note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
  opacity: 0.72;
  font-style: italic;
  max-width: 56ch;
}

/* ---------- Thanks state ---------- */
.apply-thanks {
  margin-top: 32px;
  padding: 32px 28px;
  background: rgba(201, 148, 80, 0.10);
  border-left: 3px solid var(--lamp);
}
.apply-thanks__eyebrow {
  margin: 0 0 8px;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--hachi);
}
.apply-thanks h2 {
  margin: 0 0 12px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--slate);
}
.apply-thanks p { margin: 0 0 10px; color: var(--slate); font-size: 15.5px; line-height: 1.6; }
.apply-thanks p:last-child { margin-bottom: 0; }

/* ---------- Sidebar ---------- */
.apply-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 200px;
}
.apply-aside-card {
  padding: 24px 24px 22px;
  background: var(--slate-2);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--lamp);
}
.apply-aside-card__num {
  margin: 0 0 8px;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--lamp);
}
.apply-aside-card h3 {
  margin: 0 0 12px;
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--bone);
}
.apply-aside-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: aside-step;
}
.apply-aside-card ol li {
  counter-increment: aside-step;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--bone);
}
.apply-aside-card ol li:last-child { border-bottom: 0; }
.apply-aside-card ol li::before {
  content: counter(aside-step, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--lamp);
  padding-top: 3px;
}
.apply-aside-card p, .apply-aside-card address {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--bone);
  font-style: normal;
}
.apply-aside-card a {
  color: var(--bone);
  border-bottom: 1px solid var(--lamp);
  padding-bottom: 1px;
  transition: color 160ms ease;
}
.apply-aside-card a:hover { color: var(--lamp); }
.apply-aside-card__cta {
  margin-top: 8px;
}
.apply-aside-card__cta a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 15px;
  border-bottom-width: 2px;
}
.apply-aside-card__cta a span { color: var(--lamp); transition: transform 200ms ease; }
.apply-aside-card__cta a:hover span { transform: translateX(4px); }

/* ---------- Mobile ---------- */
@media (max-width: 1080px) {
  .apply-shell { grid-template-columns: 1fr; gap: 36px; }
  .apply-side { position: static; }
}
@media (max-width: 720px) {
  .apply-shell { padding: 32px 18px 0; gap: 28px; }
  .apply-shell__content { gap: 36px; }
  .apply-form { padding: 36px 28px 36px; }
  .apply-grid { grid-template-columns: 1fr; gap: 24px; }
  .apply-upload { grid-template-columns: 1fr; }
  .apply-upload__btn { justify-self: start; }
  .apply-signature-input { font-size: 26px !important; }
}

/* ============================================================
   SHARED — page-level helpers used by donate & wednesdays.
============================================================ */
/* Nav current state — TWO treatments:
   - Regular text links get lamp-gold color + a solid lamp-gold
     underline. No background fill (a fill at the text width
     reads like a UI bug since the link has no horizontal padding).
   - The CTA pill (Stand With Us) when current gets a solid
     cream fill with slate text. Specificity is forced higher
     than .page-nav__links a so the color override actually wins. */
.page-nav__links a.current:not(.cta) {
  color: var(--lamp);
  border-bottom-color: var(--lamp);
  border-bottom-width: 2px;
}
.page-nav__links a.current:not(.cta):hover {
  color: var(--lamp);
  border-bottom-color: var(--lamp);
}
.page-nav__links a.cta.cta--current {
  background: var(--bone);
  color: var(--slate);
  border-color: var(--bone);
  border-bottom-color: var(--bone);
}
.page-nav__links a.cta.cta--current:hover {
  background: var(--lamp);
  color: var(--slate);
  border-color: var(--lamp);
}

.donate-h2,
.wed-h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.014em;
  color: var(--bone);
  margin: 0 0 22px;
  max-width: 22ch;
}
.donate-section-lede,
.wed-section-lede {
  margin: 0 0 48px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--bone);
  max-width: 60ch;
}

/* Hand-drawn marker stroke utility, used on subheads and
   accent words. Same SVG technique as on the apply page and
   home page so the three pages share a vocabulary. */
.donate-hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.donate-hl-mark {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.14em;
  width: 104%;
  height: 0.32em;
  color: var(--lamp);
  opacity: 0.85;
  pointer-events: none;
  overflow: visible;
}

/* ============================================================
   DONATE PAGE
============================================================ */
.donate-main { padding-bottom: 96px; }

.donate-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 72px;
}
.donate-hero__title {
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  line-height: 0.94;
  color: var(--bone);
}
.donate-hero .dh-1,
.donate-hero .dh-3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 84px);
  letter-spacing: -0.014em;
  line-height: 1.02;
}
.donate-hero .dh-2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(96px, 14vw, 188px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.donate-hero__lede {
  margin: 0;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--bone);
  max-width: 64ch;
}

/* ---- Amounts grid ---- */
.donate-amounts {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 72px;
  border-top: 1px solid var(--rule);
}
.amounts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.amount-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px 26px;
  background: var(--slate-2);
  border: 1px solid var(--rule);
  color: var(--bone);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease, background 220ms ease;
}
.amount-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 148, 80, 0.55);
}
.amount-card__val {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.amount-card__use {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--bone-dim);
  max-width: 24ch;
}
.amount-card__tag {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--lamp);
  padding: 4px 8px;
}
.amount-card--featured {
  background: var(--bone);
  color: var(--slate);
  border-color: var(--lamp);
}
.amount-card--featured .amount-card__val { color: var(--slate); }
.amount-card--featured .amount-card__use { color: var(--slate); opacity: 0.78; }
.amount-card--custom { border-style: dashed; }
.amount-card--custom .amount-card__val { color: var(--lamp); }
@media (max-width: 880px) {
  .donate-amounts { padding: 48px 18px; }
  .amounts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .amounts-grid { grid-template-columns: 1fr; }
}

/* ---- Where it goes ---- */
.donate-where {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 64px;
  border-top: 1px solid var(--rule);
}
.where-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.where-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.where-row:last-child { border-bottom: 0; }
.where-row__num {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--lamp);
}
.where-row__title {
  margin: 0 0 10px;
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.where-row__body {
  margin: 0;
  grid-column: 2;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--bone);
  max-width: 56ch;
}
.where-row__split {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-align: right;
}
.where-row__split strong {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.86;
  color: var(--lamp);
}
.where-note {
  margin: 28px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--bone-dim);
  font-style: italic;
}
@media (max-width: 880px) {
  .donate-where { padding: 48px 18px; }
  .where-row {
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-areas: "num title" "num body" ". split";
    column-gap: 18px;
    row-gap: 6px;
  }
  .where-row__num { grid-area: num; font-size: 36px; }
  .where-row__title { grid-area: title; }
  .where-row__body { grid-area: body; grid-column: auto; }
  .where-row__split { grid-area: split; text-align: left; flex-direction: row; align-items: baseline; gap: 8px; }
  .where-row__split strong { font-size: 28px; }
}

/* ---- Other ways grid ---- */
.donate-other {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 64px;
  border-top: 1px solid var(--rule);
}
.other-grid {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.other-card {
  padding: 28px 26px;
  background: var(--slate-2);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--lamp);
}
.other-card__tag {
  margin: 0 0 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lamp);
}
.other-card h3 {
  margin: 0 0 14px;
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--bone);
  max-width: 22ch;
}
.other-card h3 em {
  font-style: italic;
  color: var(--lamp);
  font-weight: 800;
}
.other-card__address,
.other-card__body {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bone);
  font-style: normal;
}
.other-card__note {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--bone-dim);
  font-style: italic;
}
.other-card__meta {
  margin: 12px 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lamp);
}
.other-contact {
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  color: var(--bone);
}
.other-contact a {
  color: var(--bone);
  border-bottom: 1px solid var(--lamp);
  padding-bottom: 1px;
  transition: color 160ms ease;
}
.other-contact a:hover { color: var(--lamp); }
@media (max-width: 880px) {
  .donate-other { padding: 48px 18px; }
  .other-grid { grid-template-columns: 1fr; }
}

/* ---- Trust block ---- */
.donate-trust {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  border-top: 1px solid var(--rule);
}
.trust-grid {
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.trust-stat__label {
  margin: 0 0 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.trust-stat__val {
  margin: 0 0 10px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.trust-stat__note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--bone-dim);
  max-width: 28ch;
}
@media (max-width: 880px) {
  .donate-trust { padding: 48px 18px 16px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ============================================================
   WEDNESDAYS PAGE
============================================================ */
.wed-main { padding-bottom: 96px; }

.wed-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 56px;
}
.wed-hero__title {
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  line-height: 0.94;
  color: var(--bone);
}
.wed-hero .wh-1,
.wed-hero .wh-3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 84px);
  letter-spacing: -0.014em;
  line-height: 1.02;
}
.wed-hero .wh-2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.wed-hero__lede {
  margin: 0 0 36px;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--bone);
  max-width: 64ch;
}

/* Status card — Live or countdown to next Wednesday. */
.wed-status {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--slate-2);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--lamp);
  max-width: 720px;
}
.wed-status[data-state="live"] { border-left-color: var(--hachi); }
.wed-status__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lamp);
}
.wed-status[data-state="live"] .wed-status__eyebrow { color: var(--hachi); }
.wed-status__countdown {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 5.6vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.018em;
  color: var(--bone);
}
.wed-status__time {
  margin: 0;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: var(--bone-dim);
}
.wed-status__actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wed-status__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--rule);
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--bone);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease;
}
.wed-status__btn:hover { border-color: var(--lamp); color: var(--lamp); }
.wed-status__btn:active { transform: translateY(1px); }
.wed-status__btn--primary { background: var(--bone); color: var(--slate); border-color: var(--bone); }
.wed-status__btn--primary:hover { background: var(--lamp); border-color: var(--lamp); color: var(--slate); }
.wed-status__btn--ghost { background: transparent; }

/* ---- What it is ---- */
.wed-what {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 56px;
  border-top: 1px solid var(--rule);
}
.wed-format {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.wed-format li {
  padding: 24px 26px;
  background: var(--slate-2);
  border: 1px solid var(--rule);
}
.wed-format__tag {
  margin: 0 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lamp);
}
.wed-format li p:not(.wed-format__tag) {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--bone);
}
@media (max-width: 880px) {
  .wed-what { padding: 48px 18px; }
  .wed-format { grid-template-columns: 1fr; }
}

/* ---- Archive list ---- */
.wed-archive {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 56px;
  border-top: 1px solid var(--rule);
}
.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive-row {
  display: grid;
  grid-template-columns: 88px 160px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.archive-row:hover { background: rgba(201, 148, 80, 0.04); }
.archive-row__ep {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--lamp);
}
.archive-row__date {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.archive-row__title {
  margin: 0 0 4px;
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.archive-row__meta {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--bone-dim);
}
.archive-row__links {
  margin: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.archive-row__links a {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid var(--lamp);
  padding-bottom: 3px;
  transition: color 160ms ease, gap 160ms ease;
}
.archive-row__links a:hover { color: var(--lamp); gap: 9px; }
.archive-more {
  margin: 32px 0 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--bone-dim);
}
.archive-more a {
  color: var(--bone);
  border-bottom: 1px solid var(--lamp);
  padding-bottom: 1px;
  transition: color 160ms ease;
}
.archive-more a:hover { color: var(--lamp); }
.archive-more code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  background: var(--slate-2);
  padding: 2px 6px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--lamp);
}
@media (max-width: 880px) {
  .wed-archive { padding: 48px 18px; }
  .archive-row {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "ep date"
      "ep title"
      ". meta"
      ". links";
    column-gap: 16px;
    row-gap: 4px;
  }
  .archive-row__ep { grid-area: ep; font-size: 28px; align-self: center; }
  .archive-row__date { grid-area: date; }
  .archive-row__title { grid-area: title; }
  .archive-row__meta { grid-area: meta; }
  .archive-row__links { grid-area: links; margin-top: 8px; }
}

/* ---- First time guide ---- */
.wed-first {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 48px;
  border-top: 1px solid var(--rule);
}
.first-steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.first-steps li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--rule);
}
.first-steps li:last-child { border-bottom: 0; }
.first-steps__num {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lamp);
}
.first-steps__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bone);
  max-width: 62ch;
}
.first-steps__body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  background: var(--slate-2);
  padding: 2px 6px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--lamp);
}
.first-steps__body a {
  color: var(--bone);
  border-bottom: 1px solid var(--lamp);
  padding-bottom: 1px;
  transition: color 160ms ease;
}
.first-steps__body a:hover { color: var(--lamp); }
@media (max-width: 720px) {
  .first-steps li { grid-template-columns: 1fr; gap: 6px; }
}

/* ---- Discord callout (Wednesdays page) ---- */
.wed-discord {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 32px;
}
.wed-discord__panel {
  padding: 44px 40px;
  background: var(--slate-2);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--lamp);
}
.wed-discord__tag {
  margin: 0 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lamp);
}
.wed-discord__title {
  margin: 0 0 14px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--bone);
  max-width: 22ch;
}
.wed-discord__body {
  margin: 0 0 24px;
  max-width: 60ch;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--bone);
}
.wed-discord__body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  background: var(--slate);
  padding: 2px 6px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--lamp);
}
.wed-discord__cta {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 6px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--bone);
  border-bottom: 3px solid var(--lamp);
  transition: gap 220ms ease;
}
.wed-discord__arrow {
  color: var(--lamp);
  font-size: 1.2em;
  font-weight: 700;
  transition: transform 220ms ease;
}
.wed-discord__cta:hover { gap: 18px; }
.wed-discord__cta:hover .wed-discord__arrow { transform: translateX(8px); }
@media (max-width: 720px) {
  .wed-discord { padding: 48px 18px 16px; }
  .wed-discord__panel { padding: 32px 24px; }
}

/* Home Wednesday Nights — "see the archive" outbound link. */
.wed-more {
  margin: 36px 0 0;
  text-align: right;
  font-family: 'Roboto Slab', serif;
}
.wed-more a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bone);
  border-bottom: 2px solid var(--lamp);
  padding-bottom: 3px;
  transition: gap 200ms ease, color 200ms ease;
}
.wed-more a span { color: var(--lamp); font-size: 1.2em; transition: transform 200ms ease; }
.wed-more a:hover { gap: 16px; }
.wed-more a:hover span { transform: translateX(4px); }
