/* ==========================================================================
   All Day Cheerleading — styles
   Brand: sun-yellow + night-black (from the sun/moon "All Day" logo)
   Type: Bebas Neue (display) + Source Sans 3 (body)
   ========================================================================== */

:root {
  /* Brand */
  --sun: #FFC20E;
  --sun-600: #F2AE00;
  --sun-100: #FFF3C4;
  --sun-50: #FFF9E6;
  --night: #0F0F12;
  --night-800: #18181D;
  --night-700: #24242B;

  /* Semantic */
  --bg: #FFFDF7;
  --surface: #FFFFFF;
  --text: #16161A;
  --text-muted: #53545C;
  --text-on-dark: #F6F4EE;
  --muted-on-dark: #B9B7B0;
  --border: #ECE6D6;
  --border-dark: #33333B;
  --focus: #1D4ED8;

  /* Type */
  --font-display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing (8pt) */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,15,18,.06), 0 2px 8px rgba(15,15,18,.05);
  --shadow-md: 0 8px 28px rgba(15,15,18,.10);
  --shadow-lg: 0 18px 50px rgba(15,15,18,.16);

  --ease-out: cubic-bezier(.2,.8,.2,1);
  --dur: 220ms;

  --z-header: 50;
  --z-menu: 60;
  --container: 1200px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; }
p { margin: 0 0 var(--s4); }
ul { margin: 0; padding: 0; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 6px; }
.dark :focus-visible, .on-dark :focus-visible { outline-color: var(--sun); }

.skip-link {
  position: absolute; left: var(--s4); top: -60px; z-index: 100;
  background: var(--night); color: var(--sun); padding: var(--s3) var(--s4);
  border-radius: 8px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: var(--s4); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s4); }
@media (min-width: 768px) { .container { padding: 0 var(--s6); } }

/* ---------- Type helpers ---------- */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: .01em; text-transform: uppercase; }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #8A6400; margin-bottom: var(--s3);
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--sun); border-radius: 2px; }
.on-dark .eyebrow, .dark .eyebrow { color: var(--sun); }
.h1 { font-family: var(--font-display); font-size: clamp(52px, 8vw, 96px); line-height: .92; text-transform: uppercase; }
.h2 { font-family: var(--font-display); font-size: clamp(38px, 5vw, 60px); line-height: .95; text-transform: uppercase; text-wrap: balance; }
.h3 { font-family: var(--font-display); font-size: 28px; line-height: 1; text-transform: uppercase; letter-spacing: .01em; }
.lead { font-size: 19px; color: var(--text-muted); max-width: 60ch; }
.on-dark .lead, .dark .lead { color: var(--muted-on-dark); }
.hl { color: var(--night); background: linear-gradient(transparent 58%, var(--sun) 58%, var(--sun) 92%, transparent 92%); padding: 0 .08em; }
.on-dark .hl, .dark .hl { color: var(--sun); background: none; padding: 0; }
.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto var(--s7); text-align: center; }
.section-head .lead { margin: var(--s4) auto 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--sun); --btn-fg: var(--night); --btn-bd: var(--sun);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 48px; padding: 12px 22px;
  background: var(--btn-bg); color: var(--btn-fg); border: 2px solid var(--btn-bd);
  border-radius: 999px; font-weight: 700; font-size: 16px; letter-spacing: .02em;
  text-decoration: none; cursor: pointer; touch-action: manipulation;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), transform 120ms var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.btn:hover { --btn-bg: var(--sun-600); --btn-bd: var(--sun-600); box-shadow: 0 6px 18px rgba(242,174,0,.35); }
.btn:active { transform: scale(.97); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-dark { --btn-bg: var(--night); --btn-fg: #fff; --btn-bd: var(--night); }
.btn-dark:hover { --btn-bg: var(--night-700); --btn-bd: var(--night-700); box-shadow: var(--shadow-md); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--night); --btn-bd: var(--night); }
.btn-outline:hover { --btn-bg: var(--night); --btn-fg: #fff; --btn-bd: var(--night); box-shadow: none; }
.on-dark .btn-outline, .dark .btn-outline { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.on-dark .btn-outline:hover, .dark .btn-outline:hover { --btn-bg: #fff; --btn-fg: var(--night); --btn-bd: #fff; }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-soon, .btn-soon:hover { --btn-bg: var(--sun-100); --btn-fg: #5C4300; --btn-bd: var(--sun-100); cursor: default; box-shadow: none; transform: none; text-align: center; line-height: 1.2; }
.on-dark .btn-soon, .dark .btn-soon { --btn-bg: transparent; --btn-fg: var(--sun); --btn-bd: rgba(255,194,14,.55); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700; text-decoration: none;
  color: var(--night); border-bottom: 2px solid var(--sun); padding-bottom: 2px;
  transition: gap var(--dur) var(--ease-out);
}
.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 16px; height: 16px; }
.on-dark .link-arrow, .dark .link-arrow { color: #fff; }

/* ---------- Top bar ---------- */
.topbar { background: var(--night); color: var(--text-on-dark); font-size: 14px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); min-height: 40px; }
.topbar a { text-decoration: none; color: inherit; }
.topbar a:hover { color: var(--sun); }
.topbar-promo { display: flex; align-items: center; gap: var(--s2); }
.topbar-promo strong { color: var(--sun); font-weight: 700; }
.topbar-contact { display: none; gap: var(--s5); }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 15px; height: 15px; }
@media (min-width: 900px) { .topbar-contact { display: flex; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.96); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); min-height: 84px; }
.brand { display: flex; align-items: center; gap: var(--s3); text-decoration: none; }
.brand { padding: 6px 0; }
.brand img { height: 76px; width: auto; }
@media (max-width: 480px) { .brand img { height: 64px; } }
.brand-text { font-family: var(--font-display); font-size: 24px; line-height: .9; letter-spacing: .02em; }
.brand-text small { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--text-muted); margin-top: 4px; }
.main-nav { display: none; }
.main-nav ul { display: flex; list-style: none; gap: 2px; }
.main-nav a {
  position: relative; display: block; padding: 10px 12px; font-weight: 600; font-size: 15.5px;
  text-decoration: none; color: var(--text); border-radius: 8px; transition: background var(--dur);
}
.main-nav a:hover { background: var(--sun-50); }
.main-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 3px; background: var(--sun); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: var(--s2); }
.header-actions .btn { display: none; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  background: var(--night); color: #fff; border: 0; border-radius: 12px; cursor: pointer;
}
.menu-toggle svg { width: 24px; height: 24px; }
@media (min-width: 1140px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
  .header-actions .btn { display: inline-flex; }
}
@media (min-width: 560px) and (max-width: 1139px) { .header-actions .btn { display: inline-flex; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu); background: var(--night); color: #fff;
  display: flex; flex-direction: column; padding: var(--s4); overflow-y: auto;
  transform: translateX(100%); visibility: hidden;
  transition: transform 280ms var(--ease-out), visibility 0s linear 280ms;
}
.mobile-menu.open { transform: none; visibility: visible; transition: transform 320ms var(--ease-out); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--s5); }
.mobile-menu .menu-close { background: var(--sun); color: var(--night); }
.mobile-menu ul { list-style: none; border-top: 1px solid var(--border-dark); }
.mobile-menu li a {
  display: flex; align-items: center; min-height: 52px; padding: 12px 14px;
  font-size: 18px; font-weight: 600; text-decoration: none; color: #fff;
  border-bottom: 1px solid var(--border-dark); border-left: 3px solid transparent;
  transition: background var(--dur), color var(--dur);
}
.mobile-menu li a:hover, .mobile-menu li a:active { background: var(--night-800); }
.mobile-menu li a[aria-current="page"] { color: var(--sun); border-left-color: var(--sun); background: var(--night-800); }
.mobile-menu .mobile-cta { margin-top: var(--s6); display: grid; gap: var(--s3); }
.mobile-menu .mobile-contact { margin-top: var(--s6); color: var(--muted-on-dark); font-size: 15px; display: grid; gap: var(--s2); }
.mobile-menu .mobile-contact a { color: #fff; }
body.menu-open { overflow: hidden; }

/* ---------- Sections ---------- */
.section { padding: var(--s8) 0; }
@media (min-width: 900px) { .section { padding: var(--s9) 0; } }
.section-tight { padding: var(--s7) 0; }
.dark { background: var(--night); color: var(--text-on-dark); }
.tint { background: var(--sun-50); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--night); color: var(--text-on-dark); }
.hero::before { /* sun glow */
  content: ""; position: absolute; right: -10%; top: -20%; width: 70vw; max-width: 900px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,194,14,.28) 0%, rgba(255,194,14,.08) 40%, transparent 68%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; gap: var(--s7); padding-top: var(--s8); padding-bottom: var(--s8); align-items: center; }
@media (min-width: 980px) { .hero .container { grid-template-columns: 1.05fr .95fr; padding-top: var(--s9); padding-bottom: var(--s9); } }
.hero .h1 { color: #fff; }
.hero .h1 .sun-word { color: var(--sun); }
.hero .lead { margin-top: var(--s5); font-size: 20px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
.next-up {
  display: inline-flex; align-items: center; gap: var(--s4); margin-top: var(--s6);
  padding: var(--s3) var(--s4) var(--s3) var(--s3); background: var(--night-800); border: 1px solid var(--border-dark);
  border-radius: 16px; text-decoration: none; transition: border-color var(--dur);
}
.next-up:hover { border-color: var(--sun); }
.next-up-date {
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 12px; background: var(--sun); color: var(--night);
  font-family: var(--font-display); line-height: .9; text-align: center; font-size: 28px;
}
.next-up-date small { display: block; font-size: 14px; letter-spacing: .08em; }
.next-up-label { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sun); }
.next-up-name { font-weight: 700; font-size: 18px; color: #fff; }
.next-up-meta { font-size: 14.5px; color: var(--muted-on-dark); }

/* Hero sun collage */
.sun-collage { position: relative; width: min(100%, 540px); aspect-ratio: 1; margin: 0 auto; }
.sun-rays {
  position: absolute; inset: -6%;
  background: repeating-conic-gradient(from 0deg, rgba(255,194,14,.9) 0deg 3deg, transparent 3deg 12deg);
  -webkit-mask: radial-gradient(circle, transparent 47%, #000 48%, #000 60%, transparent 71%);
          mask: radial-gradient(circle, transparent 47%, #000 48%, #000 60%, transparent 71%);
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.sun-main {
  position: absolute; inset: 14%; border-radius: 50%; overflow: hidden;
  border: 8px solid var(--sun); box-shadow: 0 0 0 8px var(--night), 0 30px 80px rgba(0,0,0,.5);
  background: var(--night-700);
}
.sun-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.sun-moon { /* the crescent from the logo */
  position: absolute; inset: 14%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 20% 50%, transparent 62%, rgba(15,15,18,.55) 63%);
}
.sun-bubble {
  position: absolute; width: 27%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 5px solid var(--night); box-shadow: 0 0 0 4px var(--sun), var(--shadow-lg); background: var(--night-700);
}
.sun-bubble img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.sun-bubble.b1 { left: -2%; bottom: 6%; }
.sun-bubble.b2 { right: -2%; top: 4%; width: 23%; }
.star { position: absolute; color: var(--sun); }
.star svg { width: 100%; height: 100%; }
.star.s1 { width: 30px; right: 6%; bottom: 14%; }
.star.s2 { width: 18px; left: 10%; top: 10%; color: #fff; }
.star.s3 { width: 22px; right: 22%; top: -2%; color: #fff; }

/* ---------- Partner strip ---------- */
.partners { background: var(--surface); border-bottom: 1px solid var(--border); }
.partners .container { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s4) var(--s6); padding-top: var(--s5); padding-bottom: var(--s5); }
.partners-label { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.partners ul { display: flex; flex-wrap: wrap; gap: var(--s3) var(--s6); list-style: none; flex: 1; justify-content: space-between; }
.partners ul { align-items: center; }
.partners li { display: flex; align-items: center; }
.partners li img { height: 56px; width: auto; max-width: 150px; object-fit: contain; transition: transform var(--dur) var(--ease-out); }
.partners li:hover img { transform: scale(1.06); }
@media (max-width: 640px) { .partners .container { flex-direction: column; } .partners ul { justify-content: center; gap: var(--s4) var(--s5); } .partners li img { height: 44px; max-width: 110px; } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: var(--s5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--s6) var(--s5); box-shadow: var(--shadow-sm);
}
.feature { text-align: left; transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-badge {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--night); color: var(--sun); margin-bottom: var(--s4);
}
.icon-badge svg { width: 28px; height: 28px; }
.feature h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; text-transform: uppercase; margin-bottom: var(--s2); }
.feature p { color: var(--text-muted); margin: 0; }

/* Stats */
.stats { margin-top: calc(var(--s7) * -1); position: relative; z-index: 2; }
.stats-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-dark);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--night-800); color: #fff; padding: var(--s5); display: flex; align-items: center; gap: var(--s4); }
.stat svg { width: 36px; height: 36px; color: var(--sun); flex: none; }
.stat-num { font-family: var(--font-display); font-size: 48px; line-height: .9; color: var(--sun); font-variant-numeric: tabular-nums; }
.stat-label { font-size: 15px; color: var(--muted-on-dark); line-height: 1.3; }

/* About split */
.split { display: grid; gap: var(--s7); align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: var(--s8); } .split.reverse > :first-child { order: 2; } }
.photo-stack { position: relative; aspect-ratio: 1 / 1; max-width: 520px; margin: 0 auto; width: 100%; }
.photo-stack .p-main { position: absolute; inset: 6% 12% 12% 6%; border-radius: 50%; overflow: hidden; border: 6px solid var(--sun); box-shadow: var(--shadow-lg); }
.photo-stack .p-a, .photo-stack .p-b { position: absolute; border-radius: 50%; overflow: hidden; border: 5px solid var(--bg); box-shadow: var(--shadow-md); }
.photo-stack .p-a { width: 34%; aspect-ratio: 1; right: 0; top: 0; }
.photo-stack .p-b { width: 28%; aspect-ratio: 1; left: 0; bottom: 0; }
.photo-stack img { width: 100%; height: 100%; object-fit: cover; }
.photo-stack .dot { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--night); right: 14%; bottom: 8%; }
.checklist { list-style: none; display: grid; gap: var(--s3); margin: var(--s5) 0 var(--s6); }
.checklist li { display: flex; gap: var(--s3); align-items: flex-start; }
.checklist li svg { width: 22px; height: 22px; flex: none; color: var(--night); background: var(--sun); border-radius: 50%; padding: 3px; margin-top: 2px; }
.on-dark .checklist li svg, .dark .checklist li svg { color: var(--night); }

/* Event cards */
.event-card {
  min-width: 0; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-art {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; min-width: 0; aspect-ratio: 16 / 10; padding: 44px var(--s5) var(--s4); overflow: hidden;
  background: radial-gradient(circle at 50% 120%, rgba(255,194,14,.35), transparent 60%), var(--night);
}
/* Logo fills a fixed box inside the art area (works the same in Safari and Chrome) */
.event-art img {
  position: absolute; top: 44px; right: var(--s5); bottom: var(--s4); left: var(--s5);
  width: calc(100% - 2 * var(--s5)); height: calc(100% - 44px - var(--s4)); max-width: none;
  object-fit: contain; object-position: center; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
}
.event-art .placeholder-name { font-family: var(--font-display); font-size: clamp(34px, 9vw, 44px); color: var(--sun); text-align: center; line-height: .9; }
.event-date-badge {
  position: absolute; z-index: 1; left: var(--s4); top: var(--s4); background: var(--sun); color: var(--night);
  font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.event-tag {
  position: absolute; z-index: 1; right: var(--s4); top: var(--s4); white-space: nowrap; background: #fff; color: var(--night);
  font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.event-body { padding: var(--s5); display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.event-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 32px; text-transform: uppercase; }
.event-meta { display: grid; gap: 6px; color: var(--text-muted); font-size: 15.5px; }
.event-meta span { display: flex; gap: 8px; align-items: flex-start; }
.event-meta svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--night); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 999px;
  background: var(--sun-100); color: #5C4300; font-size: 13px; font-weight: 700;
}
.chip svg { width: 13px; height: 13px; }
.chip-dark { background: var(--night); color: var(--sun); }
.event-actions { display: flex; gap: var(--s2); flex-wrap: wrap; margin-top: auto; padding-top: var(--s3); }
.event-actions .btn { flex: 1; min-width: 130px; }

/* Schedule list */
.schedule { list-style: none; display: grid; gap: var(--s3); }
.schedule-row {
  display: grid; grid-template-columns: 76px 1fr; gap: var(--s4); align-items: center;
  padding: var(--s4); background: var(--night-800); border: 1px solid var(--border-dark); border-radius: var(--radius);
  text-decoration: none; color: #fff; transition: border-color var(--dur), background var(--dur);
}
.schedule-row:hover { border-color: var(--sun); background: var(--night-700); }
.schedule-row .cal { display: grid; place-items: center; text-align: center; background: var(--sun); color: var(--night); border-radius: 12px; padding: 8px 4px; font-family: var(--font-display); line-height: .9; }
.schedule-row .cal b { font-size: 34px; font-weight: 400; }
.schedule-row .cal small { font-size: 15px; letter-spacing: .08em; }
.schedule-row h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; }
.schedule-row p { margin: 2px 0 0; color: var(--muted-on-dark); font-size: 15px; }
.schedule-row .row-go { display: none; }
@media (min-width: 720px) {
  .schedule-row { grid-template-columns: 76px 1fr auto auto; }
  .schedule-row .row-go { display: inline-flex; color: var(--sun); font-weight: 700; align-items: center; gap: 6px; }
  .schedule-row .row-go svg { width: 18px; height: 18px; }
}
.schedule-row .chips { display: none; }
@media (min-width: 900px) { .schedule-row .chips { display: flex; justify-content: flex-end; } }

/* Info panels (coaches / spectators) */
.panel { border-radius: var(--radius-lg); padding: var(--s6); }
.panel-light { background: var(--surface); border: 1px solid var(--border); }
.panel-dark { background: var(--night); color: var(--text-on-dark); }
.panel h3 { font-family: var(--font-display); font-size: 40px; font-weight: 400; text-transform: uppercase; margin-bottom: var(--s3); }
.panel .price-list { list-style: none; margin: var(--s4) 0 var(--s5); }
.price-list li { display: flex; justify-content: space-between; gap: var(--s4); padding: 10px 0; border-bottom: 1px dashed var(--border); }
.panel-dark .price-list li { border-color: var(--border-dark); }
.price-list b { font-variant-numeric: tabular-nums; }

/* CTA banner */
.cta-banner {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--sun); color: var(--night);
  display: grid; gap: var(--s5); padding: var(--s7) var(--s5); align-items: center;
}
@media (min-width: 900px) { .cta-banner { grid-template-columns: 1.2fr .8fr; padding: var(--s7); } }
.cta-banner::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%;
  background: repeating-conic-gradient(rgba(15,15,18,.08) 0 6deg, transparent 6deg 18deg);
}
.cta-banner .h2 { color: var(--night); }
.cta-banner p { font-size: 18px; max-width: 52ch; }
.cta-banner .eyebrow { color: var(--night); }
.cta-banner .eyebrow::before { background: var(--night); }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: var(--s3); position: relative; z-index: 1; }
.cta-banner .photos { display: flex; justify-content: center; gap: var(--s3); position: relative; z-index: 1; }
.cta-banner .photos img { width: 30%; aspect-ratio: 3/4; object-fit: cover; border-radius: 16px; border: 4px solid var(--night); }
.cta-banner .photos img:nth-child(2) { transform: translateY(-14px); }

/* Updates band */
.updates { background: var(--surface); border-top: 1px solid var(--border); }
.updates .container { display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; justify-content: space-between; padding-top: var(--s5); padding-bottom: var(--s5); }
.updates-text { display: flex; gap: var(--s3); align-items: center; }
.updates-text svg { width: 34px; height: 34px; color: var(--night); flex: none; }
.updates-text strong { font-family: var(--font-display); font-size: 26px; font-weight: 400; display: block; line-height: 1; }
.updates-text span { color: var(--text-muted); font-size: 15.5px; }

.updates .container { align-items: flex-start; }
.signup { display: grid; gap: var(--s3); width: 100%; max-width: 620px; }
.signup-grid { display: grid; gap: var(--s3); grid-template-columns: 1fr 1fr; }
.signup-grid .wide { grid-column: 1 / -1; }
.signup .field { gap: 4px; }
.signup .field label { font-size: 14.5px; }
.signup .field input, .signup .field select { min-height: 46px; padding: 10px 14px; }
.signup-foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3); }
.signup .btn[disabled] { opacity: .6; cursor: progress; }
.signup-msg { margin: 0; font-size: 15px; font-weight: 600; }
.signup-msg.is-ok { color: #067647; }
.signup-msg.is-error { color: #B42318; }
@media (max-width: 560px) { .signup-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: var(--muted-on-dark); padding-top: var(--s8); font-size: 15.5px; }
.footer-grid { display: grid; gap: var(--s6); grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr; } }
.footer-brand img { width: 200px; margin-bottom: var(--s4); background: #fff; border-radius: 18px; padding: 10px 14px; }
.footer-brand p { max-width: 34ch; }
.site-footer h4 { font-family: var(--font-display); font-weight: 400; font-size: 24px; color: #fff; margin-bottom: var(--s3); letter-spacing: .02em; }
.site-footer ul { list-style: none; display: grid; gap: 4px; }
.site-footer a { text-decoration: none; color: var(--muted-on-dark); display: inline-block; padding: 3px 0; }
.site-footer a:hover { color: var(--sun); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--sun); flex: none; margin-top: 6px; }
.socials { display: flex; gap: var(--s2); margin-top: var(--s4); }
.socials a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-dark); color: #fff; }
.socials a:hover { background: var(--sun); color: var(--night); border-color: var(--sun); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: var(--s7); border-top: 1px solid var(--border-dark); padding: var(--s5) 0; display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: space-between; font-size: 14px; }

/* ---------- Page header (interior pages) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--night); color: var(--text-on-dark); padding: var(--s8) 0 var(--s7); }
.page-hero::after {
  content: ""; position: absolute; right: -140px; top: 50%; translate: 0 -50%; width: 460px; aspect-ratio: 1; border-radius: 50%;
  background: repeating-conic-gradient(rgba(255,194,14,.35) 0 3deg, transparent 3deg 12deg);
  -webkit-mask: radial-gradient(circle, transparent 38%, #000 39%, transparent 70%); mask: radial-gradient(circle, transparent 38%, #000 39%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .h1 { font-size: clamp(48px, 7vw, 84px); color: #fff; }
.page-hero .lead { margin-top: var(--s4); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font-size: 14.5px; margin-bottom: var(--s4); color: var(--muted-on-dark); }
.breadcrumb a { color: var(--muted-on-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--sun); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; opacity: .5; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s6); }
.filter-btn {
  min-height: 44px; padding: 8px 18px; border-radius: 999px; border: 2px solid var(--border); background: var(--surface);
  font-weight: 700; cursor: pointer; color: var(--text); transition: all var(--dur);
}
.filter-btn:hover { border-color: var(--night); }
.filter-btn[aria-pressed="true"] { background: var(--night); color: var(--sun); border-color: var(--night); }

/* Season tabs */
.season-tabs { display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 4px; margin-bottom: var(--s4); background: var(--night); border-radius: 999px; }
.season-tab {
  min-height: 48px; padding: 10px 24px; border: 0; border-radius: 999px; background: transparent; color: #fff;
  font-family: var(--font-display); font-size: 22px; letter-spacing: .03em; cursor: pointer; transition: background var(--dur), color var(--dur);
}
.season-tab:hover { background: var(--night-700); }
.season-tab[aria-pressed="true"] { background: var(--sun); color: var(--night); }
tr.season-row th { background: var(--sun-100); color: var(--night); font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: .03em; }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
table { width: 100%; border-collapse: collapse; font-size: 16px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
thead th { background: var(--night); color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; white-space: nowrap; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) td { background: #FFFCF2; }
td.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.yes { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--sun); color: var(--night); }
.yes svg { width: 16px; height: 16px; }
.no { color: #9A9AA2; }

/* Steps */
.steps { list-style: none; counter-reset: step; display: grid; gap: var(--s4); }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.steps li { counter-increment: step; position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--s6) var(--s5) var(--s5); }
.steps li::before {
  content: counter(step); display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--sun); color: var(--night); font-family: var(--font-display); font-size: 30px; margin-bottom: var(--s4);
}
.steps h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; margin-bottom: var(--s2); text-transform: uppercase; }
.steps p { color: var(--text-muted); }

/* Resource links */
.doc-list { list-style: none; display: grid; gap: var(--s3); }
.doc-link {
  display: flex; align-items: center; gap: var(--s4); padding: var(--s4); border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); text-decoration: none; transition: border-color var(--dur), transform var(--dur) var(--ease-out);
}
.doc-link:hover { border-color: var(--night); transform: translateX(3px); }
.doc-link .ico { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--sun-100); color: var(--night); }
.doc-link .ico svg { width: 22px; height: 22px; }
.doc-link b { display: block; }
.doc-link small { color: var(--text-muted); font-size: 14px; }
.doc-link .ext { margin-left: auto; width: 18px; height: 18px; color: var(--text-muted); flex: none; }

/* FAQ */
.faq { display: grid; gap: var(--s3); }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--s4) var(--s5); font-weight: 700; font-size: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s4); min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 32px; line-height: 1; color: var(--night); background: var(--sun); width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; flex: none; transition: transform var(--dur) var(--ease-out); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 var(--s5) var(--s5); color: var(--text-muted); }
.faq .answer p:last-child { margin: 0; }

/* Team */
.team-card { text-align: center; }
.team-photo { width: 180px; aspect-ratio: 1; margin: 0 auto var(--s4); border-radius: 50%; overflow: hidden; border: 5px solid var(--sun); box-shadow: 0 0 0 5px var(--bg), var(--shadow-md); background: var(--sun-100); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 30px; }
.team-role { color: var(--text-muted); font-weight: 600; margin: 4px 0 var(--s3); }
.team-card .contact-links { display: grid; gap: 4px; font-size: 15px; }
.team-card .contact-links a { color: var(--text); text-decoration: underline; text-decoration-color: var(--sun); text-decoration-thickness: 2px; text-underline-offset: 3px; overflow-wrap: anywhere; }

/* Gallery */
.gallery { columns: 2; column-gap: var(--s3); }
@media (min-width: 768px) { .gallery { columns: 3; } }
@media (min-width: 1100px) { .gallery { columns: 4; } }
.gallery figure { margin: 0 0 var(--s3); break-inside: avoid; border-radius: var(--radius); overflow: hidden; background: var(--night-700); }
.gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 400ms var(--ease-out); }
.gallery figure:hover img { transform: scale(1.04); }

/* Notice */
.notice {
  display: flex; gap: var(--s3); align-items: flex-start; padding: var(--s4) var(--s5); border-radius: var(--radius);
  background: var(--sun-50); border: 1px dashed var(--sun-600); color: #4A3800; font-size: 16px;
}
.notice svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }

/* Event detail */
.event-hero .container { display: grid; gap: var(--s6); align-items: center; }
@media (min-width: 960px) { .event-hero .container { grid-template-columns: 1.1fr .9fr; } }
.event-hero-art { display: grid; place-items: center; min-height: 220px; }
.event-hero-art { min-width: 0; }
.event-hero-art img { max-height: 300px; max-width: 100%; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 10px 40px rgba(0,0,0,.5)); }
.event-facts { display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5); margin-top: var(--s5); color: var(--text-on-dark); }
.event-facts span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.event-facts svg { width: 20px; height: 20px; color: var(--sun); }
.tabs { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 4px; margin-bottom: var(--s6); }
.tab {
  min-height: 44px; padding: 8px 22px; border-radius: 999px; border: 0; background: transparent; font-weight: 700; cursor: pointer; color: var(--text);
  display: inline-flex; align-items: center; gap: 8px;
}
.tab svg { width: 18px; height: 18px; }
.tab[aria-selected="true"] { background: var(--night); color: var(--sun); }
.tab-panel[hidden] { display: none; }
.detail-grid { display: grid; gap: var(--s5); }
@media (min-width: 960px) { .detail-grid { grid-template-columns: 1.6fr 1fr; align-items: start; } }
.info-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--s5) var(--s5); }
.info-block + .info-block { margin-top: var(--s4); }
.info-block h3 { display: flex; align-items: center; gap: var(--s2); font-family: var(--font-display); font-weight: 400; font-size: 28px; margin-bottom: var(--s3); }
.info-block h3 svg { width: 24px; height: 24px; color: var(--sun-600); }
.info-block p:last-child { margin-bottom: 0; }
.award-list { list-style: none; display: grid; gap: 10px; }
.award-list li { display: flex; gap: 10px; align-items: flex-start; }
.award-list svg { width: 20px; height: 20px; color: var(--sun-600); flex: none; margin-top: 3px; }
.sidebar-card { position: sticky; top: 100px; background: var(--night); color: var(--text-on-dark); border-radius: var(--radius-lg); overflow: hidden; }
.sidebar-card .venue-img { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--night-700); }
.sidebar-card .photo-credit { margin: 0; padding: 4px var(--s5) 0; font-size: 12.5px; color: var(--muted-on-dark); }
.sidebar-card .inner { padding: var(--s5); display: grid; gap: var(--s3); }
.sidebar-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 30px; color: #fff; }
.sidebar-card address { font-style: normal; color: var(--muted-on-dark); }

/* Contact */
.form { display: grid; gap: var(--s4); }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: 15.5px; }
.field label .req { color: #B42318; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; font: inherit; font-size: 16px; color: var(--text);
  background: #fff; border: 2px solid var(--border); border-radius: 12px; transition: border-color var(--dur);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--night); outline: none; box-shadow: 0 0 0 3px var(--sun); }
.field .hint { font-size: 14px; color: var(--text-muted); }
.field .error { font-size: 14px; color: #B42318; font-weight: 600; }
.field [aria-invalid="true"] { border-color: #B42318; }
.form-row { display: grid; gap: var(--s4); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-status { font-weight: 600; margin: 0; }
.form-status.is-ok { color: #067647; font-size: 18px; padding: var(--s4); background: #ECFDF3; border-radius: var(--radius); }
.form-status.is-error { color: #B42318; }

/* ---------- Reveal motion ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar, .site-header, .site-footer, .updates, .mobile-menu { display: none !important; }
  .dark, .hero, .page-hero { background: #fff !important; color: #000 !important; }
}
