/* ==========================================================================
   OWYHEE STORM LACROSSE
   storm.css — tokens, layout, components
   Display: Dharma Gothic E (Adobe Fonts) with Archivo as the free fallback.
   Body: Inter.
   ========================================================================== */

/* --- 0. Fonts (self-hosted, no third-party requests) ---------------------- *
 * Archivo and Inter variable fonts ship with the site. Archivo carries both a
 * width axis (62-125%) and a weight axis (100-900), which is what lets the
 * display type go condensed-and-heavy the way Dharma Gothic does.
 * ------------------------------------------------------------------------- */

@font-face {
  font-family: 'Archivo Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  src: url('../fonts/archivo-var.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Archivo Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  src: url('../fonts/archivo-var-ext.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('../fonts/inter-var.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('../fonts/inter-var-ext.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* --- 1. Tokens ----------------------------------------------------------- */

:root {
  /* Palette pulled from the team's own gear: chrome-red helmets, dark-gray
     school color, night-game sky. */
  --ink:     #0A0B0D;   /* base */
  --carbon:  #121519;   /* raised panel */
  --steel:   #262B33;   /* rules + borders */
  --dusk:    #16273A;   /* cool wash, twilight games */
  --bolt:    #E4172B;   /* Owyhee red */
  --bolt-lo: #A20E1D;   /* pressed / shadow red */
  --chrome:  #F4F6F8;   /* primary text */
  --haze:    #8B94A1;   /* secondary text */

  --display: 'dharma-gothic-e', 'Archivo Variable', 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --body:    'Inter Variable', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Condensed heavy display, the stadium-banner voice */
  --stretch-tight: 68%;
  --stretch-mid:   84%;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --measure: 60ch;
  --maxw: 1400px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 68px;
  --bar-h: 40px;
}

/* --- Announcement bar ----------------------------------------------------
 * Sits above the nav while a registration window is open. Delete the <a
 * class="alert"> from both HTML files when the season closes.
 * ----------------------------------------------------------------------- */

.alert {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 101;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
  background: var(--bolt);
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s var(--ease);
}
.alert:hover { background: var(--bolt-lo); }
.alert__tag {
  flex: none;
  padding: 0.2rem 0.5rem;
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.alert__txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.alert__cta { flex: none; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 620px) {
  .alert__cta { display: none; }
  .alert__extra { display: none; }
  .alert { font-size: 0.72rem; gap: 0.5rem; }
}

/* --- 2. Reset ------------------------------------------------------------ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--bar-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--chrome);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

a { color: var(--chrome); text-decoration-color: var(--bolt); text-underline-offset: 3px; overflow-wrap: anywhere; }

p, li, summary, dd { overflow-wrap: break-word; }

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

body.is-locked { overflow: hidden; }

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

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -110%);
  background: var(--bolt); color: #fff;
  padding: 0.65rem 1.25rem; z-index: 200;
  font-weight: 600; font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --- 3. Type ------------------------------------------------------------- */

.display {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: var(--stretch-tight);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.84;
  letter-spacing: -0.005em;
  margin: 0;
}

/* Small letterspaced caps — labels, data, nav. The utility voice. */
.micro {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--haze);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 3px;
  background: var(--bolt);
  flex: none;
}

.h2 { font-size: clamp(2.6rem, 7vw, 5.25rem); }
.h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-stretch: var(--stretch-mid);
  font-weight: 800; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: #C9D0D8;
  max-width: var(--measure);
}

p { max-width: var(--measure); }
.muted { color: var(--haze); }
.tabular { font-variant-numeric: tabular-nums; }

/* --- 4. Buttons ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--bolt);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn:hover { background: var(--bolt-lo); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  border-color: rgba(244, 246, 248, 0.28);
  color: var(--chrome);
}
.btn--ghost:hover { background: rgba(244, 246, 248, 0.07); border-color: var(--chrome); }

.btn--sm { padding: 0.7rem 1.1rem; font-size: 0.72rem; }
.btn--wide { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* --- 5. Nav -------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: var(--bar-h) 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 11, 13, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--steel);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--chrome);
}
.brand__mark {
  width: 38px; height: 38px;
  flex: none;
  object-fit: contain;
}
/* Logo standing alone in the nav — no wordmark beside it, so it carries a
   little more size to hold the space on its own. */
.brand--markonly .brand__mark { width: 48px; height: 48px; }
.brand__txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand__word {
  font-family: var(--display);
  font-stretch: var(--stretch-tight);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow-wrap: normal;
}
.brand__word span { color: var(--bolt); }
.brand__sub {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.64rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--haze);
  white-space: nowrap;
  overflow-wrap: normal;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #C9D0D8;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav__links a:hover { color: var(--chrome); border-bottom-color: var(--bolt); }
.nav__links a[aria-current='page'] { color: var(--chrome); border-bottom-color: var(--bolt); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid rgba(244, 246, 248, 0.28);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: calc(var(--nav-h) + var(--bar-h)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 11, 13, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--steel);
    padding: 0.5rem var(--gutter) 1.5rem;
    transform: translateY(-140%);
    transition: transform 0.35s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid var(--steel); }
  .nav__links li:last-child { border-bottom: 0; }
  .nav__links a { display: block; padding: 1.05rem 0; font-size: 0.9rem; border-bottom: 0; }
  .nav__links .btn { margin-top: 1.1rem; }
}

/* --- 6. Hero ------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + var(--bar-h) + 2rem) var(--gutter) clamp(2.5rem, 7vh, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Two-part scrim: a hard bottom gradient for legibility, plus a cool dusk
   wash so the black never goes flat. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(10,11,13,0.82) 32%, rgba(10,11,13,0.30) 68%, rgba(10,11,13,0.55) 100%),
    linear-gradient(115deg, rgba(22,39,58,0.55), rgba(10,11,13,0) 55%);
}

.hero__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; }

.hero__word {
  font-size: clamp(4.2rem, 20vw, 17rem);
  font-stretch: 64%;
  font-weight: 800;
  letter-spacing: -0.012em;
}
.hero__word em { font-style: normal; color: var(--bolt); }

.hero__sub {
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: #C9D0D8;
}

/* Short viewports — landscape phones especially — where the headline sized by
   viewport *width* pushes the CTAs below the fold. Scale the hero down so the
   whole pitch (headline, subhead, both buttons) stays on one screen. */
@media (max-height: 640px) {
  .hero {
    padding-top: calc(var(--nav-h) + var(--bar-h) + 1rem);
    padding-bottom: 1.5rem;
  }
  .hero__word { font-size: clamp(2.6rem, 11vw, 5.5rem); }
  .hero__sub {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 40ch;
  }
  .hero .btn-row { margin-top: 1.1rem; gap: 0.6rem; }
  .hero .btn { padding: 0.8rem 1.25rem; }
}

/* Landscape phones. Only ~375px of height total, and 108px of that is already
   spoken for by the fixed alert bar and nav, so everything shrinks again. */
@media (max-height: 480px) {
  .hero { padding-bottom: 1rem; }
  .hero__word { font-size: clamp(2rem, 8vw, 4rem); }
  .hero__sub {
    margin-top: 0.6rem;
    font-size: 0.875rem;
    line-height: 1.4;
    max-width: 46ch;
  }
  .hero .btn-row { margin-top: 0.8rem; }
  .hero .btn { padding: 0.7rem 1.1rem; font-size: 0.72rem; }
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2.5rem, 7vh, 5rem);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.24em;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--haze);
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 54px;
  background: linear-gradient(var(--bolt), transparent);
}
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* --- 7. Photo marquee ---------------------------------------------------- */

.marquee {
  position: relative;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  background: var(--carbon);
  padding: 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 72s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.marquee__item {
  position: relative;
  flex: none;
  height: clamp(280px, 36vw, 520px);
  margin-right: 4px;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}
.marquee__item img {
  height: 100%;
  width: auto;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.04);
  transition: filter 0.35s var(--ease), transform 0.5s var(--ease);
}
.marquee__item:hover img { filter: grayscale(0) contrast(1); transform: scale(1.04); }

/* --- Stat cards ---------------------------------------------------------
 * Number sits over a darkened photo. On hover the photo drops out and the
 * whole tile goes Owyhee red with black type.
 * ----------------------------------------------------------------------- */

.marquee__item--stat {
  width: clamp(300px, 42vw, 660px);
  background: var(--bolt);
  cursor: pointer;
}
.marquee__item--stat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.46);
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease), transform 0.5s var(--ease);
}
.marquee__item--stat:hover img,
.marquee__item--stat:focus-visible img { opacity: 0; transform: none; }

.stat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: clamp(1.1rem, 2.4vw, 2rem);
  text-align: left;
  color: var(--chrome);
  transition: color 0.3s var(--ease);
}
.marquee__item--stat:hover .stat,
.marquee__item--stat:focus-visible .stat { color: var(--ink); }

.stat__icon {
  width: clamp(26px, 3vw, 40px);
  height: clamp(26px, 3vw, 40px);
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat__body { display: block; }

.stat__n {
  display: block;
  font-family: var(--display);
  font-stretch: 66%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.stat__l {
  display: block;
  margin-top: 0.5rem;
  max-width: 26ch;
  font-family: var(--display);
  font-stretch: 88%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.5vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: 0.005em;
}

/* Feathered edges so photos enter and exit rather than snapping */
.marquee__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 140px);
  pointer-events: none;
  z-index: 2;
}
.marquee__fade--l { left: 0;  background: linear-gradient(to right, var(--ink), transparent); }
.marquee__fade--r { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }

.marquee__credit {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem var(--gutter);
  border-top: 1px solid var(--steel);
}

/* --- 8. Sections + yard-line rules --------------------------------------- */

.section {
  padding: clamp(4.5rem, 11vh, 8.5rem) var(--gutter);
}
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section--carbon { background: var(--carbon); }
.section--dusk {
  background:
    linear-gradient(160deg, var(--dusk) 0%, var(--ink) 62%);
}

/* Sideline ticks — the field's own measuring system, used as a divider. */
.yardline {
  height: 14px;
  background-image:
    linear-gradient(to right, var(--steel) 1px, transparent 1px);
  background-size: 28px 100%;
  background-position: bottom left;
  background-repeat: repeat-x;
  border-bottom: 1px solid var(--steel);
  opacity: 0.75;
}

.section__head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .section__head--split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: end;
    gap: 3rem;
  }
}

/* --- 9. Season climb + helmet rental ------------------------------------- */

/* The program's whole story is the shape of these four bars. */
.climb {
  border: 1px solid var(--steel);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}
.climb__rows { list-style: none; margin: 0; padding: 0; }

.climb__row {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) 4.5rem;
  grid-template-areas: 'yr bar rec' 'note note note';
  gap: 0.5rem 1.25rem;
  align-items: center;
  padding: 1.15rem clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid var(--steel);
}
.climb__row:last-child { border-bottom: 0; }
.climb__row--now { background: rgba(228, 23, 43, 0.07); }

@media (min-width: 780px) {
  .climb__row {
    grid-template-columns: 5.5rem minmax(0, 1fr) 5rem 17rem;
    grid-template-areas: 'yr bar rec note';
    gap: 1.75rem;
  }
}

.climb__yr {
  grid-area: yr;
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1;
  color: var(--haze);
  font-variant-numeric: tabular-nums;
}
.climb__row--now .climb__yr { color: var(--chrome); }

.climb__bar {
  grid-area: bar;
  display: block;
  height: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--steel);
}
.climb__fill {
  display: block;
  height: 100%;
  width: var(--pct);
  background: var(--bolt);
  transform-origin: left center;
  transition: transform 1s var(--ease);
}
.js .reveal .climb__fill { transform: scaleX(0); }
.js .reveal.is-in .climb__fill { transform: scaleX(1); }

.climb__rec {
  grid-area: rec;
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1;
  white-space: nowrap;
}
.climb__row--now .climb__rec { color: var(--bolt); }

.climb__note {
  grid-area: note;
  font-size: 0.85rem;
  color: var(--haze);
  line-height: 1.35;
}
.climb__row--now .climb__note { color: #C9D0D8; }

/* Helmet loaner block */
.helmets {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--steel);
  background:
    linear-gradient(120deg, rgba(228,23,43,0.09), rgba(10,11,13,0) 60%),
    var(--carbon);
}
@media (min-width: 860px) { .helmets { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.helmets__shot img {
  width: 100%;
  height: auto;
  border: 1px solid var(--steel);
}

.helmets__copy h3 { margin: 0 0 1rem; }
.helmets__copy p { margin: 0 0 0.85rem; }

.helmets__counts {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.hcount {
  flex: 1 1 7rem;
  min-width: 0;
  padding: 1.5rem 1.35rem;
  background: var(--ink);
  border-top: 4px solid var(--steel);
}
.hcount--v  { border-top-color: var(--bolt); }
.hcount--jv { border-top-color: var(--chrome); }

.hcount__n {
  display: block;
  font-family: var(--display);
  font-stretch: var(--stretch-tight);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.9;
}
.hcount--v .hcount__n { color: var(--bolt); }

.hcount__l {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--haze);
  line-height: 1.5;
}

/* --- 9b. Upcoming (pre-schedule placeholder) -----------------------------
 * Used on the homepage in place of the scoreboard/countdown board when no
 * real game dates exist yet — season milestones, confirmed opponents without
 * dates, and community events. One consistent card shape (red top rule,
 * small label, headline, note) covers all three kinds of "known so far"
 * info rather than forcing them into the game-row format below, which needs
 * real timestamps to make sense.
 * -------------------------------------------------------------------------- */

.upcoming {
  display: grid;
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
@media (min-width: 640px) {
  .upcoming { grid-template-columns: repeat(2, 1fr); }
  .upcoming--pair { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .upcoming { grid-template-columns: repeat(3, 1fr); }
  .upcoming--pair { grid-template-columns: repeat(2, 1fr); }
}

.uitem {
  background: var(--ink);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-top: 3px solid var(--bolt);
}
.uitem__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--haze);
}
.uitem__title {
  margin: 0.6rem 0 0;
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  line-height: 1.05;
}
.uitem__note { margin: 0.6rem 0 0; font-size: 0.9rem; color: #C9D0D8; max-width: none; }

/* --- 10. Scoreboard schedule (signature) --------------------------------- */

.board {
  border: 1px solid var(--steel);
  background: var(--ink);
}

.next {
  display: grid;
  gap: 2rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--steel);
  background:
    linear-gradient(135deg, rgba(228,23,43,0.14), rgba(10,11,13,0) 58%),
    var(--carbon);
}
@media (min-width: 860px) {
  .next { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
}

.next__opp {
  font-family: var(--display);
  font-stretch: var(--stretch-tight);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.9;
  margin: 0.5rem 0 0.75rem;
}
.next__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: 0.9rem; color: var(--haze); }

.countdown { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cd {
  flex: 0 0 auto;
  min-width: 132px;
  padding: 1rem 1.25rem;
  text-align: center;
  background: var(--ink);
  border: 1px solid var(--steel);
}
.cd__n {
  display: block;
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--bolt);
}
.cd__l { display: block; margin-top: 0.4rem; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--haze); white-space: nowrap; }

.game {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid var(--steel);
}
.game:last-child { border-bottom: 0; }
.game:nth-child(odd) { background: rgba(255, 255, 255, 0.015); }

.game__date {
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: 1.05rem;
  color: var(--haze);
  font-variant-numeric: tabular-nums;
}
.game__date b { display: block; font-size: 1.6rem; color: var(--chrome); font-weight: inherit; }

.game__opp {
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.05;
}
.game__where { display: block; margin-top: 0.15rem; font-family: var(--body); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--haze); font-stretch: 100%; }

.game__score {
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}
.tag {
  display: inline-block;
  padding: 0.28rem 0.5rem;
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--steel);
  color: var(--haze);
}
.tag--w { background: var(--bolt); border-color: var(--bolt); color: #fff; }
.tag--l { color: var(--haze); }

/* --- 11. Jersey-number steps --------------------------------------------- */

.steps { display: grid; gap: 1px; background: var(--steel); border: 1px solid var(--steel); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }

.step {
  position: relative;
  background: var(--ink);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  overflow: hidden;
}
/* The numeral is set like the back of a jersey: heavy, outlined, oversized. */
.step__n {
  position: absolute;
  top: -0.18em;
  right: 0.02em;
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  font-size: clamp(7rem, 14vw, 11rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(228, 23, 43, 0.42);
  pointer-events: none;
  user-select: none;
}
.step__body { position: relative; }
.step h3 { margin: 0 0 0.85rem; }
.step p { margin: 0 0 1rem; }
.step ul { margin: 0 0 1rem; padding-left: 1.1rem; color: #C9D0D8; }
.step li { margin-bottom: 0.4rem; }

/* Rental note — the one line in the step people are scanning for. */
.rental {
  border-left: 3px solid var(--bolt);
  padding: 0.7rem 0 0.7rem 1.1rem;
  margin: 0 0 1.25rem;
  color: #C9D0D8;
  font-size: 0.97rem;
}
.rental strong { color: var(--chrome); }

/* --- 12. Sponsor tiers --------------------------------------------------- */

.tiers { display: grid; gap: 1px; background: var(--steel); border: 1px solid var(--steel); }
@media (min-width: 720px)  { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1120px) { .tiers { grid-template-columns: repeat(4, 1fr); } }

.tier {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  padding: 2rem 1.6rem;
  border-top: 4px solid var(--steel);
}
/* The tiers are named after metals, so the accent rule names them too. */
.tier--bronze   { border-top-color: #A9703F; }
.tier--silver   { border-top-color: #AFB6BD; }
.tier--gold     { border-top-color: #C8A032; }
.tier--platinum { border-top-color: var(--chrome); }

.tier--featured { background: linear-gradient(180deg, rgba(228,23,43,0.13), rgba(10,11,13,0) 46%), var(--ink); }

.tier__name {
  font-family: var(--display);
  font-stretch: var(--stretch-tight);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
  margin: 0 0 0.35rem;
}
.tier__price {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bolt);
  margin: 0 0 1.4rem;
}
.tier ul { list-style: none; margin: 0 0 1.75rem; padding: 0; font-size: 0.92rem; }
.tier li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  border-bottom: 1px solid rgba(38, 43, 51, 0.7);
  color: #C9D0D8;
}
.tier li::before {
  content: '';
  position: absolute; left: 0; top: 1.05em;
  width: 8px; height: 2px; background: var(--bolt);
}
.tier .btn { margin-top: auto; }

/* --- 13. Split feature (image + copy) ------------------------------------ */

.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 940px) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.split--flip > :first-child { order: 2; }
@media (max-width: 939px) { .split--flip > :first-child { order: 0; } }

.frame { position: relative; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame::after {
  content: '';
  position: absolute;
  inset: auto auto -14px -14px;
  width: 46%; height: 46%;
  border-left: 3px solid var(--bolt);
  border-bottom: 3px solid var(--bolt);
  pointer-events: none;
}

/* --- 14. Donate ---------------------------------------------------------- */

/* Tax status is the single most reassuring fact in this section, so it gets a
   panel rather than a footnote. */
.taxbox {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--steel);
  border-left: 3px solid var(--bolt);
  background: rgba(255, 255, 255, 0.03);
}
.taxbox svg {
  flex: none;
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--bolt);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.taxbox p { margin: 0; font-size: 0.95rem; line-height: 1.55; color: #C9D0D8; max-width: none; }
.taxbox strong { color: var(--chrome); display: block; }

/* Preset amounts. Each one opens a pre-written email, so they're real actions
   rather than decoration. */
.give {
  display: grid;
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
  margin-top: 1.25rem;
}
@media (min-width: 760px) { .give { grid-template-columns: repeat(3, 1fr); } }

.give__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.6rem, 3.2vw, 2.25rem);
  background: var(--ink);
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.give__card--lead { background: linear-gradient(180deg, rgba(228,23,43,0.12), rgba(10,11,13,0) 50%), var(--ink); }
.give__card:hover { background: var(--bolt); transform: translateY(-3px); }

.give__amt {
  font-family: var(--display);
  font-stretch: var(--stretch-tight);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.25rem);
  line-height: 0.9;
  color: var(--bolt);
  transition: color 0.25s var(--ease);
}
.give__card:hover .give__amt { color: var(--ink); }

.give__what { font-size: 0.98rem; line-height: 1.5; color: #C9D0D8; flex: 1; }
.give__card:hover .give__what { color: var(--ink); }

.give__go {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--haze);
}
.give__go::after { content: ' \\2192'; }
.give__card:hover .give__go { color: var(--ink); }

/* Referral field + amount picker + giving methods */
.giveform {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--steel);
  background: var(--carbon);
}
@media (min-width: 900px) { .giveform { grid-template-columns: 1.2fr 1fr 1.3fr; } }

.giveform label { display: block; font-size: 0.85rem; color: #C9D0D8; margin-bottom: 0.5rem; }
.giveform input[type="text"],
.giveform input[type="number"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--ink);
  border: 1px solid var(--steel);
  color: var(--chrome);
  font-family: var(--body);
  font-size: 0.95rem;
}
.giveform input:focus { outline: 2px solid var(--bolt); outline-offset: 1px; }
.giveform input::placeholder { color: var(--haze); }

.amtpick { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.amtpick__btn {
  padding: 0.65rem 1.1rem;
  background: var(--ink);
  border: 1px solid var(--steel);
  color: var(--chrome);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
.amtpick__btn.is-active { background: var(--bolt); border-color: var(--bolt); color: #fff; }
.amtpick__custom { flex: 1 1 100px; min-width: 90px; }

.methods { display: flex; flex-direction: column; gap: 1px; background: var(--steel); border: 1px solid var(--steel); }
.method {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  text-decoration: none;
  transition: background 0.2s var(--ease);
}
.method:hover { background: rgba(228, 23, 43, 0.14); }
.method__label { font-weight: 700; font-size: 0.92rem; color: var(--chrome); }
.method__note { font-size: 0.76rem; color: var(--haze); text-align: right; }
.method.is-live .method__note { color: var(--bolt); }
.give__hint { margin: 0.7rem 0 0; line-height: 1.5; text-transform: none; letter-spacing: 0.01em; }

/* The section lands on a person, not a payment form. */
.ask {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--steel);
  background:
    linear-gradient(120deg, rgba(228,23,43,0.14), rgba(10,11,13,0) 62%),
    var(--carbon);
}
@media (min-width: 820px) { .ask { grid-template-columns: minmax(0, 1.5fr) minmax(240px, 1fr); } }

.ask__body h3 { margin: 0; }
.ask__body p { margin: 0; color: #C9D0D8; }
.ask__mail { margin: 0.9rem 0 0; text-align: center; font-size: 0.88rem; }
.ask__mail a { color: var(--haze); text-decoration: none; }
.ask__mail a:hover { color: var(--chrome); text-decoration: underline; }

.callout {
  border-left: 3px solid var(--bolt);
  padding: 0.4rem 0 0.4rem 1.4rem;
  margin: 2rem 0;
}
.callout p { margin: 0; font-size: 1.05rem; color: var(--chrome); }

/* --- 15. Footer ---------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--steel);
  padding: clamp(3rem, 7vh, 5rem) var(--gutter) 2rem;
  background: var(--ink);
}
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 820px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer h4 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--haze); margin: 0 0 1.1rem; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.6rem; }
.footer a { font-size: 0.95rem; text-decoration: none; color: #C9D0D8; }
.footer a:hover { color: var(--chrome); text-decoration: underline; }

/* Social links sit under the address in the brand column. Inline icon + handle
   rather than a bare icon — the handle is useful to read even if nobody taps. */
.social { margin-top: 1.25rem !important; }
.social li { margin-bottom: 0.5rem; }
.social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--haze) !important;
  transition: color 0.2s var(--ease);
}
.social__link svg {
  width: 20px; height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social__link:hover { color: var(--bolt) !important; text-decoration: none; }
.social__link:hover span { text-decoration: underline; }

.footer__soon { font-size: 0.95rem; color: var(--haze); display: inline-flex; align-items: center; gap: 0.5rem; }
.footer__soon .tag { font-size: 0.58rem; padding: 0.2rem 0.4rem; }

.footer__base {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--steel);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
}

/* --- 16. Lightbox -------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6, 7, 9, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox__cap {
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--haze);
  max-width: 60ch;
}
.lightbox__btn {
  position: absolute;
  background: rgba(18, 21, 25, 0.9);
  border: 1px solid var(--steel);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.lightbox__btn:hover { border-color: var(--bolt); }
.lightbox__btn--close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__btn--prev  { left: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__btn--next  { right: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }

/* --- 17. Scroll reveal --------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* --- 18. Interior page hero ---------------------------------------------- */

.pagehero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(78svh, 720px);
  padding: calc(var(--nav-h) + var(--bar-h) + 4rem) var(--gutter) clamp(3rem, 8vh, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.pagehero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  z-index: -2;
}
.pagehero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--ink) 3%, rgba(10,11,13,0.86) 40%, rgba(10,11,13,0.45) 100%),
    linear-gradient(115deg, rgba(22,39,58,0.6), rgba(10,11,13,0) 60%);
}
.pagehero__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; }

/* --- 19. FAQ ------------------------------------------------------------- */

.faq { border-top: 1px solid var(--steel); }
.faq details { border-bottom: 1px solid var(--steel); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative;
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.15;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0.25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--bolt);
  line-height: 1;
}
.faq details[open] summary::after { content: '\2013'; }
.faq summary:hover { color: var(--bolt); }
.faq details p { margin: 0 0 1.5rem; color: #C9D0D8; }

/* --- 20. Coaching staff -------------------------------------------------- */

.staff {
  display: grid;
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
@media (min-width: 700px) { .staff { grid-template-columns: repeat(2, 1fr); } }
/* Odd card count (5 board members: 2+2+1) leaves a half-empty last row at
   the default 2 columns — same fix as .role--wide and .upcoming--pair
   elsewhere on the site: the odd one out spans the full row instead. */
.coach--wide { grid-column: 1 / -1; }
.coach--wide .coach__bio { max-width: 60ch; }

.coach {
  display: grid;
  grid-template-columns: clamp(110px, 26vw, 190px) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
  background: var(--ink);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.coach--lead {
  background: linear-gradient(150deg, rgba(228,23,43,0.12), rgba(10,11,13,0) 55%), var(--ink);
}

/* Portrait, or a monogram where there isn't one yet. Same box either way. */
.coach__photo,
.coach__mono {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-top: 3px solid var(--bolt);
}
.coach__photo {
  object-fit: cover;
  object-position: center 32%;
  filter: grayscale(0.35) contrast(1.05);
  transition: filter 0.4s var(--ease);
}
.coach:hover .coach__photo { filter: grayscale(0) contrast(1); }

.coach__mono {
  display: grid;
  place-items: center;
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-top: 3px solid var(--bolt);
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.02em;
  color: var(--haze);
}

.coach__body { min-width: 0; align-self: center; }

.coach__name {
  margin: 0;
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.05;
}
.coach__role {
  margin: 0.35rem 0 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bolt);
}
.coach__bio { margin: 0; font-size: 0.94rem; color: #C9D0D8; max-width: none; }

/* Visible placeholder — obvious in the browser, easy to find and replace. */
.coach__bio--todo {
  color: var(--haze);
  font-style: italic;
  border-left: 2px dashed var(--steel);
  padding-left: 0.75rem;
}

.coach__contact {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: none;
}
.coach__contact a { color: #C9D0D8; text-decoration: none; }
.coach__contact a:hover { color: var(--chrome); text-decoration: underline; }

/* --- 22. Board idea form -------------------------------------------------- */

.idea {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--steel);
  background: var(--carbon);
}
@media (min-width: 820px) { .idea { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr); } }

.idea__body p { color: #C9D0D8; margin: 0; }

.idea__form label { display: block; font-size: 0.85rem; color: #C9D0D8; margin: 0 0 0.4rem; }
.idea__form input,
.idea__form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  background: var(--ink);
  border: 1px solid var(--steel);
  color: var(--chrome);
  font-family: var(--body);
  font-size: 0.95rem;
  resize: vertical;
}
.idea__form input:focus,
.idea__form textarea:focus { outline: 2px solid var(--bolt); outline-offset: 1px; }

/* --- 24. Volunteer roles --------------------------------------------------- */

.roles { display: grid; gap: 1px; background: var(--steel); border: 1px solid var(--steel); }
@media (min-width: 700px) { .roles { grid-template-columns: repeat(2, 1fr); } }
.role--wide { grid-column: 1 / -1; }

.role { position: relative; background: var(--ink); padding: clamp(1.5rem, 3vw, 2rem); overflow: hidden; }
.role__n {
  position: absolute;
  top: -0.15em; right: 0.05em;
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  font-size: clamp(4rem, 8vw, 6rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(228, 23, 43, 0.35);
  pointer-events: none; user-select: none;
}
.role h3 { position: relative; margin: 0 0 0.75rem; }
.role p { position: relative; margin: 0; color: #C9D0D8; font-size: 0.95rem; }

/* Per-game volunteer sign-up list — same row shape as the schedule */
.vgame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid var(--steel);
}
.vgame:last-child { border-bottom: 0; }
.vgame:nth-child(odd) { background: rgba(255, 255, 255, 0.015); }
.vgame__opp {
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
}
.vgame__when { display: block; margin-top: 0.15rem; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--haze); }

.videocard {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--steel);
  background: var(--ink);
}

/* --- 26. Key dates --------------------------------------------------------- */

.dates {
  display: grid;
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.date {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
  padding: 1.1rem clamp(1.25rem, 3vw, 2rem);
  background: var(--ink);
}
.date__label { font-size: 0.95rem; color: #C9D0D8; }
.date__val {
  font-family: var(--display);
  font-stretch: var(--stretch-mid);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.date__val .tag { font-family: var(--body); font-weight: 700; }

/* --- 27. Reduced motion -------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
