/* ============================================================
   Garden State Futures — Summer Basketball League
   Palette pulled from the official emblem: navy #1b3863 / red #e33335
   ============================================================ */

:root {
  --navy:       #1b3863;
  --navy-deep:  #122844;
  --navy-ink:   #0d1c31;
  --red:        #e33335;
  --red-deep:   #c31f26;
  --gold:      #e33335;   /* small warm accent for highlights */

  --ink:        #16233a;
  --slate:      #4a5a72;
  --muted:      #5b6a80;   /* darkened for WCAG AA contrast on light backgrounds */
  --line:       #e2e8f2;
  --mist:       #f2f6fc;
  --mist-2:     #e9f0f9;
  --paper:      #ffffff;

  --shadow-sm:  0 2px 10px rgba(18,40,68,.08);
  --shadow:     0 14px 40px rgba(18,40,68,.14);
  --shadow-lg:  0 30px 70px rgba(13,28,49,.28);

  --wrap: 1160px;
  --radius: 14px;

  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.skip-link { position: absolute; left: 8px; top: -60px; z-index: 200; background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 8px; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; transition: top .18s ease; }
.skip-link:focus { top: 8px; outline: 2px solid var(--gold); }
:where(section)[tabindex="-1"]:focus { outline: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.05; font-family: var(--display); font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  font-size: .8rem;
  color: var(--red);
}
.eyebrow.on-dark { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; font-size: .95rem;
  padding: .82rem 1.5rem; border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 8px 22px rgba(227,51,53,.30);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(227,51,53,.38); }
.btn:active { transform: translateY(0); }
.btn.navy { --bg: var(--navy); box-shadow: 0 8px 22px rgba(27,56,99,.28); }
.btn.navy:hover { box-shadow: 0 14px 30px rgba(27,56,99,.4); }
.btn.ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.6);
  box-shadow: none;
}
.btn.ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn.ghost.dark { color: var(--navy); border-color: var(--navy); }
.btn.ghost.dark:hover { background: var(--navy); color: #fff; }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { height: 52px; width: auto; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-txt b {
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  color: var(--navy); text-transform: uppercase; letter-spacing: .04em;
}
.brand .brand-txt span {
  font-family: var(--display); font-weight: 500; font-size: .62rem;
  color: var(--red); text-transform: uppercase; letter-spacing: .2em;
}

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a.navlink {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: .86rem; color: var(--navy);
  padding: .4rem 0; position: relative;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 3px;
  background: var(--red); transition: right .25s ease; border-radius: 2px;
}
.nav a.navlink:hover::after, .nav a.navlink.active::after { right: 0; }
.nav a.navlink.active { color: var(--red); }
.nav .only-mobile { display: none; }  /* CTA links shown only inside the mobile drawer */

.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-cta .btn { padding: .6rem 1.15rem; font-size: .82rem; }

.nav-toggle {
  display: none; background: var(--navy); border: 0; color: #fff;
  width: 46px; height: 46px; border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; color: #fff; isolation: isolate;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
}
/* crossfading Ken-Burns slideshow of real action photos */
.hero-slides { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center 35%;
  opacity: 0; animation: heroFade 21s infinite; will-change: opacity, transform;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.04); }
  4%   { opacity: 1; }
  30%  { opacity: 1; transform: scale(1.12); }
  36%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; transform: none; }
  .hero-slide:nth-child(1) { opacity: 1; }
}
/* navy gradient over the slides */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(115deg, rgba(13,28,49,.93) 0%, rgba(20,40,68,.84) 45%, rgba(27,56,99,.74) 100%);
  background: linear-gradient(115deg, color-mix(in srgb, var(--navy-ink) 93%, transparent) 0%, color-mix(in srgb, var(--navy-deep) 84%, transparent) 45%, color-mix(in srgb, var(--navy) 74%, transparent) 100%);
}
/* brand glow accents */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .55;
  background:
    radial-gradient(circle at 82% 18%, rgba(227,51,53,.28), transparent 42%),
    radial-gradient(circle at 12% 90%, rgba(227,51,53,.12), transparent 40%);
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--red) 28%, transparent), transparent 42%),
    radial-gradient(circle at 12% 90%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.35fr .9fr; gap: 2.5rem; align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem); text-transform: uppercase; letter-spacing: .005em;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero h1 .accent { color: var(--gold); display: block; }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #dbe6f4; max-width: 46ch; margin-top: 1rem; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.hero .eyebrow { margin-bottom: 1rem; }

/* hero stat card */
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px; padding: 1.4rem; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1rem;
}
.hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.hero-card li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed rgba(255,255,255,.18); padding-bottom: .7rem; }
.hero-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-card li .k { color: #b9c8dd; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--display); font-weight: 500; }
.hero-card li .v { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: #fff; }

/* diagonal cut into next section */
.hero .cut {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; z-index: -1;
  background: var(--paper);
  clip-path: polygon(0 100%, 100% 100%, 100% 38%, 0 100%);
}

/* ============================================================
   MARQUEE RIBBON
   ============================================================ */
.ribbon {
  background: var(--red); color: #fff; overflow: hidden;
  border-top: 3px solid var(--navy-deep); border-bottom: 3px solid var(--navy-deep);
}
.ribbon .track {
  display: flex; gap: 2.4rem; white-space: nowrap; width: max-content;
  padding: .7rem 0; animation: marquee 34s linear infinite;
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .95rem;
}
.ribbon .track span { display: inline-flex; align-items: center; gap: 2.4rem; }
.ribbon .track b { color: var(--gold); }
.ribbon:hover .track { animation-play-state: paused; }
.dot { width: 7px; height: 7px; background: rgba(255,255,255,.7); border-radius: 50%; display: inline-block; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ribbon .track { animation: none; } }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: clamp(2.3rem, 5vw, 4rem) 0; }   /* condensed per Bill */

/* homepage promo stat band */
.promo { background: linear-gradient(150deg, var(--navy-ink), var(--navy)); color: #fff; }
.promo .wrap { padding: clamp(2.2rem,4vw,3rem) 22px; }
.promo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.promo-grid .n { font-family: var(--display); font-weight: 700; font-size: clamp(2rem,4.5vw,3.3rem); line-height: 1; color: #fff; }
.promo-grid .l { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--gold); margin-top: .45rem; }
.promo-tag { text-align: center; font-family: var(--display); font-weight: 600; font-size: clamp(1.1rem,2vw,1.45rem); margin-top: 1.7rem; color: #dbe6f4; }
@media (max-width:720px){ .promo-grid { grid-template-columns: repeat(2,1fr); gap: 1.4rem; } }

/* fall tournament past champions */
.fallchamp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.fallchamp-grid img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); display: block; }
@media (max-width:720px){ .fallchamp-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.venue-photo { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 1.6rem; }
.pds-photo { max-width: 900px; margin: 0 auto; }
.pds-photo img { width: 100%; display: block; border-radius: var(--radius); box-shadow: var(--shadow); }
/* player development coaches */
.coach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.coach-card { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.coach-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.cc-body { padding: 1.4rem 1rem; text-align: center; }
.cc-body b { display: block; font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--navy); text-transform: uppercase; letter-spacing: .01em; }
.cc-body span { color: var(--muted); font-size: .9rem; }
@media (max-width:820px){ .coach-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .coach-grid { grid-template-columns: 1fr; } }
.section.mist { background: var(--mist); }
.section.navy { background: var(--navy-deep); color: #fff; }

.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); text-transform: uppercase; color: var(--navy); }
.section.navy .section-head h2 { color: #fff; }
.section-head p { color: var(--slate); font-size: 1.06rem; margin-top: .8rem; }
.section.navy .section-head p { color: #c4d3e6; }

/* quick facts — icon-free stat tiles */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.fact {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fact::before { content:""; position:absolute; top:0; left:0; width:100%; height:4px; background: linear-gradient(90deg, var(--red), var(--navy)); }
.fact:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fact .kick { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--red); }
.fact .big { font-family: var(--display); font-weight: 700; font-size: 2.4rem; color: var(--navy); line-height: 1; margin-top: .5rem; }
.fact .lbl { text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; color: var(--muted); font-family: var(--display); font-weight: 500; margin-top: .5rem; }

/* format split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.6rem; align-items: start; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .2rem; }
.checklist li { display: flex; gap: .9rem; align-items: flex-start; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: 0; }
.checklist .chk {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--mist-2); color: var(--navy); display: grid; place-items: center;
  margin-top: 2px;
}
.checklist .chk svg { width: 15px; height: 15px; }
.checklist .lab { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--red); font-size: .95rem; }
.checklist .val { color: var(--ink); }
.checklist .val b { color: var(--navy); }

/* details cards */
.detail-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.dcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.dcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.dcard .ico { width: 34px; height: 34px; color: var(--red); margin-bottom: .7rem; }
.dcard h4 { font-size: 1.05rem; color: var(--navy); text-transform: uppercase; letter-spacing: .02em; }
.dcard p { color: var(--slate); font-size: .95rem; margin: .4rem 0 0; }

/* director spotlight */
.director {
  display: grid; grid-template-columns: 300px 1fr; gap: 2rem; align-items: center;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  position: relative;
}
.director::after {
  content:""; position:absolute; right:-60px; top:-60px; width:260px; height:260px;
  background: radial-gradient(circle, rgba(227,51,53,.4), transparent 70%); pointer-events:none;
}
.director .badge {
  padding: 2rem; display: grid; place-items: center; background: rgba(255,255,255,.04);
}
.director .badge img { width: 180px; filter: drop-shadow(0 12px 24px rgba(0,0,0,.35)); }
.director .body { padding: 2rem 2.2rem 2rem 0; }
.director .eyebrow { color: var(--gold); }
.director h3 { font-size: 2rem; text-transform: uppercase; margin: .3rem 0 .1rem; }
.director .role { color: #c4d3e6; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.director .accolade {
  display: inline-flex; align-items: center; gap: .5rem; margin: 1rem 0;
  background: rgba(227,51,53,.16); color: var(--gold); border: 1px solid rgba(227,51,53,.4);
  padding: .35rem .85rem; border-radius: 999px; font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; font-size: .8rem;
}
.director .contact { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .6rem; }
.director .contact a {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: .55rem 1rem; border-radius: 10px; font-weight: 700; font-size: .92rem;
  transition: background .2s ease;
}
.director .contact a:hover { background: rgba(255,255,255,.16); }
.director .contact svg { width: 17px; height: 17px; color: var(--gold); }

/* action band */
.action-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.action {
  display: flex; flex-direction: column; gap: .8rem; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.6rem 1.4rem; transition: transform .2s ease, background .2s ease;
}
.action:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.action .ico { width: 34px; height: 34px; color: var(--gold); }
.action h4 { font-size: 1.1rem; text-transform: uppercase; color: #fff; }
.action p { color: #b9c8dd; font-size: .9rem; margin: 0; flex: 1; }
.action .go { color: var(--gold); font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; display: inline-flex; align-items: center; gap: .4rem; }
.action .go svg { width: 15px; height: 15px; transition: transform .2s ease; }
.action:hover .go svg { transform: translateX(4px); }

/* fall tournament teaser */
.teaser {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-left: 6px solid var(--red);
  border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-sm);
}
.teaser .tag { display: inline-block; background: var(--mist-2); color: var(--navy); font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; padding: .3rem .7rem; border-radius: 6px; margin-bottom: .7rem; }
.teaser h3 { font-size: 1.7rem; color: var(--navy); text-transform: uppercase; }
.teaser p { color: var(--slate); margin: .5rem 0 0; max-width: 60ch; }

/* ---------- reusable page hero (Champions, Fall Tournament, PDS) ---------- */
.page-hero, .pds-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18,40,68,.88) 0%, rgba(13,28,49,.95) 100%),
    var(--bg, none);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--navy-deep) 88%, transparent) 0%, color-mix(in srgb, var(--navy-ink) 95%, transparent) 100%),
    var(--bg, none);
  background-size: cover; background-position: center 32%;
  color: #fff; text-align: center; padding: clamp(3.8rem,8vw,6.8rem) 0;
}
.pds-hero { --bg: url('/assets/training.webp'); }
.page-hero h1, .pds-hero h1 { font-size: clamp(2.2rem,5vw,3.7rem); text-transform: uppercase; }
.page-hero p { color: #c4d3e6; max-width: 58ch; margin: 1rem auto 1.8rem; font-size: 1.1rem; }
.page-hero .cta-row { justify-content: center; }
.pds-hero h1 { font-size: clamp(2.2rem,5vw,3.6rem); text-transform: uppercase; }
.pds-hero p { color: #c4d3e6; max-width: 52ch; margin: 1rem auto 1.8rem; font-size: 1.1rem; }
.session-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.session {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.session:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.session .num { font-family: var(--display); font-weight: 700; font-size: 2.4rem; color: var(--red); line-height: 1; }
.session h3 { color: var(--navy); text-transform: uppercase; margin: .5rem 0 .4rem; }
.session p { color: var(--slate); font-size: .95rem; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-ink); color: #c8d5e6; padding: 3.4rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-grid .fbrand img { height: 66px; margin-bottom: 1rem; }
.footer-grid p { color: #9fb2ca; font-size: .95rem; max-width: 40ch; }
.site-footer h5 { font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: #fff; margin: 0 0 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.site-footer ul a { color: #b7c6db; font-size: .95rem; transition: color .2s ease; }
.site-footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.6rem; padding-top: 1.4rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .84rem; color: #7f93ad;
}
.footer-bottom a { color: #9fb2ca; }

/* ============================================================
   HERO — champions crowned ticker
   ============================================================ */
.hero-note {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.6rem;
  background: rgba(227,51,53,.14); border: 1px solid rgba(227,51,53,.4);
  color: #ffe6b3; padding: .5rem .95rem; border-radius: 999px;
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .07em; font-size: .78rem;
}
.hero-note b { color: var(--gold); }
a.hero-note { transition: background .2s ease, border-color .2s ease; }
a.hero-note:hover { background: rgba(227,51,53,.22); border-color: rgba(227,51,53,.65); }
.hero-note .spark { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(227,51,53,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(227,51,53,.6);} 70%{box-shadow:0 0 0 8px rgba(227,51,53,0);} 100%{box-shadow:0 0 0 0 rgba(227,51,53,0);} }

/* ============================================================
   PHOTO FEATURE (replaces icon cards in "How it works")
   ============================================================ */
.photo-feature {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 100%;
  box-shadow: var(--shadow); background: var(--navy-deep);
}
.photo-feature img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 340px; }
.photo-feature .pf-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,28,49,.15) 0%, rgba(13,28,49,.55) 55%, rgba(13,28,49,.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem;
}
.photo-feature h4 { color: #fff; text-transform: uppercase; font-size: 1.15rem; letter-spacing: .04em; margin-bottom: .9rem; }
.pf-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.pf-list li { display: flex; align-items: center; gap: .6rem; color: #e7eef8; font-size: .96rem; }
.pf-list li::before {
  content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(227,51,53,.22);
}

/* ============================================================
   SEASON CARDS (Register / Schedule / Waiver / Rules)
   ============================================================ */
.season-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
/* ---------- fall tournament venue cards ---------- */
.venue-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.venue-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.vc-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--line); }
.vc-photos.one { grid-template-columns: 1fr; }
.vc-photos img { width: 100%; height: 210px; object-fit: cover; }
.vc-body { padding: 1.4rem 1.6rem 1.7rem; }
.vc-body h3 { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--navy); text-transform: uppercase; letter-spacing: .01em; }
.vc-addr { color: var(--muted); font-size: .95rem; margin: .4rem 0 1.1rem; }
.vc-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.vc-links .btn { padding: .55rem 1.1rem; font-size: .76rem; }
@media (max-width: 820px) { .venue-cards { grid-template-columns: 1fr; } }
.scard {
  position: relative; display: flex; flex-direction: column; gap: .5rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.scard::before { content:""; position:absolute; inset:0 auto 0 0; width:5px; background: var(--red); }
.scard.navy-accent::before { background: var(--navy); }
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.scard .step { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--red); letter-spacing: .1em; }
.scard.navy-accent .step { color: var(--navy); }
.scard h4 { font-size: 1.3rem; color: var(--navy); text-transform: uppercase; letter-spacing: .02em; }
.scard p { color: var(--slate); font-size: .93rem; margin: 0; flex: 1; }
.scard .live { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; color: #17914e; }
.scard .live .spark { width: 7px; height: 7px; border-radius: 50%; background: #17914e; animation: pulse-g 2s infinite; }
@keyframes pulse-g { 0%{box-shadow:0 0 0 0 rgba(23,145,78,.5);} 70%{box-shadow:0 0 0 7px rgba(23,145,78,0);} 100%{box-shadow:0 0 0 0 rgba(23,145,78,0);} }
.scard .go { margin-top: .3rem; color: var(--navy); font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; display: inline-flex; align-items: center; gap: .4rem; }
.scard .go svg { width: 15px; height: 15px; transition: transform .2s ease; }
.scard:hover .go svg { transform: translateX(4px); }

/* ============================================================
   CHAMPIONS GALLERY
   ============================================================ */
.champ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.champ {
  position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm); background: var(--navy-deep); aspect-ratio: 4 / 5;
  transition: transform .25s ease, box-shadow .25s ease;
}
.champ img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.champ:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.champ:hover img { transform: scale(1.05); }
.champ .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(13,28,49,.9));
  color: #fff; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease;
}
.champ:hover .cap { opacity: 1; transform: none; }
.champ .cap b { font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; display: block; }
.champ .cap span { font-size: .82rem; color: var(--gold); font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; }
.champ .zoom {
  position: absolute; top: .7rem; right: .7rem; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(13,28,49,.55); color: #fff; display: grid; place-items: center; opacity: 0; transition: opacity .25s ease;
}
.champ:hover .zoom { opacity: 1; }
.champ .zoom svg { width: 15px; height: 15px; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(8,16,30,.9);
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 640px); max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close {
  position: absolute; top: 4vh; right: 4vw; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff;
  display: grid; place-items: center; cursor: pointer;
}
.lightbox .lb-close svg { width: 22px; height: 22px; }
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); color: #fff;
  display: grid; place-items: center; cursor: pointer;
}
.lightbox .lb-prev { left: 3vw; } .lightbox .lb-next { right: 3vw; }
.lightbox .lb-nav svg { width: 24px; height: 24px; }

/* ============================================================
   HIGHLIGHTS (YouTube — Coach Connolly's footage)
   ============================================================ */
.highlights-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2.6rem; align-items: center; }
.highlights-grid .h-copy .eyebrow { margin-bottom: .8rem; }
.highlights-grid .h-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); text-transform: uppercase; color: #fff; }
.highlights-grid .h-copy p { color: #c4d3e6; margin-top: .8rem; }
.h-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }

.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
  background: #05070d; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.16);
}
.video-frame iframe, .video-frame > img { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; display: block; }
.video-frame.glow::before {
  content: ""; position: absolute; inset: -2px; z-index: -1; border-radius: 18px;
  background: linear-gradient(120deg, var(--red), var(--navy)); filter: blur(14px); opacity: .5;
}
.video-badge {
  position: absolute; top: .85rem; left: .85rem; z-index: 4;
  display: inline-flex; align-items: center; gap: .45rem; background: rgba(227,51,53,.92); color: #fff;
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  font-size: .68rem; padding: .32rem .7rem; border-radius: 6px;
}
.video-badge .spark { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 2s infinite; }

/* click-to-play facade */
.yt-facade { cursor: pointer; }
.yt-facade .play-layer {
  position: absolute; inset: 0; z-index: 3; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(13,28,49,.15), rgba(13,28,49,.5)); transition: background .25s ease;
}
.yt-facade:hover .play-layer { background: linear-gradient(180deg, rgba(13,28,49,.05), rgba(13,28,49,.35)); }
.play-btn { width: 78px; height: 78px; border-radius: 50%; background: var(--red); display: grid; place-items: center; box-shadow: 0 12px 34px rgba(227,51,53,.55); transition: transform .2s ease; }
.yt-facade:hover .play-btn { transform: scale(1.09); }
.play-btn svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }
.yt-facade .v-title {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.5rem 1.2rem .95rem;
  background: linear-gradient(transparent, rgba(5,7,13,.9)); color: #fff;
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: 1rem;
}

/* muted-loop caption bar */
.video-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; padding: 1.4rem 1.1rem .9rem;
  background: linear-gradient(transparent, rgba(5,7,13,.82)); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  pointer-events: none;
}
.video-cap .muted { display: inline-flex; align-items: center; gap: .4rem; color: #c4d3e6; font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.video-cap a { pointer-events: auto; }

/* PDS session videos */
.session-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.btn.ig { background: linear-gradient(45deg,#f9ce34 0%,#ee2a7b 45%,#6228d7 100%); box-shadow: 0 8px 22px rgba(238,42,123,.32); }
.btn.ig:hover { box-shadow: 0 14px 30px rgba(238,42,123,.42); }

.insta-head { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.2rem; }
.insta-head .avatar { width: 76px; height: 76px; border-radius: 50%; padding: 3px; background: conic-gradient(from 210deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34); flex: none; }
.insta-head .avatar img { width: 100%; height: 100%; border-radius: 50%; border: 3px solid var(--paper); object-fit: cover; }
.insta-head .meta { text-align: left; }
.insta-head .meta .handle { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--navy); text-transform: lowercase; letter-spacing: .01em; }
.insta-head .meta .name { color: var(--slate); font-size: .95rem; }
.insta-head .meta .stats { color: var(--muted); font-size: .85rem; font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; margin-top: .15rem; }
.insta-head .meta .stats b { color: var(--red); }

/* instagram embeds (paste-a-link posts) */
.ig-feed { display: flex; flex-wrap: wrap; gap: 1.6rem; justify-content: center; align-items: flex-start; }
.ig-feed .ig-fallback { flex: 1 1 100%; }
.ig-feed .ig-item { flex: 0 1 340px; min-width: 300px; display: flex; flex-direction: column; align-items: center; }
.ig-feed .ig-item .instagram-media { margin: 0 auto !important; }
.ig-post-link { display: flex; align-items: center; justify-content: center; gap: .4rem; margin-top: .7rem; font-family: var(--display); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--red); }
.ig-post-link svg { width: 16px; height: 16px; }
.ig-post-link:hover { color: var(--red-deep); text-decoration: underline; }
.ig-embed-link { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; min-height: 200px; padding: 1.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); text-align: center; }
.ig-embed-link svg { width: 34px; height: 34px; color: #c13584; }
.ig-embed-label { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); }
.ig-embed-url { font-size: .75rem; color: var(--muted); word-break: break-all; max-width: 260px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; }
.insta-tile { position: relative; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); display: block; background: var(--navy-deep); }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.insta-tile:hover img { transform: scale(1.07); }
.insta-tile .ov { position: absolute; inset: 0; background: rgba(13,28,49,.42); opacity: 0; display: grid; place-items: center; transition: opacity .25s ease; }
.insta-tile:hover .ov { opacity: 1; }
.insta-tile .ov svg { width: 30px; height: 30px; color: #fff; }

/* footer social row */
.social-row { display: flex; gap: .6rem; margin-top: 1.3rem; }
.social-row a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #c8d5e6; transition: background .2s ease, color .2s ease, transform .2s ease; }
.social-row a:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateY(-2px); }
.social-row svg { width: 20px; height: 20px; }

/* ============================================================
   VENUE & DIRECTIONS
   ============================================================ */
.venue-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.4rem; align-items: stretch; }
.venue-map { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); min-height: 340px; }
.venue-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.venue-info { display: flex; flex-direction: column; justify-content: center; }
.venue-info .addr { font-family: var(--display); font-weight: 600; color: var(--navy); font-size: 1.15rem; margin: .2rem 0 1.2rem; }
.venue-points { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .9rem; }
.venue-points li { display: flex; gap: .85rem; align-items: flex-start; }
.venue-points li .vp-ico { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--mist-2); color: var(--navy); display: grid; place-items: center; }
.venue-points li .vp-ico svg { width: 18px; height: 18px; }
.venue-points li b { color: var(--navy); font-family: var(--display); text-transform: uppercase; letter-spacing: .03em; font-size: .92rem; display: block; }
.venue-points li span { color: var(--slate); font-size: .95rem; }

/* ============================================================
   SPONSORS / PARTNERS
   ============================================================ */
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.1rem; align-items: stretch; }
.sponsor {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.3rem; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: var(--shadow-sm); min-height: 130px; transition: transform .2s ease, box-shadow .2s ease;
}
.sponsor:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sponsor img { max-height: 66px; width: auto; margin-bottom: .6rem; }
.sponsor .s-name { font-family: var(--display); font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .03em; font-size: 1.05rem; }
.sponsor .s-tag { color: var(--muted); font-size: .82rem; margin-top: .2rem; }
.sponsor.become { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; border-color: transparent; }
.sponsor.become .s-name { color: #fff; }
.sponsor.become .s-tag { color: #c4d3e6; }
.sponsor.become .badge-plus { width: 42px; height: 42px; border-radius: 50%; background: rgba(227,51,53,.16); border: 1px solid rgba(227,51,53,.5); color: var(--gold); display: grid; place-items: center; margin-bottom: .6rem; }
.sponsor.become .badge-plus svg { width: 22px; height: 22px; }

/* ============================================================
   FAQ (native <details> accordion)
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--navy); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--display); font-weight: 600; color: var(--navy); font-size: 1.05rem; text-transform: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--mist-2); color: var(--red); display: grid; place-items: center; transition: transform .25s ease, background .2s ease; }
.faq summary .q-plus svg { width: 16px; height: 16px; }
.faq details[open] summary .q-plus { transform: rotate(45deg); background: var(--red); color: #fff; }
.faq .a { padding: 0 1.4rem 1.25rem; color: var(--slate); }
.faq .a p { margin: 0; }
.faq .a a { color: var(--red); font-weight: 700; }

/* ============================================================
   RULES
   ============================================================ */
.rules-block { max-width: 860px; margin-inline: auto; }
.rules-block + .rules-block { margin-top: 3rem; }
.rules-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .1rem; counter-reset: rule; }
.rules-list li { display: flex; gap: .95rem; align-items: flex-start; padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.rules-list li:last-child { border-bottom: 0; }
.rules-list li::before {
  counter-increment: rule; content: counter(rule); flex: none;
  width: 28px; height: 28px; border-radius: 8px; background: var(--navy); color: #fff;
  font-family: var(--display); font-weight: 600; font-size: .85rem; display: grid; place-items: center; margin-top: 1px;
}
.rules-list li b { color: var(--navy); }
.rules-note { background: var(--mist-2); border-radius: 12px; padding: 1rem 1.2rem; color: var(--navy); font-family: var(--display); font-weight: 500; margin-top: 1.4rem; display: flex; gap: .7rem; align-items: center; }
.rules-note svg { width: 20px; height: 20px; color: var(--red); flex: none; }

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; box-shadow: var(--shadow-sm); background: var(--navy-deep); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .g-ov { position: absolute; inset: 0; background: rgba(13,28,49,.35); opacity: 0; display: grid; place-items: center; transition: opacity .25s ease; }
.gallery-item:hover .g-ov { opacity: 1; }
.gallery-item .g-ov svg { width: 30px; height: 30px; color: #fff; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column;
}
.quote .mark { font-family: Georgia, serif; font-size: 3.4rem; line-height: .6; color: var(--red); opacity: .35; margin-bottom: .3rem; }
.quote p { color: var(--ink); font-size: 1.02rem; flex: 1; margin: 0 0 1rem; }
.quote .who { font-family: var(--display); font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .03em; font-size: .9rem; }
.quote .who span { display: block; color: var(--muted); font-weight: 500; letter-spacing: .05em; font-size: .78rem; }

/* ============================================================
   STORY / ABOUT prose
   ============================================================ */
.story { max-width: 760px; margin-inline: auto; }
.story p { color: var(--slate); font-size: 1.08rem; line-height: 1.75; }
.story p strong { color: var(--navy); }
.story .pull { border-left: 4px solid var(--red); padding: .3rem 0 .3rem 1.3rem; margin: 1.8rem 0; font-family: var(--display); font-size: 1.4rem; color: var(--navy); text-transform: uppercase; line-height: 1.15; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Reveal: a subtle load-time RISE only — never touches opacity, so content is
   always fully visible even if the animation clock is frozen (embedded/background
   viewers). Worst case: content sits a few px lower; it is never hidden. */
.reveal { animation: reveal-rise .6s cubic-bezier(.2,.6,.2,1) both; }
.reveal.in { animation: none; transform: none; }
@keyframes reveal-rise { from { transform: translateY(18px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .action-band { grid-template-columns: repeat(2, 1fr); }
  .season-cards { grid-template-columns: repeat(2, 1fr); }
  .champ-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .venue-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .director { grid-template-columns: 1fr; }
  .director .badge { padding: 1.8rem 1.8rem .4rem; }
  .director .body { padding: 0 1.8rem 2rem; }
  .session-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .fbrand { grid-column: 1 / -1; }
}
/* header collapses to a drawer while the long nav label would otherwise wrap */
@media (max-width: 1080px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { height: 66px; }
  .brand img { height: 44px; }

  /* mobile drawer: nav links + CTA buttons live in one flowing panel */
  .site-header.open .nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: .5rem 22px 1.2rem;
  }
  .site-header.open .nav a.navlink { padding: .95rem 0; border-bottom: 1px solid var(--line); }
  .site-header.open .nav a.navlink::after { display: none; }
  .site-header.open .nav .only-mobile {
    display: block; text-align: center; border: 0; color: #fff;
    background: var(--red); border-radius: 999px; padding: .85rem 1rem; margin-top: .9rem;
  }
  .site-header.open .nav .only-mobile.alt { background: var(--navy); margin-top: .55rem; }
}
@media (max-width: 760px) {
  .teaser { grid-template-columns: 1fr; }
  .detail-cards { grid-template-columns: 1fr; }
  .session-videos { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .season-cards { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .facts { grid-template-columns: 1fr; }
  .action-band { grid-template-columns: 1fr; }
  .champ-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 1; }
}
