/* ==========================================================================
   TURFSIDE — Design System
   A members' sports club where founders meet on the ground.
   Palette : floodlit ink / chalk line / deep turf / whistle red / trophy gold
   Type    : Archivo (variable width display) · Instrument Sans (body) · DM Mono (data)
   Signature: notched match-card corner + the Team Sheet
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* colour */
  --ink: #101311;
  --ink-80: rgba(16, 19, 17, .80);
  --ink-60: rgba(16, 19, 17, .58);
  --ink-40: rgba(16, 19, 17, .38);
  --ink-14: rgba(16, 19, 17, .14);
  --ink-08: rgba(16, 19, 17, .08);

  --chalk: #eef0ea;
  --chalk-soft: #e5e8e0;
  --white: #fbfcfa;

  --turf: #0c3b2c;
  --turf-deep: #072318;
  --turf-line: rgba(238, 240, 234, .16);

  --signal: #ff3b24;
  --signal-ink: #d42a15;
  --gold: #e4a93b;

  /* type */
  --display: "Archivo", "Arial Black", system-ui, sans-serif;
  --body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* rhythm */
  --gutter: clamp(1.15rem, 3.4vw, 3.5rem);
  --shell: 1360px;
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --tap: 44px;
  --sec-y: clamp(4.5rem, 9vw, 9rem);
  --notch: 15px;
  --notch-sm: 9px;

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-snap: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: clamp(80px, 12vh, 120px); /* sticky header clearance for #anchors */
}
body {
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(.975rem, .93rem + .22vw, 1.075rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overflow-wrap: break-word;
  -webkit-tap-highlight-color: rgba(255, 59, 36, .18);
  padding-left: var(--safe-l);
  padding-right: var(--safe-r);
}
h1, h2, h3, .d1, .d2, .d3, .d4 { overflow-wrap: break-word; hyphens: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; background: var(--turf-deep); }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }
::selection { background: var(--signal); color: var(--white); }

/* ---------- 3. TYPE ---------- */
.d1, .d2, .d3, .d4 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "wdth" 112;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.015em;
}
.d1, .d2 { text-wrap: pretty; }
.d1 { font-size: clamp(2.85rem, 8.2vw, 7.4rem); line-height: .86; letter-spacing: -.03em; }
.d2 { font-size: clamp(2.1rem, 5.2vw, 4.1rem); }
.d3 { font-size: clamp(1.5rem, 2.9vw, 2.35rem); }
.d4 { font-size: clamp(1.06rem, 1.5vw, 1.28rem); font-variation-settings: "wdth" 100; letter-spacing: .005em; }

.lede { font-size: clamp(1.06rem, 1.05rem + .4vw, 1.3rem); line-height: 1.55; color: var(--ink-80); max-width: 56ch; }
.small { font-size: .875rem; line-height: 1.5; }
.muted { color: var(--ink-60); }

.eyebrow {
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--signal); flex: none;
}
.eyebrow--plain::before { display: none; }
.data { font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; font-variant-numeric: tabular-nums; }

/* ---------- 4. LAYOUT ---------- */
.shell { width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }
/* horizontal scroller for wide tables on narrow screens */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; }
.table-scroll table { min-width: 560px; }
.table-scroll::-webkit-scrollbar { height: 4px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--ink-14); }
.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 5.5vw, 5rem); }
.sec-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 1.25rem 2rem; margin-bottom: clamp(2rem, 3.5vw, 3.25rem);
}
.sec-head__text { max-width: min(100%, 640px); display: grid; gap: .9rem; }
.sec-head__text p:not(.eyebrow) { max-width: 46ch; }
.rule { height: 1px; background: var(--ink-14); border: 0; }

/* dark surfaces */
.on-turf { background: var(--turf); color: var(--chalk); }
.on-turf .muted, .on-turf .eyebrow { color: rgba(238, 240, 234, .62); }
.on-turf .rule { background: var(--turf-line); }
.on-ink { background: var(--ink); color: var(--chalk); }
.on-ink .muted { color: rgba(238, 240, 234, .6); }

/* pitch-line texture for dark blocks */
.pitch-lines { position: relative; overflow: hidden; }
.pitch-lines::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.028) 0 2px, transparent 2px 128px);
}

/* ---------- 5. NOTCH + BUTTONS ---------- */
.notch {
  clip-path: polygon(var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch));
}
.notch-sm {
  clip-path: polygon(var(--notch-sm) 0, 100% 0, 100% calc(100% - var(--notch-sm)), calc(100% - var(--notch-sm)) 100%, 0 100%, 0 var(--notch-sm));
}

.btn {
  --btn-bg: var(--ink); --btn-fg: var(--chalk);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  padding: .95rem 1.65rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 105;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
  transition: transform .35s var(--ease), background .3s ease, color .3s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }
.btn--signal { --btn-bg: var(--signal); --btn-fg: var(--white); }
.btn--signal:hover { --btn-bg: var(--signal-ink); }
.btn--light { --btn-bg: var(--chalk); --btn-fg: var(--ink); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: currentColor;
  box-shadow: inset 0 0 0 1.5px currentColor;
}
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--chalk); box-shadow: none; }
.on-turf .btn--ghost:hover, .on-ink .btn--ghost:hover { --btn-bg: var(--chalk); --btn-fg: var(--ink); }
.btn--sm { padding: .68rem 1.05rem; font-size: .7rem; min-height: 40px; clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px); }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 1.5px solid currentColor;
  transition: gap .3s var(--ease), color .25s ease;
}
.link-arrow:hover { gap: .85rem; color: var(--signal); }

/* pills / chips */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .85rem; border: 1px solid var(--ink-14); border-radius: 100px;
  font-family: var(--mono); font-size: .71rem; letter-spacing: .07em; text-transform: uppercase;
  white-space: nowrap; transition: all .28s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"], .chip.is-on { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.chip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); flex: none; }

.tag {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .13em; text-transform: uppercase;
  padding: .3rem .55rem; background: var(--ink); color: var(--chalk); display: inline-block;
}
.tag--signal { background: var(--signal); color: var(--white); }
.tag--gold { background: var(--gold); color: var(--ink); }
.tag--open { background: transparent; color: inherit; box-shadow: inset 0 0 0 1px currentColor; }

.live {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
}
.live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal);
  box-shadow: 0 0 0 0 rgba(255, 59, 36, .7); animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(255, 59, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 36, 0); }
}

/* ---------- 6. TICKER ---------- */
.ticker {
  background: var(--ink); color: var(--chalk);
  border-bottom: 1px solid rgba(238, 240, 234, .1);
  overflow: hidden; position: relative; z-index: 60;
}
.ticker__track { display: flex; width: max-content; animation: slide 46s linear infinite; will-change: transform; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__set { display: flex; align-items: center; }
.ticker__item {
  display: inline-flex; align-items: center; gap: .55rem; padding: .58rem 1.4rem;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; white-space: nowrap;
  color: rgba(238, 240, 234, .78);
}
.ticker__item b { color: var(--chalk); font-weight: 500; }
.ticker__item::after { content: ""; width: 4px; height: 4px; background: var(--signal); margin-left: 1rem; }
.ticker__label { color: var(--signal); }
@keyframes slide { to { transform: translate3d(-50%, 0, 0); } }
/* JS adds .is-paused when the strip scrolls out of view — saves battery */
.is-paused .ticker__track, .is-paused .marquee__track, .is-paused .type-marquee__track, .is-paused .partners__track, .is-paused .founders-col__track { animation-play-state: paused; }

/* ---------- 7. HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(238, 240, 234, .82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-stuck { border-bottom-color: var(--ink-14); background: rgba(238, 240, 234, .95); }
.nav {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center;
  column-gap: clamp(.8rem, 2vw, 2rem); height: clamp(68px, 7.5vw, 84px);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; flex: none; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name {
  font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 118;
  font-size: 1.06rem; letter-spacing: .01em; text-transform: uppercase;
}
.brand__name span { color: var(--signal); }

/* Big, constant, centred wordmark — the site's new name, on every page. */
.nav__wordmark {
  justify-self: center; text-align: center; white-space: nowrap;
  font-family: var(--display); font-weight: 900; font-variation-settings: "wdth" 120;
  font-size: clamp(1.35rem, 1.05rem + 2.6vw, 2.35rem);
  letter-spacing: -.02em; text-transform: uppercase; line-height: 1;
  color: var(--ink); transition: color .2s ease;
}
.nav__wordmark span { color: var(--signal); }
.nav__wordmark:hover { color: var(--signal-ink); }

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__link {
  position: relative; font-size: .875rem; font-weight: 500; padding: .35rem 0;
  color: var(--ink-80); transition: color .25s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--signal); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: .7rem; flex: none; }

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink);
  transition: transform .35s var(--ease-snap), top .25s ease;
}
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 45; background: var(--ink); color: var(--chalk);
  height: 100dvh; overflow-y: auto; overscroll-behavior: contain;
  padding: clamp(5rem, 13vh, 9rem) var(--gutter) calc(2.5rem + var(--safe-b));
  display: grid; align-content: space-between; gap: 2rem;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-snap); pointer-events: none;
}
.drawer.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.drawer__links { display: grid; gap: .35rem; }
.drawer__link {
  font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 108;
  font-size: clamp(2rem, 9vw, 3rem); text-transform: uppercase; line-height: 1.08;
  display: flex; align-items: baseline; gap: .8rem; opacity: 0; transform: translateY(18px);
}
.drawer.is-open .drawer__link { animation: rise .55s var(--ease) forwards; }
.drawer__link i { font-family: var(--mono); font-size: .7rem; font-style: normal; color: var(--signal); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- 8. HERO ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 4vw, 4.5rem); align-items: start; margin-top: clamp(1.8rem, 3.5vw, 3rem); }
.hero__title { font-size: clamp(2.85rem, 12.4vw, 10.5rem); line-height: .84; letter-spacing: -.038em; }
.hero__title span { display: block; overflow: hidden; }
.hero__title span > i { display: block; font-style: normal; transform: translateY(105%); animation: unmask .95s var(--ease-snap) forwards; }
.hero__title span:nth-child(2) > i { animation-delay: .09s; }
.hero__title span:nth-child(3) > i { animation-delay: .18s; }
.hero__title em { font-style: normal; color: var(--signal); }
@keyframes unmask { to { transform: none; } }
.hero__sub { display: grid; gap: 1.6rem; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid var(--ink-14); }
.hero__meta div { display: grid; gap: .15rem; }
.hero__meta strong { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 118; font-size: 1.6rem; }

/* next-fixture card (hero right) */
.fixture-hero { background: var(--turf); color: var(--chalk); padding: clamp(1.4rem, 2.2vw, 1.9rem); position: relative; }
.fixture-hero__top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--turf-line); }
.fixture-hero__teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; padding: 1.6rem 0; }
.fixture-hero__team { display: grid; gap: .4rem; justify-items: center; text-align: center; }
.crest {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(238, 240, 234, .1); box-shadow: inset 0 0 0 1px var(--turf-line);
  font-family: var(--display); font-weight: 800; font-size: .95rem; letter-spacing: .02em;
}
.fixture-hero__vs { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--signal); }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-top: .2rem; }
.countdown div { text-align: center; padding: .7rem .3rem; background: rgba(238, 240, 234, .07); }
.countdown b { display: block; font-family: var(--mono); font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-variant-numeric: tabular-nums; }
.countdown small { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }
.slots { display: flex; align-items: center; gap: .5rem; margin-top: 1.2rem; }
.slots__bar { flex: 1; height: 5px; background: rgba(238, 240, 234, .14); overflow: hidden; }
.slots__fill { height: 100%; background: var(--signal); width: 0; transition: width 1.4s var(--ease) .3s; }

/* ---------- 9. SPORT RAIL ---------- */
.rail { display: flex; gap: .75rem; overflow-x: auto; padding-bottom: .75rem; scrollbar-width: thin; scroll-snap-type: x proximity; }
.rail::-webkit-scrollbar { height: 4px; }
.rail::-webkit-scrollbar-thumb { background: var(--ink-14); }
.rail > * { scroll-snap-align: start; }

.sport-tile {
  flex: none; width: clamp(150px, 20vw, 196px); background: var(--white); padding: 1.15rem;
  display: grid; gap: .75rem; align-content: start; box-shadow: inset 0 0 0 1px var(--ink-08);
  transition: transform .4s var(--ease), background .35s ease, color .35s ease, box-shadow .35s ease;
}
.sport-tile:hover { transform: translateY(-6px); background: var(--ink); color: var(--chalk); box-shadow: inset 0 0 0 1px var(--ink); }
.sport-tile:hover .sport-tile__meta { color: rgba(238, 240, 234, .6); }
.sport-tile:hover .sport-tile__ico { background: var(--signal); color: var(--white); }
.sport-tile__ico {
  width: 42px; height: 42px; display: grid; place-items: center; background: var(--chalk-soft);
  font-family: var(--mono); font-size: .66rem; letter-spacing: .05em; color: var(--ink-60);
  transition: background .35s ease, color .35s ease;
}
.sport-tile__name { font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 106; font-size: .93rem; text-transform: uppercase; letter-spacing: .01em; line-height: 1.15; }
.sport-tile__meta { font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; color: var(--ink-60); transition: color .35s ease; }

/* ---------- 10. CARDS ---------- */
.grid { display: grid; gap: clamp(1rem, 1.6vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 225px), 1fr)); }

.card { background: var(--white); box-shadow: inset 0 0 0 1px var(--ink-08); transition: transform .45s var(--ease), box-shadow .35s ease; }
.card:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--ink-14), 0 18px 40px -28px rgba(16,19,17,.5); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--turf-deep); }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.95);
  transition: transform .8s var(--ease), filter .6s ease;
}
.card:hover .card__media img { transform: scale(1.06); filter: grayscale(0) contrast(1.02); }
.card__media--tall { aspect-ratio: 3 / 4; }
.card__media--wide { aspect-ratio: 16 / 10; }
.card__badges { position: absolute; top: .8rem; left: .8rem; display: flex; gap: .35rem; flex-wrap: wrap; z-index: 2; }
.card__body { padding: 1.15rem 1.15rem 1.35rem; display: grid; gap: .6rem; align-content: start; }
.card__title { font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 104; font-size: 1.02rem; text-transform: uppercase; line-height: 1.18; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: .8rem; margin-top: .2rem; border-top: 1px solid var(--ink-08); }

/* venue / sport catalogue card */
.venue__row { display: flex; align-items: center; justify-content: space-between; gap: .6rem; font-size: .82rem; }
.venue__row + .venue__row { padding-top: .45rem; border-top: 1px dashed var(--ink-08); margin-top: .45rem; }
.price { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 115; font-size: 1.12rem; }
.price small { font-family: var(--body); font-weight: 400; font-size: .72rem; color: var(--ink-60); }

/* ---------- 11. TEAM SHEET (signature) ---------- */
.teamsheet { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.sheet {
  background: var(--white); box-shadow: inset 0 0 0 1px var(--ink-14);
}
.sheet__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; background: var(--ink); color: var(--chalk); }
.sheet__head h3 { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 112; font-size: 1rem; text-transform: uppercase; letter-spacing: .02em; }
.sheet__group { padding: .55rem 1.25rem; background: var(--chalk-soft); font-family: var(--mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-60); }
.slot {
  display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: .85rem;
  width: 100%; text-align: left; padding: .82rem 1.25rem; border-bottom: 1px solid var(--ink-08);
  transition: background .25s ease;
}
.slot:hover { background: var(--chalk); }
.slot__no { font-family: var(--mono); font-size: .82rem; color: var(--ink-40); font-variant-numeric: tabular-nums; }
.slot__who { display: grid; gap: .1rem; min-width: 0; }
.slot__name { font-weight: 600; font-size: .92rem; }
.slot__bio { font-family: var(--mono); font-size: .66rem; color: var(--ink-60); letter-spacing: .02em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.slot--open .slot__name { color: var(--ink-40); font-weight: 500; }
.slot--open:hover .slot__name { color: var(--signal); }
.slot__pos { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; padding: .22rem .45rem; background: var(--chalk-soft); color: var(--ink-60); }
.slot--open .slot__pos { background: transparent; box-shadow: inset 0 0 0 1px var(--signal); color: var(--signal); }
.sheet__foot { padding: 1.1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---------- 12. MARQUEE (past events) ---------- */
.marquee { overflow: hidden; position: relative; }
.marquee__track { display: flex; gap: 1rem; width: max-content; animation: slide 52s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 62s; }
.marquee__item {
  flex: none; width: clamp(210px, 26vw, 330px); aspect-ratio: 4 / 3; overflow: hidden;
  position: relative; background: var(--turf-deep);
}
.marquee__item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); transition: filter .5s ease, transform .8s var(--ease); }
.marquee__item:hover img { filter: none; transform: scale(1.05); }
.marquee__cap {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem .85rem .8rem; color: var(--chalk);
  background: linear-gradient(transparent, rgba(7, 35, 24, .88));
  font-family: var(--mono); font-size: .64rem; letter-spacing: .09em; text-transform: uppercase;
}

/* type marquee */
.type-marquee { overflow: hidden; padding-block: clamp(1.1rem, 2vw, 1.8rem); border-block: 1px solid var(--ink-14); }
.type-marquee__track { display: flex; width: max-content; animation: slide 30s linear infinite; will-change: transform; }
.type-marquee span {
  font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 118;
  font-size: clamp(1.6rem, 4vw, 3rem); text-transform: uppercase; padding-inline: 1.2rem;
  display: inline-flex; align-items: center; gap: 1.2rem; white-space: nowrap;
}
.type-marquee span::after { content: ""; width: 12px; height: 12px; background: var(--signal); flex: none; }
.type-marquee span:nth-child(even) { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.on-turf .type-marquee span:nth-child(even), .on-ink .type-marquee span:nth-child(even) { -webkit-text-stroke-color: var(--chalk); }

/* ---------- 12b. FRAME GALLERY (founders on the field) ---------- */
.frame {
  position: relative; padding: clamp(.9rem, 1.8vw, 1.5rem);
  background: var(--ink); box-shadow: inset 0 0 0 1px rgba(238, 240, 234, .14);
}
.frame::before, .frame::after,
.frame__corner::before, .frame__corner::after {
  content: ""; position: absolute; width: 26px; height: 26px; border: 2px solid var(--signal); z-index: 2;
}
.frame::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.frame::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.frame__corner::before { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.frame__corner::after { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.frame__grid {
  display: grid; gap: clamp(.5rem, 1vw, .85rem);
  grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(90px, 11vw, 150px);
}
.frame__grid .shot { grid-column: span 2; grid-row: span 2; }
.frame__grid .shot:nth-child(1) { grid-column: span 3; grid-row: span 3; }
.frame__grid .shot:nth-child(4) { grid-column: span 3; grid-row: span 3; }
.frame__grid .shot:nth-child(2),
.frame__grid .shot:nth-child(3),
.frame__grid .shot:nth-child(5),
.frame__grid .shot:nth-child(6) { grid-column: span 3; grid-row: span 2; }
.frame .shot { position: relative; overflow: hidden; display: block; cursor: zoom-in; background: var(--turf-deep); }
.frame .shot img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) contrast(1.06); transition: transform .8s var(--ease), filter .5s ease; }
.frame .shot:hover img { transform: scale(1.06); filter: none; }
.frame .shot__cap {
  position: absolute; inset: auto 0 0 0; padding: .9rem .8rem .6rem; color: var(--chalk);
  background: linear-gradient(transparent, rgba(7, 35, 24, .9));
  font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px); transition: opacity .35s ease, transform .35s ease;
}
.frame .shot:hover .shot__cap { opacity: 1; transform: none; }

/* ---------- 12c. PARTNERS STRIP (horizontal auto-scroll) ---------- */
.partners { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.partners__track { display: flex; align-items: center; gap: clamp(2rem, 4vw, 4rem); width: max-content; animation: slide 34s linear infinite; will-change: transform; }
.partners:hover .partners__track { animation-play-state: paused; }
.partners__item {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  height: clamp(52px, 6vw, 74px); padding-inline: .5rem;
}
.partners__item img {
  max-height: 100%; width: auto; max-width: clamp(110px, 12vw, 160px); object-fit: contain;
  filter: grayscale(1) opacity(.62); transition: filter .35s ease, transform .35s var(--ease);
}
.partners__item:hover img { filter: none; opacity: 1; transform: scale(1.06); }
.on-ink .partners__item img, .on-turf .partners__item img { filter: grayscale(1) brightness(0) invert(1) opacity(.55); }
.on-ink .partners__item:hover img, .on-turf .partners__item:hover img { filter: none; opacity: 1; }

/* ---------- 12d. FOUNDERS VERTICAL SCROLLER ---------- */
@keyframes slideV { to { transform: translate3d(0, -50%, 0); } }
.founders-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.7rem, 1.4vw, 1.1rem); height: clamp(420px, 62vw, 560px); }
.founders-col { overflow: hidden; position: relative; height: 100%; -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent); }
.founders-col__track { display: flex; flex-direction: column; gap: clamp(.7rem, 1.4vw, 1.1rem); width: 100%; animation: slideV 38s linear infinite; will-change: transform; }
.founders-col:nth-child(2) .founders-col__track { animation-duration: 46s; animation-direction: reverse; }
.founders-col:nth-child(3) .founders-col__track { animation-duration: 42s; }
.founders-wall:hover .founders-col__track { animation-play-state: paused; }
.founder-card {
  position: relative; flex: none; aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink-14);
}
.founder-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2) contrast(1.05); transition: filter .4s ease, transform .6s var(--ease); }
.founder-card:hover img { filter: none; transform: scale(1.05); }
.founder-card__tag {
  position: absolute; inset: auto 0 0 0; padding: .95rem .85rem .7rem; color: var(--chalk);
  background: linear-gradient(transparent, rgba(16, 19, 17, .92));
}
.founder-card__tag b { display: block; font-family: var(--display); font-weight: 800; font-size: .92rem; text-transform: uppercase; letter-spacing: -.005em; }
.founder-card__tag span { display: block; font-family: var(--mono); font-size: .62rem; letter-spacing: .05em; opacity: .78; margin-top: .1rem; }

/* ---------- 13. STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); gap: 1px; background: var(--turf-line); }
.stat { padding: clamp(1.4rem, 2.5vw, 2.2rem) 1.2rem; background: var(--turf); display: grid; gap: .35rem; }
.stat__n { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 120; font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__l { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .66; }

/* ---------- 14. STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 1px; background: var(--ink-14); }
.step { background: var(--chalk); padding: clamp(1.5rem, 2.6vw, 2.3rem); display: grid; gap: .8rem; align-content: start; position: relative; }
.step__n { font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; color: var(--signal); }
.step h3 { font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 106; font-size: 1.1rem; text-transform: uppercase; }

/* ---------- 15. TABS ---------- */
.tabs { display: flex; gap: 1.6rem; border-bottom: 1px solid var(--ink-14); margin-bottom: 2rem; overflow-x: auto; }
.tab {
  position: relative; padding: .8rem 0; white-space: nowrap;
  font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 104;
  font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-40);
  transition: color .25s ease;
}
.tab::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--signal); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.tab[aria-selected="true"] { color: var(--ink); }
.tab[aria-selected="true"]::after { transform: scaleX(1); }
.on-turf .tab { color: rgba(238,240,234,.5); }
.on-turf .tab[aria-selected="true"] { color: var(--chalk); }
.tabpanel[hidden] { display: none; }

/* ---------- 16. FIXTURE ROWS ---------- */
.fixture {
  display: grid; grid-template-columns: 92px minmax(0, 1fr) auto; gap: clamp(1rem, 2vw, 2rem);
  align-items: center; padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--white); box-shadow: inset 0 0 0 1px var(--ink-08);
  transition: transform .4s var(--ease), box-shadow .3s ease;
}
.fixture:hover { transform: translateX(5px); box-shadow: inset 0 0 0 1px var(--ink-14), inset 4px 0 0 var(--signal); }
.fixture__date { display: grid; gap: .1rem; padding-right: clamp(1rem, 2vw, 2rem); border-right: 1px solid var(--ink-08); }
.fixture__day { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 118; font-size: 1.9rem; line-height: 1; }
.fixture__mon { font-family: var(--mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-60); }
.fixture__main { display: grid; gap: .4rem; min-width: 0; }
.fixture__title { font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 104; font-size: 1.02rem; text-transform: uppercase; line-height: 1.2; }
.fixture__meta { display: flex; flex-wrap: wrap; gap: .35rem .95rem; font-family: var(--mono); font-size: .68rem; color: var(--ink-60); letter-spacing: .03em; }
.fixture__end { display: grid; gap: .5rem; justify-items: end; text-align: right; }

.score { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 118; font-size: 1.25rem; font-variant-numeric: tabular-nums; }
.score em { font-style: normal; font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; color: var(--ink-40); font-weight: 400; }

/* ---------- 17. MEMBERS ---------- */
.member { background: var(--white); box-shadow: inset 0 0 0 1px var(--ink-08); display: grid; transition: transform .45s var(--ease), box-shadow .3s; }
.member:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--ink-14), 0 18px 40px -28px rgba(16,19,17,.5); }
.member__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--turf-deep); position: relative; }
.member__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .5s ease, transform .8s var(--ease); }
.member:hover .member__media img { filter: none; transform: scale(1.05); }
.member__sport { position: absolute; bottom: .6rem; left: .6rem; }
.member__body { padding: 1rem 1.05rem 1.2rem; display: grid; gap: .3rem; }
.member__name { font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 104; font-size: .98rem; text-transform: uppercase; }
.member__role { font-size: .8rem; color: var(--ink-60); }
.member__tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .5rem; }

/* ---------- 18. GALLERY ---------- */
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.5rem, 1vw, 1rem); }
.shot { position: relative; overflow: hidden; background: var(--turf-deep); cursor: zoom-in; grid-column: span 4; aspect-ratio: 4/3; }
.shot img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); transition: filter .5s ease, transform .9s var(--ease); }
.shot:hover img { filter: none; transform: scale(1.05); }
.shot--w { grid-column: span 8; aspect-ratio: 16/9; }
.shot--t { grid-column: span 4; aspect-ratio: 3/4; }
.shot--h { grid-column: span 6; aspect-ratio: 3/2; }
.shot__cap {
  position: absolute; inset: auto 0 0 0; padding: 2rem .9rem .85rem; color: var(--chalk);
  background: linear-gradient(transparent, rgba(7,35,24,.9));
  font-family: var(--mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: all .4s var(--ease);
}
.shot:hover .shot__cap { opacity: 1; transform: none; }

.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(7,35,24,.96); display: grid; place-items: center; padding: var(--gutter); opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(100%, 1100px); max-height: 82vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.2rem; color: var(--chalk); width: 44px; height: 44px; display: grid; place-items: center; font-size: 1.4rem; }
.lightbox__cap { color: rgba(238,240,234,.7); font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 1rem; text-align: center; }

/* ---------- 19. FORMS ---------- */
.field { display: grid; gap: .45rem; }
.field label { font-family: var(--mono); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-60); }
.field input, .field select, .field textarea {
  background: var(--white); border: 1px solid var(--ink-14); padding: .85rem 1rem; width: 100%;
  font-size: .95rem; transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(255,59,36,.12); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.on-turf .field input, .on-turf .field select, .on-turf .field textarea { background: rgba(238,240,234,.06); border-color: var(--turf-line); color: var(--chalk); }
.on-turf .field label { color: rgba(238,240,234,.6); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 1.1rem; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .85rem; color: var(--ink-60); }
.check input { width: 18px; height: 18px; flex: none; margin-top: .18rem; accent-color: var(--signal); }

/* ---------- 20. PLANS ---------- */
.plan { background: var(--white); padding: clamp(1.4rem, 2.4vw, 2rem); display: grid; gap: 1.1rem; align-content: start; box-shadow: inset 0 0 0 1px var(--ink-14); transition: transform .45s var(--ease); }
.plan:hover { transform: translateY(-6px); }
.plan--feature { background: var(--ink); color: var(--chalk); box-shadow: inset 0 0 0 1px var(--ink); }
.plan--feature .muted, .plan--feature .plan__price small { color: rgba(238,240,234,.6); }
.plan__price { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 118; font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1; }
.plan__price small { font-family: var(--body); font-weight: 400; font-size: .78rem; color: var(--ink-60); letter-spacing: 0; }
.plan ul { display: grid; gap: .6rem; font-size: .88rem; }
.plan li { display: grid; grid-template-columns: 16px 1fr; gap: .6rem; align-items: start; }
.plan li::before { content: "→"; color: var(--signal); font-size: .85rem; line-height: 1.5; }

/* ---------- 21. ACCORDION ---------- */
.acc { border-top: 1px solid var(--ink-14); }
.acc__item { border-bottom: 1px solid var(--ink-14); }
.acc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left; padding: 1.3rem 0; font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 104; font-size: 1rem; text-transform: uppercase; }
.acc__ico { flex: none; width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--ink-14); transition: transform .4s var(--ease), background .3s; }
.acc__item.is-open .acc__ico { transform: rotate(45deg); background: var(--signal); color: var(--white); border-color: var(--signal); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding-bottom: 1.4rem; max-width: 68ch; color: var(--ink-80); }

/* ---------- 22. FOOTER ---------- */
.site-footer { background: var(--ink); color: var(--chalk); padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, .7fr)); gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(238,240,234,.12); }
.footer__col h4 { font-family: var(--mono); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(238,240,234,.5); margin-bottom: 1rem; }
.footer__col a { display: block; padding: .3rem 0; font-size: .89rem; color: rgba(238,240,234,.8); transition: color .25s, padding-left .3s var(--ease); }
.footer__col a:hover { color: var(--signal); padding-left: 6px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; padding-top: 1.6rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: rgba(238,240,234,.5); }
.footer__wordmark { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 125; font-size: clamp(2.2rem, 11.5vw, 9rem); line-height: .8; white-space: nowrap; overflow: hidden; text-transform: uppercase; letter-spacing: -.02em; color: transparent; -webkit-text-stroke: 1.5px rgba(238,240,234,.28); margin-top: 2.5rem; user-select: none; }

/* ---------- 23. PAGE HEAD ---------- */
.pagehead { padding-block: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 4vw, 3.5rem); }
.pagehead__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 2rem 3rem; align-items: end; }
.crumbs { display: flex; gap: .5rem; align-items: center; font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 1.2rem; }
.crumbs a:hover { color: var(--signal); }

/* ---------- 24. REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }
.reveal[data-d="5"] { transition-delay: .45s; }

/* ---------- 25. UTIL ---------- */
.flow > * + * { margin-top: 1.15rem; }
.flex { display: flex; }
.wrap { flex-wrap: wrap; }
.ai-c { align-items: center; }
.jc-sb { justify-content: space-between; }
.gap-s { gap: .6rem; } .gap-m { gap: 1rem; } .gap-l { gap: 1.6rem; }
.mt-s { margin-top: 1rem; } .mt-m { margin-top: 2rem; } .mt-l { margin-top: 3rem; }
.tc { text-align: center; } .mx { margin-inline: auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.no-scroll { overflow: hidden; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 130%);
  background: var(--ink); color: var(--chalk); padding: .85rem 1.3rem; z-index: 95;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .07em; text-transform: uppercase;
  transition: transform .5s var(--ease-snap); max-width: calc(100vw - 2rem);
}
.toast.is-up { transform: translate(-50%, 0); }

/* ---------- 26. RESPONSIVE ----------
   Breakpoints follow the content, not device names:
   1280 shell · 1100 nav crowding · 1024 two-col break · 940 burger
   820 fixture reflow · 680 grid halving · 540 single column · 380 dense phone
   ------------------------------------------------------------------------ */

/* --- large laptop --- */
@media (max-width: 1280px) {
  :root { --shell: 1160px; }
}

/* --- small laptop: nav starts to crowd --- */
@media (max-width: 1100px) {
  .nav__links { gap: 1.05rem; }
  .nav__link { font-size: .82rem; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: 2.5rem; }
  .grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* --- tablet landscape: stack the two-column layouts --- */
@media (max-width: 1024px) {
  :root { --sec-y: clamp(3.75rem, 8vw, 6rem); }
  .hero__grid, .teamsheet, .pagehead__grid { grid-template-columns: 1fr; }
  .hero__grid { gap: clamp(2rem, 5vw, 3rem); }
  .fixture-hero { max-width: 560px; }
  .pagehead__grid { gap: 1.75rem; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
  .shot--w { grid-column: span 12; }
  .shot--h { grid-column: span 6; }
  .sec-head__text { max-width: min(100%, 560px); }
}

/* --- tablet portrait: switch to the drawer --- */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .burger { display: flex; }
  .nav { height: clamp(60px, 9vw, 72px); }
  .grid--2, .grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
}

/* --- large phone / small tablet: fixture rows reflow --- */
@media (max-width: 820px) {
  .fixture { grid-template-columns: 72px minmax(0, 1fr); gap: 1rem; }
  .fixture__date { padding-right: 1rem; }
  .fixture__day { font-size: 1.55rem; }
  .fixture__end {
    grid-column: 1 / -1; justify-items: start; text-align: left;
    grid-auto-flow: column; justify-content: flex-start; align-items: center; gap: .75rem;
    padding-top: .9rem; border-top: 1px solid var(--ink-08);
  }
  .fixture:hover { transform: none; }
  .shot, .shot--t, .shot--h { grid-column: span 6; }
  .ticker__item { font-size: .66rem; padding: .55rem 1.05rem; }
  .type-marquee { padding-block: 1rem; }
}

/* --- phone: halve the grids, tighten the rhythm --- */
@media (max-width: 680px) {
  :root { --sec-y: clamp(3.25rem, 11vw, 4.5rem); --notch: 12px; }
  .footer__top { grid-template-columns: 1fr; gap: 1.75rem; padding-bottom: 2.25rem; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .shot, .shot--t, .shot--h, .shot--w { grid-column: span 12; aspect-ratio: 4 / 3; }
  .sec-head { align-items: flex-start; gap: 1rem; }
  .frame__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .frame__grid .shot,
  .frame__grid .shot:nth-child(1),
  .frame__grid .shot:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .founders-wall { grid-template-columns: repeat(2, 1fr); height: clamp(360px, 90vw, 460px); }
  .founders-col:nth-child(3) { display: none; }
  .hero__meta { gap: 1.1rem 1.75rem; margin-top: 2rem; }
  .hero__meta > div { min-width: calc(50% - 1rem); }
  .marquee__item { width: clamp(190px, 62vw, 260px); }
  .tabs { gap: 1.15rem; }
  .card:hover, .member:hover, .plan:hover, .sport-tile:hover { transform: none; }
  .acc__btn { font-size: .92rem; padding: 1.1rem 0; }
  .lightbox img { max-height: 70vh; }
}

/* --- small phone: one column everywhere --- */
@media (max-width: 540px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .fixture { grid-template-columns: 1fr; }
  .fixture__date {
    grid-auto-flow: column; justify-content: flex-start; align-items: baseline; gap: .6rem;
    padding-right: 0; border-right: 0; padding-bottom: .1rem;
  }
  .fixture__day { font-size: 1.35rem; }
  .countdown { gap: .3rem; }
  .countdown div { padding: .6rem .2rem; }
  .sheet__head, .sheet__foot, .slot, .sheet__group { padding-inline: 1rem; }
  .slot { grid-template-columns: 26px minmax(0, 1fr) auto; gap: .65rem; }
  .plan { padding: 1.35rem 1.15rem; }
  .btn--block { min-height: var(--tap); }
  .footer__bottom { gap: .5rem; }
}

/* --- dense phone --- */
@media (max-width: 380px) {
  :root { --gutter: .95rem; }
  .d1 { font-size: clamp(1.9rem, 9.4vw, 7.4rem); }
  .btn { padding: .8rem 1.1rem; font-size: .72rem; }
  .stats { grid-template-columns: 1fr; }
  .hero__meta > div { min-width: 100%; }
  .brand__name { font-size: .98rem; }
  .nav__wordmark { font-size: clamp(1.05rem, .9rem + 3vw, 1.6rem); letter-spacing: -.01em; }
  .countdown small { font-size: .52rem; letter-spacing: .1em; }
}

/* --- phone in landscape: the drawer must not overflow --- */
@media (max-height: 520px) and (orientation: landscape) {
  .drawer { padding-top: 4.5rem; align-content: start; gap: 1.25rem; }
  .drawer__link { font-size: 1.5rem; }
  .hero { padding-top: 1.5rem; }
}

/* --- coarse pointers: no hover-only affordances --- */
@media (hover: none) {
  .shot__cap { opacity: 1; transform: none; }
  .card__media img, .member__media img, .marquee__item img { filter: grayscale(1) contrast(1.06); }
  .btn:hover, .card:hover, .member:hover, .fixture:hover, .sport-tile:hover { transform: none; }
  .ticker:hover .ticker__track, .marquee:hover .marquee__track, .partners:hover .partners__track, .founders-wall:hover .founders-col__track { animation-play-state: running; }
  .partners__item img, .founder-card img, .frame .shot img { filter: none; }
}

/* --- very wide screens: stop the measure running away --- */
@media (min-width: 1800px) {
  :root { --shell: 1480px; }
}

/* ---------- 27. MOTION PREFERENCES ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title span > i { transform: none; }
  .ticker__track, .marquee__track, .type-marquee__track, .partners__track, .founders-col__track { animation: none; }
  .site-header { backdrop-filter: none; background: var(--chalk); }
}

/* Saving data? Drop the blur and the duotone repaint. */
@media (prefers-reduced-data: reduce) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--chalk); }
  .card__media img, .member__media img, .shot img, .marquee__item img { filter: none; }
}

/* ---------- 28. PRINT ---------- */
@media print {
  .site-header, .ticker, .site-footer, .drawer, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
