/* ==========================================================================
   BC Lacrosse Association — Redesign Concept v2
   Visual direction: Padel Club reference (Dribbble) — full-bleed court color,
   stacked condensed display type, pill buttons, volt accent, rounded cards.
   Concept & build: Nathan Ziemanski — nathanziemanski.com
   Not an official BCLA property.
   ========================================================================== */

/* ---- Fonts (self-hosted, latin subset) ---- */
@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: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/BarlowCondensed-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/BarlowCondensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/BarlowCondensed-700.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
  --ink: #101318;
  --body: #4a4f58;
  --faint: #82878f;
  --paper: #ffffff;
  --card: #f2f2ef;
  --navy: #0d1524;
  --court-a: #3160e8;      /* box-floor blue, hero */
  --court-b: #1c3ba8;
  --turf-a: #93d951;       /* field turf, interstitial */
  --turf-b: #6fbe33;
  --volt: #b0f13c;         /* pills & accents on dark */
  --volt-deep: #4e8f00;    /* volt words on white — AA for large text */
  --line-dark: rgba(16, 19, 24, 0.12);
  --line-light: rgba(255, 255, 255, 0.28);
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --r-card: 16px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --maxw: 76rem;
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--volt); color: var(--ink); }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--court-a);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--volt);
  color: var(--ink);
  padding: 0.6rem 1rem;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---- Type helpers ---- */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.005em;
}
.volt-word { color: var(--volt-deep); }
.kicker {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
}

/* ---- Pill buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0.55rem 0.5rem 1.35rem;
  border: 0;
  border-radius: 999px;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn .icn {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.95rem;
  line-height: 1;
}
.btn-white { background: var(--paper); color: var(--ink); box-shadow: 0 2px 14px rgba(9, 14, 26, 0.18); }
.btn-white .icn { background: var(--volt); color: var(--ink); }
.btn-volt { background: var(--volt); color: var(--ink); }
.btn-volt .icn { background: var(--ink); color: var(--volt); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark .icn { background: var(--volt); color: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-dark);
  padding: 0.62rem 1.35rem;
}
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

/* legacy aliases used by finder.js */
.btn-primary { background: var(--volt); color: var(--ink); padding: 0.72rem 1.5rem; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-dark); padding: 0.72rem 1.5rem; }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: var(--paper);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.site-header.scrolled .btn-white {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}
.site-header.scrolled .btn-white .icn { background: var(--volt); color: var(--ink); }
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}
.brand {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
}
.brand span { display: block; }
.nav-links {
  display: none;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.btn) {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  opacity: 0.9;
}
.nav-links a:not(.btn):hover { opacity: 1; text-decoration: underline; text-underline-offset: 5px; }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-actions .btn { padding: 0.45rem 1.15rem; font-size: 0.92rem; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  color: inherit;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 20px 40px rgba(9, 14, 26, 0.15);
}
.nav-open .mobile-menu { display: block; }
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem var(--pad) 1.25rem;
}
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu a.menu-cta { color: var(--volt-deep); }

@media (min-width: 60rem) {
  .nav-links { display: flex; }
  .nav-toggle, .mobile-menu { display: none; }
  .nav-open .mobile-menu { display: none; }
}

/* ---- Court hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(100svh, 56rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 50% 10%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(168deg, var(--court-a) 0%, var(--court-b) 78%, #16307f 100%);
  color: var(--paper);
}
.court-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 50% 55%, rgba(9, 16, 40, 0) 55%, rgba(9, 16, 40, 0.35) 100%);
  pointer-events: none;
}
/* crop-mark hairlines */
.crop {
  position: absolute;
  background: var(--line-light);
  pointer-events: none;
  opacity: 0.55;
}
.crop-v { top: 0; bottom: 0; width: 1px; }
.crop-h { left: 0; right: 0; height: 1px; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7.5rem var(--pad) 8.5rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(4rem, 15vw, 11rem);
  color: var(--paper);
  text-shadow: 0 4px 40px rgba(10, 18, 48, 0.35);
  margin: 0 auto;
}
.hero h1 span { display: block; }
.hero-sub {
  font-family: var(--cond);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 1.2rem auto 2rem;
  max-width: 34ch;
  text-shadow: 0 2px 18px rgba(10, 18, 48, 0.45);
}
.hero-cta-row { display: flex; justify-content: center; }

/* corner stats */
.hero-stat {
  position: absolute;
  bottom: 3.8rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}
.hero-stat.left { left: clamp(1.25rem, 4vw, 3.5rem); }
.hero-stat.right { right: clamp(1.25rem, 4vw, 3.5rem); }
.hero-stat .ring {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}
.hero-stat .ring svg { width: 1.3rem; height: 1.3rem; }
.hero-stat p {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 4.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-scroll .wheel {
  width: 1.5rem;
  height: 2.3rem;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  position: relative;
}
.hero-scroll .wheel::after {
  content: '';
  position: absolute;
  top: 0.4rem;
  left: 50%;
  width: 3px;
  height: 0.55rem;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--volt);
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(0.5rem); opacity: 0.2; }
}
@media (max-width: 47.99rem) {
  .hero-stat.right { display: none; }
  .hero-scroll { display: none; }
}

/* ---- Task bar ("What do you need?") ---- */
.task-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
  padding: 1.1rem var(--pad);
}
.task-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.task-bar .tb-label {
  flex: none;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.task-bar ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0.2rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.task-bar ul::-webkit-scrollbar { display: none; }
.task-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  box-shadow: inset 0 0 0 1.5px var(--line-dark);
  transition: box-shadow 0.15s ease, background-color 0.15s ease;
}
.task-bar a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 0 1px rgba(16, 19, 24, 0.25);
}
.task-bar a:hover { box-shadow: inset 0 0 0 1.5px var(--ink); background: var(--card); }

/* ---- Partner strip ---- */
.partner-strip {
  background: var(--paper);
  padding: 1.5rem var(--pad);
  border-bottom: 1px solid var(--line-dark);
}
.partner-strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 2.6rem;
  justify-content: center;
}
.partner-strip .strip-label {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.partner-strip img {
  height: 64px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.72;
  mix-blend-mode: multiply;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.partner-strip img:hover { filter: none; opacity: 1; }

/* ---- Section scaffolding ---- */
.section { padding: clamp(4rem, 9vw, 7rem) var(--pad); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-gray { background: var(--card); }
.section-label {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--body);
  margin-bottom: 1.1rem;
}
h2.display { font-size: clamp(2.4rem, 5.6vw, 4rem); }

/* offset head (heading right, like reference section 2) */
.offset-head {
  display: grid;
  gap: 1.2rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
@media (min-width: 56rem) {
  .offset-head { grid-template-columns: 1fr 1.1fr; align-items: end; }
  .offset-head .oh-copy { padding-bottom: 0.4rem; }
}
.offset-head p { color: var(--body); max-width: 46ch; }

/* split head (heading left, small copy right — coaches section) */
.split-head {
  display: grid;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
@media (min-width: 56rem) {
  .split-head { grid-template-columns: 1.3fr 0.7fr; }
  .split-head p { justify-self: end; text-align: left; }
}
.split-head p { color: var(--body); max-width: 34ch; }

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---- Season: 3 event cards ---- */
.events {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) { .events { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .events { grid-template-columns: repeat(4, 1fr); } }
.event-card { text-decoration: none; display: block; }
.event-card .ev-media {
  display: block;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  background: var(--navy);
}
.event-card .ev-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.event-card:hover .ev-media img { transform: scale(1.045); }
.event-card .ev-media--contain {
  background: #dfe9f9;
  display: grid;
  place-items: center;
}
.event-card .ev-media--contain img {
  width: auto;
  height: 72%;
  object-fit: contain;
}
.event-card h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1.1rem;
}
.event-card .ev-meta {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--volt-deep);
  margin-top: 0.35rem;
}
.event-card p.ev-desc { color: var(--body); font-size: 0.95rem; margin-top: 0.5rem; max-width: 40ch; }
.events-footnote {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.6rem;
  text-align: center;
}
.events-footnote p {
  color: var(--body);
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Pathway: 4 columns (photo tile + card) ---- */
.paths {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) { .paths { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .paths { grid-template-columns: repeat(4, 1fr); } }
.path { display: flex; flex-direction: column; gap: 1rem; text-decoration: none; }
.path-tile {
  border-radius: var(--r-card);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.path-tile .court-lines { opacity: 0.55; }
.path-tile span {
  position: relative;
  font-family: var(--display);
  font-size: 2.1rem;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 2px 20px rgba(10, 18, 48, 0.4);
  transition: transform 0.25s ease;
}
.path:hover .path-tile span { transform: scale(1.06); }
.tile-box { background: linear-gradient(160deg, var(--court-a), var(--court-b)); }
.tile-turf { background: linear-gradient(160deg, var(--turf-a), var(--turf-b)); }
.tile-navy { background: linear-gradient(160deg, #24304a, var(--navy)); }
.tile-slate { background: linear-gradient(160deg, #5a6c8c, #33415e); }
.path-card {
  background: var(--paper);
  border-radius: var(--r-card);
  padding: 1.4rem 1.3rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}
.section-gray .path-card { box-shadow: 0 1px 2px rgba(9, 14, 26, 0.04); }
.path-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.path-card p { color: var(--body); font-size: 0.93rem; flex-grow: 1; }
.path-card .btn { margin-top: 0.4rem; }

/* ---- Finder promo (sky + phone) ---- */
.finder-promo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #9cc4f2 0%, #c6ddf7 45%, #eef5fd 100%);
  padding: clamp(4rem, 9vw, 6.5rem) var(--pad) 0;
  text-align: center;
}
.finder-promo .cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(22px);
}
.finder-promo .section-label { color: #34517a; }
.finder-promo h2 {
  position: relative;
  color: var(--navy);
  max-width: 21ch;
  margin: 0 auto;
}
.finder-promo h2 .white-word { color: var(--paper); text-shadow: 0 2px 26px rgba(20, 40, 90, 0.45); }
.finder-promo .fp-sub { position: relative; color: #34517a; max-width: 46ch; margin: 1.1rem auto 0; }
.phone {
  position: relative;
  width: min(19rem, 74vw);
  margin: 3rem auto 0;
  border-radius: 44px 44px 0 0;
  border: 10px solid #14171d;
  border-bottom: 0;
  background: linear-gradient(180deg, var(--court-a), var(--court-b));
  padding: 2.6rem 1.2rem 2.4rem;
  box-shadow: 0 30px 70px rgba(20, 35, 80, 0.35);
}
.phone::before {
  content: '';
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.5rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #14171d;
}
.phone .p-brand {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--paper);
  margin-top: 1rem;
}
.phone .p-chips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.4rem auto 0;
  max-width: 13rem;
}
.phone .p-chip {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone .p-chip em { font-style: normal; color: var(--volt-deep); }
.phone .p-cta { margin: 1.6rem auto 0; display: inline-flex; }

/* ---- Resource grid (store style) ---- */
.gear {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 64rem) { .gear { grid-template-columns: repeat(4, 1fr); } }
.gear-ic {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e2eafb;
  color: var(--court-b);
}
.gear-ic svg { width: 34px; height: 34px; }
.gear-card {
  background: var(--card);
  border-radius: var(--r-card);
  padding: 1.7rem 1.3rem 1.6rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gear-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(9, 14, 26, 0.1); }
.gear-card img {
  height: 76px;
  width: auto;
  mix-blend-mode: multiply;
}
.gear-card h3 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gear-card p { color: var(--body); font-size: 0.88rem; max-width: 30ch; }

/* ---- Turf interstitial ---- */
.turf-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(160deg, var(--turf-a), var(--turf-b));
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
}
.turf-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.turf-inner .word {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 3px 26px rgba(30, 70, 10, 0.3);
}
.turf-inner .puck {
  flex: none;
  width: clamp(6.5rem, 14vw, 10rem);
  height: clamp(6.5rem, 14vw, 10rem);
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 44px rgba(30, 70, 10, 0.28);
}
.turf-inner .puck img { width: 68%; height: auto; }

/* ---- Team BC cards ---- */
.teams {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) { .teams { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .teams { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3 / 3.8;
  background: linear-gradient(175deg, #26355c 0%, var(--navy) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem 1.2rem 1.25rem;
  color: var(--paper);
}
.team-card .court-lines { opacity: 0.35; }
.team-card .tc-logo {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  background: var(--paper);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
}
.team-card .tc-logo img { height: 34px; width: auto; }
.team-card h3 {
  position: relative;
  font-family: var(--display);
  font-size: 1.9rem;
  line-height: 0.98;
  text-transform: uppercase;
}
.team-card h3 .tc-tag { display: block; color: var(--volt); }
.team-card p {
  position: relative;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.45rem;
}
.teams-footnote {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.teams-footnote p { color: var(--body); max-width: 52ch; }
.teams-footnote p strong { color: var(--ink); }

/* ---- SPIRIT ---- */
.spirit {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 56rem) { .spirit { grid-template-columns: 1fr auto; gap: 4.5rem; } }
.spirit h2 { margin-bottom: 1.2rem; }
.spirit p { color: var(--body); max-width: 58ch; margin-top: 0.9rem; }
.spirit .spirit-note { font-size: 0.9rem; color: var(--faint); margin-top: 1.2rem; }
.spirit-marks { display: flex; align-items: center; gap: 1.6rem; }
.spirit-marks img { height: 84px; width: auto; mix-blend-mode: multiply; }

/* ---- Dark CTA band ---- */
.join-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 90% at 50% -10%, rgba(64, 98, 190, 0.35) 0%, rgba(13, 21, 36, 0) 55%),
    var(--navy);
  color: var(--paper);
  text-align: center;
  padding: clamp(4.5rem, 11vw, 8rem) var(--pad);
}
.join-band .court-lines { opacity: 0.18; }
.join-band h2 {
  position: relative;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  max-width: 16ch;
  margin: 0 auto 2rem;
}
.join-band .btn { position: relative; }

/* ---- Footer ---- */
.site-footer {
  background: linear-gradient(180deg, #b9d4f2 0%, #e3eefb 34%, #f7fafd 100%);
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad) 5.5rem;
  overflow: hidden;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-word {
  font-family: var(--display);
  font-size: clamp(3.4rem, 11.2vw, 10rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  color: var(--paper);
  text-shadow: 0 2px 30px rgba(60, 100, 160, 0.25);
  margin-bottom: clamp(2rem, 6vw, 4rem);
  white-space: nowrap;
}
.footer-cols {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(16, 19, 24, 0.14);
}
@media (min-width: 56rem) { .footer-cols { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; } }
.footer-brand .brand { font-size: 1.15rem; color: var(--ink); }
.footer-brand .tag {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.9rem;
}
.footer-brand p.mission { color: var(--body); font-size: 0.93rem; margin-top: 0.5rem; max-width: 30ch; }
.footer-col h3 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: var(--body); text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.footer-col address { font-style: normal; color: var(--body); font-size: 0.95rem; line-height: 1.8; }
.footer-col address a { font-size: inherit; }
.footer-partners { padding: 1.8rem 0 0.4rem; }
.footer-partners .chip {
  flex: none;
  background: var(--paper);
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  display: flex;
  align-items: center;
}
.footer-partners img { height: 30px; width: auto; filter: grayscale(1); mix-blend-mode: multiply; opacity: 0.85; }

/* infinite sponsor loop */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
  padding-right: 0.6rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee-track { animation: none; width: auto; }
  .marquee-group { flex-wrap: wrap; }
  .marquee-group[aria-hidden="true"] { display: none; }
}
.land-ack {
  color: var(--body);
  font-size: 0.92rem;
  max-width: 58ch;
  margin-top: 1.6rem;
}
.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  color: var(--body);
  font-size: 0.92rem;
}
.footer-base .footer-links { display: flex; gap: 1.4rem; }
.footer-base a { color: var(--body); text-decoration: none; }
.footer-base a:hover { color: var(--ink); }
.concept-note { margin-top: 1rem; font-size: 0.85rem; color: var(--faint); }
.concept-note a { color: var(--body); }

/* fixed concept badge */
.concept-badge {
  position: fixed;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 60;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(9, 14, 26, 0.3);
}
.concept-badge strong { color: var(--volt); font-weight: 600; }

/* ==========================================================================
   Start Playing page
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(168deg, var(--court-a) 0%, var(--court-b) 100%);
  color: var(--paper);
  text-align: center;
  padding: 8rem var(--pad) 4.5rem;
}
.page-hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }
.page-hero .section-label { color: rgba(255, 255, 255, 0.85); }
.page-hero h1 {
  font-size: clamp(3rem, 11vw, 7rem);
  margin: 0 auto;
  max-width: 12ch;
  text-shadow: 0 4px 36px rgba(10, 18, 48, 0.35);
}
.page-hero p {
  font-family: var(--cond);
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 1.2rem auto 0;
  max-width: 44ch;
}

/* Finder */
.finder { max-width: var(--maxw); margin: 0 auto; }
.finder-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.6rem;
  margin: 0 0 1.8rem;
  padding: 0;
}
.finder-step-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.finder-step-label .n {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
}
.finder-step-label.active { color: var(--ink); }
.finder-step-label.active .n { border-color: var(--volt-deep); color: var(--volt-deep); }
.finder-step-label.done { color: var(--ink); }
.finder-step-label.done .n { background: var(--volt); border-color: var(--volt); color: var(--ink); }

.finder-panel {
  background: var(--card);
  border-radius: calc(var(--r-card) + 8px);
  padding: clamp(1.5rem, 4vw, 2.6rem);
}
.finder-q {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.6rem;
  line-height: 1;
}
.finder-q:focus { outline: none; }
.choice-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
}
@media (min-width: 34rem) { .choice-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 56rem) { .choice-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-align: left;
  padding: 1.05rem 1.25rem;
  min-height: 44px;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid transparent;
  border-radius: var(--r-card);
  box-shadow: 0 1px 2px rgba(9, 14, 26, 0.05);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.choice:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(9, 14, 26, 0.1); }
.choice .c-title {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.choice .c-sub { color: var(--body); font-size: 0.88rem; }
.choice[aria-pressed="true"] { border-color: var(--volt-deep); }
.choice[aria-pressed="true"] .c-title { color: var(--volt-deep); }

.finder-back {
  margin-top: 1.4rem;
  margin-right: 1.2rem;
  background: none;
  border: 0;
  color: var(--body);
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.2rem;
}
.finder-back:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

/* results */
.finder-crumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.finder-crumb span {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  box-shadow: inset 0 0 0 1.5px var(--line-dark);
}
.results-count { color: var(--body); text-align: center; margin-bottom: 1.4rem; font-size: 0.96rem; }
.assoc-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
}
@media (min-width: 34rem) { .assoc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 56rem) { .assoc-grid { grid-template-columns: repeat(3, 1fr); } }
.assoc-card {
  background: var(--paper);
  border-radius: var(--r-card);
  padding: 1rem 1.15rem;
  box-shadow: 0 1px 2px rgba(9, 14, 26, 0.05);
}
.assoc-card .a-name {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.assoc-card .a-sub {
  font-family: var(--cond);
  font-weight: 600;
  color: var(--volt-deep);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.result-note {
  margin: 1.6rem auto 0;
  color: var(--body);
  font-size: 0.95rem;
  max-width: 62ch;
  text-align: center;
}
.result-note a { color: var(--ink); text-underline-offset: 3px; }
.result-cta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }

/* age tables */
.age-tables {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 56rem) { .age-tables { grid-template-columns: 1fr 1fr; } }
.age-table {
  background: var(--paper);
  border-radius: var(--r-card);
  padding: 1.6rem 1.6rem 1.3rem;
  box-shadow: 0 1px 2px rgba(9, 14, 26, 0.05);
}
.age-table h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.age-table table { width: 100%; border-collapse: collapse; font-size: 0.96rem; }
.age-table th {
  text-align: left;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 0.4rem 0.5rem 0.4rem 0;
  border-bottom: 1.5px solid var(--line-dark);
}
.age-table td {
  padding: 0.5rem 0.5rem 0.5rem 0;
  border-bottom: 1px solid rgba(16, 19, 24, 0.07);
  color: var(--body);
}
.age-table td:first-child { color: var(--ink); font-weight: 700; }
.age-note { margin-top: 1rem; color: var(--faint); font-size: 0.88rem; }

/* assist strip: stick loan + KidSport fee help */
.stick-strip { padding: 0 var(--pad) clamp(3rem, 7vw, 4.5rem); }
.stick-strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--volt);
  border-radius: calc(var(--r-card) + 8px);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: grid;
  gap: 1.8rem;
}
@media (min-width: 56rem) {
  .stick-strip-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.assist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.4rem;
}
@media (min-width: 56rem) {
  .assist + .assist { border-left: 1.5px solid rgba(16, 19, 24, 0.25); padding-left: 3rem; }
}
.stick-strip p {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 24ch;
  line-height: 1.2;
}

/* persistent mobile register bar */
.register-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: flex;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
  padding: 0.7rem var(--pad);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
}
.register-bar .btn {
  flex: 1;
  justify-content: center;
  font-size: 1.12rem;
  padding: 0.85rem 1rem;
}
@media (min-width: 56rem) {
  .register-bar { display: none; }
  .site-footer { padding-bottom: 2.6rem; }
}
@media (max-width: 55.99rem) {
  .concept-badge-raised { bottom: 5.1rem; }
}
