/* =====================================================================
   SHOT IN FOCUS — Schools & Sports
   Design system: "Scholastic Press"
   Navy + paper + varsity red / school gold / field green
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;0,6..72,800;1,6..72,400;1,6..72,500;1,6..72,600;1,6..72,700&family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --paper:        #F5F1E6;
  --paper-2:      #EDE7D5;
  --cream:        #FAF6EC;
  --ink:          #0E1F3F;
  --ink-2:        #14253F;
  --ink-soft:     #2A3A5A;
  --ink-muted:    #5A6985;
  --rule:         rgba(14, 31, 63, 0.18);
  --rule-strong:  rgba(14, 31, 63, 0.55);

  --red:    #C8102E;
  --red-2:  #A40E27;
  --gold:   #E8A317;
  --gold-2: #C98A0E;
  --green:  #1B7A4B;
  --green-2:#13603A;

  --card:   #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(14,31,63,.08);
  --shadow:    0 12px 28px -16px rgba(14,31,63,.35), 0 2px 4px rgba(14,31,63,.06);

  --max:    1240px;
  --pad-x:  clamp(20px, 4vw, 56px);

  --serif:  'Newsreader', 'Source Serif 4', Georgia, serif;
  --sans:   'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:   'Geist Mono', ui-monospace, 'JetBrains Mono', monospace;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Subtle paper grain */
  background-image:
    radial-gradient(rgba(14,31,63,.025) 1px, transparent 1px),
    radial-gradient(rgba(14,31,63,.018) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1,h2,h3,h4 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -0.012em; line-height: 1.05; color: var(--ink); }
p { margin: 0; }

/* Skip-to-content for accessibility */
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--ink); color: var(--paper); padding: 10px 14px; border-radius: 4px; z-index: 1000; }

/* ---------- LAYOUT PRIMITIVES ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.divider { height: 1px; background: var(--rule); width: 100%; }

/* ---------- KICKER + EYEBROW ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.kicker--red    { color: var(--red); }
.kicker--gold   { color: var(--gold-2); }
.kicker--green  { color: var(--green); }
.kicker--paper  { color: rgba(245,241,230,.78); }

.kicker-line {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft);
}
.kicker-line::before {
  content: ''; width: 28px; height: 1px; background: currentColor; opacity: .55;
}

/* ---------- TYPE SCALE ---------- */
.display    { font-family: var(--serif); font-weight: 600; line-height: .98; letter-spacing: -0.022em; font-size: clamp(44px, 7.5vw, 96px); }
.display em { font-style: italic; font-weight: 500; color: var(--ink); }
.display .accent-red    { color: var(--red); font-style: italic; font-weight: 500; }
.display .accent-gold   { color: var(--gold-2); font-style: italic; font-weight: 500; }
.display .accent-green  { color: var(--green); font-style: italic; font-weight: 500; }

.h1 { font-size: clamp(36px, 5vw, 64px); }
.h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; }
.h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; font-weight: 600; }
.h4 { font-size: 19px; line-height: 1.25; font-weight: 600; }

.lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }
.body-lg { font-size: 18px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: 2px;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary    { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--red); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,16,46,.28); }
.btn--primary:active{ background: var(--red-2); transform: translateY(0); box-shadow: none; }

.btn--red        { background: var(--red); color: #fff; }
.btn--red:hover  { background: var(--red-2); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,16,46,.28); }
.btn--red:active { transform: translateY(0); box-shadow: none; filter: brightness(.95); }

.btn--gold       { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-2); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,163,23,.30); }
.btn--gold:active{ transform: translateY(0); box-shadow: none; }

.btn--ghost      { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn--ghost:hover{ background: var(--paper-2); color: var(--ink); border-color: var(--ink); }
.btn--ghost:active{ background: var(--cream); }

.btn--ghost-light { background: transparent; color: var(--paper); border-color: rgba(245,241,230,.4); }
.btn--ghost-light:hover { background: rgba(245,241,230,.08); color: var(--paper); border-color: var(--paper); }
.btn--ghost-light:active{ background: rgba(245,241,230,.04); }

.btn--sm { padding: 10px 14px; font-size: 13.5px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(120%);
}
.nav__inner {
  display: flex; align-items: center; gap: 32px;
  height: 76px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); flex-shrink: 0;
}
.nav__logo-img {
  height: 52px; width: auto; display: block;
}
@media (max-width: 720px) {
  .nav__logo-img { height: 40px; }
}

.nav__links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav__links a {
  padding: 10px 14px; font-size: 14.5px; font-weight: 500;
  border-radius: 2px; color: var(--ink); transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { background: var(--paper-2); }
.nav__links a.is-active { color: var(--red); }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__parent {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 12px; border: 1px solid var(--rule); border-radius: 2px;
  color: var(--ink-soft); transition: all .15s ease;
}
.nav__parent:hover { border-color: var(--ink); color: var(--ink); background: var(--cream); }

.nav__burger { display: none; }

@media (max-width: 960px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: inline-flex; margin-left: auto; padding: 8px 10px; border: 1px solid var(--rule); border-radius: 2px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
  .nav__inner { gap: 16px; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 76px; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--rule); padding: 12px var(--pad-x);
  }
  .nav.is-open .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .nav.is-open .nav__cta .btn { display: inline-flex; }
  .nav.is-open .nav__cta { display: flex; flex-direction: column; padding: 12px var(--pad-x) 20px; gap: 8px; background: var(--paper); position: absolute; top: calc(76px + var(--mob-h, 0px)); left:0; right:0; }
}

/* ---------- SEAL / BADGE ---------- */
.seal {
  display: inline-grid; place-items: center;
  font-family: var(--mono); font-weight: 600; font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
}
.seal--lg { width: 132px; height: 132px; }
.seal--xl { width: 184px; height: 184px; }
.seal-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- TRUST BAR ---------- */
.trustbar {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0;
}
.trustbar__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}
.trustbar__item {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid rgba(245,241,230,.18);
}
.trustbar__item:last-child { border-right: 0; }
.trustbar__item .num {
  font-family: var(--serif); font-weight: 600; font-size: 36px; line-height: 1;
  color: var(--gold);
}
.trustbar__item .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,241,230,.85); line-height: 1.35;
}
@media (max-width: 760px) {
  .trustbar__row { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item { border-bottom: 1px solid rgba(245,241,230,.12); padding: 12px 16px; }
  .trustbar__item:nth-child(2) { border-right: 0; }
}

/* ---------- SECTION HEADER ---------- */
.sec-head { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin-bottom: 48px; }
.sec-head .kicker-line { align-self: flex-start; }

/* ---------- CARDS ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card__tag {
  position: absolute; top: 0; left: 32px;
  transform: translateY(-50%);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  background: var(--paper); padding: 6px 10px; border: 1px solid var(--rule);
}
.card__num {
  font-family: var(--serif); font-size: 48px; font-weight: 600; line-height: 1;
  color: var(--ink); letter-spacing: -0.03em;
}
.card__title { font-size: 22px; line-height: 1.2; font-weight: 600; }
.card__body { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.card__cta { margin-top: auto; padding-top: 12px; }

/* tinted card variants */
.card--red    { border-color: var(--red); }
.card--red    .card__num { color: var(--red); }
.card--gold   { border-color: var(--gold-2); }
.card--gold   .card__num { color: var(--gold-2); }
.card--green  { border-color: var(--green); }
.card--green  .card__num { color: var(--green); }

/* ---------- IMAGE PLACEHOLDER (designed slot) ---------- */
.slot {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  border-radius: 0;
}
.slot::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 14px,
    rgba(245,241,230,.04) 14px 15px
  );
}
.slot__caption {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,241,230,.85); padding: 16px; text-align: center; max-width: 32ch;
  line-height: 1.5;
}
.slot__caption::before {
  content: '[ '; color: var(--gold);
}
.slot__caption::after {
  content: ' ]'; color: var(--gold);
}
.slot--red    { background: var(--red); }
.slot--red::before { background-image: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255,255,255,.06) 14px 15px); }
.slot--gold   { background: var(--gold); color: var(--ink); }
.slot--gold .slot__caption { color: var(--ink); }
.slot--gold .slot__caption::before, .slot--gold .slot__caption::after { color: var(--red); }
.slot--green  { background: var(--green); }
.slot--paper  { background: var(--paper-2); color: var(--ink); }
.slot--paper .slot__caption { color: var(--ink-soft); }
.slot--paper .slot__caption::before, .slot--paper .slot__caption::after { color: var(--red); }

/* ---------- POSTER (typographic hero block) ---------- */
.poster {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 40px 36px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; justify-content: space-between;
  isolation: isolate;
}
.poster__corner {
  position: absolute; pointer-events: none;
}
.poster__corner--tl { top: 16px; left: 16px; }
.poster__corner--tr { top: 16px; right: 16px; }
.poster__corner--br { bottom: 16px; right: 16px; }
.poster__corner--bl { bottom: 16px; left: 16px; }

.poster__rule {
  height: 1px; background: rgba(245,241,230,.32); width: 100%;
}
.poster__big {
  font-family: var(--serif); font-weight: 700; line-height: .92;
  font-size: clamp(56px, 8vw, 124px); letter-spacing: -0.025em;
}
.poster__big em { font-style: italic; font-weight: 500; color: var(--gold); }

/* ---------- TESTIMONIAL ---------- */
.tm {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 36px;
  position: relative;
  display: flex; flex-direction: column; gap: 24px;
}
.tm__mark {
  font-family: var(--serif); font-size: 96px; line-height: .6;
  color: var(--red); font-weight: 700;
  height: 36px;
}
.tm__quote {
  font-family: var(--serif); font-size: 21px; line-height: 1.4; font-weight: 500;
  color: var(--ink);
  font-style: italic;
}
.tm__attr {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--rule); padding-top: 16px;
}
.tm__name { font-weight: 600; font-size: 15px; }
.tm__role { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); }

/* ---------- PROCESS STEP ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.step {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
}
.step:last-child { border-right: 0; }
.step__num {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}
.step__title { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.15; }
.step__body { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
@media (max-width: 900px) { .steps, .steps--3 { grid-template-columns: 1fr 1fr; } .step:nth-child(2) { border-right: 0; } .step { border-bottom: 1px solid var(--rule); } }
@media (max-width: 560px) { .steps, .steps--3 { grid-template-columns: 1fr; } .step { border-right: 0; } }

/* ---------- TAG GRID (sports list) ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: var(--card); border: 1px solid var(--rule);
  font-size: 14px; font-weight: 500;
}
.tag .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.tag:nth-child(3n) .dot { background: var(--gold); }
.tag:nth-child(4n) .dot { background: var(--green); }
.tag:nth-child(5n) .dot { background: var(--ink); }

/* ---------- FOOTER CTA BAND ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0 80px, rgba(245,241,230,.025) 80px 81px);
  pointer-events: none;
}
.cta-band__row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end;
  position: relative;
}
.cta-band h2 { color: var(--paper); font-size: clamp(36px, 5vw, 64px); }
.cta-band em { color: var(--gold); font-style: italic; font-weight: 500; }
.cta-band p { color: rgba(245,241,230,.78); margin-top: 16px; max-width: 50ch; }
@media (max-width: 800px) { .cta-band__row { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- FOOTER ---------- */
.footer {
  background: #0A1730;
  color: rgba(245,241,230,.85);
  padding: 64px 0 36px;
}
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--gold); margin-bottom: 16px;
}
.footer a { color: rgba(245,241,230,.85); transition: color .15s ease; display: block; padding: 4px 0; font-size: 14.5px; }
.footer a:hover { color: var(--gold); }
.footer__brand .name {
  font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--paper); letter-spacing: -0.018em;
}
.footer__brand p { font-size: 14.5px; line-height: 1.55; margin-top: 12px; max-width: 36ch; }
.footer__parents {
  background: var(--gold); color: var(--ink); padding: 12px 16px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; gap: 8px; align-items: center; margin-top: 18px;
  transition: background .15s ease;
}
.footer__parents:hover { background: var(--paper); color: var(--ink) !important; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(245,241,230,.12);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,241,230,.55);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- FORM ---------- */
.form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  background: var(--cream); border: 0; border-bottom: 1px solid var(--rule-strong); padding: 14px 0;
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  border-radius: 0; transition: border-color .15s ease, padding-bottom .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-bottom: 2px solid var(--ink); padding-bottom: 13px;
}
.field textarea { padding: 14px 14px; border: 1px solid var(--rule-strong); }
.field textarea:focus { border: 1px solid var(--ink); padding: 14px 14px; box-shadow: inset 0 -2px 0 var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; padding: 12px 0; }
.checks label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 14px; color: var(--ink); text-transform: none; letter-spacing: 0;
  font-weight: 400;
}
.checks input { accent-color: var(--ink); width: 16px; height: 16px; }
.radios { display: flex; gap: 16px; padding: 8px 0; }
.radios label { font-family: var(--sans); font-size: 14px; color: var(--ink); text-transform: none; letter-spacing: 0; font-weight: 400; display: flex; gap: 6px; }

/* ---------- TABS (FAQ) ---------- */
.tabs {
  display: inline-flex; gap: 0; border: 1px solid var(--rule); background: #fff; padding: 4px; margin-bottom: 32px;
}
.tab {
  padding: 12px 20px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500; transition: all .15s ease;
}
.tab[aria-selected="true"] { background: var(--ink); color: var(--paper); }
.tabpanel { display: none; }
.tabpanel.is-active { display: block; }

/* ---------- ACCORDION (FAQ items) ---------- */
.qa { border-top: 1px solid var(--rule); }
.qa__item { border-bottom: 1px solid var(--rule); }
.qa__q {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  padding: 24px 0; width: 100%; text-align: left; font-family: var(--serif); font-size: 21px; font-weight: 600;
  line-height: 1.25; color: var(--ink);
}
.qa__q .toggle {
  font-family: var(--mono); font-size: 18px; color: var(--red); flex-shrink: 0; padding-top: 4px;
}
.qa__a {
  display: none; padding-bottom: 24px; max-width: 70ch;
  color: var(--ink-soft); font-size: 16px; line-height: 1.6;
}
.qa__item.is-open .qa__a { display: block; }
.qa__item.is-open .qa__q .toggle::before { content: ''; }
.qa__item.is-open .qa__q .toggle { transform: rotate(45deg); transform-origin: center; }

/* ---------- HERO ---------- */
.hero { padding: clamp(48px, 6vw, 96px) 0 clamp(56px, 7vw, 96px); position: relative; }
.hero__row { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.hero__copy { display: flex; flex-direction: column; gap: 28px; padding: 12px 0; }
.hero h1 { font-size: clamp(46px, 6.4vw, 88px); line-height: .98; letter-spacing: -0.024em; }
.hero h1 em { font-style: italic; color: var(--red); font-weight: 500; }
.hero h1 .gold { color: var(--gold-2); font-style: italic; font-weight: 500; }
.hero__sub { font-family: var(--serif); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.45; color: var(--ink-soft); max-width: 48ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--rule); }
.hero__meta div { display: flex; flex-direction: column; gap: 2px; }
.hero__meta .v { font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1; color: var(--ink); }
.hero__meta .l { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-muted); }

@media (max-width: 920px) {
  .hero__row { grid-template-columns: 1fr; }
}

/* ---------- PAGE HEADER (interior pages) ---------- */
.page-head {
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-head h1 { font-size: clamp(40px, 5.5vw, 76px); line-height: 1; letter-spacing: -0.024em; max-width: 18ch; }
.page-head h1 em { font-style: italic; color: var(--red); font-weight: 500; }
.page-head .lede { margin-top: 24px; }
.page-head__meta { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; }
.page-head__meta .pill {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 10px; background: var(--ink); color: var(--paper);
}
.page-head__meta .pill--red { background: var(--red); }
.page-head__meta .pill--gold { background: var(--gold); color: var(--ink); }
.page-head__meta .pill--green { background: var(--green); }

/* ---------- TWO-COL CONTENT BLOCK ---------- */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 32px); }
@media (max-width: 920px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- UTILITY ---------- */
.bg-ink   { background: var(--ink); color: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-paper2{ background: var(--paper-2); }
.text-paper { color: var(--paper); }
.mono { font-family: var(--mono); }
.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.center { text-align: center; }
.relative { position: relative; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }

/* ---------- DECORATIVE: stamped meta line ---------- */
.stamp {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 14px; border: 1.5px solid var(--ink); color: var(--ink); background: var(--paper);
}
.stamp--gold { border-color: var(--gold-2); color: var(--gold-2); }
.stamp--red  { border-color: var(--red); color: var(--red); }
.stamp--green{ border-color: var(--green); color: var(--green); }

/* ---------- BIG STAT ROW ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 32px 24px; border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:last-child { border-right: 0; }
.stat__v { font-family: var(--serif); font-size: clamp(40px, 4.5vw, 64px); font-weight: 600; line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.stat__v em { font-style: italic; font-weight: 500; }
.stat__v.red { color: var(--red); }
.stat__v.gold { color: var(--gold-2); }
.stat__v.green { color: var(--green); }
.stat__l { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-muted); }
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: 0; } .stat { border-bottom: 1px solid var(--rule); } }
