/*
Theme Name: Challenger Sports JOLC
Theme URI: https://challengersports.jolc.ca
Author: The Joy of Learning Centre
Author URI: https://jolc.ca
Description: A vibrant, accessible theme for Challenger Sports — skating, hockey, and baseball programs for children and youth with disabilities in Oakville.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: challenger-sports
Tags: accessibility-ready, custom-colors, custom-menu, featured-images, responsive-layout, sports
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --navy:      #0D1B2A;
  --navy-mid:  #1A3050;
  --gold:      #F5A623;
  --gold-dark: #D4891A;
  --green:     #2E7D32;
  --green-light: #43A047;
  --ice:       #E8F4FD;
  --white:     #FFFFFF;
  --off-white: #F7F9FB;
  --text:      #1A2332;
  --text-muted:#4A5568;
  --border:    #DDE3EC;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 4px rgba(13,27,42,0.08);
  --shadow-md: 0 4px 20px rgba(13,27,42,0.12);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.18);

  --font-display: 'Nunito', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w: 1200px;
  --section-gap: 96px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SITE HEADER & NAV
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo-text .name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.site-logo-text .tagline {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Primary nav */
#primary-nav {
  flex: 1;
}
#primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
#primary-nav a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-sm);
  transition: all .18s;
  letter-spacing: .01em;
}
#primary-nav a:hover,
#primary-nav .current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-cta a {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 18px !important;
}
.nav-cta a:hover {
  background: var(--gold-dark) !important;
}

/* Hamburger */
#menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}

/* ============================================================
   TICKER STRIP (signature element)
   ============================================================ */
.ticker-strip {
  background: var(--gold);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-strip:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  color: var(--navy);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ticker-item::after {
  content: '●';
  font-size: .5rem;
  opacity: .4;
  margin-left: 10px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO
   ============================================================ */
.site-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

/* Diagonal colour split */
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 55%, var(--navy-mid) 55%);
}

/* Subtle rink-line texture */
.site-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,.035) 60px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold); }

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-item .label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* Hero sport cards (right side) */
.hero-sports {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-sport-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all .25s;
  backdrop-filter: blur(6px);
  cursor: default;
}
.hero-sport-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
  border-color: rgba(245,166,35,.4);
}
.hero-sport-card .sport-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}
.hero-sport-card .sport-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-sport-card .sport-detail {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}
.hero-sport-card.card-wide {
  grid-column: 1 / -1;
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-header {
  margin-bottom: 48px;
}
.section-header h2 {
  margin-bottom: 14px;
}
.section-header .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-section {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .28s ease;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.program-card-banner {
  height: 8px;
}
.program-card.baseball .program-card-banner { background: var(--green); }
.program-card.skating  .program-card-banner { background: #1565C0; }
.program-card.hockey   .program-card-banner { background: var(--navy); }

.program-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.program-card.baseball .program-icon-wrap { background: #E8F5E9; }
.program-card.skating  .program-icon-wrap { background: #E3F2FD; }
.program-card.hockey   .program-icon-wrap { background: #E8EAF6; }

.program-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.program-card p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
  flex: 1;
}

.program-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meta-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: var(--text-muted);
}
.meta-row .meta-icon { flex-shrink: 0; width: 16px; text-align: center; margin-top: 1px; }
.meta-row strong { color: var(--text); font-weight: 600; }

.program-card-footer {
  padding: 20px 28px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.program-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--section-gap) 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.75; }
.about-text .btn { margin-top: 10px; }

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  color: var(--white);
}
.about-stat-box .big-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-box .stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.3;
}
.about-stat-box.highlight {
  background: var(--gold);
  grid-column: 1 / -1;
}
.about-stat-box.highlight .big-num { color: var(--navy); }
.about-stat-box.highlight .stat-label { color: rgba(13,27,42,.65); }

/* ============================================================
   VOLUNTEER BANNER
   ============================================================ */
.volunteer-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.volunteer-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 360px;
  height: 360px;
  background: rgba(245,166,35,.08);
  border-radius: 50%;
}
.volunteer-banner::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  background: rgba(245,166,35,.05);
  border-radius: 50%;
}
.volunteer-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.volunteer-banner-text .section-label { color: rgba(245,166,35,.8); }
.volunteer-banner-text .section-label::before { background: var(--gold); }
.volunteer-banner-text h2 { color: var(--white); margin-bottom: 14px; }
.volunteer-banner-text p { color: rgba(255,255,255,.7); max-width: 520px; font-size: 1.05rem; margin-bottom: 0; }
.volunteer-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   HOW IT WORKS / VALUES
   ============================================================ */
.values-section {
  padding: var(--section-gap) 0;
  background: var(--ice);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border: 1px solid var(--border);
  transition: box-shadow .22s;
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card .v-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.value-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.value-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.65; max-width: 260px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .18s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: .85rem;
  margin-bottom: 10px;
  align-items: flex-start;
}
.footer-contact-item .icon { flex-shrink: 0; margin-top: 2px; opacity: .6; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }
.jolc-credit { color: var(--gold); font-weight: 600; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--navy);
  padding: 56px 0;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}
.page-header .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.page-header .breadcrumb a { color: rgba(255,255,255,.6); }
.page-header .breadcrumb a:hover { color: var(--gold); }
.page-header .breadcrumb span { color: var(--gold); }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.page-content {
  padding: 64px 0 var(--section-gap);
}
.content-wrap {
  max-width: 720px;
}
.content-wrap h2 {
  margin: 40px 0 16px;
  font-size: 1.7rem;
}
.content-wrap h3 {
  margin: 32px 0 12px;
  font-size: 1.3rem;
  color: var(--navy-mid);
}
.content-wrap p,
.content-wrap li {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.content-wrap ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 1rem;
}
.content-wrap strong { color: var(--text); }

/* Schedule table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: .95rem;
}
.schedule-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.schedule-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) td { background: var(--off-white); }
.schedule-table .age-badge {
  display: inline-block;
  padding: 2px 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Registration box */
.reg-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  margin: 40px 0;
}
.reg-box h3 { color: var(--gold); margin-bottom: 10px; }
.reg-box p { color: rgba(255,255,255,.75); margin-bottom: 20px; }
.reg-box .reg-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Location card */
.location-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
}
.location-card h4 { margin-bottom: 6px; color: var(--navy); }
.location-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }
.location-card .map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.location-card .map-link:hover { color: var(--navy); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s;
  margin-bottom: 20px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
}
.contact-info-card h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}
.contact-detail {
  display: flex;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.contact-detail .icon { flex-shrink: 0; color: var(--gold-dark); }

/* ============================================================
   ACCESSIBILITY FOCUS
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  #menu-toggle { display: flex; }
  #primary-nav {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  #primary-nav.is-open { transform: translateX(0); }
  #primary-nav ul {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  #primary-nav a { font-size: 1.4rem; padding: 12px 32px; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 40px;
  }
  .hero-sports { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }

  .program-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .volunteer-banner-inner { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-sports { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .about-visual { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  * { transition: none !important; animation: none !important; }
}
