/* ==========================================================================
   Awladna Soccer Club
   ========================================================================== */

/* ── fonts ─────────────────────────────────────────────────────────────
   Self-hosted. Previously these came from fonts.googleapis.com, whose
   stylesheet is render-blocking and had to finish (measured at 132ms, on top
   of a fresh DNS + TLS handshake) before fonts.gstatic.com could even be
   contacted for the files. Same bytes, two fewer origins on the critical path.

   Archivo ships as one variable file covering the whole weight range, so the
   400/600/700 the page uses are a single download.
   Latin subset only — the Arabic on the page falls back to a system face,
   exactly as it did with Google's own subsetting. */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/anton-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/archivo-var.woff2') format('woff2-variations'), url('fonts/archivo-var.woff2') format('woff2');
}

:root {
  --black:  #07100c;
  --black-2:#0b1712;
  --pitch:  #103a2a;
  --volt:   #d9ff3e;
  --bone:   #f2f4ef;
  --mute:   rgba(242, 244, 239, .58);
  --hair:   rgba(242, 244, 239, .14);
  --tint:   rgba(10, 28, 20, .46);   /* flat stand-in for the old grayscale filter */

  --big:  "Anton", "Haettenschweiler", "Arial Narrow", sans-serif;
  --ui:   "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gut: clamp(18px, 4.4vw, 72px);
  --max: 1440px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: var(--ui);
  font-size: clamp(15.5px, .5vw + 14px, 17.5px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; }

::selection { background: var(--volt); color: var(--black); }
:focus-visible { outline: 2px solid var(--volt); outline-offset: 4px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--volt); color: var(--black);
  padding: .7em 1.2em; font-weight: 600; letter-spacing: .06em;
}
.skip:focus { left: 0; }

/* ── overlays ──────────────────────────────────────────────────────────── */

.grain {
  position: fixed; inset: 0; z-index: 500;
  pointer-events: none; opacity: .05;
  /* No mix-blend-mode. A blend layer cannot be composited independently of
     what is beneath it, so covering the viewport with one made the browser
     re-blend the whole screen every frame while scrolling — measured at 50ms
     per frame on its own. The noise is desaturated in the SVG instead, so
     plain alpha gives the same grain for free. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 400; background: rgba(242,244,239,.08); pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 0;
  background: var(--volt);
  transform-origin: left;
}

/* ── top bar ───────────────────────────────────────────────────────────── */

.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px var(--gut);
  transition: background .3s, padding .3s;
}
.top.is-solid {
  /* was backdrop-filter: blur(10px) — re-blurred everything behind the bar
     on every scroll frame. Near-opaque reads the same on a black page. */
  background: rgba(7,16,12,.94);
  padding-top: 13px; padding-bottom: 13px;
}

.mark { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.mark svg { width: 27px; height: 27px; color: var(--volt); flex: 0 0 auto; }
.mark span {
  font-family: var(--big); font-size: 19px; letter-spacing: .04em;
  text-transform: uppercase; line-height: 1;
  display: flex; flex-direction: column; gap: 3px;
}
.mark em {
  font-family: var(--ui); font-style: normal; font-weight: 600;
  font-size: 9.5px; letter-spacing: .26em; color: var(--mute);
}

.top__nav { display: flex; gap: clamp(14px, 2vw, 30px); }
.top__nav a {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: var(--mute);
  transition: color .2s;
}
.top__nav a:hover { color: var(--volt); }

.top__cta {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none;
  background: var(--volt); color: var(--black);
  padding: 11px 20px;
  transition: background .2s, color .2s;
}
.top__cta:hover { background: var(--bone); }

@media (max-width: 900px) { .top__nav { display: none; } }
@media (max-width: 420px) { .mark em { display: none; } }

/* ── hero ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px var(--gut) clamp(24px, 3vw, 40px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: -8% 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .5;   /* opacity is composited; filter would re-rasterise on every parallax step */
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, var(--black) 4%, rgba(7,16,12,.55) 46%, rgba(7,16,12,.72) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(16,58,42,.5), transparent 70%);
}
.hero__inner, .hero__foot { position: relative; z-index: 2; }

.hero__eyebrow {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 0 0 clamp(14px, 2vw, 24px);
  font-size: 11.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
}
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--volt); display: inline-block; }

.hero__word {
  font-family: var(--big);
  font-size: clamp(58px, 15.5vw, 250px);
  line-height: .82;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0 0 clamp(18px, 2.4vw, 30px);
}
.hero__word .ln { display: block; overflow: hidden; }
.hero__word .ln > span {
  display: block;
  animation: rise 1s cubic-bezier(.16,.84,.3,1) both;
}
.hero__word .ln:nth-child(2) > span { animation-delay: .12s; }
@keyframes rise { from { transform: translateY(105%); } }
.ln--outline > span {
  color: transparent;
  -webkit-text-stroke: clamp(1px, .13vw, 2.4px) var(--volt);
}

.hero__blurb {
  max-width: 44ch; margin: 0;
  color: rgba(242,244,239,.78);
  font-size: clamp(15.5px, 1.15vw, 19px);
}

.hero__foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  margin-top: clamp(34px, 6vw, 74px);
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.scroller {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; color: var(--mute);
}
.scroller__line {
  width: 46px; height: 1px; background: var(--volt); position: relative; overflow: hidden;
}
.scroller__line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--black);
  animation: sweep 2.1s cubic-bezier(.6,0,.3,1) infinite;
}
@keyframes sweep {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}
.hero__by { margin: 0; font-size: 12.5px; color: var(--mute); text-align: right; }
.hero__by b { color: var(--bone); font-weight: 600; }

@media (max-width: 560px) {
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__by { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__word .ln > span { animation: none; }
  .scroller__line::after { animation: none; display: none; }
}

/* ── marquee ───────────────────────────────────────────────────────────── */

.strip {
  background: var(--volt); color: var(--black);
  overflow: hidden; padding: 0;
  user-select: none;
}
.strip__track {
  display: flex; width: max-content;
  font-family: var(--big);
  font-size: clamp(26px, 4.4vw, 60px);
  letter-spacing: .01em; text-transform: uppercase; white-space: nowrap;
  /* Anton's caps ride high in the em box, so the padding is deliberately
     lopsided — it puts the *ink* in the middle of the band, not the line box.
     In em so it holds as the type scales. */
  line-height: 1;
  padding: .75em 0 .22em;
  /* fallback only — with JS on, script.js drives the transform instead */
  animation: slide 28s linear infinite;
}
.js .strip__track { animation: none; will-change: transform; }

/* drawn rather than typed: ★ falls back to a system font whose glyph sits at
   its own height, which never lined up with the caps beside it */
.strip__track i {
  display: inline-block;
  position: relative;
  top: -.49em;                 /* baseline-sat box, lifted to the cap centre */
  width: .38em; height: .38em;
  margin: 0 .3em;
  background: currentColor;
  opacity: .42;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%,
                     21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
@keyframes slide { to { transform: translateX(-33.3333%); } }
@media (prefers-reduced-motion: reduce) {
  .strip__track, .js .strip__track { animation: none; transform: none !important; }
}

/* ── shared bits ───────────────────────────────────────────────────────── */

.tag {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 clamp(18px, 2.4vw, 30px);
  font-size: 11.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
}
.tag__i { color: var(--volt); font-family: var(--big); font-size: 15px; letter-spacing: .06em; }

.frame { margin: 0; overflow: hidden; background: var(--black-2); }
.frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.3,1);
}
/* The palette tint that grayscale() used to provide, as a flat overlay.
   One composite instead of a per-pixel pass. */
.frame { position: relative; }
.frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: var(--tint);
  transition: opacity .5s ease;
}
.frame:hover::after { opacity: 0; }
.frame:hover img { transform: scale(1.03); }

.body { max-width: 52ch; color: rgba(242,244,239,.74); }
.body p { margin: 0 0 1.05em; }
.body p:last-child { margin-bottom: 0; }

/* ── club ──────────────────────────────────────────────────────────────── */

.club {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 10vw, 150px) var(--gut) clamp(40px, 6vw, 80px);
}
.club__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.statement {
  font-family: var(--big);
  font-size: clamp(30px, 4.4vw, 66px);
  line-height: 1.02; letter-spacing: -.005em; text-transform: uppercase;
  margin: 0 0 clamp(22px, 3vw, 34px);
  max-width: 16ch;
}
.statement em { font-style: normal; color: var(--volt); }
.statement [lang="ar"] { font-family: var(--ui); font-weight: 600; font-size: .78em; }

.frame--intro { aspect-ratio: 4 / 5; }

@media (max-width: 860px) {
  .club__grid { grid-template-columns: 1fr; }
  .frame--intro { aspect-ratio: 16 / 10; }
}

.tally {
  display: grid; grid-template-columns: repeat(2, 1fr);
  margin: clamp(48px, 7vw, 92px) 0 0;
  border-top: 1px solid var(--hair);
}
.tally > div { padding: 24px 16px 6px 0; border-right: 1px solid var(--hair); }
.tally > div:last-child { border-right: 0; }
.tally dt {
  font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 10px;
}
.tally dd {
  margin: 0; font-family: var(--big);
  font-size: clamp(34px, 6vw, 84px); line-height: .9; letter-spacing: -.01em;
  color: var(--volt);
}
.tally dd i { font-style: normal; opacity: .45; }
@media (max-width: 520px) {
  .tally { grid-template-columns: 1fr; }
  .tally > div { border-right: 0; }
  .tally > div + div { border-top: 1px solid var(--hair); }
}

/* ── session ───────────────────────────────────────────────────────────── */

.session {
  background: var(--black-2);
  padding: clamp(60px, 9vw, 130px) 0;
  border-top: 1px solid var(--hair);
}
.session__head, .session__body, .kitlist {
  max-width: var(--max); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut);
}
.session__title {
  font-family: var(--big);
  font-size: clamp(34px, 6vw, 92px); line-height: .92;
  text-transform: uppercase; letter-spacing: -.01em;
  margin: 0 0 clamp(32px, 5vw, 64px);
}

.session__body {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 80px);
  align-items: start;
}
.session__stage { position: sticky; top: clamp(80px, 14vh, 130px); }
.stack { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--black); }
.stack__img { margin: 0; position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease, transform 1.2s cubic-bezier(.2,.8,.3,1); transform: scale(1.06); }
.stack__img.is-on { opacity: 1; transform: scale(1); }
.stack__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.stack__img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: var(--tint);
}

.beats { list-style: none; margin: 0; padding: 0; }
.beat {
  padding: clamp(28px, 4.5vw, 60px) 0;
  border-bottom: 1px solid var(--hair);
  opacity: .35;
  transition: opacity .45s ease;
}
.beat:first-child { border-top: 1px solid var(--hair); }
.beat.is-on { opacity: 1; }
.beat__n {
  display: block; font-family: var(--big);
  font-size: clamp(24px, 2.4vw, 34px); color: var(--volt);
  line-height: 1; margin-bottom: 12px;
}
.beat h3 {
  font-family: var(--big);
  font-size: clamp(26px, 3.4vw, 46px); line-height: 1;
  text-transform: uppercase; letter-spacing: -.005em;
  margin: 0 0 10px;
}
.beat p { margin: 0; max-width: 46ch; color: rgba(242,244,239,.7); }

@media (max-width: 860px) {
  .session__body { grid-template-columns: 1fr; }
  .session__stage { position: relative; top: 0; margin-bottom: 8px; }
  .stack { aspect-ratio: 16 / 11; }
  .beat { opacity: 1; }
}

.kitlist {
  list-style: none; margin: clamp(40px, 6vw, 72px) auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px clamp(24px, 5vw, 70px);
}
.kitlist li { padding-top: 16px; border-top: 1px solid var(--hair); color: rgba(242,244,239,.72); }
.kitlist span {
  display: block; margin-bottom: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--volt);
}

/* ── knockout ──────────────────────────────────────────────────────────── */

.knock {
  padding: clamp(56px, 9vw, 120px) var(--gut);
  text-align: center;
  border-top: 1px solid var(--hair);
}
.knock__word {
  font-family: var(--big);
  font-size: clamp(64px, 21vw, 340px);
  line-height: .8; letter-spacing: -.02em; text-transform: uppercase;
  margin: 0;
  color: var(--volt);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .knock__word {
    background-image: url("images/knockout.svg");
    background-size: cover;
    background-position: center 40%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(217,255,62,.35);
  }
}
.knock__sub {
  margin: clamp(14px, 2vw, 24px) 0 0;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--mute);
}
.knock__sub [lang="ar"] { font-size: 15px; letter-spacing: 0; text-transform: none; color: var(--bone); }

/* ── reel ──────────────────────────────────────────────────────────────── */

.reel { position: relative; background: var(--black-2); border-top: 1px solid var(--hair); }
.reel__pin { padding: clamp(48px, 7vw, 96px) 0; }

.reel__head {
  width: 100%;
  max-width: var(--max); margin: 0 auto clamp(20px, 3vw, 34px);
  padding: 0 var(--gut);
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
}
.reel__head .tag { margin: 0; }
.reel__hint {
  margin: 0; font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--volt);
}

.rail { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.rail::-webkit-scrollbar { display: none; }
.rail__track {
  display: flex; align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  padding: 0 var(--gut);
  width: max-content;
}
.rail__card { margin: 0; flex: 0 0 auto; width: clamp(210px, 26vw, 380px); }
.rail__card--wide { width: clamp(280px, 38vw, 560px); }
.rail__card--tall { width: clamp(180px, 21vw, 300px); }

.rail__btn {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  cursor: pointer; overflow: hidden;
}
.rail__card img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.3,1);
}
.rail__card--tall img { aspect-ratio: 3 / 4; }
.rail__btn { position: relative; }
.rail__btn::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: var(--tint);
  transition: opacity .45s ease;
}
.rail__btn:hover::after { opacity: 0; }
.rail__btn:hover img { transform: scale(1.04); }

/* pinned horizontal mode, switched on by JS on wide screens */
.reel.is-pinned { height: var(--reel-h, 300vh); }
.reel.is-pinned .reel__pin {
  position: sticky; top: 0; height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(18px, 3vh, 40px);
  overflow: hidden; padding: 0;
}
.reel.is-pinned .reel__head { margin-bottom: 0; }
.reel.is-pinned .rail { overflow: visible; }
.reel.is-pinned .rail__track { will-change: transform; }

/* ── field ─────────────────────────────────────────────────────────────── */

.field {
  position: relative; overflow: hidden;
  min-height: clamp(520px, 88svh, 900px);
  display: flex; align-items: flex-end;
  padding: clamp(60px, 9vw, 130px) var(--gut) clamp(48px, 7vw, 96px);
  border-top: 1px solid var(--hair);
}
.field__bg { position: absolute; inset: -8% 0; margin: 0; z-index: 0; }
.field__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .42;
}
.field::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, var(--black) 6%, rgba(7,16,12,.6) 55%, rgba(7,16,12,.5) 100%);
}
.field__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; width: 100%; }
.field__name {
  font-family: var(--big);
  font-size: clamp(40px, 8.5vw, 130px); line-height: .88;
  text-transform: uppercase; letter-spacing: -.015em;
  margin: 0 0 clamp(16px, 2.4vw, 26px);
}
.field__note { max-width: 46ch; margin: 0 0 clamp(24px, 3.4vw, 36px); color: rgba(242,244,239,.8); }

.field__when {
  margin: 0 0 6px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--big); font-size: clamp(19px, 2.2vw, 30px);
  text-transform: uppercase; letter-spacing: .01em;
}
.field__when b { color: var(--volt); font-weight: inherit; }
.field__addr {
  margin: 0 0 clamp(20px, 2.6vw, 28px);
  font-size: 14px; letter-spacing: .04em;
  color: rgba(242,244,239,.62);
}

.field__notes {
  list-style: none; margin: clamp(30px, 4vw, 48px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px clamp(22px, 3.4vw, 52px);
  max-width: 980px;
}
.field__notes li {
  padding-top: 14px; border-top: 1px solid var(--hair);
  font-size: .93em; color: rgba(242,244,239,.72);
}
.field__notes span {
  display: block; margin-bottom: 5px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--volt);
}

.cta {
  display: inline-flex; align-items: center; gap: .7em;
  background: var(--volt); color: var(--black);
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; padding: 17px 30px;
  transition: background .2s, gap .2s;
}
.cta:hover { background: var(--bone); gap: 1.1em; }
.cta--ghost { background: transparent; color: var(--bone); box-shadow: inset 0 0 0 1px var(--hair); }
.cta--ghost:hover { background: rgba(242,244,239,.08); color: var(--bone); box-shadow: inset 0 0 0 1px var(--bone); }

/* ── register ──────────────────────────────────────────────────────────── */

.signup {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(60px, 9vw, 130px) var(--gut);
  border-top: 1px solid var(--hair);
}
.signup__title {
  font-family: var(--big);
  font-size: clamp(40px, 8vw, 118px); line-height: .88;
  text-transform: uppercase; letter-spacing: -.02em;
  margin: 0 0 clamp(16px, 2.2vw, 26px);
}
.signup__lede {
  max-width: 46ch; margin: 0 0 clamp(26px, 3.6vw, 40px);
  font-size: 1.05em; color: rgba(242,244,239,.8);
}
.signup__acts { display: flex; flex-wrap: wrap; gap: 12px; }

.signup__notes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px clamp(24px, 4vw, 60px);
  margin: clamp(38px, 5.5vw, 68px) 0 0;
}
.signup__notes > div { padding-top: 16px; border-top: 1px solid var(--hair); }
.signup__notes dt {
  margin-bottom: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--volt);
}
.signup__notes dd { margin: 0; color: rgba(242,244,239,.74); font-size: .96em; }
.signup__notes a { color: var(--bone); text-decoration: underline; text-underline-offset: 4px; }
.signup__notes a:hover { color: var(--volt); }

/* ── coaches ───────────────────────────────────────────────────────────── */

.coaches {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 10vw, 140px) var(--gut);
}
.coaches__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(24px, 4vw, 60px);
}
.who .frame { aspect-ratio: 4 / 5; }
.who h3 {
  font-family: var(--big);
  font-size: clamp(26px, 3vw, 42px); line-height: 1;
  text-transform: uppercase; margin: 22px 0 6px;
}
.who__role {
  margin: 0 0 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--volt);
}
.who p:last-child { margin: 0; color: rgba(242,244,239,.7); max-width: 42ch; }

/* ── end ───────────────────────────────────────────────────────────────── */

.end {
  padding: clamp(56px, 8vw, 110px) var(--gut) clamp(20px, 3vw, 40px);
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.end__dua {
  max-width: 30ch; margin: 0 0 clamp(30px, 5vw, 60px);
  font-size: clamp(18px, 2.1vw, 27px); line-height: 1.35;
  color: rgba(242,244,239,.8);
}
.end__big {
  display: block; text-decoration: none;
  font-family: var(--big);
  font-size: clamp(72px, 20vw, 300px); line-height: .8;
  text-transform: uppercase; letter-spacing: -.02em;
}
.end__big span { display: block; transition: color .3s, transform .5s cubic-bezier(.2,.8,.3,1); }
.end__big span:nth-child(2) { color: var(--volt); }
.end__big:hover span:nth-child(1) { transform: translateX(2.2vw); }
.end__big:hover span:nth-child(2) { color: var(--bone); }

/* ── footer ────────────────────────────────────────────────────────────── */

.foot {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(28px, 4vw, 46px) var(--gut) clamp(34px, 4vw, 52px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 28px;
  border-top: 1px solid var(--hair);
}
.foot__name {
  margin: 0; font-family: var(--big); font-size: 20px;
  text-transform: uppercase; letter-spacing: .04em;
}
.foot__nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.foot__nav a {
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: var(--mute); transition: color .2s;
}
.foot__nav a:hover { color: var(--volt); }
.foot__year { margin: 0; font-size: 11.5px; color: var(--mute); letter-spacing: .1em; }

/* ── lightbox ──────────────────────────────────────────────────────────── */

.lb { position: fixed; inset: 0; z-index: 600; display: grid; place-items: center; }
.lb[hidden] { display: none; }
.lb__scrim { position: absolute; inset: 0; background: rgba(4,9,7,.95); cursor: zoom-out; }
.lb__panel {
  position: relative; width: min(94vw, 1280px);
  animation: pop .32s cubic-bezier(.16,.84,.3,1);
}
@keyframes pop { from { opacity: 0; transform: scale(.98); } }
.lb__img {
  width: 100%; max-height: 76svh; object-fit: contain;
  background: var(--black-2);
}
.lb__bar {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  margin-top: 14px;
}
.lb__cap { margin: 0; font-size: 14px; color: rgba(242,244,239,.8); }
.lb__num {
  margin: 0; font-family: var(--big); font-size: 15px; letter-spacing: .1em; color: var(--volt);
}
.lb__nav {
  position: absolute; appearance: none; border: 0; cursor: pointer;
  width: 52px; height: 52px;
  background: rgba(242,244,239,.1); color: var(--bone);
  font-size: 20px; display: grid; place-items: center;
  transition: background .2s, color .2s;
}
.lb__nav:hover { background: var(--volt); color: var(--black); }
.lb__nav--prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb__nav--next { right: 12px; top: 50%; transform: translateY(-50%); }
.lb__nav--close { right: 0; top: -64px; }
body.lb-open { overflow: hidden; }

/* ── reveal ────────────────────────────────────────────────────────────── */

.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s ease-out, transform .8s cubic-bezier(.16,.84,.3,1);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  .frame img, .rail__card img, .stack__img, .end__big span { transition: none; }
  .lb__panel { animation: none; }
}
