/* ============================================================
   MINI OLYMPICS — Mobile-First Design System
   Optimized for 90%+ mobile traffic
   ============================================================ */

/* --- Google Fonts loaded via <link> in HTML for better performance --- */

/* ============================================================
   1. DESIGN TOKENS — MOBILE FIRST
   ============================================================ */
:root {
  /* Color — Primary */
  --navy:       #0f1b2d;
  --navy-light: #1a2942;
  --coral:      #ff6b35;
  --coral-dark: #e55a28;
  --coral-glow: rgba(255, 107, 53, 0.15);
  --teal:       #00b4a6;
  --teal-dark:  #009e92;
  --teal-glow:  rgba(0, 180, 166, 0.12);
  --gold:       #ffc233;
  --gold-dark:  #e5ad2e;

  /* Color — Neutral */
  --white:      #ffffff;
  --cream:      #faf8f5;
  --sand:       #f0ede8;
  --gray-100:   #f5f5f5;
  --gray-200:   #e8e8e8;
  --gray-300:   #d1d1d1;
  --gray-400:   #a0a0a0;
  --gray-500:   #787878;
  --gray-600:   #555555;
  --gray-700:   #333333;
  --gray-800:   #1a1a1a;

  /* Semantic */
  --bg-card:    #ffffff;
  --text-muted: #666666;

  /* Typography — MOBILE OPTIMIZED */
  --font-display: 'Sora', -apple-system, sans-serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Mobile-first font sizes */
  --fs-xs:    0.75rem;   /* 12px */
  --fs-sm:    0.875rem;  /* 14px */
  --fs-base:  1rem;      /* 16px - critical for mobile readability */
  --fs-md:    1.0625rem; /* 17px */
  --fs-lg:    1.125rem;  /* 18px */
  --fs-xl:    1.25rem;   /* 20px */
  --fs-2xl:   1.5rem;    /* 24px */
  --fs-3xl:   1.75rem;   /* 28px */
  --fs-4xl:   2rem;      /* 32px */
  --fs-hero:  2.25rem;   /* 36px — mobile hero */

  /* Mobile-first Spacing */
  --sp-1: 0.25rem;  /* 4px */
  --sp-2: 0.5rem;   /* 8px */
  --sp-3: 0.75rem;  /* 12px */
  --sp-4: 1rem;     /* 16px */
  --sp-5: 1.25rem;  /* 20px */
  --sp-6: 1.5rem;   /* 24px */
  --sp-8: 2rem;     /* 32px */
  --sp-10: 2.5rem;  /* 40px */
  --sp-12: 3rem;    /* 48px */
  --sp-16: 4rem;    /* 64px */
  --sp-20: 5rem;    /* 80px */

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(15,27,45,0.06);
  --shadow-md:    0 4px 12px rgba(15,27,45,0.08);
  --shadow-lg:    0 8px 30px rgba(15,27,45,0.10);
  --shadow-glow:  0 0 40px rgba(255,107,53,0.15);

  /* Transitions */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:  150ms;
  --dur-med:   300ms;
  --dur-slow:  500ms;

  /* Layout */
  --container: 1360px;
  --nav-h:     84px;  /* Taller header to give the brand lockup more presence */
  
  /* MOBILE: Minimum touch target size (44px per Apple/Google guidelines) */
  --touch-min: 44px;
  
  /* Safe area insets for notched phones */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

/* ============================================================
   2. RESET & BASE — MOBILE OPTIMIZED
   ============================================================ */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0;
  /* Prevent text size adjustment on orientation change */
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--sp-4));
  /* Prevent pull-to-refresh interference with scroll */
  overscroll-behavior-y: contain;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Ensure body takes full viewport on mobile */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  /* Safe area padding for notched devices */
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

img { 
  max-width: 100%; 
  height: auto; 
  display: block;
  /* Prevent image dragging on mobile */
  -webkit-user-drag: none;
  user-select: none;
}

a { 
  color: var(--coral); 
  text-decoration: none; 
  transition: color var(--dur-fast);
  /* Prevent tap highlight color on iOS */
  -webkit-tap-highlight-color: transparent;
}
a:hover, a:active { color: var(--coral-dark); }

/* Remove 300ms tap delay */
a, button, input, select, textarea, label {
  touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  /* Prevent text orphans */
  text-wrap: balance;
}

/* ============================================================
   3. CONTAINER & LAYOUT — MOBILE FIRST
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-4); /* Tighter on mobile */
}

.section {
  padding: var(--sp-12) 0; /* Reduced padding on mobile */
}

.section--alt {
  background: var(--white);
}

.section--dark {
  background: var(--navy);
  color: var(--gray-200);
}
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.section__header--compact {
  margin-bottom: var(--sp-6);
}

.section__header h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-2);
}

.section__header p {
  font-size: var(--fs-base);
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  margin-bottom: var(--sp-3);
  border-radius: var(--r-full);
  background: rgba(15,27,45,0.05);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   4. NAVBAR — MOBILE OPTIMIZED
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0;
  height: var(--nav-h);
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,27,45,0.07);
  box-shadow: 0 10px 28px rgba(15,27,45,0.05);
  z-index: 1000;
  /* Safe area for notched devices */
  padding-top: var(--safe-top);
}

.navbar.scrolled {
  box-shadow: 0 18px 40px rgba(15,27,45,0.1);
}

.navbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  position: relative;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.2rem 0.8rem 0.2rem 0.34rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-full);
  border: 1px solid rgba(15,27,45,0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(247,250,252,0.96) 100%);
  box-shadow: 0 14px 30px rgba(15,27,45,0.08);
}
.navbar__logo::before {
  content: '';
  position: absolute;
  left: -18px;
  bottom: -22px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.18) 0%, rgba(255,107,53,0) 72%);
  z-index: 0;
}
.navbar__logo > * {
  position: relative;
  z-index: 1;
}
.navbar__logo:hover {
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(15,27,45,0.11);
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transform: rotate(-6deg);
}

/* Hide desktop nav on mobile */
.navbar__links {
  display: none;
  list-style: none;
  gap: var(--sp-1);
  align-items: center;
}

.navbar__links a {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-600);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: all var(--dur-fast);
  position: relative;
}
.navbar__links a:hover {
  color: var(--navy);
  background: rgba(15,27,45,0.05);
}
.navbar__links a.active {
  color: var(--navy);
  font-weight: 600;
  background: rgba(15,27,45,0.06);
}
.navbar__links a.active::after {
  display: none;
}
.navbar__links a.navbar__link--accent {
  color: var(--gold-dark);
  font-weight: 600;
}

/* CRITICAL: Desktop register button - hidden on mobile */
.navbar__cta {
  display: none !important;
}

/* Mobile actions - ONLY visible on mobile */
.navbar__mobile-actions {
  display: flex !important;
  align-items: center;
  gap: var(--sp-2);
}

.navbar__mobile-cta {
  display: inline-flex;
  box-shadow: 0 12px 22px rgba(255,107,53,0.16);
}

/* Hamburger - larger touch target */
.hamburger {
  width: var(--touch-min);
  height: var(--touch-min);
  border: 1px solid rgba(15,27,45,0.08);
  background: rgba(255,255,255,0.86);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
  box-shadow: 0 10px 20px rgba(15,27,45,0.06);
}
.hamburger:active {
  background: var(--white);
  border-color: rgba(15,27,45,0.14);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease-out);
}
.hamburger.open span:nth-child(1) { 
  transform: rotate(45deg) translate(5px, 5px); 
}
.hamburger.open span:nth-child(2) { 
  opacity: 0; 
}
.hamburger.open span:nth-child(3) { 
  transform: rotate(-45deg) translate(5px, -5px); 
}

/* Mobile menu - Full screen overlay */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; 
  right: 0; 
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: var(--sp-4);
  padding-bottom: calc(var(--sp-8) + var(--safe-bottom));
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-med) var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--r-md);
  transition: background var(--dur-fast);
}
.mobile-menu a:hover,
.mobile-menu a:active {
  background: var(--sand);
  color: var(--coral);
}
.mobile-menu a.active {
  color: var(--coral);
  background: var(--coral-glow);
}
.mobile-menu a.navbar__link--accent {
  color: var(--gold-dark);
}

/* Nav spacer - accounts for fixed nav */
.nav-spacer { 
  height: calc(var(--nav-h) + var(--safe-top)); 
}

/* ============================================================
   5. BUTTONS — MOBILE TOUCH OPTIMIZED
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  /* Minimum touch target height */
  min-height: var(--touch-min);
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--dur-med) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
  /* Prevent text selection on button */
  user-select: none;
  -webkit-user-select: none;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--primary:hover,
.btn--primary:active {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: var(--white);
}

.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn--secondary:hover,
.btn--secondary:active {
  border-color: var(--navy);
}

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

.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--lg {
  min-height: 52px;
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-base);
}

.btn--sm {
  min-height: 36px;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
}

.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.hero .btn-group {
  width: 100%;
  max-width: 24rem;
}

.hero .btn-group .btn {
  width: 100%;
}

/* ============================================================
   6. CARDS — MOBILE OPTIMIZED
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  border: 1px solid rgba(15,27,45,0.05);
  transition: all var(--dur-med) var(--ease-out);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-3);
}
.card__icon--coral { background: var(--coral-glow); }
.card__icon--teal  { background: var(--teal-glow); }
.card__icon--gold  { background: rgba(255,194,51,0.15); }
.card__icon--navy  { background: rgba(15,27,45,0.08); }

.card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
}

.card p {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   7. HERO — MOBILE FIRST
   ============================================================ */
.hero {
  position: relative;
  padding: var(--sp-10) 0 var(--sp-12);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, var(--coral-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--teal-glow) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

/* Motto bubble — premium glassmorphism quote */
.hero__motto {
  display: inline-block;
  position: relative;
  padding: 0.75rem 1.75rem 0.75rem 2.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'DM Sans', serif;
  font-size: var(--fs-sm);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: var(--sp-5);
  max-width: 520px;
}

.hero__motto-mark {
  position: absolute;
  left: 0.85rem;
  top: 0.35rem;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-3);
  max-width: 100%;
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  width: 100%;
  max-width: 24rem;
  margin-bottom: var(--sp-6);
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}

.hero__meta span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  text-align: left;
}

.hero__meta strong {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.hero__meta small {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.hero .btn--secondary {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

/* Hide decorative shapes on mobile to improve performance */
.hero__shapes {
  display: none;
}

/* ============================================================
   7b. PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: var(--sp-8) 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 100%, var(--coral-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 0%, var(--teal-glow) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: var(--fs-2xl);
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.page-hero p {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.7);
  max-width: 100%;
}

.page-hero--volunteer {
  background: linear-gradient(135deg, var(--navy) 0%, #143352 58%, #0f5f73 100%);
}

/* ============================================================
   8. SNAPSHOT CARDS (Event Snapshot)
   ============================================================ */
.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.snapshot-card {
  text-align: left;
  padding: var(--sp-5);
  border-color: rgba(15,27,45,0.08);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, var(--white) 100%);
}

.snapshot-card .card__icon {
  margin: 0 0 var(--sp-3);
  width: fit-content;
  min-width: 0;
  height: auto;
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.snapshot-card h3 {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: var(--sp-2);
}

.snapshot-card p {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

/* ============================================================
   9. TIMELINE (Important Dates)
   ============================================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: var(--sp-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--coral), var(--teal));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
}

.timeline__dot {
  position: absolute;
  left: calc(-1 * var(--sp-8) + 3px);
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--coral);
  z-index: 1;
}
.timeline__item:last-child .timeline__dot {
  border-color: var(--teal);
}
.timeline__dot--gold {
  border-color: var(--gold);
}

.timeline__date {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral);
  margin-bottom: var(--sp-1);
}
.timeline__date--gold {
  color: var(--gold-dark);
}
.timeline__date--teal {
  color: var(--teal);
}

.timeline__title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--navy);
}

.timeline__desc {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

/* ============================================================
   10. SPORTS GRID — MOBILE SCROLL
   ============================================================ */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
  overflow: visible;
  padding-bottom: 0;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.sports-grid::-webkit-scrollbar {
  display: none;
}

.sport-chip {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, var(--white) 100%);
  border: 1px solid rgba(15,27,45,0.08);
  border-radius: var(--r-lg);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  white-space: normal;
  min-height: var(--touch-min);
  transition: all var(--dur-med);
  box-shadow: var(--shadow-sm);
}
.sport-chip:active {
  border-color: var(--coral);
  background: var(--coral-glow);
}
.sport-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: var(--r-full);
  background: rgba(15,27,45,0.05);
  font-size: 1rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(15,27,45,0.04);
}

.section-label {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-2);
}

@media (max-width: 380px) {
  .snapshot-grid,
  .sports-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   11. STEPS (How it Works)
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  max-width: 100%;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}
.step__number--teal {
  background: var(--teal);
}
.step__number--navy {
  background: var(--navy);
}

.step h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
}

.step p {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

/* ============================================================
   12. SPONSORS STRIP — HORIZONTAL SCROLL
   ============================================================ */
.sponsor-strip {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  overflow-x: auto;
  padding: var(--sp-4) 0;
  margin: 0 calc(-1 * var(--sp-4));
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sponsor-strip::-webkit-scrollbar { display: none; }

.sponsor-placeholder {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--gray-100);
  color: var(--gray-400);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
}

/* ============================================================
   13. ACCORDION (FAQ) — MOBILE TOUCH
   ============================================================ */
.accordion {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.accordion__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
}
.accordion__item.open {
  border-color: var(--coral);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  width: 100%;
  min-height: 56px; /* Large touch target */
  padding: var(--sp-4);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-med) var(--ease-out);
}
.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
}
.accordion__icon::before {
  content: '+';
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--gray-400);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-out);
}

.accordion__content {
  padding: 0 var(--sp-4) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   14. FILTER BAR — MOBILE OPTIMIZED
   ============================================================ */
.filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--sp-3) 0;
}

.filter-bar__inner {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: var(--sp-1);
  margin: 0 calc(-1 * var(--sp-4));
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar__inner::-webkit-scrollbar {
  display: none;
}

.filter-bar select,
.filter-bar input[type="text"] {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  min-height: 40px;
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  background: var(--white);
  color: var(--navy);
  outline: none;
  flex-shrink: 0;
  min-width: 0;
  max-width: 140px;
}
.filter-bar select:focus,
.filter-bar input[type="text"]:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 2px var(--coral-glow);
}

.filter-bar .btn--sm {
  flex-shrink: 0;
}

/* ============================================================
   15. SCHEDULE CARDS — MOBILE
   ============================================================ */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
}

.schedule-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.schedule-card__time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule-card__time small {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--gray-400);
}

.schedule-card__info h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--sp-2);
}

.schedule-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--gray-500);
}
.schedule-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.schedule-card__badge {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  white-space: nowrap;
  align-self: flex-start;
}
.badge--final   { background: var(--coral-glow); color: var(--coral-dark); }
.badge--semi    { background: var(--teal-glow); color: var(--teal-dark); }
.badge--league  { background: rgba(255,194,51,0.15); color: var(--gold-dark); }
.badge--playin  { background: rgba(15,27,45,0.08); color: var(--gray-600); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: var(--sp-12) var(--sp-4);
  color: var(--gray-400);
}
.empty-state__icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-3);
}
.empty-state h3 {
  font-size: var(--fs-md);
  color: var(--gray-500);
  margin-bottom: var(--sp-2);
}
.empty-state p {
  font-size: var(--fs-sm);
  color: var(--gray-400);
}

/* ============================================================
   16. RESULTS
   ============================================================ */
.results-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.result-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4);
  border-bottom: 1px solid var(--gray-100);
}

.result-card__header h3 {
  font-size: var(--fs-sm);
}

.result-card__placements {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.placement {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.placement__rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  flex-shrink: 0;
}
.placement__rank--1 { background: var(--gold); color: var(--navy); }
.placement__rank--2 { background: var(--gray-200); color: var(--gray-700); }
.placement__rank--3 { background: #e5a87a; color: var(--navy); }

.placement__name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--navy);
}

/* ============================================================
   17. QUICK LINKS — HORIZONTAL SCROLL
   ============================================================ */
.quick-links {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  overflow-x: auto;
  margin: 0 calc(-1 * var(--sp-4));
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.quick-links::-webkit-scrollbar {
  display: none;
}
.quick-links a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.quick-links a:active {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-glow);
}

/* ============================================================
   18. TABLES — MOBILE SCROLL
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  margin: 0 calc(-1 * var(--sp-4));
  -webkit-overflow-scrolling: touch;
}

.table-wrap table {
  width: 100%;
  min-width: 600px; /* Force horizontal scroll on narrow screens */
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.table-wrap th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  white-space: nowrap;
  position: sticky;
  top: 0;
}

.table-wrap td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  white-space: nowrap;
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap th:not(:first-child),
.table-wrap td:not(:first-child) { text-align: center; }

/* ============================================================
   19. VOLUNTEER PAGE
   ============================================================ */

/* Benefits Grid */
.volunteer-overview-layout {
  display: grid;
  gap: var(--sp-6);
}

.volunteer-benefits-panel {
  padding: var(--sp-5);
  border: 1px solid rgba(15,27,45,0.08);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #fbfcfe 100%);
  box-shadow: var(--shadow-sm);
}

.volunteer-benefits-panel h3 {
  font-size: var(--fs-xl);
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.volunteer-benefits-panel p {
  color: var(--gray-500);
  margin-bottom: var(--sp-4);
}

.volunteer-benefits-panel .benefits-grid {
  display: flex;
  flex-direction: column;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 100%;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
}
.benefit-card__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-glow);
  border-radius: var(--r-sm);
}
.benefit-card strong {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--navy);
  display: block;
  margin-bottom: var(--sp-1);
}

/* Role Categories */
.role-categories {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.role-category__label {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.role-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.role-chip-display {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: var(--sp-2) var(--sp-3);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--gray-700);
}
.role-chip-display--highlight {
  background: var(--coral-glow);
  border-color: var(--coral);
  color: var(--coral-dark);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .volunteer-overview-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }
}

/* ============================================================
   20. FORMS — MOBILE OPTIMIZED
   ============================================================ */
.vol-form-wrap {
  max-width: 100%;
}
.vol-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}

/* Fieldsets */
.vol-form__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 var(--sp-6) 0;
}
.vol-form__fieldset legend {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--gray-100);
  width: 100%;
}

/* Form Rows */
.vol-form__row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Form Groups */
.form-group {
  margin-bottom: var(--sp-4);
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: var(--touch-min);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body);
  font-size: 16px; /* Prevents iOS zoom on focus */
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--navy);
  outline: none;
  transition: border-color var(--dur-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-glow);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23787878' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.req { color: var(--coral); font-weight: 700; }

/* Radio group */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-2);
}
.radio-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: var(--touch-min);
  font-size: var(--fs-base);
  color: var(--gray-700);
  cursor: pointer;
}
.radio-label input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color: var(--coral);
  cursor: pointer;
}

/* Chip Checkbox Grid */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding: var(--sp-2);
  border: 2px solid transparent;
  border-radius: var(--r-lg);
}
.chip-grid--error {
  border-color: #dc3545;
  background: rgba(220,53,69,.04);
}
.chip-check {
  display: inline-flex;
  cursor: pointer;
  user-select: none;
}
.chip-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.chip-check span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: var(--touch-min);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--dur-fast);
  white-space: nowrap;
}
.chip-check input:checked + span {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  font-weight: 600;
}
.chip-check--highlight span {
  background: var(--coral-glow);
  border-color: var(--coral);
  color: var(--coral-dark);
}

/* Input Error */
.input-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220,53,69,.15) !important;
}

/* Submit area */
.vol-form__submit {
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-100);
}

/* Success State */
.vol-form-success {
  text-align: center;
  padding: var(--sp-10) var(--sp-4);
}
.vol-form-success__inner {
  max-width: 100%;
}
.vol-form-success__icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--sp-3);
}
.vol-form-success h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2);
}
.vol-form-success p {
  font-size: var(--fs-base);
  color: var(--gray-500);
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ============================================================
   21. PRICING — MOBILE
   ============================================================ */
.pricing-duo {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.pricing-card {
  text-align: center;
  padding: var(--sp-6);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--white);
}
.pricing-card--student { border-color: var(--teal); }
.pricing-card--adult   { border-color: var(--coral); }

.pricing-card__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.pricing-card--student .pricing-card__badge {
  background: var(--teal-glow);
  color: var(--teal-dark);
}
.pricing-card--adult .pricing-card__badge {
  background: var(--coral-glow);
  color: var(--coral-dark);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-1);
}
.pricing-card__label {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  margin-bottom: var(--sp-4);
}
.pricing-card__perks {
  list-style: none;
  text-align: left;
  margin-bottom: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.pricing-card__perks li {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  padding-left: var(--sp-5);
  position: relative;
}
.pricing-card__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.pricing-card--adult .pricing-card__perks li::before {
  color: var(--coral);
}

/* Age Group Selector */
.age-group-selector {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-2);
  border: 2px solid transparent;
  border-radius: var(--r-lg);
}
.age-group-selector--error {
  border-color: #dc3545;
  background: rgba(220,53,69,.04);
}
.age-radio {
  cursor: pointer;
  display: block;
}
.age-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.age-radio__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-4);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-lg);
  text-align: center;
  min-height: 70px;
  justify-content: center;
}
.age-radio__card strong {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--navy);
}
.age-radio__card small {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  font-weight: 600;
}
.age-radio input:checked + .age-radio__card {
  border-color: var(--coral);
  background: var(--coral-glow);
}
.age-radio input:checked + .age-radio__card strong { color: var(--coral-dark); }
.age-radio input:checked + .age-radio__card small  { color: var(--coral); }

/* Event Counter */
.event-counter {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gray-100);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gray-600);
}
.event-counter__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
  font-size: var(--fs-xs);
}
.event-counter--full {
  background: var(--coral-glow);
  color: var(--coral-dark);
}
.event-counter--full .event-counter__current {
  background: var(--teal);
}

/* Chip Section Labels */
.chip-section-label {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-1);
  margin-top: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  width: 100%;
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--gray-200);
}
.chip-section-label:first-child {
  margin-top: 0;
}
.chip-section-badge {
  display: inline-flex;
  padding: var(--sp-1) var(--sp-2);
  background: var(--gold);
  color: var(--navy);
  font-size: var(--fs-xs);
  font-weight: 700;
  border-radius: var(--r-full);
}

/* Disabled Chips */
.chip-disabled {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: var(--touch-min);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-400);
  cursor: not-allowed;
}
.chip-grid--disabled {
  opacity: 0.7;
}
.chip-check--disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Waiver Box */
.waiver-box {
  padding: var(--sp-4);
  background: var(--sand);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1.6;
}
.waiver-box p { margin-bottom: var(--sp-2); }
.waiver-box p:last-child { margin-bottom: 0; }
.waiver-box a { font-weight: 600; }

.waiver-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
  padding: var(--sp-4);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-md);
  min-height: 60px;
}
.waiver-check--error { 
  border-color: #dc3545; 
  background: rgba(220,53,69,.04); 
}
.waiver-check input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.waiver-check span {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--navy);
}

/* Order Summary */
.order-summary {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--navy);
  border-radius: var(--r-lg);
  color: var(--white);
}
.order-summary h3 {
  color: var(--white);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.order-summary__rows {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
}
.order-summary__row span:last-child {
  font-weight: 600;
  color: var(--white);
  text-align: right;
  max-width: 55%;
}
.order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.15);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--gold);
}

/* ============================================================
   22. SPONSOR TIERS
   ============================================================ */
.tier { margin-bottom: var(--sp-8); }

.tier__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 3px solid var(--gold);
}

.tier--silver .tier__label { border-color: var(--gray-300); }
.tier--community .tier__label { border-color: var(--teal); }

.sponsor-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.sponsor-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4) var(--sp-3);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  min-height: 60px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-400);
  font-size: var(--fs-xs);
}

/* ============================================================
   23. CTA BLOCK
   ============================================================ */
.cta-block {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  background: var(--navy);
  border-radius: var(--r-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--coral-glow), transparent 60%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { 
  color: var(--white); 
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2); 
}
.cta-block p { 
  color: rgba(255,255,255,0.7); 
  margin-bottom: var(--sp-4);
  font-size: var(--fs-sm);
}

.partnership-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-8);
  background: linear-gradient(180deg, var(--white) 0%, #fbfcfe 100%);
  border: 1px solid rgba(15,27,45,0.08);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.partnership-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}
.partnership-card p {
  font-size: var(--fs-base);
  color: var(--gray-500);
  margin-bottom: var(--sp-5);
}
.partnership-card .btn {
  width: 100%;
}

/* ============================================================
   24. FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: var(--sp-6) 0 var(--sp-4);
  /* Account for bottom safe area */
  padding-bottom: calc(var(--sp-4) + var(--safe-bottom));
}

.footer__compact {
  text-align: center;
  margin-bottom: var(--sp-4);
}
.footer__compact p {
  font-size: var(--fs-sm);
  line-height: 1.4;
  margin-top: var(--sp-2);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  text-align: center;
}


/* ============================================================
   25. RULE SECTIONS (Event & Rules page)
   ============================================================ */
.rule-section {
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--gray-200);
}
.rule-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.rule-section h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.rule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.rule-list li {
  position: relative;
  padding-left: var(--sp-6);
  line-height: 1.6;
  color: var(--gray-600);
  font-size: var(--fs-sm);
}
.rule-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* Downloads grid */
.downloads-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.download-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  text-decoration: none;
  min-height: 60px;
}
.download-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--coral-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.download-card__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--navy);
}
.download-card__text small {
  display: block;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--gray-400);
  font-size: var(--fs-xs);
}

.conduct-subhead {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
  margin-top: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ============================================================
   25b. EVENT RULES PAGE ENHANCEMENTS
   ============================================================ */
.page-hero--rules {
  background: linear-gradient(135deg, var(--navy) 0%, #152742 56%, #13415f 100%);
}

.page-hero--rules::after {
  content: '';
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 194, 51, 0.16) 0%, rgba(255, 194, 51, 0) 68%);
  pointer-events: none;
}

.page-hero__layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.page-hero--rules .hero__meta {
  max-width: 100%;
  margin-bottom: var(--sp-5);
}

.rules-hero-card {
  position: relative;
  padding: var(--sp-5);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  box-shadow: 0 18px 36px rgba(5,12,22,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rules-hero-card__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  margin-bottom: var(--sp-3);
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.12);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rules-hero-card h2 {
  color: var(--white);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}

.rules-hero-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.rules-hero-card__list li {
  position: relative;
  padding-left: var(--sp-5);
  color: rgba(255,255,255,0.82);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.rules-hero-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.18rem rgba(255,194,51,0.14);
}

.page-hero--volunteer::after {
  display: none;
}

/* volunteer-hero-card styles removed — now using centered hero with bubbles */

.rules-tabs-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(250,248,245,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,27,45,0.08);
}

.rules-tabs-wrap .container {
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-3);
}

.rules-tabs {
  display: flex;
  gap: 0.3rem;
  max-width: 34rem;
  margin: 0 auto;
  padding: 0.28rem;
  border-radius: var(--r-full);
  background: rgba(15,27,45,0.06);
  border: 1px solid rgba(15,27,45,0.08);
}

.rules-tab {
  flex: 1;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--gray-500);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background var(--dur-med), color var(--dur-med), box-shadow var(--dur-med);
}

.rules-tab:hover,
.rules-tab:focus-visible {
  color: var(--navy);
  background: rgba(255,255,255,0.72);
  outline: none;
}

.rules-tab.active {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(255,107,53,0.24);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.rule-section {
  scroll-margin-top: calc(var(--nav-h) + 5.5rem);
}

.td-yes,
.td-no,
.td-women {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
}
.td-yes {
  background: rgba(0, 180, 166, 0.12);
}
.td-yes::before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23009e92' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.td-no {
  background: rgba(15, 27, 45, 0.04);
}
.td-no::before {
  content: '';
  width: 10px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 1px;
}
.td-women {
  background: rgba(0, 180, 166, 0.12);
  font-size: var(--fs-xs);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--teal-dark);
}

.table-category-row td {
  background: var(--sand);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.table-category-row td:not(:first-child) {
  color: transparent;
}

.sport-category-heading {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin: var(--sp-8) 0 var(--sp-4);
}

.sport-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.sport-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, var(--white) 100%);
  border: 1px solid rgba(15,27,45,0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sport-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
  background:
    linear-gradient(135deg, rgba(15,27,45,0.98) 0%, rgba(26,41,66,0.98) 100%);
}

.sport-card__emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.12);
  font-size: 1.05rem;
}

.sport-card__name {
  margin: 0;
  color: var(--white);
  font-size: var(--fs-base);
}

.sport-card__body {
  padding: var(--sp-4);
}

.sport-card__ages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: var(--sp-3);
}

.age-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.18rem 0.65rem;
  border-radius: var(--r-full);
  background: rgba(15,27,45,0.05);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--navy);
}

.age-chip--women {
  background: var(--teal-glow);
  color: var(--teal-dark);
}

.sport-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(15,27,45,0.08);
}

.sport-card__info-row {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--gray-600);
}

.sport-card__info-label {
  min-width: 72px;
  flex-shrink: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
}

.download-card--disabled {
  opacity: 0.58;
  cursor: default;
  pointer-events: none;
}

.download-card--disabled .download-card__icon {
  background: rgba(15,27,45,0.08);
}

@media (min-width: 768px) {
  .page-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
    gap: var(--sp-8);
  }

  .sport-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sport-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================================================
   26. NEXT STEPS
   ============================================================ */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  counter-reset: next;
}
.next-step {
  counter-increment: next;
  position: relative;
  padding: var(--sp-4);
  padding-top: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
}
.next-step::before {
  content: counter(next);
  position: absolute;
  top: calc(-1 * var(--sp-2));
  left: var(--sp-4);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.next-step h4 {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-1);
}
.next-step p {
  font-size: var(--fs-xs);
  color: var(--gray-500);
}

/* ============================================================
   27. LOCATION MINI-MAP
   ============================================================ */
.location-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: var(--sand);
  border-radius: var(--r-lg);
  border: 1px dashed var(--gray-300);
  color: var(--gray-400);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.location-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--navy);
  min-height: var(--touch-min);
}
.location-list li span:first-child {
  font-size: 1.1rem;
}

/* ============================================================
   28. LAST-UPDATED BAR
   ============================================================ */
.updated-bar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-3) 0;
  font-size: var(--fs-xs);
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-200);
}
.updated-bar strong {
  color: var(--gray-600);
}

/* ============================================================
   29. UTILITY CLASSES
   ============================================================ */
.mb-0  { margin-bottom: 0 !important; }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.pt-0  { padding-top: 0 !important; }

.text-coral  { color: var(--coral); }
.text-teal   { color: var(--teal); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--gray-500); }
.text-sm     { font-size: var(--fs-sm); }
.text-xs     { font-size: var(--fs-xs); }
.text-center { text-align: center; }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }

/* 2-col layout */
.two-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

/* Info box */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--teal-glow);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-sm);
  color: var(--gray-700);
}
.info-box--coral {
  background: var(--coral-glow);
  border-left-color: var(--coral);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   30. ANIMATIONS (scroll reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2) { transition-delay: 50ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 100ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 150ms; }
.stagger > .reveal:nth-child(5) { transition-delay: 200ms; }
.stagger > .reveal:nth-child(6) { transition-delay: 250ms; }

/* Conditional field animation */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.conditional-field {
  animation: fadeSlideIn var(--dur-med) var(--ease-out);
}

/* ============================================================
   36. NAVBAR LOGO IMAGE
   ============================================================ */
.navbar__logo-img {
  height: 76px;
  width: auto;
  border-radius: 14px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 18px rgba(15,27,45,0.16));
}

.navbar__logo-text {
  display: none; /* hide text on mobile, logo is enough */
  line-height: 1;
}

/* ============================================================
   37. COMING SOON NOTICE
   ============================================================ */
.coming-soon-notice {
  padding: 3rem 0 2rem;
}

.coming-soon-notice__card {
  text-align: center;
  background: var(--bg-card, #fff);
  border: 2px dashed var(--gold, #f0a500);
  border-radius: var(--r-lg, 1rem);
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-notice__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.coming-soon-notice__card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.coming-soon-notice__card p {
  color: var(--text-muted, #666);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ============================================================
   38. ORGANIZED BY STRIP
   ============================================================ */
.organizers-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card, #fff);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
}

.organizers-strip__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted, #666);
  white-space: nowrap;
}

.organizers-strip__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.organizers-strip__logo-link {
  display: flex;
  align-items: center;
}

.organizers-strip__logo-img {
  height: clamp(72px, 10vw, 96px);
  width: auto;
  max-width: clamp(190px, 28vw, 280px);
  object-fit: contain;
  filter: none;
  transition: opacity 0.2s;
}

.organizers-strip__logo-img:hover {
  opacity: 0.8;
}

.organizers-strip__divider {
  width: 1px;
  height: clamp(56px, 8vw, 72px);
  background: rgba(0,0,0,0.15);
}

.organizers-strip--modal {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 0.9rem;
  padding: 0.7rem 0.95rem;
  gap: 0.85rem;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,27,45,0.08);
  border-bottom: none;
  border-radius: var(--r-full);
  box-shadow: 0 10px 24px rgba(15,27,45,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.organizers-strip--modal .organizers-strip__label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.organizers-strip--modal .organizers-strip__logos {
  gap: 0.9rem;
}

.organizers-strip--modal .organizers-strip__logo-img {
  height: 38px;
  max-width: 120px;
}

.organizers-strip--modal .organizers-strip__divider {
  height: 26px;
  background: rgba(15,27,45,0.12);
}

/* ============================================================
   38. HERO — HOME PAGE ENHANCED
   ============================================================ */
.hero--home {
  text-align: center;
  padding-bottom: var(--sp-10);
}

.hero--home .hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero--home .parallax-section__bg {
  inset: 0;
}

.hero__logo-wrap {
  margin-bottom: var(--sp-4);
  max-width: 280px;
  animation: heroLogoIn 0.8s var(--ease-out) both;
  animation-delay: 0.2s;
}

.hero__logo {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 8px 32px rgba(255, 107, 53, 0.3));
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Floating sport emojis */
.hero__emojis {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero__emoji {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 1.5rem;
  opacity: 0.15;
  animation: emojiFloat var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes emojiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-12px) rotate(5deg); }
  50%      { transform: translateY(-20px) rotate(-3deg); }
  75%      { transform: translateY(-8px) rotate(2deg); }
}

/* ============================================================
   38. COUNTDOWN TIMER
   ============================================================ */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  /* Tabular nums so width doesn't shift */
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--sp-1);
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  padding-bottom: var(--sp-4);
  animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* Countdown finished state */
.countdown--finished {
  background: var(--coral-glow);
  border-color: var(--coral);
}

.countdown--finished .countdown__number {
  color: var(--coral);
}

/* ============================================================
   39. PARALLAX PHOTO BANDS (img-based, works on mobile)
   ============================================================ */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-section__bg {
  position: absolute;
  inset: -20% 0;           /* extra height for parallax travel room */
  z-index: 0;
}

.parallax-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-slide--static {
  opacity: 1;
  animation: none;
}

/* Hero slideshow — 4 photos, 6s each, Ken Burns zoom + crossfade */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
  animation: heroKenBurnsIn 24s infinite;
}

/* Alternate zoom direction & transform-origin per slide for variety */
.hero-slide--1 {
  animation-delay: 0s;
  animation-name: heroKenBurnsIn;
  transform-origin: center center;
}
.hero-slide--2 {
  animation-delay: 6s;
  animation-name: heroKenBurnsOut;
  transform-origin: top left;
}
.hero-slide--3 {
  animation-delay: 12s;
  animation-name: heroKenBurnsIn;
  transform-origin: bottom right;
}
.hero-slide--4 {
  animation-delay: 18s;
  animation-name: heroKenBurnsOut;
  transform-origin: top right;
}

/* Zoom in while visible */
@keyframes heroKenBurnsIn {
  0%    { opacity: 0; transform: scale(1); }
  4%    { opacity: 1; }
  25%   { opacity: 1; transform: scale(1.15); }
  29%   { opacity: 0; transform: scale(1.15); }
  100%  { opacity: 0; transform: scale(1); }
}

/* Zoom out while visible (reverse Ken Burns) */
@keyframes heroKenBurnsOut {
  0%    { opacity: 0; transform: scale(1.15); }
  4%    { opacity: 1; }
  25%   { opacity: 1; transform: scale(1); }
  29%   { opacity: 0; transform: scale(1); }
  100%  { opacity: 0; transform: scale(1.15); }
}

.parallax-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,27,45,0.85) 0%,
    rgba(15,27,45,0.7) 50%,
    rgba(15,27,45,0.85) 100%
  );
  z-index: 1;
}

.parallax-section > .container,
.parallax-section > .hero__emojis {
  position: relative;
  z-index: 2;
}

.parallax-band {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-band--short {
  min-height: 200px;
}

.parallax-band__bg {
  position: absolute;
  inset: -30% 0;           /* more travel room for bands */
  z-index: 0;
}

.parallax-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.parallax-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(255,107,53,0.8) 0%,
    rgba(15,27,45,0.85) 100%
  );
}

.parallax-band__overlay--teal {
  background: linear-gradient(
    135deg,
    rgba(0,180,166,0.8) 0%,
    rgba(15,27,45,0.85) 100%
  );
}

.parallax-band__overlay--gold {
  background: linear-gradient(
    135deg,
    rgba(255,194,51,0.7) 0%,
    rgba(15,27,45,0.85) 100%
  );
}

.parallax-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  max-width: 700px;
}

.parallax-band__tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.parallax-band__content h2 {
  font-size: var(--fs-xl);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ============================================================
   42. MARQUEE / AUTO-SCROLL CAROUSEL STRIPS
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: var(--sp-3) 0;
  background: var(--cream);
  /* Prevent any scroll interaction */
  -webkit-user-select: none;
  user-select: none;
}

.marquee-strip--dark {
  background: var(--navy);
}

.marquee-strip__track {
  display: flex;
  gap: var(--sp-2);
  width: max-content;
  will-change: transform;
  /* GPU acceleration for smooth mobile scrolling */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
}

.marquee-strip__track img {
  height: 110px;            /* mobile-first: compact */
  width: auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
  /* Prevent ghosting on mobile */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Left-to-right animation — GPU-accelerated */
.marquee-strip__track--ltr {
  animation: marqueeScrollLTR 30s linear infinite;
}

/* Right-to-left animation — GPU-accelerated */
.marquee-strip__track--rtl {
  animation: marqueeScrollRTL 35s linear infinite;
}

@keyframes marqueeScrollLTR {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeScrollRTL {
  0%   { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Pause on hover (desktop only, touch devices ignore :hover) */
@media (hover: hover) {
  .marquee-strip:hover .marquee-strip__track {
    animation-play-state: paused;
  }
}

/* ============================================================
   43. FULL-BLEED PHOTO MOSAIC
   Mobile: horizontal scroll strip
   Desktop: grid
   ============================================================ */
.photo-mosaic {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 3px 0;
}

.photo-mosaic::-webkit-scrollbar {
  display: none;
}

.photo-mosaic__item {
  flex-shrink: 0;
  width: 75vw;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  scroll-snap-align: center;
  border-radius: var(--r-sm);
}

.photo-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Touch: no hover zoom on mobile */
@media (hover: hover) {
  .photo-mosaic__item:hover img {
    transform: scale(1.06);
  }
}

/* ============================================================
   40. SPORT CHIP HOVER ENHANCEMENT
   ============================================================ */
.sport-chip--hover {
  cursor: default;
  position: relative;
  overflow: hidden;
}

.sport-chip--hover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--coral-glow) 0%, var(--teal-glow) 100%);
  opacity: 0;
  transition: opacity var(--dur-med);
}

.sport-chip--hover:hover::before,
.sport-chip--hover:active::before {
  opacity: 1;
}

.sport-chip--hover:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.sport-chip--hover > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   41. FOOTER LOGO IMAGE
   ============================================================ */
.footer__brand-logo {
  margin-bottom: var(--sp-3);
}

.footer__logo-img {
  height: 56px;
  width: auto;
  border-radius: var(--r-sm);
  object-fit: contain;
}

/* ============================================================
   TABLET BREAKPOINT (600px+)
   ============================================================ */
@media (min-width: 600px) {
  :root {
    --fs-hero: 2.75rem;
    --fs-4xl: 2.25rem;
    --fs-3xl: 2rem;
    --fs-2xl: 1.75rem;
  }
  
  .container {
    padding: 0 var(--sp-6);
  }
  
  .section {
    padding: var(--sp-16) 0;
  }
  
  .section__header {
    margin-bottom: var(--sp-10);
  }
  
  .section__header h2 {
    font-size: var(--fs-3xl);
  }
  
  .hero {
    padding: var(--sp-12) 0 var(--sp-16);
  }
  
  .page-hero {
    padding: var(--sp-10) 0;
  }
  
  .page-hero h1 {
    font-size: var(--fs-3xl);
  }
  
  .btn-group {
    flex-direction: row;
  }

  .hero .btn-group {
    width: auto;
    max-width: none;
  }

  .hero .btn-group .btn {
    width: auto;
  }

  .hero__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .partnership-card .btn {
    width: auto;
  }
  
  .snapshot-grid {
    gap: var(--sp-4);
  }
  
  .steps {
    flex-direction: row;
    gap: var(--sp-6);
  }
  
  .step {
    flex: 1;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .vol-form {
    padding: var(--sp-8);
  }
  
  .vol-form__row--2 {
    flex-direction: row;
  }
  
  .pricing-duo {
    flex-direction: row;
  }
  
  .pricing-card {
    flex: 1;
  }
  
  .age-group-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .two-col {
    flex-direction: row;
  }
  
  .two-col > * {
    flex: 1;
  }
  
  .downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .next-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .location-grid {
    flex-direction: row;
  }
  
  .location-grid > * {
    flex: 1;
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  /* -- NEW: Tablet marquee & mosaic -- */
  .marquee-strip__track img {
    height: 160px;
  }
  
  .marquee-strip__track {
    gap: var(--sp-3);
  }
  
  .photo-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  
  .photo-mosaic__item {
    width: auto;
    border-radius: 0;
  }

  .parallax-band {
    min-height: 300px;
  }
  
  .parallax-band__content h2 {
    font-size: var(--fs-2xl);
  }
  
  .countdown__number {
    font-size: var(--fs-3xl);
  }
  
  .countdown__unit {
    min-width: 60px;
  }
  
  .hero__logo-wrap {
    max-width: 340px;
  }
  
  .navbar__logo-text {
    display: inline;
  }
  
  .updated-bar {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .schedule-card {
    flex-direction: row;
    align-items: center;
  }
  
  .schedule-card__time {
    min-width: 100px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .schedule-card__badge {
    align-self: center;
    margin-left: auto;
  }
  
  .results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .table-wrap {
    margin: 0;
  }
}

/* ============================================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --nav-h: 92px;
    --fs-hero: 3.5rem;
    --fs-4xl: 2.75rem;
    --fs-3xl: 2.25rem;
    --fs-2xl: 2rem;
    --fs-xl: 1.5rem;
  }

  .navbar__logo-img {
    height: 84px;
  }
  
  .navbar__inner {
    gap: var(--sp-6);
  }

  .navbar__logo {
    gap: var(--sp-3);
    padding: 0.24rem 1rem 0.24rem 0.38rem;
  }

  .navbar__logo-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.12rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--navy);
  }

  .navbar__logo-text::after {
    content: 'Houston 2026';
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--coral);
  }
  
  .navbar__links {
    display: flex !important;
    flex: 1 1 auto;
    justify-content: center;
    gap: 0.25rem;
    min-width: 0;
  }

  .navbar__links a {
    padding: 0.58rem 0.9rem;
    font-size: 0.82rem;
    border-radius: var(--r-full);
    white-space: nowrap;
  }

  .navbar__cta {
    display: inline-flex !important;
    margin-left: auto;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8657 100%);
    border-color: transparent;
    box-shadow: 0 16px 32px rgba(255,107,53,0.2);
  }

  .navbar__mobile-actions { display: none !important; }
  .mobile-menu { display: none !important; }
  
  .hero {
    padding: var(--sp-20) 0;
  }
  
  .hero__shapes {
    display: block;
  }
  
  .hero__shapes span {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
  }
  .hero__shapes span:nth-child(1) {
    width: 200px; height: 200px;
    background: var(--coral);
    top: 10%; right: 10%;
    animation: float 8s ease-in-out infinite;
  }
  .hero__shapes span:nth-child(2) {
    width: 120px; height: 120px;
    background: var(--teal);
    bottom: 20%; right: 25%;
    animation: float 10s ease-in-out infinite reverse;
  }
  .hero__shapes span:nth-child(3) {
    width: 80px; height: 80px;
    background: var(--gold);
    top: 40%; right: 5%;
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-20px) rotate(5deg); }
  }
  
  .page-hero {
    padding: var(--sp-12) 0;
  }
  
  .page-hero h1 {
    font-size: var(--fs-4xl);
  }
  
  .snapshot-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }
  
  .snapshot-card {
    padding: var(--sp-6) var(--sp-4);
  }
  
  .snapshot-card .card__icon {
    padding: 0.5rem 0.9rem;
    font-size: 0.72rem;
  }
  
  .timeline {
    max-width: 700px;
  }
  
  .sports-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .card {
    padding: var(--sp-8);
  }
  
  .card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }
  
  .accordion {
    max-width: 720px;
  }
  
  .vol-form-wrap {
    max-width: 720px;
    margin: 0 auto;
  }
  
  .vol-form {
    padding: var(--sp-10) var(--sp-12);
  }
  
  .age-group-selector {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-block {
    padding: var(--sp-12) var(--sp-6);
  }
  
  .cta-block h2 {
    font-size: var(--fs-2xl);
  }
  
  .rule-section h2 {
    font-size: var(--fs-2xl);
  }
  
  .filter-bar__inner {
    overflow-x: visible;
    flex-wrap: wrap;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .filter-bar select,
  .filter-bar input[type="text"] {
    max-width: 200px;
    flex: 1 1 140px;
  }
  
  .quick-links {
    overflow-x: visible;
    flex-wrap: wrap;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .sponsor-strip {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    gap: var(--sp-10);
    justify-content: center;
  }
  
  .sponsor-placeholder {
    width: 140px;
    height: 48px;
  }
  
  /* -- NEW: Desktop marquee, mosaic, parallax -- */
  .marquee-strip__track img {
    height: 200px;
  }
  
  .marquee-strip__track {
    gap: var(--sp-4);
  }
  
  .photo-mosaic {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  
  .parallax-band {
    min-height: 400px;
  }
  
  .parallax-band__content h2 {
    font-size: var(--fs-4xl);
  }
  
  .countdown {
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-8);
  }
  
  .countdown__number {
    font-size: var(--fs-4xl);
  }
  
  .countdown__unit {
    min-width: 80px;
  }
  
  .hero__logo-wrap {
    max-width: 420px;
  }
  
  .hero__emoji {
    font-size: 2.5rem;
    opacity: 0.12;
  }
  
  .footer__logo-img {
    height: 72px;
  }
  
  .sponsor-logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

/* ============================================================
   LARGE DESKTOP (1280px+)
   ============================================================ */
@media (min-width: 1280px) {
  :root {
    --fs-hero: 4rem;
  }
  
  .hero h1 {
    font-size: var(--fs-hero);
  }
  
  .hero__subtitle {
    font-size: var(--fs-lg);
    max-width: 560px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .navbar__logo-text {
    display: none;
  }

  .navbar__links a {
    padding: 0.55rem 0.6rem;
    font-size: 0.78rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
  
  .hero__shapes {
    display: none;
  }
  
  .marquee-strip__track--ltr,
  .marquee-strip__track--rtl {
    animation: none;
  }
  
  .hero__emoji {
    animation: none;
  }
  
  .countdown__sep {
    animation: none;
  }
}

/* ============================================================
   DARK MODE SUPPORT (optional enhancement)
   ============================================================ */
@media (prefers-color-scheme: dark) {
  /* Users who prefer dark mode can see this adaptation */
  /* Currently keeping light theme for brand consistency */
  /* Uncomment below to enable dark mode */
  /*
  :root {
    --cream: #0f1b2d;
    --white: #1a2942;
    --sand: #1e3a5f;
    --gray-100: #2a4366;
    --gray-200: #3d5a80;
    --gray-700: #e8e8e8;
    --navy: #e8e8e8;
  }
  */
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar,
  .mobile-menu,
  .filter-bar,
  .btn,
  .cta-block,
  .footer {
    display: none !important;
  }
  
  .nav-spacer {
    height: 0;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero,
  .page-hero {
    background: white;
    color: black;
    padding: var(--sp-4) 0;
  }
  
  .hero h1,
  .page-hero h1 {
    color: black;
  }
}

/* ============================================================
   31. REGISTRATION TYPE SELECTOR
   ============================================================ */
.reg-type-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 740px;
  margin: 0 auto;
}

.reg-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-5);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-xl);
  cursor: pointer;
  text-align: center;
  transition: all var(--dur-med) var(--ease-out);
  font-family: inherit;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.reg-type-card:hover,
.reg-type-card:active {
  border-color: var(--coral);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.reg-type-card--team:hover,
.reg-type-card--team:active {
  border-color: var(--teal);
}

.reg-type-card__icon {
  font-size: 2.5rem;
  display: block;
}

.reg-type-card h3 {
  font-size: var(--fs-lg);
  margin: 0;
}

.reg-type-card p {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  margin: 0;
  max-width: 300px;
}

.reg-type-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--gray-600);
  padding: var(--sp-1) var(--sp-3);
  background: var(--gray-100);
  border-radius: var(--r-full);
}
.reg-type-card__price strong {
  color: var(--navy);
}

.reg-type-card__action {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--coral);
  margin-top: var(--sp-2);
}
.reg-type-card--team .reg-type-card__action {
  color: var(--teal);
}

@media (min-width: 600px) {
  .reg-type-cards {
    flex-direction: row;
  }
  .reg-type-card {
    flex: 1;
    padding: var(--sp-8) var(--sp-6);
  }
}

/* ============================================================
   32. TEAM SPORT SELECTOR
   ============================================================ */
.team-sport-selector {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-2);
  border: 2px solid transparent;
  border-radius: var(--r-lg);
}
.team-sport-selector.age-group-selector--error {
  border-color: #dc3545;
  background: rgba(220,53,69,.04);
}

.team-sport-radio {
  cursor: pointer;
  display: block;
}
.team-sport-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.team-sport-radio__card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all var(--dur-med) var(--ease-out);
  min-height: 70px;
}
.team-sport-radio__card:active {
  transform: scale(0.98);
}
.team-sport-radio__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.team-sport-radio__card strong {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  color: var(--navy);
  display: block;
}
.team-sport-radio__card small {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  font-weight: 600;
}

.team-sport-radio input:checked + .team-sport-radio__card {
  border-color: var(--coral);
  background: var(--coral-glow);
  box-shadow: 0 2px 12px rgba(255,107,53,.15);
}
.team-sport-radio input:checked + .team-sport-radio__card strong {
  color: var(--coral-dark);
}

@media (min-width: 600px) {
  .team-sport-selector {
    flex-direction: row;
  }
  .team-sport-radio {
    flex: 1;
  }
  .team-sport-radio__card {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: var(--sp-5);
  }
}

/* ============================================================
   33. PLAYER ROSTER
   ============================================================ */
.roster-status {
  padding: var(--sp-4);
  background: var(--sand);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
}
.roster-status__bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: var(--sp-3);
}
.roster-status__fill {
  height: 100%;
  background: var(--coral);
  border-radius: var(--r-full);
  transition: width 0.4s var(--ease-out), background 0.3s;
}
.roster-status__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--gray-600);
}
.roster-status__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
}
.roster-status__badge--incomplete {
  background: var(--coral-glow);
  color: var(--coral-dark);
}
.roster-status__badge--complete {
  background: var(--teal-glow);
  color: var(--teal-dark);
}

.roster-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.roster-player {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast);
}
.roster-player:focus-within {
  border-color: var(--coral);
}

.roster-player__number {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--gray-500);
}
.roster-player__number span {
  color: var(--navy);
}

.roster-player__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.roster-player__fields .form-group {
  margin-bottom: 0;
}

.roster-player__fields input {
  min-height: 38px;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
}

/* ============================================================
   34. PRICING TRIO (Team pricing)
   ============================================================ */
.pricing-trio {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.pricing-card--team {
  border-color: var(--gray-200);
  text-align: center;
}
.pricing-card--team:hover {
  border-color: var(--navy);
}

.pricing-card--team .pricing-card__perks li::before {
  color: var(--teal);
}

@media (min-width: 600px) {
  .pricing-trio {
    flex-direction: row;
  }
  .pricing-trio .pricing-card {
    flex: 1;
  }
}

/* ============================================================
   35. DISABLED SUBMIT BUTTON STATE
   ============================================================ */
.btn:disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================================================
   36. HERO HEADING & THEME PILLS
   ============================================================ */
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 11vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0.25rem 0 1rem;
  text-align: center;
}
.hero__heading-line {
  display: block;
}
.hero__heading-line:last-child {
  background: linear-gradient(90deg, #ffe6a3 0%, var(--gold) 40%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
}
@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.25rem;
  text-align: center;
  max-width: 40rem;
}

/* ============================================================
   ANNOUNCEMENT MODAL
   ============================================================ */
.announce-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.announce-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.announce-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 45, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.announce-modal__card {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid rgba(15,27,45,0.08);
  border-radius: var(--r-xl);
  max-width: 560px;
  width: 100%;
  max-height: 92dvh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 24px 70px rgba(15,27,45,0.22);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s var(--ease-out);
}
.announce-modal__card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,194,51,0.9) 50%, rgba(255,255,255,0) 100%);
  opacity: 0.9;
}
.announce-modal.is-open .announce-modal__card {
  transform: translateY(0) scale(1);
}
.announce-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  background: rgba(15,27,45,0.06);
  border: 1px solid rgba(15,27,45,0.08);
  color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.announce-modal__close:hover {
  background: rgba(255,107,53,0.1);
  border-color: rgba(255,107,53,0.2);
  transform: scale(1.04);
}

.announce-modal__body {
  padding: 1.25rem;
}

.announce-modal__layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.announce-modal__content {
  display: flex;
  flex-direction: column;
}

.announce-modal__header {
  text-align: center;
  margin-bottom: 1rem;
}
.announce-modal__badge {
  display: inline-block;
  background: rgba(255,107,53,0.12);
  color: var(--coral-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
}
.announce-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.announce-modal__sub {
  color: var(--gray-500);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: 0;
}

.announce-modal__summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1rem 0 1.1rem;
}
.announce-modal__summary-item {
  padding: 0.95rem 1rem;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(247,250,252,0.96) 100%);
  border: 1px solid rgba(15,27,45,0.08);
  box-shadow: var(--shadow-sm);
}
.announce-modal__summary-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.announce-modal__summary-item span {
  display: block;
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: 1.5;
}

.announce-modal__concert {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,194,51,0.1) 0%, rgba(255,107,53,0.07) 100%);
  border: 1px solid rgba(255,194,51,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}
.announce-modal__concert-copy h3 {
  font-size: var(--fs-xl);
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.announce-modal__concert-copy p {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1.6;
}
.announce-modal__concert-label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 0.4rem;
}

.announce-modal__hours {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.85rem;
}
.announce-modal__hours span {
  font-size: var(--fs-sm);
  color: var(--navy);
  font-weight: 600;
  width: fit-content;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(15,27,45,0.08);
}

.announce-modal__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  margin-top: 0.5rem;
}
.announce-modal__actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.75rem;
}
.announce-modal__cta {
  width: 100%;
  max-width: none;
}
.announce-modal__flyer-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  line-height: 0;
  position: relative;
  border: 1px solid rgba(15,27,45,0.08);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15,27,45,0.16);
}
.announce-modal__flyer-img {
  width: 100%;
  height: auto;
  display: block;
}

.announce-modal__skip {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: var(--fs-sm);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}
.announce-modal__skip:hover { color: var(--navy); }

@media (min-width: 640px) {
  .announce-modal__body {
    padding: 1.5rem;
  }

  .announce-modal__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .announce-modal__concert {
    grid-template-columns: 1fr 1fr;
  }

  .announce-modal__actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .announce-modal {
    padding: var(--sp-8);
  }

  .announce-modal__card {
    max-width: 920px;
  }

  .announce-modal__body {
    padding: 2rem;
  }

  .announce-modal__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 2rem;
    align-items: stretch;
  }

  .announce-modal__header {
    text-align: left;
    margin-bottom: 1.25rem;
  }

  .announce-modal__header .organizers-strip--modal {
    margin: 0 0 0.9rem;
  }

  .announce-modal__title {
    font-size: clamp(2rem, 3vw, 2.8rem);
  }

  .announce-modal__sub {
    max-width: 34rem;
    margin: 0;
    font-size: var(--fs-base);
  }

  .announce-modal__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.25rem 0 1.5rem;
  }

  .announce-modal__summary-item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .announce-modal__summary-item {
    padding: 1.15rem 1.1rem;
  }

  .announce-modal__concert {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.4rem;
    margin-bottom: 0;
    background: linear-gradient(180deg, #14233d 0%, #0f1b2d 100%);
    border-color: rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 24px 50px rgba(15,27,45,0.18);
  }

  .announce-modal__concert-copy {
    align-self: center;
  }

  .announce-modal__concert-copy h3 {
    font-size: var(--fs-2xl);
    color: var(--white);
  }

  .announce-modal__concert-copy p {
    font-size: var(--fs-base);
    color: rgba(255,255,255,0.72);
  }

  .announce-modal__concert-label {
    color: var(--gold);
  }

  .announce-modal__hours span {
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
  }

  .announce-modal__flyer-wrap {
    border-radius: var(--r-xl);
    order: -1;
    box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  }

  .announce-modal__footer {
    align-items: flex-start;
    text-align: left;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(15,27,45,0.08);
  }

  .announce-modal__actions {
    width: auto;
    min-width: min(100%, 30rem);
  }

  .announce-modal__skip {
    padding-left: 0;
  }
}

/* ============================================================
   37. ENTERTAINMENT SECTION (Live Music & Comedy Night)
   ============================================================ */
.entertainment-section {
  background: linear-gradient(180deg, var(--white) 0%, #f7fafc 100%);
  color: var(--gray-700);
  position: relative;
  overflow: hidden;
}
.entertainment-section::before {
  display: none;
}
.entertainment-section .section__header p {
  color: var(--gray-500);
}

/* Flyer + schedule row on homepage */
.ent-flyer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 0;
  padding: 1rem;
  border: 1px solid rgba(15,27,45,0.06);
  border-radius: calc(var(--r-xl) + 4px);
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,250,252,0.98) 100%);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
  .ent-flyer-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0.75rem;
  }
}
.ent-flyer-col {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(15,27,45,0.08);
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.ent-flyer-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-xl);
}
.ent-flyer-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ent-badge {
  display: inline-block;
  background: rgba(255,107,53,0.12);
  color: var(--coral-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
}
.ent-badge--carnival {
  background: rgba(255,194,51,0.18);
  color: #9a6700;
}
.ent-title {
  color: var(--navy);
}

.ent-nights {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.ent-nights--stacked {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .ent-nights {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .ent-divider { display: none; }
}

.ent-night-card {
  background: var(--white);
  border: 1px solid rgba(15,27,45,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15,27,45,0.07);
}
.ent-night-card__header {
  background: linear-gradient(180deg, #f8f5ef 0%, #f1ede6 100%);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.ent-night-card__date {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--navy);
}
.ent-night-card__full {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}
.ent-lineup {
  list-style: none;
  padding: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.ent-lineup li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.ent-lineup li:not(:last-child) {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(15,27,45,0.07);
}
.ent-time {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--coral);
  white-space: nowrap;
  min-width: 4.5rem;
  padding-top: 0.1rem;
}
.ent-act {
  font-size: var(--fs-sm);
  color: var(--gray-700);
  line-height: 1.4;
}
.ent-act em {
  display: block;
  color: var(--navy);
  font-style: normal;
  font-weight: 600;
}

.ent-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ent-divider__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.4;
  padding: 0 0.5rem;
}
.ent-divider__inner span:first-child,
.ent-divider__inner span:last-child {
  font-size: 1.5rem;
}

.ent-performers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .ent-performers { grid-template-columns: 1fr; }
}
.ent-performer {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  transition: background 0.2s, border-color 0.2s;
}
.ent-performer:hover {
  background: rgba(147,51,234,0.12);
  border-color: rgba(147,51,234,0.3);
}
.ent-performer__emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.ent-performer h4 {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}
.ent-performer p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ============================================================
   38. FOOD & GAME FESTIVAL SECTION
   ============================================================ */
.food-festival-section {
  background: var(--cream);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .food-grid { grid-template-columns: 1fr; }
}
@media (min-width: 900px) {
  .food-grid { grid-template-columns: repeat(4, 1fr); }
}
.food-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(15,27,45,0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #fbfcfe 100%);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.food-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.food-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.38rem 0.75rem;
  border-radius: var(--r-full);
  background: rgba(15,27,45,0.06);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.food-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.food-card p {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

.food-hours {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(90deg, rgba(249,115,22,0.08), rgba(234,179,8,0.08));
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
}
.food-hours__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.food-hours__day {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--navy);
}
.food-hours__time {
  font-size: var(--fs-md);
  font-weight: 800;
  color: #ea580c;
}
.food-hours__sep {
  font-size: 1.5rem;
  color: var(--gray-300);
}

/* ============================================================
   VOLUNTEER WIZARD — Modern Multi-Step Form
   ============================================================ */

/* ── Wrapper ── */
.wiz-wrap {
  max-width: 100%;
  margin: 0 auto;
}

/* ── Age Notice Banner ── */
.wiz-notice {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(135deg, rgba(255,194,51,0.10), rgba(255,107,53,0.08));
  border: 1px solid rgba(255,194,51,0.30);
  border-radius: var(--r-lg);
  font-size: var(--fs-sm);
  color: var(--navy);
  margin-bottom: var(--sp-6);
}
.wiz-notice svg {
  flex-shrink: 0;
  color: var(--gold-dark);
}

/* ── Progress Bar ── */
.wiz-progress {
  margin-bottom: var(--sp-6);
  position: relative;
}
.wiz-progress__bar {
  height: 4px;
  background: var(--gray-200);
  border-radius: var(--r-full);
  overflow: hidden;
  position: absolute;
  top: 18px;
  left: 40px;
  right: 40px;
}
.wiz-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  border-radius: var(--r-full);
  width: 0;
  transition: width 0.5s var(--ease-out);
}
.wiz-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.wiz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.wiz-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-400);
  border: 2px solid var(--gray-200);
  transition: all 0.35s var(--ease-out);
  position: relative;
  z-index: 1;
}
.wiz-step__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--gray-400);
  transition: color 0.3s;
}
.wiz-step.active .wiz-step__num {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-glow);
  transform: scale(1.1);
}
.wiz-step.active .wiz-step__label {
  color: var(--coral-dark);
}
.wiz-step.done .wiz-step__num {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.wiz-step.done .wiz-step__label {
  color: var(--teal-dark);
}

/* ── Form Card ── */
.wiz-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,0,0,0.02);
  overflow: hidden;
}

/* ── Panels (steps) ── */
.wiz-panel {
  display: none;
  padding: var(--sp-5);
  animation: wizFadeIn 0.4s var(--ease-out);
}
.wiz-panel.active {
  display: block;
}
@keyframes wizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wiz-panel.slide-in-right { animation: wizSlideRight 0.4s var(--ease-out); }
.wiz-panel.slide-in-left  { animation: wizSlideLeft  0.4s var(--ease-out); }
@keyframes wizSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes wizSlideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Panel header */
.wiz-panel__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--gray-100);
}
.wiz-panel__icon {
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--coral-glow), var(--teal-glow));
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.wiz-panel__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.wiz-panel__sub {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  margin: var(--sp-1) 0 0;
}

/* ── Floating Label Fields ── */
.wiz-field {
  margin-bottom: var(--sp-4);
}
.wiz-float {
  position: relative;
}
.wiz-float input,
.wiz-float textarea,
.wiz-float select {
  width: 100%;
  min-height: 54px;
  padding: 22px var(--sp-4) 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--navy);
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  outline: none;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.wiz-float textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 28px;
}
.wiz-float select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23787878' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.wiz-float label {
  position: absolute;
  top: 50%;
  left: var(--sp-4);
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-500);
  pointer-events: none;
  transition: all 0.2s ease;
  transform-origin: left center;
}
.wiz-float--textarea label,
.wiz-float--select label {
  top: 16px;
  transform: translateY(0) scale(0.8);
  color: var(--gray-500);
}
.wiz-float input:focus + label,
.wiz-float input:not(:placeholder-shown) + label,
.wiz-float textarea:focus + label,
.wiz-float textarea:not(:placeholder-shown) + label,
.wiz-float select:focus + label,
.wiz-float select:valid + label {
  top: 8px;
  transform: translateY(0) scale(0.78);
  color: var(--coral);
  font-weight: 600;
}
.wiz-float input:focus,
.wiz-float textarea:focus,
.wiz-float select:focus {
  background: var(--white);
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-glow);
}
.wiz-float__hint {
  display: block;
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--gray-400);
  line-height: 1.4;
}

/* Error state */
.wiz-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220,53,69,0.12) !important;
  background: rgba(220,53,69,0.03) !important;
}

/* Rows */
.wiz-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Toggle (Referee Yes/No) ── */
.wiz-toggle-group {
  margin-bottom: var(--sp-4);
}
.wiz-toggle-group__label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}
.wiz-toggle {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: var(--r-full);
  padding: 3px;
  gap: 2px;
}
.wiz-toggle__opt {
  cursor: pointer;
}
.wiz-toggle__opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.wiz-toggle__opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 40px;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gray-500);
  transition: all 0.25s var(--ease-out);
}
.wiz-toggle__opt input:checked + span {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ── Chip Groups ── */
.wiz-chips {
  border: 2px solid transparent;
  border-radius: var(--r-lg);
  padding: var(--sp-1);
  transition: border-color 0.2s;
}
.wiz-chips--error {
  border-color: #dc3545;
  background: rgba(220,53,69,0.03);
}
.wiz-chip-group {
  margin-bottom: var(--sp-4);
}
.wiz-chip-group__label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-2);
  padding-left: var(--sp-1);
}
.wiz-chip-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.wiz-chip-group--featured {
  margin-top: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-200);
}

/* Individual chip */
.wiz-chip {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s;
}
.wiz-chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.wiz-chip span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: var(--touch-min);
  padding: var(--sp-2) var(--sp-4);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}
.wiz-chip span::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  transition: all 0.2s var(--ease-out);
  background: var(--white);
}
.wiz-chip input:checked + span {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  font-weight: 600;
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(255,107,53,0.25);
}
.wiz-chip input:checked + span::before {
  background: var(--white);
  border-color: var(--white);
  box-shadow: inset 0 0 0 3px var(--coral);
}
@media (hover: hover) {
  .wiz-chip:hover span {
    border-color: var(--coral);
    background: var(--coral-glow);
    color: var(--coral-dark);
  }
}

/* Featured chip (Anywhere) */
.wiz-chip--featured span {
  background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(0,180,166,0.08));
  border-color: var(--coral);
  color: var(--coral-dark);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-base);
}
.wiz-chip--featured span::before {
  border-color: var(--coral);
}
.wiz-chip--featured input:checked + span {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-color: var(--coral-dark);
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}

/* Chip counter */
.wiz-chip-counter {
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gray-400);
  margin-top: var(--sp-3);
  padding: var(--sp-2);
  transition: color 0.2s;
}
.wiz-chip-counter.has-selection {
  color: var(--teal-dark);
}

/* ── Navigation Buttons ── */
.wiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-5);
  margin-top: var(--sp-4);
  border-top: 1px solid var(--gray-100);
  gap: var(--sp-3);
}
.wiz-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  min-height: var(--touch-min);
  -webkit-tap-highlight-color: transparent;
}
.wiz-btn--back {
  background: var(--gray-100);
  color: var(--gray-600);
}
.wiz-btn--back:hover {
  background: var(--gray-200);
}
.wiz-btn--next {
  background: var(--navy);
  color: var(--white);
}
.wiz-btn--next:hover {
  background: var(--navy-light);
  transform: translateX(2px);
}
.wiz-btn--submit {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  padding: var(--sp-3) var(--sp-6);
  box-shadow: 0 4px 16px rgba(255,107,53,0.30);
}
.wiz-btn--submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,107,53,0.40);
}
.wiz-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Spinner */
.wiz-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: wizSpin 0.6s linear infinite;
}
@keyframes wizSpin {
  to { transform: rotate(360deg); }
}

/* ── Toast Notification ── */
.wiz-toast {
  position: fixed;
  bottom: calc(var(--safe-bottom) + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
  text-align: center;
}
.wiz-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Success State ── */
.wiz-success {
  text-align: center;
  padding: var(--sp-12) var(--sp-5);
  animation: wizFadeIn 0.5s var(--ease-out);
}
.wiz-success__inner {
  max-width: 400px;
  margin: 0 auto;
}
.wiz-success__check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  animation: wizPop 0.5s var(--ease-out);
}
@keyframes wizPop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.wiz-success h3 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 var(--sp-3);
}
.wiz-success p {
  color: var(--gray-500);
  font-size: var(--fs-md);
  line-height: 1.6;
}

/* ============================================================
   WIZARD — Tablet (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .wiz-wrap {
    max-width: 640px;
    margin: 0 auto;
  }
  .wiz-panel {
    padding: var(--sp-8);
  }
  .wiz-row {
    flex-direction: row;
    gap: var(--sp-4);
  }
  .wiz-row > .wiz-field {
    flex: 1;
  }
  .wiz-panel__icon {
    width: 56px;
    height: 56px;
    font-size: 2rem;
  }
  .wiz-panel__title {
    font-size: var(--fs-xl);
  }
}

/* ============================================================
   WIZARD — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .wiz-wrap {
    max-width: 720px;
  }
  .wiz-panel {
    padding: var(--sp-10) var(--sp-12);
  }
  .wiz-step__num {
    width: 42px;
    height: 42px;
    font-size: var(--fs-base);
  }
  .wiz-step__label {
    font-size: var(--fs-sm);
  }
  .wiz-btn {
    font-size: var(--fs-base);
    padding: var(--sp-3) var(--sp-6);
  }
  .wiz-chip span {
    font-size: var(--fs-base);
  }
}

/* ============================================================
   VOLUNTEER PAGE — MODERN REDESIGN
   ============================================================ */

/* ── Hero centered layout ── */
.vol-hero-center {
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-8) 0 var(--sp-4);
}
.vol-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-lg);
  max-width: 540px;
  margin: 0 auto var(--sp-6);
}
.btn-group--center {
  justify-content: center;
}
.page-hero--volunteer {
  padding-bottom: var(--sp-10);
  min-height: 0;
}
.page-hero--volunteer .page-hero__layout {
  display: block;
}

/* ── Floating role bubbles ── */
.vol-hero-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.vol-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.2rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border: 1.5px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.05);
  animation: bubbleFloat var(--dur, 12s) var(--delay, 0s) ease-in-out infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Accent colors — coral */
.vol-bubble--1, .vol-bubble--9, .vol-bubble--13, .vol-bubble--18 {
  border-color: rgba(255,107,53,0.50);
  background: rgba(255,107,53,0.18);
  color: rgba(255,200,170,0.95);
  box-shadow: 0 4px 24px rgba(255,107,53,0.20), inset 0 0 0 1px rgba(255,107,53,0.08);
}
/* Accent colors — teal */
.vol-bubble--3, .vol-bubble--6, .vol-bubble--10, .vol-bubble--14 {
  border-color: rgba(0,180,166,0.45);
  background: rgba(0,180,166,0.15);
  color: rgba(150,240,230,0.95);
  box-shadow: 0 4px 24px rgba(0,180,166,0.18), inset 0 0 0 1px rgba(0,180,166,0.06);
}
/* Accent colors — gold */
.vol-bubble--5, .vol-bubble--12, .vol-bubble--17 {
  border-color: rgba(255,194,51,0.45);
  background: rgba(255,194,51,0.15);
  color: rgba(255,225,140,0.95);
  box-shadow: 0 4px 24px rgba(255,194,51,0.18), inset 0 0 0 1px rgba(255,194,51,0.06);
}

/*
  Positions — closer to center, some overlap the text area.
  Spread evenly across the hero height.
*/
.vol-bubble--1  { top: 6%;  left: 5%;   --dur: 11s; --delay: 0s; }
.vol-bubble--2  { top: 4%;  right: 6%;  --dur: 13s; --delay: -2s; }
.vol-bubble--3  { top: 16%; left: 12%;  --dur: 10s; --delay: -4s; }
.vol-bubble--4  { top: 13%; right: 4%;  --dur: 14s; --delay: -1s; }
.vol-bubble--5  { top: 28%; left: 2%;   --dur: 12s; --delay: -3s; }
.vol-bubble--6  { top: 26%; right: 2%;  --dur: 11s; --delay: -5s; }
.vol-bubble--7  { top: 40%; left: 4%;   --dur: 13s; --delay: -2s; }
.vol-bubble--8  { top: 38%; right: 5%;  --dur: 10s; --delay: -4s; }
.vol-bubble--9  { top: 52%; left: 3%;   --dur: 14s; --delay: -1s; }
.vol-bubble--10 { top: 50%; right: 3%;  --dur: 11s; --delay: -3s; }
.vol-bubble--11 { top: 64%; left: 6%;   --dur: 12s; --delay: -5s; }
.vol-bubble--12 { top: 62%; right: 6%;  --dur: 13s; --delay: 0s; }
.vol-bubble--13 { top: 76%; left: 9%;   --dur: 10s; --delay: -2s; }
.vol-bubble--14 { top: 74%; right: 9%;  --dur: 14s; --delay: -4s; }
.vol-bubble--15 { top: 85%; left: 13%;  --dur: 11s; --delay: -6s; }
.vol-bubble--16 { top: 83%; right: 13%; --dur: 12s; --delay: -1s; }
.vol-bubble--17 { top: 3%;  left: 24%;  --dur: 13s; --delay: -3s; }
.vol-bubble--18 { top: 91%; right: 18%; --dur: 10s; --delay: -5s; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25%      { transform: translateY(-12px) translateX(8px); }
  50%      { transform: translateY(6px) translateX(-5px); }
  75%      { transform: translateY(-8px) translateX(10px); }
}

/* Mobile — keep 14 bubbles visible, slightly smaller */
@media (max-width: 639px) {
  .vol-bubble {
    font-size: 0.72rem;
    padding: 0.42rem 0.85rem;
  }
  .vol-bubble--15, .vol-bubble--16, .vol-bubble--17, .vol-bubble--18 {
    display: none;
  }
  .vol-bubble--1  { left: 1%;  top: 4%;  }
  .vol-bubble--2  { right: 1%; top: 2%;  }
  .vol-bubble--3  { left: 2%;  top: 13%; }
  .vol-bubble--4  { right: 0%; top: 11%; }
  .vol-bubble--5  { left: 0%;  top: 23%; }
  .vol-bubble--6  { right: 0%; top: 21%; }
  .vol-bubble--7  { left: 1%;  top: 34%; }
  .vol-bubble--8  { right: 1%; top: 32%; }
  .vol-bubble--9  { left: 0%;  top: 45%; }
  .vol-bubble--10 { right: 0%; top: 43%; }
  .vol-bubble--11 { left: 2%;  top: 57%; }
  .vol-bubble--12 { right: 2%; top: 55%; }
  .vol-bubble--13 { left: 3%;  top: 69%; }
  .vol-bubble--14 { right: 3%; top: 67%; }
}

/* ── Hero steps (compact inline) ── */
.vol-hero-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}
.vol-hero-step {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ── Text gradient for hero ── */
.text-gradient {
  background: linear-gradient(135deg, var(--coral), var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero kicker on dark bg ── */
.section-kicker--hero {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ── Hero stats ── */
.vol-hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.vol-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}
.vol-hero-stat__number {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.vol-hero-stat__label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.vol-hero-stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ── Step number badge (used in hero steps) ── */
.vol-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ── Overview cards ── */
.vol-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.vol-overview-card {
  position: relative;
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
  overflow: hidden;
}
.vol-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.vol-overview-card:hover::before {
  opacity: 1;
}
.vol-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.vol-overview-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}
.vol-overview-card__icon--coral {
  background: var(--coral-glow);
  color: var(--coral);
}
.vol-overview-card__icon--teal {
  background: var(--teal-glow);
  color: var(--teal);
}
.vol-overview-card__icon--gold {
  background: rgba(255,194,51,0.12);
  color: var(--gold-dark);
}
.vol-overview-card__icon--navy {
  background: rgba(15,27,45,0.08);
  color: var(--navy);
}
.vol-overview-card::before {
  background: var(--coral);
}
.vol-overview-card:nth-child(2)::before { background: var(--teal); }
.vol-overview-card:nth-child(3)::before { background: var(--gold); }
.vol-overview-card:nth-child(4)::before { background: var(--navy); }

.vol-overview-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.vol-overview-card p {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}
.vol-overview-card__tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ── Benefits grid ── */
.vol-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  max-width: 900px;
  margin: 0 auto;
}
.vol-benefit {
  position: relative;
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  text-align: center;
  transition: all 0.35s var(--ease-out);
}
.vol-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.vol-benefit__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
}
.vol-benefit__icon--coral {
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,107,53,0.05));
  color: var(--coral);
}
.vol-benefit__icon--teal {
  background: linear-gradient(135deg, rgba(0,180,166,0.12), rgba(0,180,166,0.05));
  color: var(--teal);
}
.vol-benefit__icon--gold {
  background: linear-gradient(135deg, rgba(255,194,51,0.15), rgba(255,194,51,0.05));
  color: var(--gold-dark);
}
.vol-benefit__icon--navy {
  background: linear-gradient(135deg, rgba(15,27,45,0.10), rgba(15,27,45,0.03));
  color: var(--navy);
}
.vol-benefit h4 {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.vol-benefit p {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── CTA block redesign ── */
.vol-cta-block {
  position: relative;
  padding: var(--sp-10) var(--sp-6);
  background: linear-gradient(135deg, var(--navy) 0%, #143352 58%, #0f5f73 100%);
  border-radius: var(--r-xl);
  text-align: center;
  overflow: hidden;
}
.vol-cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.vol-cta-block::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,166,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.vol-cta-block__content {
  position: relative;
  z-index: 1;
}
.section-kicker--light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}
.vol-cta-block h2 {
  color: var(--white);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-3);
}
.vol-cta-block p {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto var(--sp-6);
}
.vol-cta-block .btn-group {
  justify-content: center;
}

/* ============================================================
   VOLUNTEER — Tablet (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .vol-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vol-overview-grid {
    gap: var(--sp-5);
  }
  .vol-hero-center {
    padding: var(--sp-10) 0 var(--sp-6);
  }
  .vol-bubble {
    font-size: 0.9rem;
    padding: 0.55rem 1.2rem;
  }
}

/* ============================================================
   VOLUNTEER — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .vol-hero-stats {
    gap: var(--sp-8);
  }
  .vol-hero-stat__number {
    font-size: var(--fs-4xl);
  }
  .vol-overview-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }
  .vol-overview-card {
    padding: var(--sp-6);
  }
  .vol-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
  }
  .vol-benefit {
    padding: var(--sp-8) var(--sp-5);
  }
  .vol-benefit__icon {
    width: 64px;
    height: 64px;
  }
  .vol-hero-center {
    padding: var(--sp-12) 0 var(--sp-8);
  }
  .vol-hero-sub {
    font-size: var(--fs-xl);
  }
  .vol-bubble {
    font-size: 0.95rem;
    padding: 0.6rem 1.35rem;
    border-width: 1.5px;
  }
  /* Desktop — push bubbles closer to the center text zone */
  .vol-bubble--1  { left: 8%; }
  .vol-bubble--2  { right: 8%; }
  .vol-bubble--3  { left: 16%; }
  .vol-bubble--4  { right: 12%; }
  .vol-bubble--5  { left: 5%; }
  .vol-bubble--6  { right: 5%; }
  .vol-bubble--7  { left: 12%; }
  .vol-bubble--8  { right: 12%; }
  .vol-bubble--9  { left: 6%; }
  .vol-bubble--10 { right: 6%; }
  .vol-bubble--11 { left: 14%; }
  .vol-bubble--12 { right: 14%; }
  .vol-bubble--13 { left: 16%; }
  .vol-bubble--14 { right: 16%; }
  .vol-cta-block {
    padding: var(--sp-16) var(--sp-8);
  }
  .vol-cta-block h2 {
    font-size: var(--fs-3xl);
  }
}
