/* =====================================================================
   AUBURNDALE SOCCER CLUB — WEBSITE STYLES
   Institutional homepage. Carryover: color tokens, typography, eyebrow,
   floating glass nav. New: editorial spacing, calmer hero, 4-program
   grid, full sections for coaches/gallery/news (admin-driven slots).
   ===================================================================== */

/* -------- TOKENS -------- */
:root {
  --asc-green: #1D5533;
  --asc-green-dark: #0F2E1B;
  --asc-green-light: #2A7A4A;
  --asc-blue: #1D67CD;
  --asc-gold: #FECA20;
  --asc-orange: #E8692B;
  --asc-black: #0A0A0A;
  --asc-ink: #141414;
  --asc-text: #1F1F1F;
  --asc-text-soft: #6B6B6B;
  --asc-muted: #707070;
  --asc-border: #E2E2E2;
  --asc-bg: #F4F4F4;
  --asc-bg-soft: #FAFAFA;
  --asc-white: #FFFFFF;

  --font-display: "Archivo Black", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Caveat", cursive;

  --container-max: 1440px;
  --content-max: 1280px;
  --gutter: 40px;
  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--asc-text);
  background: var(--asc-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

/* -------- TYPE -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.04;
  color: var(--asc-ink);
  text-transform: uppercase;
  margin: 0;
}
h1 { font-size: clamp(40px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4.4vw, 60px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); }
h4 { font-size: clamp(14px, 1.2vw, 18px); }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--asc-green);
}
.eyebrow.on-dark { color: var(--asc-gold); }
.eyebrow-center { text-align: center; display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;                      /* kill UA <button> line-height */
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  box-sizing: border-box;              /* same box model for <a> and <button> */
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
/* Reset <button> user-agent defaults so it matches <a class="btn"> exactly.
   `font: inherit` resets line-height to the parent's (usually 1.5), so
   we explicitly set line-height: 1 here to match what .btn declares —
   without this, <button class="btn"> renders ~6px taller than
   <a class="btn">. Same fix for line-height on .btn-sm. */
button.btn {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  vertical-align: middle;
}
button.btn-sm { font-size: 12px; }
.btn-lg { padding: 18px 30px; font-size: 15px; }
.btn-green { background: var(--asc-green); color: var(--asc-white); border-color: var(--asc-green); }
.btn-green:hover { background: var(--asc-green-light); border-color: var(--asc-green-light); }
.btn-gold { background: var(--asc-gold); color: var(--asc-black); border-color: var(--asc-gold); }
.btn-gold:hover { background: #FFD84A; }
.btn-outline { background: transparent; color: var(--asc-green); border-color: var(--asc-green); }
.btn-outline:hover { background: var(--asc-green); color: var(--asc-white); }
.btn-ghost { background: transparent; color: var(--asc-white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: var(--asc-white); color: var(--asc-ink); border-color: var(--asc-white); }
.btn-black { background: var(--asc-black); color: var(--asc-white); border-color: var(--asc-black); }
.btn-black:hover { background: var(--asc-ink); border-color: var(--asc-ink); color: var(--asc-white); }
.btn-ghost-light { background: transparent; color: var(--asc-white); border-color: rgba(255,255,255,0.6); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }

/* Chasing white-light border for hero primary CTA */
@property --chase-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.btn-chasing {
  position: relative;
  isolation: isolate;
}
.btn-chasing::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--chase-angle),
    rgba(255, 255, 255, 0) 0deg,
    rgba(255, 255, 255, 0) 190deg,
    rgba(255, 255, 255, 0.85) 260deg,
    rgba(255, 255, 255, 1) 320deg,
    rgba(255, 255, 255, 0.85) 355deg,
    rgba(255, 255, 255, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: chase-angle 2.4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.55));
  pointer-events: none;
}
@keyframes chase-angle {
  to { --chase-angle: 360deg; }
}

/* =====================================================================
   NEWS TICKER (admin-driven, slim, above nav)
   ===================================================================== */
.ticker {
  background: var(--asc-green-dark);
  color: var(--asc-white);
  font-size: 13px;
  letter-spacing: 0.04em;
  overflow: hidden;
  position: relative;
  z-index: 60;
  height: 38px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  align-items: center;
  animation: ticker-scroll 38s linear infinite;
  padding-left: 32px;
}
.ticker-item { color: rgba(255,255,255,0.95); }
.ticker-item strong { color: var(--asc-gold); margin-right: 8px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; }
.ticker-sep {
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(254, 202, 32, 0.35));
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================================
   FLOATING GLASS NAV — rectangular, square corners, megamenu support
   ===================================================================== */
.site-header {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--container-max);
  z-index: 50;
  background: var(--asc-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
  transition: top 0.25s var(--ease), max-width 0.25s var(--ease),
              border-radius 0.25s var(--ease), width 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  top: 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
  background: var(--asc-white);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.08);
}
/* When any megamenu is open, flatten the bottom corners so panel flows seamlessly */
.site-header:has(.has-mega.is-open),
.site-header:has(.header-nav.is-open) {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.site-header.is-scrolled:has(.has-mega.is-open),
.site-header.is-scrolled:has(.header-nav.is-open) {
  border-radius: 0;
}
/* Kill the header's downward drop-shadow while the mobile drawer is open —
   the drawer carries its own shadow and the header's would double-stack into
   a dirty seam at the join. */
.site-header:has(.header-nav.is-open) {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  gap: 24px;
  /* Cap inner content to site max-width so when the nav background goes
     full-viewport on scroll, logo + nav + buttons stay aligned with the
     rest of the site content (1440px max). */
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo-mark { width: 42px; height: 42px; }
.header-logo-word {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--asc-ink);
  text-transform: uppercase;
}
.header-nav { flex: 1; }
.nav-list {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  flex-wrap: nowrap;
}
/* Note: .nav-list > li is intentionally NOT position:relative —
   mega-panel positions itself relative to .site-header so it spans
   the full nav-bar width (1440 floating, 100vw scrolled). */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--asc-text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 0;
  transition: color 0.18s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.has-mega.is-open .nav-link { color: var(--asc-green); }
/* Underline grow on hover for nav links */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: var(--asc-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-link { position: relative; }
.nav-link:hover::after,
.has-mega.is-open .nav-link::after { transform: scaleX(1); }

.header-cta { font-size: 13px; padding: 12px 22px; }
.header-cta + .header-cta { margin-left: -10px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--asc-ink);
  padding: 4px 8px;
}

/* ---------- MEGAMENU PANELS — JS-controlled, no hover gaps ---------- */
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--asc-white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
  padding: 40px 56px 44px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 60;
}
.has-mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
/* Scrolled state: nav already full-width, kill the rounded bottom corners */
.site-header.is-scrolled .mega-panel {
  border-radius: 0;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.mega-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mega-grid--2 { grid-template-columns: repeat(2, 1fr); }
/* Auto-fit so 3 events fill the panel width cleanly when there are fewer
   than 4 upcoming events (no awkward empty column). */
.mega-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Programs mega-menu with Premier Travel as a full-height feature banner.
   3-col grid: Travel banner (col 1, spans 2 rows) + 4 regular cards (cols
   2-3 × 2 rows). Banner has photo bg, gold accents, and bigger typography. */
.mega-grid--travel-feature .mega-card--feature {
  grid-row: span 2;
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: block;
  background: var(--asc-green-dark);
}
.mega-card-feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}
.mega-card--feature:hover .mega-card-feature-bg { transform: scale(1.04); }
.mega-card-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(15,46,27,0.30) 0%, rgba(15,46,27,0.60) 50%, rgba(0,0,0,0.92) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.20), transparent 60%);
}
.mega-card-feature-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  color: var(--asc-white);
}
/* High-specificity overrides so the global .mega-card strong/p rules
   don't repaint the feature card text dark. */
.mega-card-feature-content .mega-card-feature-title {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  line-height: 1.05;
  color: var(--asc-white);
  letter-spacing: -0.005em;
  text-transform: none;
  margin: 0;
}
.mega-card-feature-content .mega-card-feature-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--asc-white);
  opacity: 0.85;
}
.mega-card-feature-content .mega-card-feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 18px;
  background: transparent;
  color: var(--asc-white);
  border: 2px solid var(--asc-white);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.mega-card--feature:hover .mega-card-feature-btn {
  background: var(--asc-white);
  color: var(--asc-black);
}

/* On mobile, the feature banner collapses to a STANDARD mega-card menu
   item — same look as First Kicks, Intramural, etc. No photo, no overlay,
   no button. Just tag + title like every other accordion item. */
@media (max-width: 920px) {
  /* Premier Travel feature card on mobile — render IDENTICALLY to the
     standard accordion items (First Kicks, Intramural, etc.). Same
     padding (14px 22px 14px 44px), same arrow ::before, same title
     style. No tag, no photo background, no button. */
  .mega-grid--travel-feature .mega-card--feature {
    grid-row: auto;
    min-height: 0;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 14px 22px 14px 44px !important;
    overflow: visible;
    display: block !important;
  }
  /* Strip everything except the title */
  .mega-card--feature .mega-card-feature-bg,
  .mega-card--feature .mega-card-feature-overlay,
  .mega-card--feature .mega-card-feature-btn,
  .mega-card-feature-content .mega-card-feature-tag {
    display: none !important;
  }
  .mega-card-feature-content {
    height: auto;
    color: var(--asc-ink);
    padding: 0 !important;
    gap: 0;
    justify-content: flex-start;
    display: block;
  }
  /* Match the .mega-card strong styling exactly. */
  .mega-card-feature-content .mega-card-feature-title {
    color: var(--asc-ink);
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin: 0;
  }
}

/* Events mega-menu — auto-populated event cards.
   Layout: compact gold date block on the left + info column on the right. */
.mega-card--event {
  display: grid !important;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 16px;
}
.mega-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 8px 4px 10px;
  line-height: 1;
  text-align: center;
  width: 64px;
  flex-shrink: 0;
}
.mega-event-month {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.mega-event-day {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.mega-event-weekday {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-top: 4px;
  opacity: 0.78;
}
.mega-event-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.mega-event-info strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  line-height: 1.2;
  color: var(--asc-ink);
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-event-info p {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--asc-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-feature--events {
  background: var(--asc-bg-soft);
  border-top: 1px solid var(--asc-border);
}
/* College Pipeline link inside the Club mega-grid — desktop has the
   black bar at the bottom, so the in-grid card is mobile-only. Hidden
   on desktop to avoid duplication. */
/* Specificity is chained (.mega-card.mega-card--mobile-only) so this
   beats the .mega-card { display: block; } rule that appears later in
   the file. Without this, the mobile-only card was showing on desktop. */
.mega-card.mega-card--mobile-only { display: none; }
@media (max-width: 920px) {
  .mega-card.mega-card--mobile-only { display: block; }
}

/* The Club menu's College Pipeline call-out — pure-black bar, gold CTA,
   soccer-ball-with-grad-cap icon that DELIBERATELY overlaps the bar's
   top + bottom edges on desktop so it floats out of the box for
   visual pop. (The @media (max-width: 920px) { .mega-feature { display:none } }
   rule hides the whole bar on mobile.)
   Bar is intentionally slim so the icon's overflow is dramatic. */
.mega-feature--club {
  background: var(--asc-black);
  position: relative;
  overflow: visible;
  padding: 14px 28px;
}
.mega-feature--club .mega-feature-icon {
  width: 170px;
  height: 170px;
  object-fit: contain;
  flex-shrink: 0;
  /* Negative top + bottom margins push roughly a third of the ball
     above the bar and a third below — pure floating-icon effect. */
  margin: -64px 16px -64px -12px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.55));
  position: relative;
  z-index: 5;
}
/* Events mega-panel is desktop-only — on mobile, the Events nav item
   tap navigates directly to the events page, no accordion submenu. */
@media (max-width: 920px) {
  .has-mega--events .mega-panel { display: none !important; }
}
.mega-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 8px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asc-green-dark);
}
.mega-divider::before,
.mega-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--asc-border);
}
.mega-divider span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mega-divider span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--asc-gold);
}
.mega-card {
  display: block;
  padding: 16px 18px;
  border-radius: var(--radius);
  transition: background 0.18s var(--ease);
  border: 1px solid transparent;
}
.mega-card:hover {
  background: var(--asc-bg-soft);
  border-color: var(--asc-border);
}
.mega-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-green);
  margin-bottom: 6px;
}
.mega-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--asc-ink);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mega-card p {
  font-size: 13px;
  color: var(--asc-muted);
  line-height: 1.45;
  margin: 0;
}

/* Image variant — used in Uniforms megamenu */
.mega-card--image {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
}
.mega-card-image {
  width: 120px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.mega-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s var(--ease);
}
.mega-card--image:hover .mega-card-image img {
  transform: scale(1.06);
}
.mega-card-text { min-width: 0; }
.mega-card-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--asc-ink);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mega-card-text p {
  font-size: 13px;
  color: var(--asc-muted);
  line-height: 1.45;
  margin: 0;
}
.mega-feature {
  margin: 24px auto 0;
  max-width: 1280px;
  padding: 22px 28px;
  background: var(--asc-green-dark);
  color: var(--asc-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.mega-feature strong {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mega-feature .btn { padding: 10px 18px; font-size: 12px; }

/* =====================================================================
   HERO — single full-bleed image, ~88vh, editorial layout
   ===================================================================== */
/* PERMANENT: hero text panel is TOP-ANCHORED at every viewport size.
   - Top of the panel stays a fixed distance below the navbar
     (driven by .hero-content padding-top, which always >= nav height).
   - Adding more inner content pushes the panel's BOTTOM down — the top
     never drifts up behind the navbar.
   - Min-height keeps the hero ~full-viewport when content is short
     (the hero image fills the empty space below the panel). When
     content exceeds the viewport, the hero section grows downward.
   This rule is universal — do NOT override align-items elsewhere. */
.home-hero {
  position: relative;
  min-height: max(98vh, 640px);
  width: 100%;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  margin-top: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slider .hero-slide.is-active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.10) 35%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(15,46,27,0.55) 0%, rgba(15,46,27,0.15) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 180px var(--gutter) 120px;
}
.hero-content-inner {
  max-width: 780px;
  padding: 28px 48px 32px;
  background: rgba(15, 28, 22, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--asc-gold);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(254, 202, 32, 0.5);
  border-radius: 999px;
}
.hero-headline {
  color: var(--asc-white);
  margin: 0 0 20px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero-headline br { display: block; }
.hero-sub {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  font-weight: 400;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-sub em {
  font-style: normal;
  color: inherit;
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-affiliations {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 0 0 36px;
  width: fit-content;
}
.hero-affiliations img {
  height: 72px;
  width: auto;
  flex-shrink: 0;
  filter:
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.65))
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.5))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  z-index: 3;
  padding-bottom: 40px;
}
.hero-scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.5);
}

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.trust {
  background: var(--asc-black);
  padding: 22px 0;
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  align-items: center;
  justify-items: center;
}
.trust-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}
.trust-list li:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--asc-gold);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
}
.trust-label {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--asc-white);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
}

/* =====================================================================
   SECTION HEAD (shared)
   ===================================================================== */
.section-head {
  text-align: center;
  margin: 0 0 64px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-title { margin-bottom: 18px; }
.section-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--asc-muted);
  line-height: 1.6;
  font-weight: 400;
}
.section-cta {
  text-align: center;
  margin-top: 56px;
}
.section-cta--dual {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* =====================================================================
   PROGRAMS — 4-card editorial grid
   ===================================================================== */
.programs {
  padding: 120px 0;
  background: var(--asc-bg-soft);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--asc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.program-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.program-card:hover .program-image img { transform: scale(1.05); }

.program-body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.program-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asc-green);
  margin-bottom: 14px;
}
.program-card h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  margin-bottom: 12px;
}
.program-card p {
  font-size: 15px;
  color: var(--asc-text);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 18px;
}
.program-link {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--asc-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s var(--ease);
}
.program-link:hover { gap: 14px; }
.program-link span { font-size: 16px; }

/* =====================================================================
   WHY AUBURNDALE — split image + copy
   ===================================================================== */
.why {
  padding: 130px 0;
  background: var(--asc-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-copy .eyebrow { margin-bottom: 16px; }
.why-copy .section-title { margin-bottom: 24px; text-align: left; }
.why-copy p {
  font-size: 17px;
  color: var(--asc-text);
  line-height: 1.7;
  margin-bottom: 18px;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 36px 0;
}
.why-stat {
  background: var(--asc-bg-soft);
  border-left: 4px solid var(--asc-green);
  padding: 20px 24px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.why-stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--asc-green);
  display: block;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.why-stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--asc-muted);
  font-weight: 600;
}

/* =====================================================================
   STATS BANNER — bold dark band with big numerals (used on coaches page etc)
   ===================================================================== */
.stats-banner {
  background: var(--asc-green-dark);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(254,202,32,0.10), transparent 50%);
  pointer-events: none;
}
.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stats-banner-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
  padding: 0 16px;
}
.stats-banner-item:last-child { border-right: none; }
.stats-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--asc-gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.stats-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-white);
  font-weight: 700;
}
@media (max-width: 720px) {
  .stats-banner-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding-bottom: 24px; }
  .stats-banner-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* =====================================================================
   ROLE CARDS — numbered visual replacement for boring bullet lists
   ===================================================================== */
.role-cards-section {
  padding: 110px 0;
  background: var(--asc-white);
}
.role-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.role-card {
  background: var(--asc-bg-soft);
  padding: 32px 32px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  border-left: 4px solid var(--asc-green);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--asc-gold);
}
.role-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  color: var(--asc-green);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  opacity: 0.95;
}
.role-card:hover .role-num { color: var(--asc-gold); }
.role-card h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.role-card p {
  font-size: 15px;
  color: var(--asc-text);
  line-height: 1.55;
  margin: 0;
}

/* =====================================================================
   COACHES — proper tiles with full-bleed photos
   ===================================================================== */
.coaches {
  padding: 120px 0;
  background: var(--asc-bg-soft);
}
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* match staff — 3-up */
  gap: 28px;
}

/* Travel teams grid — mirrors coaches/staff card pattern */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 46, 27, 0.12);
  border-color: rgba(29, 85, 51, 0.32);
}
.team-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--asc-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-empty img {
  width: 60%;
  height: auto;
  object-fit: contain;
  opacity: 0.55;
}
.team-meta {
  padding: 22px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.team-tags {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.team-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1;
}
.team-tag--age    { background: var(--asc-green-dark); color: var(--asc-white); }
.team-tag--gender { background: var(--asc-gold);       color: var(--asc-black); }
.team-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px;
  line-height: 1.15;
  margin: 4px 0 0;
  color: var(--asc-ink);
  letter-spacing: -0.005em;
}
.team-coach {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--asc-green);
}
.team-blurb {
  font-size: 14px;
  line-height: 1.5;
  color: var(--asc-text);
  margin: 4px 0 0;
}
@media (max-width: 980px) { .teams-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 600px) { .teams-grid { grid-template-columns: 1fr; gap: 18px; } }

.coach-card {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.coach-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--asc-green-dark) 0%, var(--asc-green) 50%, var(--asc-gold) 100%);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  z-index: 2;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 46, 27, 0.12);
  border-color: var(--asc-green);
}
.coach-card:hover::before { opacity: 1; }
.coach-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--asc-green) 0%, var(--asc-green-dark) 100%);
  overflow: hidden;
  position: relative;
  display: block;
  border: none;
  border-radius: 0;
  margin: 0;
}
.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s var(--ease);
}
.coach-card:hover .coach-photo img { transform: scale(1.04); }
.coach-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 28, 22, 0.55) 100%);
  pointer-events: none;
}
.coach-card-body,
.coach-meta {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.coach-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  color: var(--asc-ink);
  line-height: 1.15;
  text-transform: uppercase;
}
.coach-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--asc-green);
  margin-bottom: 14px;
  padding-bottom: 14px;
  position: relative;
  max-width: 100%;
}
.coach-role::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--asc-gold);
  border-radius: 1px;
}
.coach-bio {
  font-size: 13.5px;
  color: var(--asc-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 32ch;
  flex: 1;
}
.coach-age {
  display: inline-block;
  align-self: center;          /* explicit center inside the flex column */
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--asc-green-dark);
  background: var(--asc-bg-soft);
  border: 1px solid var(--asc-border);
  padding: 4px 14px;
  border-radius: 999px;
  text-align: center;
  margin-bottom: 12px;
}
.coach-license {
  font-size: 12px;
  font-weight: 700;
  color: var(--asc-green-dark);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 28ch;
  text-align: center;
}
.coach-photo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--asc-green-dark) 0%, var(--asc-green) 100%);
  width: 100%;
  height: 100%;
  padding: 22%;
}
.coach-photo-empty img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(254, 202, 32, 0.25));
}
.coach-photo-empty::after { display: none; }   /* kill the dark gradient overlay on placeholder */
.coach-card:hover .coach-photo-empty img { transform: none; }

/* =====================================================================
   STAFF / BOARD — admin-driven (page-data.js → #staff-content)
   3-column grid, centered text, polished cards.
   ===================================================================== */
.staff-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--asc-bg-soft);
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* force 3-up */
  gap: 28px;
  margin-top: 8px;
}
.staff-card {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.staff-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--asc-green-dark) 0%, var(--asc-green) 50%, var(--asc-gold) 100%);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 46, 27, 0.12);
  border-color: var(--asc-green);
}
.staff-card:hover::before { opacity: 1; }
.staff-photo {
  width: 100%;
  aspect-ratio: 4 / 5;          /* portrait — matches coach cards */
  background: var(--asc-bg-soft);
  overflow: hidden;
  position: relative;
}
.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.staff-card:hover .staff-photo img { transform: scale(1.04); }
.staff-photo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--asc-green-dark) 0%, var(--asc-green) 100%);
  padding: 22%;
}
.staff-photo-empty img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(254, 202, 32, 0.25));
}
.staff-card:hover .staff-photo-empty img { transform: none; }
.staff-meta {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;          /* center children */
  text-align: center;
  flex: 1;
}
.staff-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  color: var(--asc-ink);
  line-height: 1.15;
  text-transform: uppercase;
}
.staff-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--asc-green);
  margin-bottom: 14px;
  padding-bottom: 14px;
  position: relative;
  max-width: 100%;
}
.staff-role::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--asc-gold);
  border-radius: 1px;
}
.staff-bio {
  font-size: 13.5px;
  color: var(--asc-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 32ch;
}

@media (max-width: 920px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 540px) {
  .staff-grid { grid-template-columns: 1fr; gap: 18px; }
  .staff-bio { max-width: none; }
}

@media (max-width: 1024px) {
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .coaches-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   GALLERY — 6-photo grid (admin-driven)
   ===================================================================== */
.gallery {
  padding: 120px 0;
  background: var(--asc-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-row: span 2; }

/* Admin-driven gallery — TRUE CSS-column masonry.
   The renderer outputs <div class="gallery-grid"><figure class="gallery-tile">…</figure>…</div>.
   We override the grid layout from the original .gallery-grid rule when inside
   #gallery-content so photos keep their native aspect ratios and pack like Pinterest. */
#gallery-content .gallery-grid {
  display: block;
  column-count: 3;
  column-gap: 18px;
  grid-template-columns: none;
  grid-auto-rows: auto;
}
.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--asc-bg-soft);
  cursor: zoom-in;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.gallery-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px 14px;
  background: linear-gradient(to top, rgba(15, 46, 27, 0.88) 0%, rgba(15, 46, 27, 0) 100%);
  color: var(--asc-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.gallery-tile:hover figcaption { opacity: 1; }

@media (max-width: 1024px) {
  #gallery-content .gallery-grid { column-count: 2; column-gap: 14px; }
  .gallery-tile { margin-bottom: 14px; }
}
@media (max-width: 600px) {
  #gallery-content .gallery-grid { column-count: 1; }
}

/* Admin-driven posts grid (page-data.js) — fixed 3-up on desktop, 2 on tablet, 1 on phone */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 640px) {
  .posts-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Pagination (numbered, hash-linkable) */
.post-pagination {
  display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 48px 0 0;
  padding: 22px 0;
  border-top: 1px solid var(--asc-border);
}
.pgn-meta {
  font-size: 12.5px;
  color: var(--asc-muted);
  letter-spacing: 0.04em;
}
.pgn-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pgn-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 12px;
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--asc-ink);
  text-decoration: none;
  background: var(--asc-white);
  transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
a.pgn-btn:hover {
  background: var(--asc-bg-soft);
  border-color: var(--asc-green);
  color: var(--asc-green);
}
.pgn-btn.pgn-current {
  background: var(--asc-green);
  border-color: var(--asc-green);
  color: var(--asc-white);
  cursor: default;
}
.pgn-btn.pgn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.post-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--asc-bg-soft);
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.post-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--asc-muted);
  font-weight: 600;
}
.post-card-cat {
  background: var(--asc-bg-soft);
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--asc-green-dark);
}
.post-card-date::after {
  content: "·";
  margin-left: 8px;
  color: var(--asc-border);
}
.post-card-meta:has(.post-card-date:only-child) .post-card-date::after,
.post-card-meta:not(:has(.post-card-cat)) .post-card-date::after { content: ""; margin: 0; }
.post-card-title {
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 0;
  line-height: 1.2;
  color: var(--asc-ink);
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.01em;
}
.post-card-excerpt {
  font-size: 14px;
  color: var(--asc-muted);
  line-height: 1.55;
  margin: 0;
}

/* =====================================================================
   NEWS / POSTS — 3-card grid (admin-driven)
   ===================================================================== */
.news {
  padding: 120px 0;
  background: var(--asc-bg-soft);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: var(--asc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.post-image {
  height: 220px;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.post-card:hover .post-image img { transform: scale(1.04); }
.post-body {
  padding: 26px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-muted);
  font-weight: 700;
  margin-bottom: 12px;
}
.post-title {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.post-card p {
  font-size: 14.5px;
  color: var(--asc-text);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.post-link {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--asc-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.post-link:hover { gap: 12px; }

/* =====================================================================
   TESTIMONIALS — clean 3-up grid (no marquee)
   ===================================================================== */
.testimonials {
  padding: 110px 0;
  background: var(--asc-white);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.t-card-clean {
  background: var(--asc-bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-left: 4px solid var(--asc-green);
}
.t-card-clean .rating {
  color: var(--asc-gold);
  font-size: 18px;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 18px;
}
.t-quote {
  font-size: 16.5px;
  color: var(--asc-text);
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
}
.t-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.t-meta strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--asc-ink);
}
.t-meta span {
  font-size: 12px;
  color: var(--asc-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =====================================================================
   AFFILIATIONS
   ===================================================================== */
.affiliations {
  padding: 80px 0;
  background: var(--asc-white);
  border-top: 1px solid var(--asc-border);
  border-bottom: 1px solid var(--asc-border);
}
.affiliations .eyebrow { display: block; text-align: center; margin-bottom: 28px; }
.affiliations-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
.affiliations-row img {
  height: 120px;
  width: auto;
}

/* =====================================================================
   FINAL CTA — full-bleed photo, layered overlay, dramatic typography
   ===================================================================== */
.final-cta {
  padding: 140px 0 120px;
  background: var(--asc-green-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Background photo layer */
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/meet-bg.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.30;
  z-index: -2;
  filter: saturate(0.85) contrast(1.05);
}
/* Layered gradient overlay */
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(254, 202, 32, 0.22), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(29, 85, 51, 0.6), transparent 60%),
    linear-gradient(135deg, rgba(15, 28, 22, 0.75) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(15, 28, 22, 0.78) 100%);
  z-index: -1;
}
.final-cta .container { position: relative; z-index: 1; }

.final-cta-inner {
  text-align: center;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.final-cta-title {
  color: var(--asc-white);
  margin: 0 0 22px;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.final-cta-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.5vw, 21px);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}
.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats strip below CTAs */
.final-cta-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.final-cta-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.final-cta-stat-num {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--asc-gold);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.final-cta-stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

@media (max-width: 720px) {
  .final-cta { padding: 100px 0 90px; }
  .final-cta-inner::before {
    top: -52px;
    right: 50%;
    transform: translateX(50%) rotate(-8deg);
    width: 88px;
    height: 88px;
    font-size: 11px;
  }
  .final-cta-inner::after { display: none; }
  .final-cta-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--asc-black);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-brand img {
  height: 160px;
  width: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.22));
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 320px;
}
.footer-col h4 {
  color: var(--asc-white);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 800;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.18s var(--ease);
}
.footer-col a:hover { color: var(--asc-gold); }
.footer-contact li { color: rgba(255,255,255,0.75); margin-bottom: 14px; }
.footer-contact a { color: var(--asc-white); font-weight: 600; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.footer-social a:hover {
  background: var(--asc-gold);
  border-color: var(--asc-gold);
  color: var(--asc-black);
  transform: translateY(-2px);
}
.footer-social svg { display: block; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}
/* Three-column variant: YHD credit (left) — copyright (center) — legal (right) */
.footer-bottom--three {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.footer-bottom--three .footer-credit { justify-self: start; }
.footer-bottom--three .footer-copyright { justify-self: center; text-align: center; }
.footer-bottom--three .footer-legal { justify-self: end; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s var(--ease);
}
.footer-credit:hover { color: rgba(255, 255, 255, 0.92); }
.footer-credit-text {
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.footer-credit-logo {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s var(--ease);
}
.footer-credit:hover .footer-credit-logo { opacity: 1; }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { color: rgba(255, 255, 255, 0.55); }
.footer-legal a:hover { color: var(--asc-gold); }

/* =====================================================================
   PAGE HERO — used on all spoke pages (smaller than homepage hero)
   ===================================================================== */
.page-hero {
  position: relative;
  min-height: max(64vh, 480px);
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* First Kicks runs a video background — it should fill the viewport like
   the homepage so the footage isn't visibly cropped. Video is anchored to
   the bottom so the action (kids on the ball) stays in view. */
body.page-first-kicks-youth-soccer .page-hero {
  min-height: max(95vh, 640px);
}
body.page-first-kicks-youth-soccer .page-hero .hero-image video,
body.page-first-kicks-youth-soccer .page-hero .hero-image img {
  object-position: center bottom;
}
.page-hero .hero-image { position: absolute; inset: 0; z-index: 1; }
.page-hero .hero-image img,
.page-hero .hero-image video { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.10) 35%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(15,46,27,0.55) 0%, rgba(15,46,27,0.15) 60%, transparent 100%);
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 180px var(--gutter) 80px;
}
.page-hero .hero-content-inner {
  max-width: 780px;
  padding: 28px 48px 32px;
  background: rgba(15, 28, 22, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.page-hero .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--asc-gold);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(254, 202, 32, 0.5);
  border-radius: 999px;
}
.page-hero .hero-headline {
  color: var(--asc-white);
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.page-hero .hero-sub {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  max-width: 620px;
  margin-bottom: 26px;
}
.page-hero .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* =====================================================================
   CONTENT SECTION — used across spoke pages, with visual character
   ===================================================================== */
.content-section {
  padding: 110px 0;
  background: var(--asc-white);
  position: relative;
}
.content-section .container { position: relative; }

/* Eyebrow + accent rule + bold section title — centered to match homepage */
.content-section .section-head {
  text-align: center;
  margin: 0 auto 56px;
  position: relative;
}
.content-section .section-head::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--asc-green);
  margin: 0 auto 22px;
  border-radius: 2px;
}
.content-section .section-head .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.content-section .section-title {
  margin-bottom: 0;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 0.98;
}
/* Restore a breathing-room gap between the section title and the lede
   that follows it. The `margin-bottom: 0` rule above zeros the title and
   the global `p { margin: 0 0 1em }` zeros the lede's top — without this
   adjacent-sibling rule the two run flush against each other. */
.content-section .section-head .section-title + .section-lede {
  margin-top: 18px;
}
.content-section .section-body { font-size: 17px; line-height: 1.75; color: var(--asc-text); }
.content-section .section-body > p:first-of-type {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--asc-ink);
  font-weight: 500;
  margin-bottom: 1.4em;
}
.content-section .section-body p { margin-bottom: 1.2em; }
.content-section .section-body ul { margin: 0 0 1.4em 0; padding: 0; list-style: none; }
.content-section .section-body ul li {
  position: relative;
  padding: 0 0 0.7em 26px;
  margin-bottom: 0.4em;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.content-section .section-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  background: var(--asc-green);
}
.content-section .section-body ul li:last-child { border-bottom: none; }
.content-section .section-body h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 2em 0 0.7em;
  text-transform: uppercase;
  color: var(--asc-ink);
  letter-spacing: -0.005em;
}
.content-section .section-body a { color: var(--asc-green); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
/* Buttons inside section-body keep their button styling — no underline, branded text colors */
.content-section .section-body a.btn { text-decoration: none; }
.content-section .section-body a.btn-green { color: var(--asc-white); }
.content-section .section-body a.btn-gold { color: var(--asc-black); }
.content-section .section-body a.btn-black { color: var(--asc-white); }
.content-section .section-body a.btn-outline { color: var(--asc-green); }
.content-section .section-body a.btn-ghost,
.content-section .section-body a.btn-ghost-light { color: var(--asc-white); }

/* Alternating section variants — break up the white-on-white monotony */
.content-section:nth-of-type(even) {
  background: var(--asc-bg-soft);
}
.content-section:nth-of-type(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--asc-green) 0%, var(--asc-green-light) 50%, var(--asc-gold) 100%);
}

/* Every 4th section: dark green block — adds drama */
.content-section:nth-of-type(4n) {
  background: var(--asc-green-dark);
  color: var(--asc-white);
}
.content-section:nth-of-type(4n) .section-head::before { background: var(--asc-gold); }
.content-section:nth-of-type(4n) .eyebrow { color: var(--asc-gold); }
.content-section:nth-of-type(4n) .section-title { color: var(--asc-white); }
.content-section:nth-of-type(4n) .section-lede { color: rgba(255,255,255,0.85); }
.content-section:nth-of-type(4n) .section-body { color: rgba(255,255,255,0.92); }
.content-section:nth-of-type(4n) .section-body > p:first-of-type { color: var(--asc-white); }
.content-section:nth-of-type(4n) .section-body h3 { color: var(--asc-gold); }
.content-section:nth-of-type(4n) .section-body a { color: var(--asc-gold); }
.content-section:nth-of-type(4n) .section-body ul li { border-bottom-color: rgba(255,255,255,0.08); }
.content-section:nth-of-type(4n) .section-body ul li::before { background: var(--asc-gold); }
/* Hard-stop the gold-link rule from repainting button text inside dark sections */
.content-section:nth-of-type(4n) .section-body a.btn-green,
.content-section:nth-of-type(4n) .section-body a.btn-black { color: var(--asc-white); }
.content-section:nth-of-type(4n) .section-body a.btn-gold { color: var(--asc-black); }
.content-section:nth-of-type(4n) .section-body a.btn-outline { color: var(--asc-white); border-color: var(--asc-white); }
.content-section:nth-of-type(4n) .section-body a.btn-outline:hover { background: var(--asc-white); color: var(--asc-green-dark); }

.content-section .section-head, .content-section .section-body { position: relative; z-index: 1; }

/* Queens hub — neighborhood blocks */
.neighborhoods-list { display: grid; gap: 28px; }
.neighborhood-block {
  background: var(--asc-white);
  padding: 28px 32px;
  border-left: 4px solid var(--asc-green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}
.neighborhood-h2 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 6px;
}
.neighborhood-locality {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-green);
  font-weight: 700;
  margin-bottom: 12px;
}
.neighborhood-block p { margin: 0; font-size: 16px; line-height: 1.65; }

/* Info grid (tryouts, fields, contact) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.info-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .info-grid--3 { grid-template-columns: 1fr; } }
.info-grid > div {
  background: var(--asc-white);
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--asc-border);
  color: var(--asc-text);
}
.info-grid h3 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-green);
  margin-bottom: 10px;
}
.info-grid p { margin: 0 0 0.5em; font-size: 15px; line-height: 1.5; color: var(--asc-text); }
/* Hard-stop the dark-section text override so cards stay readable inside .nth(4n) */
.content-section:nth-of-type(4n) .info-grid > div,
.content-section:nth-of-type(4n) .info-grid > div p,
.content-section:nth-of-type(4n) .info-grid h3 { color: var(--asc-text); }
.content-section:nth-of-type(4n) .info-grid h3 { color: var(--asc-green); }
.content-section:nth-of-type(4n) .why-sponsor-card,
.content-section:nth-of-type(4n) .why-sponsor-card p,
.content-section:nth-of-type(4n) .why-sponsor-card strong { color: var(--asc-ink); }

/* Hero with aside — main hero pane (66%) + upcoming-event glass pane (33%).
   When the aside has no upcoming event of its data-event-category, the JS
   renderer removes the .hero-content--with-aside class so the main pane
   reclaims the full width. */
.hero-content--with-aside {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.hero-content--with-aside .hero-content-inner {
  max-width: none;
}
.hero-event {
  position: relative;
  background: rgba(10, 14, 12, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 4px solid var(--asc-gold);   /* gold accent — this is the action zone */
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  color: var(--asc-white);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  overflow: hidden;
}

.hero-event-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* 3 chips inline: white "Next Tryouts" | gold date | outlined time */
.hero-event-chips {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.hero-event-chip {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 10px 8px;
  line-height: 1;
  text-align: center;
  min-width: 0;
}
.hero-event-chip--category {
  background: var(--asc-white);
  color: var(--asc-black);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
/* Blink the text inside the category chip to catch attention */
.hero-event-chip--category .hero-event-chip-line1,
.hero-event-chip--category .hero-event-chip-line2 {
  animation: hero-event-blink 1.2s steps(1, end) infinite;
}
@keyframes hero-event-blink {
  0%, 60%   { opacity: 1; }
  61%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-event-chip--category .hero-event-chip-line1,
  .hero-event-chip--category .hero-event-chip-line2 {
    animation: none;
  }
}
.hero-event-chip--date {
  background: var(--asc-gold);
  color: var(--asc-black);
  box-shadow: 0 6px 18px rgba(254, 202, 32, 0.18);
}
.hero-event-chip--time {
  background: rgba(255, 255, 255, 0.10);
  color: var(--asc-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-event-chip-line1 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
}
.hero-event-chip-line2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 5px;
  white-space: nowrap;
}
.hero-event-month {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.hero-event-day {
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-top: 3px;
}
.hero-event-weekday {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-top: 5px;
  opacity: 0.78;
}
.hero-event-time-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.hero-event-time-ampm {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-top: 6px;
  color: var(--asc-gold);
}

/* Map preview — same width as the chips + buttons (inset), with black
   space around it. Rounded corners match the chip / button shapes. */
.hero-event-map {
  position: relative;
  width: 100%;
  height: 180px;
  background: var(--asc-bg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
}
.hero-event-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
/* Mask Google's bottom attribution strip while keeping top-left badge visible */
.hero-event-map::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22px;
  background: rgba(10, 14, 12, 0.92);
  pointer-events: none;
}

.hero-event-detail { display: flex; flex-direction: column; gap: 8px; }
.hero-event-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  line-height: 1.18;
  color: var(--asc-white);
  margin: 0;
  letter-spacing: -0.005em;
}
.hero-event-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}
.hero-event-loc svg { flex: 0 0 13px; opacity: 0.85; }

/* CTA stack — primary (gold) on top, secondary (outline) below */
.hero-event-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.hero-event-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-event-cta--primary {
  background: var(--asc-gold);
  color: var(--asc-black);
  border-color: var(--asc-gold);
}
.hero-event-cta--primary:hover {
  background: #FFD84A;
  border-color: #FFD84A;
  transform: translateY(-1px);
}
.hero-event-cta--secondary {
  background: transparent;
  color: var(--asc-white);
  border-color: rgba(255, 255, 255, 0.40);
}
.hero-event-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--asc-white);
}

@media (max-width: 980px) {
  /* Stack vertically — hero text on top, event card below */
  .hero-content--with-aside { grid-template-columns: 1fr; }
  .hero-event-body { padding: 18px 20px 20px; gap: 14px; }
  .hero-event-map { height: 150px; }
  .hero-event-chip { padding: 8px 6px; }
  .hero-event-day { font-size: 24px; }
  .hero-event-time-num { font-size: 17px; }
  .hero-event-chip-line2 { font-size: 12px; }
}

/* Travel-vs-Recreational compare block (Travel page) */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.compare-card {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.compare-card--featured {
  background: var(--asc-green-dark);
  color: var(--asc-white);
  border: 1px solid var(--asc-green-dark);
  box-shadow: 0 18px 40px -22px rgba(15,46,27,0.55);
  background-image: radial-gradient(circle at 100% 0%, rgba(254,202,32,0.18), transparent 55%);
}
.compare-card--featured::before {
  content: "Most Competitive";
  position: absolute;
  top: -14px; left: 32px;
  background: var(--asc-gold);
  color: var(--asc-black);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.compare-card--featured.compare-card--start::before { content: "Start Here"; }
.compare-card--featured.compare-card--popular::before { content: "Most Popular"; }
.compare-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--asc-gold);
  margin-bottom: 16px;
}
.compare-tag--alt { color: var(--asc-green); }
.compare-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  margin: 0 0 22px;
}
.compare-card--featured .compare-title { color: var(--asc-white); }
.compare-list { list-style: none; padding: 0; margin: 0 0 28px; }
.compare-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--asc-border);
  font-size: 14.5px;
}
.compare-list li span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--asc-text-soft);
  white-space: nowrap;
}
.compare-list li strong {
  text-align: right;
  font-weight: 700;
}
.compare-card--featured .compare-list li {
  border-bottom-color: rgba(255,255,255,0.12);
}
.compare-card--featured .compare-list li span { color: rgba(255,255,255,0.55); }
.compare-card--featured .compare-list li strong { color: var(--asc-white); }
.compare-card .btn { align-self: flex-start; margin-top: auto; }
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  letter-spacing: 0.10em;
  color: var(--asc-text-soft);
  padding: 0 6px;
}
.compare-vs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--asc-bg-soft);
  border: 1px solid var(--asc-border);
  color: var(--asc-ink);
  font-size: 16px;
}
@media (max-width: 880px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { padding: 6px 0; }
  .compare-card--featured::before { left: 20px; }
}

/* Force a light background + normal dark text on any section we don't want
   the nth-of-type(4n) dark treatment to hit. */
.content-section.content-section--light,
.content-section.content-section--light:nth-of-type(4n) {
  background: var(--asc-bg-soft);
}
.content-section.content-section--light:nth-of-type(4n)::before { display: none; }
.content-section.content-section--light .section-title,
.content-section.content-section--light .section-body,
.content-section.content-section--light .section-body > p:first-of-type { color: var(--asc-ink); }
.content-section.content-section--light .eyebrow { color: var(--asc-green); }
.content-section.content-section--light .section-body h3 { color: var(--asc-ink); }
/* Section lede sits inside .section-head (not .section-body), so it
   needs its own color rule. Scoped to outrank the 4n dark-section lede
   rule when the page lands on an even/4n cycle. */
.content-section.content-section--light .section-lede,
.content-section.content-section--light:nth-of-type(4n) .section-lede { color: var(--asc-text-soft); }

/* Compare-block overrides scoped under .content-section--light so the
   dark featured card stays white-on-green and buttons get their proper
   text colors back. */
.content-section--light .compare-card { color: var(--asc-ink); }
.content-section--light .compare-card .compare-title { color: var(--asc-ink); }
.content-section--light .compare-card .compare-tag { color: var(--asc-green); }
.content-section--light .compare-card .compare-list li strong { color: var(--asc-ink); }
.content-section--light .compare-card .compare-list li span { color: var(--asc-text-soft); }
/* Featured (dark green) card — explicitly white/gold text */
.content-section--light .compare-card--featured { color: var(--asc-white); }
.content-section--light .compare-card--featured .compare-title { color: var(--asc-white); }
.content-section--light .compare-card--featured .compare-tag { color: var(--asc-gold); }
.content-section--light .compare-card--featured .compare-list li strong { color: var(--asc-white); }
.content-section--light .compare-card--featured .compare-list li span { color: rgba(255,255,255,0.55); }
.content-section--light .compare-card--featured .compare-list li {
  border-bottom-color: rgba(255,255,255,0.12);
}
/* Buttons inside compare cards — force native colors. The :nth-of-type(4n)
   global overrides keep winning the cascade unless we !important here. */
.content-section--light .compare-card a.btn-gold { color: var(--asc-black) !important; }
.content-section--light .compare-card a.btn-outline {
  color: var(--asc-ink) !important;
  border-color: var(--asc-green) !important;
  background: var(--asc-white);
}
.content-section--light .compare-card a.btn-outline:hover {
  background: var(--asc-green) !important;
  color: var(--asc-white) !important;
  border-color: var(--asc-green) !important;
}
/* Featured card title — beat the 4n h3-gold rule. Scope the dark-text rule
   with :not() so it does not clobber the white featured-card title. */
.content-section--light .compare-card:not(.compare-card--featured) .compare-title { color: var(--asc-ink) !important; }
.content-section--light .compare-card--featured .compare-title { color: var(--asc-white) !important; }

/* =====================================================================
   URGENT ALERT BAR — sticky bottom, dismissible, pushes content up
   ===================================================================== */
.urgent-alert {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -8px 28px rgba(0,0,0,0.18);
  animation: urgent-alert-slide-in 0.32s var(--ease) both;
  font-family: 'Inter', sans-serif;
}
@keyframes urgent-alert-slide-in {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.urgent-alert--leaving {
  animation: urgent-alert-slide-out 0.22s var(--ease) both;
}
@keyframes urgent-alert-slide-out {
  from { transform: translateY(0); }
  to   { transform: translateY(105%); }
}
.urgent-alert--red    { background: #B83037; color: #fff; }
.urgent-alert--gold   { background: var(--asc-gold); color: var(--asc-black); }
.urgent-alert--green  { background: var(--asc-green); color: #fff; }
.urgent-alert-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px 64px;            /* extra right padding leaves room for the absolute X */
  display: flex;
  align-items: center;
  justify-content: center;       /* centers icon + message + link group horizontally */
  gap: 14px;
  position: relative;            /* anchor for the absolute close button */
  text-align: center;
}
.urgent-alert-icon {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.urgent-alert-icon svg { width: 100%; height: 100%; }
.urgent-alert-message {
  /* Sized to fill the centered inner row but capped so it never balloons
     past readable width. The marquee scrolls inside this window. */
  flex: 1 1 auto;
  max-width: 920px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.005em;
  /* Single-line marquee — text scrolls horizontally so urgent news draws
     the eye. components.js duplicates the message inside .urgent-alert-track
     so the loop is seamless. */
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
  text-align: center;
}
.urgent-alert-track {
  display: inline-block;
  padding-right: 60px;            /* gap between repeats */
  animation: urgent-alert-marquee 22s linear infinite;
  will-change: transform;
}
.urgent-alert-track > span { padding-right: 60px; }
@keyframes urgent-alert-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Pause the scroll on hover so users can read the message in full. */
.urgent-alert:hover .urgent-alert-track { animation-play-state: paused; }
.urgent-alert-link {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
  white-space: nowrap;
}
.urgent-alert-link:hover { text-decoration-thickness: 2px; }
.urgent-alert-close {
  /* Desktop: anchored to the right of the bar so the message + link stay
     centered in the inner row. Mobile media query repositions it to
     the lower-right corner. */
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s var(--ease);
}
.urgent-alert-close:hover { background: rgba(255,255,255,0.16); }
.urgent-alert--gold .urgent-alert-close:hover { background: rgba(0,0,0,0.10); }
@media (max-width: 720px) {
  /* On mobile the alert moves to the TOP of the screen so it doesn't
     overlap the upcoming-event widget anchored to the hero bottom.
     Animation flips to slide-down (instead of slide-up from bottom),
     and the shadow casts downward to match. */
  .urgent-alert {
    top: 0; bottom: auto;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: 0;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    animation: urgent-alert-slide-down 0.32s var(--ease) both;
  }
  @keyframes urgent-alert-slide-down {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
  }
  .urgent-alert--leaving { animation: urgent-alert-slide-up 0.22s var(--ease) both; }
  @keyframes urgent-alert-slide-up {
    from { transform: translateY(0); }
    to   { transform: translateY(-105%); }
  }
  /* Inner layout on mobile: icon + scrolling message on the top row,
     close button absolutely anchored to the lower-right. Extra
     bottom padding makes room for the floating X. */
  .urgent-alert-inner {
    padding: 10px 14px 40px;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
  }
  .urgent-alert-message { font-size: 13.5px; flex: 1 1 auto; }
  .urgent-alert-link { font-size: 12px; flex-basis: 100%; padding-left: 32px; }
  .urgent-alert-close {
    /* Override desktop center-right positioning — on mobile the X sits
       in the lower-right corner so the message marquee gets the full
       top row width. */
    top: auto;
    transform: none;
    right: 6px; bottom: 4px;
    width: 36px; height: 36px;
    font-size: 24px;
  }
}

/* Commitment list (Travel page — legacy, replaced by .commit-grid) */
.commit-list { list-style: none; padding: 0; margin: 0; }
.commit-list li { padding: 14px 0; border-bottom: 1px solid var(--asc-border); font-size: 16px; }

/* Commitment numbered-card grid (Travel page redesign).
   Selectors are chained with .content-section to outrank
   .content-section:nth-of-type(even) which would otherwise repaint the
   bg to soft grey and leave the white text invisible. */
.content-section.commit-section { background: var(--asc-green-dark); }
.content-section.commit-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--asc-gold) 0%, var(--asc-green-light) 50%, var(--asc-green) 100%);
}
.content-section.commit-section .eyebrow { color: var(--asc-gold); }
.content-section.commit-section .section-title { color: var(--asc-white); }
.content-section.commit-section .section-lede { color: rgba(255,255,255,0.85); }
.content-section.commit-section .section-head::before { background: var(--asc-gold); }
.commit-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: none;
}
.commit-block {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.commit-block:hover {
  transform: translateY(-3px);
  border-color: rgba(254,202,32,0.40);
  background: rgba(255,255,255,0.06);
}
.commit-num {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--asc-gold);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  opacity: 0.95;
}
.commit-section .commit-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  color: var(--asc-white) !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.005em;
  text-transform: none !important;
}
.commit-section .commit-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78) !important;
  margin: 0 !important;
}
@media (max-width: 980px) { .commit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .commit-grid { grid-template-columns: 1fr; gap: 14px; } .commit-num { font-size: 48px; } }
.commit-list li:last-child { border-bottom: none; }

/* =====================================================================
   FUN SECTION — playful "what they actually do" moments strip.
   Used on First Kicks (toddler / preschool) to break up the serious
   institutional tone with bright, joyful copy. Confetti dots scatter
   in the background. Big emoji + short punchy line + one-line zinger.
   ===================================================================== */
.fun-section {
  position: relative;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 18% 22%, rgba(254,202,32,0.18) 0%, rgba(254,202,32,0) 38%),
    radial-gradient(circle at 82% 78%, rgba(232,105,43,0.14) 0%, rgba(232,105,43,0) 42%),
    radial-gradient(circle at 50% 50%, rgba(29,103,205,0.08) 0%, rgba(29,103,205,0) 55%),
    var(--asc-white);
  overflow: hidden;
}
.fun-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--asc-gold) 0%,
    var(--asc-orange) 33%,
    var(--asc-green) 66%,
    var(--asc-blue) 100%);
}
.fun-section .section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.fun-section .eyebrow { color: var(--asc-orange); }
.fun-section .section-title { color: var(--asc-ink); font-size: clamp(36px, 5vw, 56px); }
.fun-section .section-lede { color: var(--asc-text-soft); font-size: 17px; }

.fun-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.fun-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0.45;
}
.fun-dot--green  { background: var(--asc-green-light); top: 12%; left: 6%;  width: 22px; height: 22px; }
.fun-dot--gold   { background: var(--asc-gold);        top: 28%; right: 8%; width: 16px; height: 16px; }
.fun-dot--orange { background: var(--asc-orange);      bottom: 22%; left: 12%; width: 18px; height: 18px; }
.fun-dot--blue   { background: var(--asc-blue);        bottom: 14%; right: 14%; width: 12px; height: 12px; opacity: 0.55; }
.fun-dot:nth-child(5) { background: var(--asc-green); top: 62%; left: 4%; width: 10px; height: 10px; }
.fun-dot:nth-child(6) { background: var(--asc-gold);  top: 8%;  right: 32%; width: 8px;  height: 8px; }

.fun-grid {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fun-card {
  background: var(--asc-white);
  border: 2px solid var(--asc-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fun-card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  border-color: var(--asc-gold);
  box-shadow: var(--shadow-md);
}
.fun-card:nth-child(2):hover { transform: translateY(-6px) rotate(0.7deg); border-color: var(--asc-orange); }
.fun-card:nth-child(3):hover { transform: translateY(-6px) rotate(-0.5deg); border-color: var(--asc-green); }
.fun-card:nth-child(4):hover { transform: translateY(-6px) rotate(0.6deg); border-color: var(--asc-blue); }
.fun-card:nth-child(5):hover { transform: translateY(-6px) rotate(-0.7deg); border-color: var(--asc-orange); }
.fun-card:nth-child(6):hover { transform: translateY(-6px) rotate(0.5deg); border-color: var(--asc-gold); }
.fun-emoji {
  display: inline-block;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}
.fun-card strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  line-height: 1.15;
  color: var(--asc-ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.fun-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--asc-text-soft);
  margin: 0;
}
@media (max-width: 980px) {
  .fun-section { padding: 80px 0 90px; }
  .fun-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .fun-card { padding: 26px 22px 22px; }
  .fun-emoji { font-size: 36px; margin-bottom: 12px; }
  .fun-card strong { font-size: 17px; }
}
@media (max-width: 600px) {
  .fun-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   SUMMER CLINICS — week cards (4-up grid), pricing note, map block
   ===================================================================== */
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.week-card {
  position: relative;
  background: var(--asc-white);
  border: 2px solid var(--asc-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.week-card:hover {
  transform: translateY(-4px);
  border-color: var(--asc-green);
  box-shadow: var(--shadow-md);
}
.week-card .week-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asc-green);
  background: rgba(29,85,51,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.week-card .week-dates {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  color: var(--asc-ink);
  letter-spacing: -0.005em;
  margin: 4px 0 0;
}
.week-card .week-meta {
  font-size: 13px;
  color: var(--asc-text-soft);
  margin: 0 0 6px;
}
.week-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 980px) {
  .weeks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .weeks-grid { grid-template-columns: 1fr; }
}

/* Pricing/discount disclaimer line under the commit grid.
   Scoped under .content-section.commit-section so the white text wins
   inside the dark-green commitment block. !important matches the
   pattern used by .commit-title / .commit-body siblings. */
.content-section.commit-section .commit-note {
  margin-top: 28px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72) !important;
  text-align: center;
  font-style: italic;
}

/* Embedded map wrapper (Fort Totten location, Auburndale field, etc.) */
.map-block {
  margin-top: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-block iframe {
  display: block;
  border: 0;
  width: 100%;
}

/* FAQ items */
.faq {
  padding: 110px 0;
  background: var(--asc-bg-soft);
}
.faq .section-body {
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .faq { padding: 64px 0; }
}
.faq-item {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--asc-green);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-body { padding: 0 22px 18px; line-height: 1.6; color: var(--asc-text); }

/* Age pathway list (Queens hub) */
.age-pathway { list-style: none; padding: 0; margin: 0; }
.age-pathway li {
  padding: 16px 22px;
  background: var(--asc-bg-soft);
  border-left: 4px solid var(--asc-green);
  margin-bottom: 10px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px;
}

/* Why-Auburndale stats reused on About — 2x2 on desktop (4 stats fit cleanly) */
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 540px) {
  .why-stats { grid-template-columns: 1fr; }
}
.why-stat {
  background: var(--asc-bg-soft);
  border-left: 4px solid var(--asc-green);
  padding: 20px 24px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.why-stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--asc-green);
  display: block;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.why-stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--asc-muted);
  font-weight: 600;
}

/* Field cards — 3-up grid with embedded maps */
.field-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.field-card {
  background: var(--asc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.field-card-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--asc-bg);
  position: relative;
  overflow: hidden;
}
.field-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.05);
}
.field-card-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.field-card-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asc-green);
  margin-bottom: 10px;
}
.field-card h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.field-card-address {
  font-size: 13.5px;
  color: var(--asc-muted);
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--asc-border);
}
.field-card-pending {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--asc-gold);
  background: rgba(254, 202, 32, 0.12);
  padding: 1px 8px;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 4px;
  vertical-align: 1px;
}
.field-card-info {
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.field-card-info > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13.5px;
  line-height: 1.45;
}
.field-card-info dt {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--asc-green);
  font-weight: 700;
  padding-top: 2px;
}
.field-card-info dd {
  margin: 0;
  color: var(--asc-text);
  font-weight: 500;
}
.field-card-desc {
  font-size: 14.5px;
  color: var(--asc-text);
  line-height: 1.6;
  margin: 0 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--asc-border);
}
.content-section .section-body .field-card-cta,
.field-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 18px;
  background: var(--asc-green);
  color: var(--asc-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s var(--ease), gap 0.2s var(--ease);
  align-self: flex-start;
}
.content-section .section-body .field-card-cta:hover,
.field-card-cta:hover {
  background: var(--asc-green-dark);
  color: var(--asc-white);
  gap: 14px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .field-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .field-cards { grid-template-columns: 1fr; }
}

/* Backwards compat for old field-block class if used elsewhere */
.field-block {
  padding: 24px 28px;
  background: var(--asc-bg-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
}
.field-block h3 { margin-bottom: 8px; }
.field-block p { margin: 0; }

/* =====================================================================
   FINANCIAL AID — eligibility checklist + priority block
   ===================================================================== */
.finaid-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}
.finaid-checklist li {
  position: relative;
  padding: 14px 18px 14px 52px;
  background: var(--asc-bg-soft);
  border-left: 3px solid var(--asc-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  line-height: 1.55;
}
.finaid-checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 22px;
  height: 22px;
  background: var(--asc-green);
  color: var(--asc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.finaid-priority {
  background: rgba(254, 202, 32, 0.12);
  border-left: 4px solid var(--asc-gold);
  padding: 22px 26px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.finaid-priority-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-ink);
  font-weight: 700;
  margin-bottom: 14px;
}
.finaid-priority ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}
.finaid-priority ul li {
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.55;
}
.finaid-priority ul li em {
  color: var(--asc-muted);
  font-style: italic;
}

/* =====================================================================
   FINANCIAL AID FORM
   ===================================================================== */
/* Form section — force light theme even if 4n alternation would darken it */
.content-section.finaid-form-section,
.content-section.finaid-form-section .section-body,
.content-section.finaid-form-section .section-body > p:first-of-type {
  background: var(--asc-bg-soft) !important;
  color: var(--asc-text) !important;
}
/* Financial aid "How to Apply" section — the on-page intake form was
   removed; this is the Contact-CTA replacement layout. */
.finaid-apply-body { text-align: center; }
.finaid-apply-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 24px;
}
.finaid-apply-note {
  max-width: 620px;
  margin: 0 auto;
  color: var(--asc-text-soft);
  font-size: 15px;
  line-height: 1.6;
}
.content-section.finaid-form-section .section-title,
.content-section.finaid-form-section .section-body h3,
.content-section.finaid-form-section .section-body h4,
.content-section.finaid-form-section .section-body strong,
.content-section.finaid-form-section .finaid-form-note,
.content-section.finaid-form-section .finaid-help,
.content-section.finaid-form-section .finaid-consent-text,
.content-section.finaid-form-section .finaid-checklist li,
.content-section.finaid-form-section .finaid-priority,
.content-section.finaid-form-section .finaid-priority li,
.content-section.finaid-form-section .finaid-field > span,
.content-section.finaid-form-section .finaid-radio-row label,
.content-section.finaid-form-section .finaid-checkbox-row label,
.content-section.finaid-form-section .finaid-upload-title,
.content-section.finaid-form-section .finaid-upload-meta,
.content-section.finaid-form-section .finaid-consent-check,
.content-section.finaid-form-section .finaid-signature-label,
.content-section.finaid-form-section .finaid-submit-note {
  color: var(--asc-text) !important;
}
.content-section.finaid-form-section .section-title { color: var(--asc-ink) !important; }
.content-section.finaid-form-section .eyebrow { color: var(--asc-green) !important; }
.content-section.finaid-form-section .section-body a:not(.btn) { color: var(--asc-green) !important; }
/* Outline button (e.g., Call 718-…) inside the finaid section. Without this
   override the global :nth-of-type(4n) rule paints btn-outline text white,
   which is invisible against the section's light cream background. */
.content-section.finaid-form-section .section-body a.btn-outline {
  color: var(--asc-green) !important;
  border-color: var(--asc-green) !important;
}
.content-section.finaid-form-section .section-body a.btn-outline:hover {
  background: var(--asc-green) !important;
  color: var(--asc-white) !important;
  border-color: var(--asc-green) !important;
}
.content-section.finaid-form-section::before { display: none !important; }
.finaid-form-note {
  font-size: 14px;
  color: var(--asc-muted);
  margin-top: 12px;
}
.finaid-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.finaid-fieldset {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px 32px;
  margin: 0;
}
.finaid-fieldset legend {
  padding: 6px 14px;
  background: var(--asc-green);
  color: var(--asc-white);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-left: -2px;
}
.finaid-fieldset legend .finaid-optional {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.04em;
  margin-left: 8px;
  opacity: 0.85;
}
.finaid-help {
  font-size: 14px;
  color: var(--asc-muted);
  margin: 16px 0 14px;
}
.finaid-subhead {
  margin: 24px 0 14px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-green);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--asc-border);
}

.finaid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.finaid-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: span 2;
}
.finaid-field--small { grid-column: span 1; }
.finaid-field--wide { grid-column: span 3; }
.finaid-field--full { grid-column: span 4; }
.finaid-field > span {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--asc-ink);
  font-weight: 700;
}
.finaid-field input[type="text"],
.finaid-field input[type="email"],
.finaid-field input[type="tel"],
.finaid-field input[type="date"],
.finaid-field input[type="number"],
.finaid-field select,
.finaid-field textarea {
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: var(--font-body);
  border: 1.5px solid var(--asc-border);
  border-radius: var(--radius);
  background: var(--asc-white);
  color: var(--asc-ink);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  width: 100%;
}
.finaid-field input:focus,
.finaid-field select:focus,
.finaid-field textarea:focus {
  outline: none;
  border-color: var(--asc-green);
  box-shadow: 0 0 0 3px rgba(29, 85, 51, 0.12);
}

.finaid-radio-row,
.finaid-checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 4px 0;
}
.finaid-radio-row label,
.finaid-checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--asc-bg-soft);
  border: 1.5px solid var(--asc-border);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s var(--ease);
}
.finaid-radio-row label:hover,
.finaid-checkbox-row label:hover {
  border-color: var(--asc-green);
}
.finaid-radio-row label:has(input:checked),
.finaid-checkbox-row label:has(input:checked) {
  background: var(--asc-green);
  color: var(--asc-white);
  border-color: var(--asc-green);
}
.finaid-radio-row input,
.finaid-checkbox-row input {
  accent-color: var(--asc-green);
  width: 16px;
  height: 16px;
}

/* Document uploads */
.finaid-uploads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.finaid-upload {
  position: relative;
  background: var(--asc-bg-soft);
  border: 2px dashed var(--asc-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: block;
}
.finaid-upload:hover {
  border-color: var(--asc-green);
  background: var(--asc-white);
  transform: translateY(-2px);
}
.finaid-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.finaid-upload-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.finaid-upload-body svg {
  color: var(--asc-green);
  margin-bottom: 4px;
}
.finaid-upload-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--asc-ink);
}
.finaid-upload-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--asc-muted);
  font-size: 12.5px;
  margin-left: 4px;
}
.finaid-upload-meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--asc-muted);
  font-weight: 600;
}
.finaid-upload:has(input:focus) {
  border-color: var(--asc-green);
  box-shadow: 0 0 0 3px rgba(29, 85, 51, 0.12);
}

/* Consent + Signature */
.finaid-consent-text {
  background: rgba(29, 85, 51, 0.04);
  border-left: 3px solid var(--asc-green);
  padding: 18px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 16px 0 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.finaid-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--asc-bg-soft);
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--asc-border);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.finaid-consent-check input { margin-top: 3px; accent-color: var(--asc-green); width: 18px; height: 18px; }
.finaid-consent-check:has(input:checked) {
  background: rgba(29, 85, 51, 0.08);
  border-color: var(--asc-green);
}

.finaid-signature { margin-top: 24px; }
.finaid-signature-label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-green);
  font-weight: 700;
  margin-bottom: 10px;
}
.finaid-signature-pad {
  background: var(--asc-white);
  border: 2px dashed var(--asc-border);
  border-radius: var(--radius);
  height: 180px;
  position: relative;
  background-image:
    linear-gradient(to right, transparent 49.5%, rgba(0,0,0,0.04) 49.5%, rgba(0,0,0,0.04) 50.5%, transparent 50.5%),
    linear-gradient(to bottom, transparent calc(100% - 38px), rgba(15, 28, 22, 0.18) calc(100% - 38px), rgba(15, 28, 22, 0.18) calc(100% - 36px), transparent calc(100% - 36px));
}
.finaid-signature-pad canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  border-radius: var(--radius);
  touch-action: none;
}
.finaid-signature-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.finaid-clear {
  background: transparent;
  border: 1.5px solid var(--asc-border);
  color: var(--asc-muted);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.18s var(--ease);
}
.finaid-clear:hover {
  border-color: var(--asc-green);
  color: var(--asc-green);
}

.finaid-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}
.finaid-submit-note {
  font-size: 12.5px;
  color: var(--asc-muted);
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .finaid-grid { grid-template-columns: repeat(2, 1fr); }
  .finaid-field--small,
  .finaid-field--wide,
  .finaid-field--full,
  .finaid-field { grid-column: span 2; }
  .finaid-uploads { grid-template-columns: 1fr; }
  .finaid-fieldset { padding: 22px 20px 24px; }
}

/* =====================================================================
   FINANCIAL AID FORM CARD
   ===================================================================== */
.finaid-form-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--asc-white);
  border: 2px solid var(--asc-green);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
  box-shadow: 0 4px 16px rgba(29, 85, 51, 0.08);
}
.finaid-form-icon {
  width: 60px;
  height: 60px;
  background: rgba(29, 85, 51, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--asc-green);
  flex-shrink: 0;
}
.finaid-form-body { min-width: 0; }
.finaid-form-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--asc-green);
  margin-bottom: 4px;
}
.finaid-form-card h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.finaid-form-card p {
  font-size: 14px;
  color: var(--asc-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 720px) {
  .finaid-form-card { grid-template-columns: 1fr; text-align: center; }
  .finaid-form-icon { margin: 0 auto; }
  .finaid-form-card .btn { width: 100%; }
}

/* =====================================================================
   CALENDAR — events page
   ===================================================================== */
#calendar { width: 100%; }

.cal-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--asc-border);
}

.cal-view-toggle {
  display: inline-flex;
  background: var(--asc-bg-soft);
  border-radius: var(--radius);
  padding: 4px;
  gap: 0;
}
.cal-view {
  padding: 10px 20px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--asc-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.18s var(--ease);
}
.cal-view.is-active {
  background: var(--asc-black);
  color: var(--asc-white);
}

.cal-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.cal-filter {
  padding: 8px 14px;
  border: 1.5px solid var(--asc-border);
  background: var(--asc-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--asc-text);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.18s var(--ease);
}
.cal-filter:hover {
  border-color: var(--asc-green);
  color: var(--asc-green);
}
.cal-filter.is-active {
  background: var(--chip-color, var(--asc-green));
  color: var(--chip-text, var(--asc-white));
  border-color: var(--chip-color, var(--asc-green));
}
.cal-filter[data-filter="all"].is-active {
  background: var(--asc-black);
  color: var(--asc-white);
  border-color: var(--asc-black);
}

/* ---------- LIST VIEW ---------- */
.cal-list { display: grid; gap: 16px; }
.cal-event {
  display: grid;
  grid-template-columns: 110px 220px 1fr;
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  /* overflow:visible so the "Add to Calendar" dropdown isn't clipped.
     Inner cells get their own border-radius to preserve rounded corners. */
  overflow: visible;
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
/* Lift the card when its dropdown is open so it paints above sibling cards */
.cal-event:has(.cal-add-wrap.is-open) { z-index: 30; }
.cal-event-date {
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
}
.cal-event-map {
  background: var(--asc-bg);
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-right: 1px solid var(--asc-border);
}
.cal-event-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.cal-event-map--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}
.cal-event-map--empty span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-muted);
  font-weight: 700;
}
.cal-event:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--asc-green);
}
.cal-event-date {
  background: var(--asc-black);
  color: var(--asc-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 8px;
  text-align: center;
  gap: 2px;
}
.cal-event-month {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asc-gold);
  font-weight: 700;
}
.cal-event-day {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.cal-event-weekday {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.cal-event-body {
  padding: 22px 26px 24px;
  display: flex;
  flex-direction: column;
}
.cal-event-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 10px;
}
.cal-event-title {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.cal-event-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--asc-text);
}
.cal-event-meta strong {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--asc-green);
  font-weight: 700;
  margin-right: 4px;
}
.cal-event-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--asc-muted);
  margin: 0 0 16px;
}
.cal-event-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
/* On mobile, stack the two action buttons vertically and make BOTH
   full-width — same width, same height, no awkward content-driven
   size mismatch between the Reserve / Register CTA and the
   "+ Add to Calendar" dropdown trigger. */
@media (max-width: 600px) {
  .cal-event-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cal-event-actions > .btn,
  .cal-event-actions > .cal-add-wrap,
  .cal-event-actions > .cal-add-wrap > .cal-add-btn {
    width: 100%;
  }
}
.btn-sm {
  padding: 9px 18px;
  font-size: 12px;
}
.cal-add-wrap {
  position: relative;
  display: inline-block;
}
/* .cal-add-btn is just a hook for the dropdown JS now — visual styling
   inherits from .btn .btn-outline .btn-sm so it matches the Reserve button. */
.cal-add-btn { }
.cal-add-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  padding: 6px;
  display: none;
  z-index: 20;
}
.cal-add-wrap.is-open .cal-add-menu { display: block; }
.cal-add-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--asc-text);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
  font-weight: 600;
}
.cal-add-menu a:hover {
  background: var(--asc-green);
  color: var(--asc-white);
}

.cal-empty {
  padding: 56px;
  background: var(--asc-bg-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--asc-muted);
}

/* ---------- MONTH VIEW ---------- */
.cal-month { display: flex; flex-direction: column; gap: 24px; }
.cal-month-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 0;
}
.cal-nav {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--asc-border);
  background: var(--asc-white);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.cal-nav:hover {
  background: var(--asc-green);
  color: var(--asc-white);
  border-color: var(--asc-green);
}
.cal-month-label {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  min-width: 280px;
  text-align: center;
}
.cal-month-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.cal-weekday {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--asc-green);
  font-weight: 700;
  padding: 8px 0;
}
.cal-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-cell {
  background: var(--asc-bg-soft);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: all 0.18s var(--ease);
  overflow: hidden;
}
.cal-cell--empty { background: transparent; border: none; }
.cal-cell--has {
  background: var(--asc-white);
  cursor: pointer;
}
.cal-cell--has:hover,
.cal-cell--has:focus-visible {
  border-color: var(--asc-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  outline: none;
}
.cal-cell--today {
  border: 2px solid var(--asc-green);
  background: rgba(29, 85, 51, 0.06);
}
.cal-cell-num {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--asc-ink);
  flex: 0 0 auto;
}
.cal-cell--today .cal-cell-num { color: var(--asc-green); }
.cal-cell-chips {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 0;
}
.cal-cell-chip {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--asc-ink);
  background: rgba(29, 85, 51, 0.06);
  border-left: 3px solid var(--chip, var(--asc-green));
  padding: 3px 6px;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.005em;
}
.cal-cell-more {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--asc-muted);
  letter-spacing: 0.04em;
  padding-left: 2px;
}

/* List-view pager — "Load more" button + count */
.cal-list-pager {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.cal-list-more {
  min-width: 220px;
  justify-content: center;
}
.cal-list-count {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--asc-muted);
}

/* Flash highlight on the events list when a month-view cell is clicked */
.cal-event--flash {
  animation: cal-event-flash 2.4s var(--ease);
  border-color: var(--asc-green) !important;
}
@keyframes cal-event-flash {
  0%   { box-shadow: 0 0 0 0 rgba(29, 85, 51, 0.55); }
  20%  { box-shadow: 0 0 0 6px rgba(29, 85, 51, 0.45); }
  100% { box-shadow: 0 0 0 0 rgba(29, 85, 51, 0); }
}

.cal-month-list {
  border-top: 1px solid var(--asc-border);
  padding-top: 24px;
  margin-top: 16px;
}
.cal-month-list-title {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-green);
  margin-bottom: 16px;
}
.cal-empty-text { color: var(--asc-muted); font-style: italic; }

@media (max-width: 1024px) {
  .cal-event { grid-template-columns: 110px 1fr; }
  .cal-event-map { display: none; }
}
@media (max-width: 720px) {
  .cal-toolbar { flex-direction: column; align-items: flex-start; }

  /* List cards: date strip on top, body fills full width below */
  .cal-event { grid-template-columns: 1fr; }
  .cal-event-date {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 16px;
  }
  .cal-event-date .cal-event-month,
  .cal-event-date .cal-event-day,
  .cal-event-date .cal-event-weekday {
    display: inline-block;
    margin: 0;
  }
  .cal-event-month { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
  .cal-event-day   { font-size: 22px; line-height: 1; }
  .cal-event-weekday { font-size: 12px; color: rgba(255,255,255,0.78); letter-spacing: 0.12em; text-transform: uppercase; }
  .cal-event-body  { padding: 16px 18px 18px; }

  /* Month cells: tighter, but show 1 chip + count on phones */
  .cal-month-grid { gap: 2px; }
  .cal-cell { padding: 5px; gap: 4px; }
  .cal-cell-num { font-size: 13px; }
  .cal-cell-chip { font-size: 9.5px; padding: 2px 4px; border-left-width: 2px; }
  .cal-cell-more { font-size: 9.5px; }
  /* Hide second chip below this width — keep one chip + the +N indicator */
  .cal-cell-chip:nth-of-type(n+2) { display: none; }
}

/* =====================================================================
   SPONSORSHIP PAGE
   ===================================================================== */
.why-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 16px;
}
.why-sponsor-grid--3 { grid-template-columns: repeat(3, 1fr); }
.why-sponsor-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 26px; }
.why-sponsor-card {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.why-sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 46, 27, 0.08);
  border-color: var(--asc-green);
}
.why-sponsor-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(254, 202, 32, 0.18);
  color: var(--asc-green-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.why-sponsor-icon svg { width: 26px; height: 26px; }
.why-sponsor-card strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: var(--asc-ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.why-sponsor-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--asc-muted);
  line-height: 1.55;
}

.sponsorship-section { background: var(--asc-bg-soft); }
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.sponsor-card {
  background: var(--asc-white);
  border: 1px solid var(--asc-green);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 46, 27, 0.10);
}
.sponsor-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--asc-bg-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.sponsor-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.sponsor-logo-fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--asc-green); color: var(--asc-white);
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
}
.sponsor-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 26px 24px;
  text-align: center;
}
.sponsor-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  color: var(--asc-black) !important;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sponsor-blurb {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--asc-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}
.sponsor-btn {
  margin-top: auto;
  width: 100%;
}

.sponsors-empty {
  background: var(--asc-white);
  border: 2px dashed var(--asc-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 48px;
}
.sponsors-empty strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: var(--asc-ink);
  margin-bottom: 8px;
}
.sponsors-empty p {
  margin: 0 auto;
  max-width: 520px;
  font-size: 14px;
  color: var(--asc-muted);
  line-height: 1.6;
}

.sponsor-cta-block {
  position: relative;
  background: linear-gradient(135deg, #f8f3e1 0%, #fdfaef 50%, #f1e6c2 100%);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(15, 46, 27, 0.10), transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(254, 202, 32, 0.28), transparent 50%),
    linear-gradient(135deg, #f8f3e1 0%, #fdfaef 50%, #f1e6c2 100%);
  color: var(--asc-ink);
  border: 1px solid rgba(15, 46, 27, 0.08);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(15, 46, 27, 0.06);
  overflow: hidden;
}
.sponsor-cta-block--spaced { margin-top: 48px; }
.sponsor-cta-block .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--asc-green);
}
.sponsor-cta-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 14px;
  line-height: 1.05;
  color: var(--asc-black);
}
.sponsor-cta-body {
  margin: 0 auto 24px;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--asc-text-soft);
}

/* =====================================================================
   DONATION PAGE
   ===================================================================== */
.donation-trust {
  background: var(--asc-green-dark);
  color: var(--asc-white);
  padding: 28px 0;
}
.donation-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.donation-trust-item strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--asc-gold);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.donation-trust-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
}

.donation-section,
.content-section.donation-section,
.content-section.donation-section:nth-of-type(4n),
.content-section.donation-section:nth-of-type(even) {
  position: relative;
  background-color: var(--asc-bg-soft);
  background-image:
    linear-gradient(rgba(250, 250, 250, 0.88), rgba(250, 250, 250, 0.92)),
    url("/assets/ASC_32.webp");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--asc-ink);
}
.donation-impact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.donation-impact-tile {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-top: 4px solid var(--asc-gold);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.donation-impact-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 46, 27, 0.08);
}
.donation-impact-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--asc-green-dark);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.donation-impact-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--asc-ink);
}

.donation-funds {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.donation-funds-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: var(--asc-green-dark);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.donation-funds ul {
  margin: 0;
  padding-left: 22px;
  line-height: 1.8;
  color: var(--asc-ink);
}
.donation-funds li { margin-bottom: 4px; }

.donation-cta-block {
  background: var(--asc-green-dark);
  color: var(--asc-white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  background-image: radial-gradient(circle at 20% 80%, rgba(254,202,32,0.18), transparent 50%);
}
.donation-cta-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 14px;
  color: var(--asc-white);
  line-height: 1.05;
}
.donation-cta-body {
  margin: 0 auto 24px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1024px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .why-sponsor-grid,
  .why-sponsor-grid--3,
  .why-sponsor-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .sponsors-grid { grid-template-columns: 1fr; }
  .donation-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .donation-impact { grid-template-columns: repeat(2, 1fr); }
  .sponsor-cta-block, .donation-cta-block { padding: 32px 22px; }
}

/* =====================================================================
   UNIFORMS PAGE — featured intro + ordering-info bands
   (see pages/uniforms.html)
   ===================================================================== */
.uniforms-intro {
  padding: 80px 0 56px;
  background: var(--asc-white);
}
.uniforms-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.uniforms-intro-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--asc-ink);
  margin: 0 0 22px;
}
.uniforms-intro-lede {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--asc-ink);
  margin: 0 0 18px;
  max-width: 540px;
}
.uniforms-intro-lede a {
  color: var(--asc-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.uniforms-intro-lede a:hover { color: var(--asc-green-dark); }
.uniforms-intro-body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--asc-muted);
  margin: 0 0 26px;
  max-width: 540px;
}
.uniforms-intro-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 18px 46px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 0;
  background: var(--asc-green-dark);
  color: var(--asc-white);
  border-color: var(--asc-green-dark);
}
.uniforms-intro-cta:hover {
  background: var(--asc-green);
  border-color: var(--asc-green);
  transform: translateY(-2px);
}
.uniforms-intro-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uniforms-intro-image img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(29, 85, 51, 0.25));
}

/* PROMO BLOCK — discount code, must be VERY visible */
.uniforms-promo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 24px;
  margin: 28px 0;
  max-width: 540px;
  background: linear-gradient(135deg, #FFF8DC 0%, #FFEFA8 100%);
  border: 2px solid var(--asc-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(254, 202, 32, 0.22);
}
.uniforms-promo::before {
  content: "";
  position: absolute; top: -1px; right: 18px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--asc-gold);
  transform: translateY(-100%);
}
.uniforms-promo-eyebrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asc-green-dark);
  background: var(--asc-gold);
  padding: 4px 10px;
  border-radius: 4px;
}
.uniforms-promo-prompt {
  margin: 6px 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--asc-ink);
}
.uniforms-promo-code {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--asc-green-dark);
  color: var(--asc-white);
  padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid var(--asc-green-dark);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease), border-color 0.18s var(--ease);
}
.uniforms-promo-code:hover {
  background: var(--asc-green);
  border-color: var(--asc-green);
  transform: translateY(-1px);
}
.uniforms-promo-code-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 0.10em;
  color: var(--asc-gold);
}
.uniforms-promo-code-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 14px;
  margin-left: 4px;
  border-left: 1px solid rgba(255,255,255,0.20);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.uniforms-promo-code.copied {
  background: var(--asc-success, #1d7a3a);
  border-color: var(--asc-success, #1d7a3a);
}
.uniforms-promo-code.copied .uniforms-promo-code-action-label::after {
  content: "ied";
}
.uniforms-promo-feedback {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--asc-green-dark);
  min-height: 18px;
  margin-top: 2px;
}

/* INFO BAND — jacket photo + numbering / first-kicks notes */
.uniforms-info {
  padding: 56px 0 80px;
  background: var(--asc-bg-soft);
}
.uniforms-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.uniforms-info-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.uniforms-info-image img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.18));
}
.uniforms-info-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--asc-ink);
}
.uniforms-info-text p { margin: 0 0 14px; }
.uniforms-info-callout {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14.5px;
  color: var(--asc-green-dark);
  letter-spacing: 0.04em;
  margin-right: 4px;
}

@media (max-width: 920px) {
  .uniforms-intro { padding: 56px 0 36px; }
  .uniforms-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .uniforms-intro-image { order: -1; }
  .uniforms-intro-image img { max-height: 380px; }
  .uniforms-info-grid { grid-template-columns: 1fr; gap: 28px; }
  .uniforms-info-image img { max-height: 340px; }
  .uniforms-promo { width: 100%; }
  .uniforms-promo-code-value { font-size: 18px; }
}

/* =====================================================================
   PRODUCT CARDS — uniforms + fanwear pages, links to WeGotSoccer
   ===================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--asc-green);
}
.product-card-image {
  background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
  position: relative;
}
.product-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.10));
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-body {
  padding: 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  align-items: center;
}
.product-card-name {
  font-size: 13.5px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--asc-ink);
  line-height: 1.3;
  margin: 0;
  min-height: 2.6em;
}
.product-card-cta {
  margin-top: auto;
  padding: 11px 20px;
  background: var(--asc-black);
  color: var(--asc-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s var(--ease), gap 0.2s var(--ease), transform 0.2s var(--ease);
  width: 100%;
}
.product-card:hover .product-card-cta {
  background: var(--asc-green);
  gap: 12px;
}

.products-empty {
  padding: 48px;
  background: var(--asc-bg-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--asc-muted);
  font-style: italic;
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card-name { font-size: 13px; min-height: 2.2em; }
  .product-card-body { padding: 14px 14px 16px; }
}

/* =====================================================================
   AFFILIATION CARDS — 2×2 grid (governing bodies + leagues)
   ===================================================================== */
.affiliation-cards-section {
  padding: 110px 0;
  background: var(--asc-white);
}
.affiliation-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.affiliation-card {
  background: var(--asc-bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
  border-left: 4px solid var(--asc-green);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.affiliation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--asc-gold);
}
.affiliation-card-logo {
  background: var(--asc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-right: 1px solid var(--asc-border);
}
.affiliation-card-logo img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.affiliation-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
}
.affiliation-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asc-green);
  margin-bottom: 10px;
}
.affiliation-card h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.affiliation-card p {
  font-size: 14.5px;
  color: var(--asc-text);
  line-height: 1.6;
  margin: 0 0 16px;
}
.affiliation-why {
  background: rgba(29, 85, 51, 0.06);
  border-left: 3px solid var(--asc-green);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 20px;
}
.affiliation-why-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-green);
  font-weight: 700;
  margin-bottom: 6px;
}
.affiliation-why p {
  margin: 0 !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  color: var(--asc-ink) !important;
  font-weight: 500;
}
.affiliation-card-body { flex: 1; }
.affiliation-card-cta { margin-top: auto; }
.affiliation-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--asc-green);
  text-decoration: none;
  align-self: flex-start;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.affiliation-card-cta:hover {
  gap: 14px;
  color: var(--asc-green-dark);
}

@media (max-width: 1024px) {
  .affiliation-cards { grid-template-columns: 1fr; }
  .affiliation-card { grid-template-columns: 160px 1fr; }
}
@media (max-width: 540px) {
  .affiliation-card { grid-template-columns: 1fr; }
  .affiliation-card-logo { border-right: none; border-bottom: 1px solid var(--asc-border); padding: 24px; }
  .affiliation-card-logo img { max-height: 80px; }
}

/* =====================================================================
   BRAND PARTNER — separated Puma section, full-width feature card
   ===================================================================== */
.brand-partner-section {
  padding: 0 0 110px;
  background: var(--asc-white);
}
/* When a brand-partner-section sits directly under .programs (the TOPSoccer
   block on the homepage), give it matching top padding so the section is
   visually balanced top + bottom. Sections that follow .why already inherit
   spacing from .why's bottom padding, so they keep padding-top: 0. */
.programs + .brand-partner-section {
  padding-top: 110px;
}
.brand-partner-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: var(--asc-black);
  color: var(--asc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.partner-banner-head {
  margin-top: 64px;
  margin-bottom: 16px;
  text-align: center;
}
.partner-banner-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-banner-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.partner-banner {
  display: block;
  width: 100%;
  height: auto;
}
.brand-partner-logo {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,0.10);
  position: relative;
  overflow: hidden;
}
.brand-partner-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(254, 202, 32, 0.08), transparent 60%);
  pointer-events: none;
}
.brand-partner-image {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.55)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 1;
}
/* College-pipeline CTA on the homepage — same card chrome as Puma's
   box but a much larger image inside the logo column. The card itself
   stays the exact same size; we just shrink the column's padding and
   bump the image's max-height so it fills the available space. */
/* Card height is anchored by the body column on the right — DO NOT
   add a min-height here or the whole card grows. Just zero the
   padding and let the image stretch to fill the natural column. */
.brand-partner-card--college .brand-partner-logo { padding: 0; }
.brand-partner-card--college .brand-partner-image {
  max-height: none;
  width: 100%;
  height: 100%;
  animation: puma-float 3.4s ease-in-out infinite;
  will-change: transform;
}
@keyframes puma-float {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-5deg) translateY(-10px); }
}
.brand-partner-wordmark {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.06em;
  color: var(--asc-white);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.brand-partner-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
}
.brand-partner-body .affiliation-tag {
  color: var(--asc-gold);
  margin-bottom: 12px;
}
.brand-partner-body h3 {
  color: var(--asc-white);
  font-size: clamp(22px, 2.2vw, 30px);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.brand-partner-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.brand-partner-meta {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-style: italic;
  margin-bottom: 20px !important;
}
.brand-partner-ctas {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}
.brand-partner-ctas .affiliation-card-cta {
  color: var(--asc-gold);
}
.brand-partner-ctas .affiliation-card-cta:hover { color: #FFD84A; }
.affiliation-card-cta--ghost { color: rgba(255, 255, 255, 0.7) !important; }
.affiliation-card-cta--ghost:hover { color: var(--asc-white) !important; }

@media (max-width: 900px) {
  .brand-partner-card { grid-template-columns: 1fr; }
  .brand-partner-logo { padding: 48px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .brand-partner-body { padding: 32px 28px; }
  .brand-partner-ctas { flex-direction: column; gap: 12px; }
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.contact-grid > div {
  padding: 22px 24px;
  background: var(--asc-bg-soft);
  border-radius: var(--radius);
}
.contact-grid h3 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asc-green);
  margin-bottom: 8px;
}

/* Wraps the GHL contact form iframe with a thin Auburndale-green
   border. Inline iframe styles are GHL's required embed format —
   border lives on the wrapper instead. */
.contact-form-frame {
  border: 2px solid var(--asc-green);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--asc-white);
  min-height: 600px;
}
.contact-form-frame iframe {
  display: block;
  min-height: 600px;
}

/* Event + date lists */
.event-list, .date-list { list-style: none; padding: 0; margin: 0; }
.event-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--asc-border);
  font-size: 16px;
}
.event-list li:last-child { border-bottom: none; }
.date-list li {
  display: inline-block;
  margin: 0 12px 12px 0;
  padding: 10px 18px;
  background: var(--asc-green);
  color: var(--asc-white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Programs grid reused on Queens hub */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* News grid + post cards reused on news page */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Gallery grid reused on gallery page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: 240px;
  gap: 16px;
}

/* Mobile tightening */
@media (max-width: 720px) {
  .page-hero { height: auto; min-height: 70vh; }
  .page-hero .hero-content { padding: 140px 20px 60px; }
  .page-hero .hero-headline { font-size: clamp(26px, 7vw, 38px); }
  .content-section { padding: 60px 0; }
  .neighborhood-block { padding: 22px 20px; }
}

/* =====================================================================
   POPUP — admin-driven, square image + destination URL
   ===================================================================== */
.popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), visibility 0s linear 0.3s;
}
.popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s var(--ease), visibility 0s linear 0s;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.popup-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--asc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.94) translateY(8px);
  transition: transform 0.28s var(--ease);
}
.popup.is-open .popup-panel {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--asc-ink);
  border: none;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.20);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.popup-close:hover {
  background: var(--asc-white);
  transform: scale(1.08);
}
.popup-link { display: block; line-height: 0; }
.popup-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
/* Image-only mode — no body section, panel is just the graphic */
.popup--image-only .popup-panel {
  max-width: 560px;
  background: transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.popup--image-only .popup-image {
  border-radius: var(--radius-lg);
}
/* CTA button below the popup image — same destination as the image link */
.popup-cta {
  display: block;
  margin-top: 14px;
  padding: 16px 24px;
  background: var(--asc-gold);
  color: var(--asc-black);
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(254, 202, 32, 0.35);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.popup-cta:hover {
  background: #ffd744;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(254, 202, 32, 0.45);
}
.popup-body {
  padding: 24px 28px 28px;
  text-align: center;
}
.popup-title {
  font-size: clamp(18px, 2vw, 22px);
  text-transform: none;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.popup-sub {
  font-size: 14.5px;
  color: var(--asc-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}
.popup-body .btn { width: 100%; }

@media (max-width: 540px) {
  .popup-panel { max-width: 100%; }
  .popup-body { padding: 20px 22px 24px; }
}

/* =====================================================================
   RESPONSIVE — TABLET
   ===================================================================== */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { aspect-ratio: 16 / 10; }
  .t-grid { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .trust-list li { border-right: none; border-bottom: 1px solid var(--asc-border); padding-bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =====================================================================
   RESPONSIVE — MOBILE
   ===================================================================== */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .ticker { font-size: 12px; }
  .header-inner { padding: 10px 18px; }
  .header-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .home-hero { min-height: 84vh; }
  .hero-content { padding: 140px 20px 90px; }
  .hero-headline { font-size: clamp(30px, 7.5vw, 44px); }
  .hero-scroll { display: none; }   /* touch devices already know how to scroll */

  /* On mobile, anchor hero TEXT to the top (fixed gap below navbar)
     instead of vertically-centering. Hero grows downward as content
     needs more room — header stays fixed, text doesn't drift up. */
  .home-hero,
  .page-hero { align-items: flex-start; }

  .mega-panel { display: none; }

  .programs { padding: 80px 0; }
  .programs-grid { grid-template-columns: 1fr; }

  .programs + .brand-partner-section { padding-top: 80px; }

  .why { padding: 80px 0; }
  .why-stats { grid-template-columns: 1fr; }

  .coaches { padding: 80px 0; }
  .coaches-grid { grid-template-columns: 1fr; }

  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item--tall { grid-row: span 1; }

  .news { padding: 80px 0; }

  .testimonials { padding: 80px 0; }

  .final-cta { padding: 80px 0; }
  .final-cta-buttons { flex-direction: column; }
  .final-cta-buttons .btn { width: 100%; }

  .footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .trust-list { grid-template-columns: 1fr; }
  .trust-list li { border-bottom: 1px solid var(--asc-border); padding-bottom: 16px; }
  .trust-list li:last-child { border-bottom: none; }
}

/* =====================================================================
   LEGAL DOCS — privacy, terms, refund-policy
   ===================================================================== */
/* Defensive override — never let nth-of-type alternation flip a legal page dark */
.content-section.legal-doc { background: var(--asc-bg-soft) !important; color: var(--asc-ink) !important; }
.content-section.legal-doc::before { display: none !important; }
.content-section.legal-doc .section-body,
.content-section.legal-doc .section-body p,
.content-section.legal-doc .section-body li { color: var(--asc-ink) !important; }
.content-section.legal-doc .section-body a:not(.btn) { color: var(--asc-green) !important; }
.legal-doc {
  background: var(--asc-bg-soft);
}
.legal-doc .section-head { text-align: center; margin-bottom: 48px; }
.legal-doc .section-head .section-meta {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--asc-muted);
}
.legal-body {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
  color: var(--asc-ink);
}
.legal-body p,
.legal-body ul,
.legal-body ol { margin: 0 0 18px; }
.legal-body ul,
.legal-body ol { padding-left: 22px; }
.legal-body ul li,
.legal-body ol li { margin-bottom: 8px; }
.legal-body strong { color: var(--asc-green-dark); }
.legal-body a {
  color: var(--asc-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--asc-green-dark); }

.legal-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--asc-green-dark);
  margin: 56px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--asc-green);
  scroll-margin-top: 120px;
}
.legal-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--asc-ink);
  margin: 28px 0 12px;
  letter-spacing: 0.02em;
}

.legal-toc {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-left: 4px solid var(--asc-green);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 0 0 48px;
}
.legal-toc strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--asc-green-dark);
  margin-bottom: 14px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 32px;
  font-size: 14px;
  line-height: 1.7;
}
.legal-toc ol li { margin-bottom: 4px; break-inside: avoid; }
.legal-toc a {
  color: var(--asc-ink);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease);
}
.legal-toc a:hover {
  color: var(--asc-green);
  border-bottom-color: var(--asc-green);
}

.legal-contact {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  list-style: none;
  margin: 0 0 18px;
}
.legal-contact li {
  padding: 8px 0;
  border-bottom: 1px solid var(--asc-border);
  margin-bottom: 0;
}
.legal-contact li:last-child { border-bottom: none; }
.legal-contact strong {
  display: inline-block;
  min-width: 180px;
  color: var(--asc-green-dark);
}

.legal-fineprint {
  margin-top: 56px;
  padding: 18px 22px;
  border-left: 3px solid var(--asc-muted);
  background: rgba(0, 0, 0, 0.03);
  font-size: 13px;
  line-height: 1.6;
  color: var(--asc-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-body { font-size: 15px; }
  .legal-body h3 { font-size: 20px; margin-top: 40px; }
  .legal-toc ol { columns: 1; }
  .legal-contact strong { min-width: 0; display: block; margin-bottom: 4px; }
}

/* =====================================================================
   LATEST POSTS STRIP — sits above the prefooter on every public page.
   6 rounded-square image cards with title beneath. Click → post page.
   ===================================================================== */
.latest-posts-strip {
  padding: 80px 0;
  background: var(--asc-bg-soft);
  border-top: 1px solid var(--asc-border);
}
.latest-posts-head {
  text-align: center;
  margin-bottom: 36px;
}
.latest-posts-head .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}
.latest-posts-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--asc-ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 22px;
}
.latest-post-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease);
}
.latest-post-card:hover { transform: translateY(-4px); }
.latest-post-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--asc-border);
  position: relative;
}
.latest-post-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.latest-post-card:hover .latest-post-image img { transform: scale(1.06); }
.latest-post-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 28, 22, 0.30) 100%);
  pointer-events: none;
}
.latest-post-title {
  margin: 16px 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--asc-ink);
  text-align: center;
  /* clamp to 3 lines so cards stay aligned at the bottom */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-post-card:hover .latest-post-title { color: var(--asc-green); }

@media (max-width: 1180px) {
  .latest-posts-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 720px) {
  .latest-posts-strip { padding: 56px 0; }
  .latest-posts-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }   /* 2x3 on phone (all 6 visible) */
  .latest-post-title { font-size: 14px; margin-top: 12px; }
}

/* =====================================================================
   POST DETAIL (/posts/<slug>.html) — article column + sticky sidebar
   ===================================================================== */
.page-post .post-article {
  background: var(--asc-white);
}
.post-hero {
  position: relative;
  min-height: 56vh;
  padding: 140px 0 64px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-hero-image {
  position: absolute; inset: 0;
  z-index: 0;
}
.post-hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 28, 22, 0.30) 0%, rgba(15, 28, 22, 0.88) 100%);
  z-index: 1;
}
.post-hero-content {
  position: relative; z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--asc-white);
}
.post-back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--asc-gold);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.18s var(--ease);
}
.post-back:hover { opacity: 1; }
.post-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--asc-white);
  margin: 0 0 22px;
  max-width: 22ch;
}
.post-byline {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.post-byline-author {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.post-byline-logo {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--asc-white);
  padding: 3px;
  object-fit: contain;
}
.post-byline-sep { opacity: 0.4; }

.post-body-wrap {
  padding: 72px 0 96px;
  background: var(--asc-bg-soft);
}
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: flex-start;
}
.post-body {
  background: var(--asc-white);
  padding: 56px 64px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  line-height: 1.75;
  color: var(--asc-ink);
}
.post-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--asc-green-dark);
  margin: 40px 0 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.post-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px;
  color: var(--asc-ink);
  margin: 28px 0 10px;
}
.post-body p { margin: 0 0 18px; }
.post-body p.post-callout {
  background: var(--asc-bg-soft);
  border-left: 4px solid var(--asc-green);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px;
  line-height: 1.5;
  margin: 22px 0;
}
.post-body ul, .post-body ol { margin: 0 0 22px; padding-left: 24px; }
.post-body ul li, .post-body ol li { margin-bottom: 8px; }
.post-body a {
  color: var(--asc-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.post-body a:hover { color: var(--asc-green-dark); }
.post-body strong { color: var(--asc-green-dark); }
.post-body em { font-style: italic; color: var(--asc-ink); }
.post-body > *:first-child { margin-top: 0; }
.post-body > *:last-child { margin-bottom: 0; }

/* Sidebar — sticky on desktop, hidden on mobile */
.post-sidebar {
  position: sticky;
  top: 110px;
  display: flex; flex-direction: column;
  gap: 18px;
  align-self: flex-start;
}
.sb-block {
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-sm);
}
.sb-block-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--asc-green-dark);
  margin: 0 0 14px;
}

/* CTA block — image at top (any aspect, fills sidebar width) + optional
   text/button below. Image-only mode: just the image wrapped in a link. */
.sb-cta {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--asc-border);
  background: var(--asc-white);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
}
.sb-cta-image-link,
.sb-cta-image-wrap {
  display: block;
  width: 100%;
  line-height: 0;            /* kills any inline-image bottom-gap */
}
.sb-cta-image {
  display: block;
  width: 100%;
  height: auto;              /* preserves natural aspect ratio */
  object-fit: cover;
}
.sb-cta-image-link { transition: opacity 0.2s var(--ease); }
.sb-cta-image-link:hover { opacity: 0.92; }
.sb-cta-inner {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--asc-ink);
}
.sb-cta-eyebrow {
  display: inline-block;
  background: var(--asc-gold);
  color: var(--asc-black);
  font-family: 'Archivo Black', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.sb-cta-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: 0.005em;
  color: var(--asc-ink);
}
.sb-cta-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--asc-text);
  margin: 0 0 18px;
}
.sb-cta .btn { width: 100%; text-align: center; justify-content: center; }
/* Image-only mode — no padding around the image, no border */
.sb-cta--image-only { border: none; }

/* Mini-bio block */
.sb-bio { text-align: center; }
.sb-bio-logo {
  width: 70px; height: 70px;
  margin: 0 auto 12px;
  display: block;
}
.sb-bio-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--asc-muted);
  margin: 0 0 14px;
}
.sb-bio-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--asc-green);
  text-decoration: none;
}
.sb-bio-link:hover { color: var(--asc-green-dark); }

/* Recent posts list */
.sb-recent-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.sb-recent-list a {
  display: flex; gap: 12px;
  text-decoration: none;
  color: inherit;
  align-items: center;
  border-radius: var(--radius-sm);
  padding: 6px;
  margin: -6px;
  transition: background 0.15s var(--ease);
}
.sb-recent-list a:hover { background: var(--asc-bg-soft); }
.sb-recent-thumb {
  width: 60px; height: 60px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--asc-bg-soft);
}
.sb-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sb-recent-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sb-recent-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--asc-ink);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sb-recent-list a:hover .sb-recent-title { color: var(--asc-green); }
.sb-recent-date {
  font-size: 11px;
  color: var(--asc-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Newsletter block */
.sb-newsletter-sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--asc-muted);
  margin: 0 0 14px;
}
.sb-newsletter-form {
  display: flex; flex-direction: column;
  gap: 8px;
}
.sb-newsletter-form input[type="email"] {
  padding: 10px 12px;
  border: 1.5px solid var(--asc-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
}
.sb-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--asc-green);
  box-shadow: 0 0 0 3px rgba(29, 85, 51, 0.10);
}
.sb-newsletter-form .btn { width: 100%; justify-content: center; }

/* Social row */
.sb-social-row {
  display: flex; gap: 10px;
}
.sb-social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--asc-bg-soft);
  border: 1px solid var(--asc-border);
  color: var(--asc-green);
  transition: background 0.15s var(--ease), color 0.15s var(--ease), transform 0.15s var(--ease);
}
.sb-social-row a:hover {
  background: var(--asc-green);
  color: var(--asc-white);
  transform: translateY(-2px);
}

/* Post listing — make whole card clickable */
a.post-card { color: inherit; text-decoration: none; }
.post-card-readmore {
  margin-top: auto;
  padding-top: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--asc-green);
}
a.post-card:hover .post-card-title { color: var(--asc-green-dark); }
a.post-card:hover .post-card-readmore { color: var(--asc-green-dark); }

/* Responsive — sidebar drops below the article on tablet, hidden on phones */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; gap: 32px; }
  .post-sidebar { position: static; }
  .post-body { padding: 36px 32px; }
}
@media (max-width: 720px) {
  .post-sidebar { display: none; }   /* drop entirely on phones */
  .post-hero { padding: 120px 0 48px; min-height: 0; }
  .post-body-wrap { padding: 36px 0 56px; }
  .post-body { padding: 28px 22px; font-size: 16px; }
}

/* =====================================================================
   MOBILE — comprehensive nav + hero + trust + footer fixes
   This block is intentionally LAST so it overrides earlier breakpoints.
   ===================================================================== */
@media (max-width: 920px) {
  /* ---------- Header / floating nav ----------
     Ticker is `position:relative; height:38px` at the top of the doc.
     Header is fixed — push it BELOW the ticker so it doesn't overlap. */
  .site-header {
    top: 46px;               /* 38px ticker + 8px gap */
    width: calc(100% - 16px);
    border-radius: var(--radius-lg);
  }
  .site-header.is-scrolled {
    top: 0;                  /* ticker scrolls away once you scroll past it */
    width: 100%;
    border-radius: 0;
  }
  .header-inner {
    padding: 10px 14px;
    gap: 10px;
  }
  .header-logo-mark { width: 34px; height: 34px; }
  .header-logo-word { font-size: 14px; }

  /* Hide desktop nav + buttons; show hamburger */
  .header-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--asc-white) !important;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18) !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
    display: block !important;
    transform: translateY(-8px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s !important;
    flex: none !important;
    z-index: 70 !important;
  }
  .header-nav.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .site-header.is-scrolled .header-nav { border-radius: 0; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .nav-list > li { border-bottom: 1px solid var(--asc-border); }
  .nav-list > li:last-child { border-bottom: none; }
  .nav-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 22px !important;
    font-size: 13px !important;
    letter-spacing: 0.10em !important;
    color: var(--asc-ink) !important;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-link::after { display: none !important; }     /* kill desktop underline */

  /* Chevron indicator on items that have a submenu */
  .has-mega > .nav-link::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border: 1.5px solid var(--asc-border);
    border-radius: 50%;
    font-size: 16px; font-weight: 700;
    color: var(--asc-green);
    background: var(--asc-white);
    margin-left: auto;
    order: 2;                         /* push to far right */
    transition: transform 0.22s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
  }
  /* Events is a direct link on mobile — no submenu indicator */
  .has-mega--events > .nav-link::before { display: none; }
  .has-mega.is-open > .nav-link::before {
    content: "−";
    background: var(--asc-green);
    color: var(--asc-white);
    border-color: var(--asc-green);
  }
  .has-mega.is-open > .nav-link {
    background: var(--asc-bg-soft) !important;
    color: var(--asc-green-dark) !important;
  }

  /* Megamenu becomes a flat vertical accordion expanded inline.
     Uses display:none/block — the most browser-bulletproof toggle there is.
     Dropped the max-height transition because it was masking real bugs
     (the panel was technically expanding to 1600px but with zero visible
     content) and causing different behavior across mobile browsers. */
  .has-mega .mega-panel {
    display: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: var(--asc-bg-soft) !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: none !important;
    border-top: 1px solid var(--asc-border);
    z-index: auto !important;
  }
  .has-mega.is-open .mega-panel {
    display: block !important;
  }
  .mega-grid, .mega-grid--3, .mega-grid--2, .mega-grid--4 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .mega-card {
    padding: 14px 22px 14px 44px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    color: var(--asc-ink);
    text-align: left;
    position: relative;
  }
  .mega-card:last-child { border-bottom: none; }
  .mega-card::before {
    content: "→";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--asc-gold);
    font-size: 14px;
    font-weight: 700;
    opacity: 0.85;
  }
  .mega-card .mega-tag { display: none; }    /* eyebrow tags clutter mobile */
  .mega-card strong {
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--asc-ink) !important;
  }
  .mega-card p { display: none !important; }       /* descriptions clutter mobile */
  .mega-card--image {
    padding: 12px 22px 12px 22px !important;
    gap: 14px !important;
    align-items: center;
    display: flex !important;
  }
  .mega-card--image::before { display: none; }     /* image cards already have their image as the visual indicator */
  .mega-card--image .mega-card-image {
    width: 52px !important;
    height: 52px !important;
    flex-shrink: 0;
  }
  /* Tryouts feature banner inside Programs megamenu — hidden on mobile.
     Desktop megamenu still shows it. Keeps the mobile drawer compact. */
  .mega-feature { display: none !important; }
  .mega-divider {
    padding: 14px 22px 6px !important;
    margin: 0 !important;
    background: var(--asc-bg-soft);
    color: var(--asc-muted);
    font-size: 10.5px;
  }
  .mega-divider::before, .mega-divider::after { display: none; }
  .mega-divider span::before { display: none; }

  /* Mobile drawer: surface the Player Login + Register at the bottom of the
     drawer so users on mobile don't lose access when the header pills hide. */
  .nav-list::after {
    content: "";
    display: block;
    height: 6px;
  }

  /* Header CTAs on mobile:
     - Show the Register button (.btn-green) before the hamburger
     - Hide the Player Login button (.btn-black) — accessible inside the drawer instead */
  .header-cta { font-size: 11.5px !important; padding: 8px 14px !important; letter-spacing: 0.10em !important; }
  .header-cta.btn-green { display: inline-flex !important; }
  .header-cta.btn-black { display: none !important; }
  /* Mobile CTA row injected at bottom of mobile nav drawer */
  .nav-list::after {
    content: "";
    display: block;
    height: 6px;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--asc-bg-soft);
    border: 1px solid var(--asc-border);
    border-radius: var(--radius-sm);
    font-size: 22px;
    cursor: pointer;
    color: var(--asc-ink);
    flex-shrink: 0;
  }
  .nav-toggle:hover { background: var(--asc-border); }

  /* ---------- Ticker ---------- */
  .ticker {
    font-size: 11px;
    padding: 8px 0;
  }
  .ticker-item strong { font-size: 10px; }

  /* ---------- Home hero ---------- */
  .home-hero {
    min-height: 90vh;
    height: auto;
  }
  /* Top padding clears the floating navbar (ticker ~28px + nav ~70px
     + small breathing room). Anything less and the eyebrow gets
     hidden behind the navbar on phones. */
  .hero-content {
    padding: 120px 18px 40px;
  }
  .hero-content-inner {
    padding: 24px 22px 28px;
  }
  .hero-eyebrow {
    font-size: 11px !important;
    padding: 8px 18px !important;
  }
  .hero-headline {
    font-size: clamp(30px, 9vw, 44px) !important;
    line-height: 1.05 !important;
    margin-bottom: 16px !important;
  }
  .hero-sub {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 22px !important;
  }

  /* Hero affiliations — span the full pane width with even spacing.
     space-between pushes the first and last logo to the edges, so the
     row visually fills the glass pane. */
  .hero-affiliations {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: space-between !important;
    align-items: center;
    gap: 8px !important;
    width: 100%;
    margin: 0 0 26px !important;
    padding: 0;
  }
  .hero-affiliations img {
    height: 40px !important;
    width: auto !important;
    max-width: 22%;
    flex: 1 1 0;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.30));
  }

  /* Hero CTAs full-width stacked */
  .hero-ctas {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
  }
  .hero-ctas .btn,
  .hero-ctas .btn-lg {
    width: 100% !important;
    justify-content: center;
    text-align: center;
    padding: 16px 22px !important;
    font-size: 14px !important;
    letter-spacing: 0.14em !important;
  }

  /* ---------- Trust strip ---------- */
  .trust { padding: 36px 0 !important; }
  .trust-list {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    max-width: 360px;
    margin: 0 auto !important;
  }
  .trust-list li {
    padding: 18px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    text-align: center;
  }
  .trust-list li:last-child { border-bottom: none !important; }
  .trust-num { font-size: 18px !important; }
  .trust-label { font-size: 11px !important; }

  /* ---------- Footer (centered on mobile) ---------- */
  .footer-grid { text-align: center; }
  .footer-col { align-items: center; }
  .footer-col img { margin: 0 auto; }
  .footer-col h4 { text-align: center; }
  .footer-col ul { padding: 0; list-style: none; }
  .footer-col ul li { text-align: center; }
  .footer-contact { padding: 0; list-style: none; }
  .footer-contact li { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-bottom--three {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .footer-bottom--three .footer-credit,
  .footer-bottom--three .footer-copyright,
  .footer-bottom--three .footer-legal { justify-self: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 16px; }
}

/* Even tighter mobile (phones) */
@media (max-width: 480px) {
  .hero-content-inner { padding: 20px 18px 24px; }
  .hero-headline { font-size: clamp(26px, 9vw, 36px) !important; }
  /* Keep the affiliations spanning full width on phones — just shrink the logos */
  .hero-affiliations { gap: 6px !important; }
  .hero-affiliations img { height: 32px !important; max-width: 22%; }
  /* Wordmark stays — never hide it. Tighten the gap and font size instead. */
  .header-logo-word { font-size: 12px !important; }
  .header-logo { gap: 8px !important; }
  .header-cta { font-size: 11px !important; padding: 7px 12px !important; }
  .ticker-item { font-size: 10px; }
}

/* =====================================================================
   404 PAGE — friendly off-field landing with quick-pick destinations.
   ===================================================================== */
.page-404-hero {
  /* Top padding clears the floating navbar (ticker + nav ≈ 110px on
     desktop). Bottom padding gives breathing room before the prefooter. */
  padding: 130px 0 60px;
  background:
    radial-gradient(circle at 12% 18%, rgba(254,202,32,0.10) 0%, rgba(254,202,32,0) 38%),
    radial-gradient(circle at 86% 78%, rgba(29,85,51,0.10) 0%, rgba(29,85,51,0) 42%),
    var(--asc-bg-soft);
}
/* No card chrome — content sits directly on the page background.
   Same centered column / positioning, no internal vertical padding
   since the .page-404-hero provides spacing. */
.page-404-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.page-404-num {
  font-family: var(--font-display);
  font-size: clamp(96px, 18vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--asc-green);
  margin: 0 0 12px;
}
.page-404-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 48px);
  color: var(--asc-ink);
  letter-spacing: -0.005em;
  margin: 0 0 14px;
}
.page-404-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--asc-text-soft);
  max-width: 560px;
  margin: 0 auto 32px;
}
.page-404-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 0 auto 28px;
  text-align: left;
}
.page-404-tile {
  padding: 16px 18px;
  background: var(--asc-bg-soft);
  border: 1.5px solid var(--asc-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.page-404-tile:hover {
  transform: translateY(-2px);
  border-color: var(--asc-green);
  box-shadow: var(--shadow-sm);
}
.page-404-tile strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--asc-ink);
  letter-spacing: -0.005em;
}
.page-404-tile span {
  font-size: 12.5px;
  color: var(--asc-text-soft);
  line-height: 1.4;
}
.page-404-foot {
  font-size: 13px;
  color: var(--asc-text-soft);
  margin: 0;
}
.page-404-foot a {
  color: var(--asc-green);
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .page-404-card { padding: 0 18px; }
  .page-404-grid { grid-template-columns: 1fr; }
  .page-404-tile { padding: 18px 20px; }
}

/* =====================================================================
   SIDELINE — private parent upload page (/sideline/). Mobile-first.
   ===================================================================== */
/* The HTML `hidden` attribute applies `display: none` from the UA
   stylesheet, but our explicit `display: flex` rules below override it.
   Force the attribute to win so the JS state machine actually hides
   inactive stages, the progress bar, and error rows. */
.page-sideline [hidden] { display: none !important; }

.page-sideline {
  background: var(--asc-white);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(29,85,51,0.05) 0%, rgba(29,85,51,0) 38%),
    radial-gradient(circle at 86% 78%, rgba(254,202,32,0.07) 0%, rgba(254,202,32,0) 42%),
    var(--asc-white);
  min-height: 100vh;
  color: var(--asc-ink);
  font-family: var(--font-body);
}
/* Top accent bar — same brand-gradient pattern used elsewhere on the site,
   so /sideline/ feels Auburndale even though it has no header / nav. */
.page-sideline::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--asc-green) 0%, var(--asc-green-light) 50%, var(--asc-gold) 100%);
  z-index: 5;
}
/* Persistent back-to-main link, pinned top-CENTER, visible on every
   stage even while the TOS card scrolls underneath. Black text on the
   white page chrome to match the rest of the off-card type. */
.sl-back {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--asc-black);
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: 999px;
  text-decoration: none;
  z-index: 4;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.sl-back:hover {
  border-color: var(--asc-black);
}

/* "Built for Auburndale, donated by [logo]" — plain credit line pinned
   bottom-center. No pill, no background — sits on the page chrome with
   the dark YHD logo inline next to the text. */
.sl-yhd {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--asc-ink);
  opacity: 0.75;
  text-decoration: none;
  z-index: 4;
  transition: opacity 0.2s var(--ease);
}
.sl-yhd:hover { opacity: 1; }
.sl-yhd-label { white-space: nowrap; }
.sl-yhd img {
  height: 28px;
  width: auto;
  display: block;
}

.sideline-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 18px 60px;
}
.sl-stage {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sl-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sl-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.10));
}
/* Stage 1 hero brand — bigger logo, prominent welcome treatment. */
.sl-brand--hero { gap: 16px; }
.sl-brand--hero img {
  width: clamp(120px, 22vw, 160px);
  height: clamp(120px, 22vw, 160px);
}
.sl-brand h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 38px);
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--asc-black);
  line-height: 1.05;
}
.sl-brand--hero h1 {
  text-transform: uppercase;
  font-size: clamp(26px, 5.4vw, 36px);
  color: var(--asc-black);
}
.sl-brand-sub {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asc-black);
  font-weight: 700;
}
.sl-card {
  background: var(--asc-green-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--asc-white);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}
.sl-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.sl-label--center {
  text-align: center;
  display: block;
}
.sl-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(0,0,0,0.20);
  color: var(--asc-white);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.sl-input:focus {
  border-color: var(--asc-gold);
  background: rgba(0,0,0,0.30);
}
.sl-input::placeholder { color: rgba(255,255,255,0.4); }

.sl-field { display: flex; flex-direction: column; gap: 8px; }

.sl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
  text-decoration: none;
}
.sl-btn-primary {
  background: var(--asc-gold);
  color: var(--asc-black);
  border-color: var(--asc-gold);
}
.sl-btn-primary:hover:not(:disabled) {
  background: #ffd84a;
  border-color: #ffd84a;
}
.sl-btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.sl-btn-ghost {
  background: transparent;
  color: var(--asc-white);
  border-color: rgba(255,255,255,0.30);
}
.sl-btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.55); }

.sl-error {
  margin: 0;
  padding: 10px 14px;
  background: rgba(181,48,40,0.20);
  border: 1px solid rgba(181,48,40,0.55);
  color: #ffd9d6;
  border-radius: 6px;
  font-size: 13.5px;
}
/* Note lives INSIDE the green gate card — keep it white-on-green. */
.sl-note {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  text-align: center;
  line-height: 1.5;
}
.sl-foot {
  text-align: center;
  margin-top: 8px;
}
.sl-ip-line {
  font-size: 12px;
  color: var(--asc-black);
  letter-spacing: 0.04em;
}
.sl-ip-line strong {
  color: var(--asc-black);
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* TOS */
.sl-tos-card { gap: 14px; }
.sl-tos-card p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.85); }
.sl-tos-list {
  margin: 4px 0 8px;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sl-tos-list li::marker { color: var(--asc-gold); font-weight: 700; }
.sl-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
.sl-consent input { margin-top: 3px; width: 20px; height: 20px; accent-color: var(--asc-gold); }
.sl-row { display: flex; gap: 10px; }
.sl-row .sl-btn { flex: 1; }

/* Dropzone + file list */
.sl-files-input { position: absolute; opacity: 0; pointer-events: none; }
.sl-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 18px;
  border: 2px dashed rgba(255,255,255,0.30);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  color: rgba(255,255,255,0.85);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.sl-dropzone:hover, .sl-dropzone.is-drag {
  border-color: var(--asc-gold);
  background: rgba(254,202,32,0.06);
}
.sl-dropzone svg { color: var(--asc-gold); }
.sl-dropzone strong { font-size: 15px; font-weight: 700; }
.sl-dropzone span { font-size: 12px; color: rgba(255,255,255,0.55); }
.sl-file-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sl-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  font-size: 13px;
}
/* Thumbnail box for the file row — lets parents see what they're
   actually about to send before they hit Send. Image OR first-frame
   of a video, plus a play-glyph badge for videos. */
.sl-file-thumb {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 5px;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sl-file-thumb img,
.sl-file-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sl-file-thumb-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--asc-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.30);
  pointer-events: none;
}
.sl-file-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.sl-file-meta strong { color: var(--asc-white); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sl-file-meta small { color: rgba(255,255,255,0.5); font-size: 11.5px; }
.sl-file-remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.20);
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.sl-file-remove:hover { background: rgba(181,48,40,0.30); color: #fff; border-color: rgba(181,48,40,0.55); }

/* Progress */
.sl-progress { display: flex; align-items: center; gap: 10px; }
.sl-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
  overflow: hidden;
}
.sl-progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--asc-gold);
  transition: width 0.2s var(--ease);
}
#sl-progress-pct { font-size: 12px; color: rgba(255,255,255,0.65); min-width: 40px; text-align: right; }

/* Done */
.sl-done {
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 36px 22px;
}
.sl-done-check { color: var(--asc-gold); }
.sl-done h2 { margin: 0; font-family: var(--font-display); font-size: 22px; color: var(--asc-white); line-height: 1.2; }
.sl-done h2 strong { color: var(--asc-gold); }
.sl-done p { margin: 0; color: rgba(255,255,255,0.7); font-size: 14px; }
.sl-done-warmline {
  font-size: 14.5px !important;
  line-height: 1.5;
  color: rgba(255,255,255,0.92) !important;
  font-style: italic;
  max-width: 380px;
  margin: 2px auto !important;
}
.sl-rejected { font-size: 12px; color: rgba(255,255,255,0.55); }

/* Confetti — fixed-positioned over the whole viewport so pieces fall
   the full height regardless of where the done card lands. Pieces are
   absolutely positioned and animated via CSS variables for x-drift +
   rotation so each falls slightly different. */
.sl-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}
.sl-confetti-piece {
  --x-drift: 0px;
  --rot-end: 720deg;
  position: absolute;
  top: -24px;
  width: 10px;
  height: 14px;
  border-radius: 1px;
  opacity: 0.95;
  animation: sl-confetti-fall linear forwards;
  will-change: transform, opacity;
}
.sl-confetti-piece--circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.sl-confetti-piece--strip {
  width: 5px;
  height: 18px;
  border-radius: 2px;
}
@keyframes sl-confetti-fall {
  0%   { transform: translate(0, -24px) rotate(0deg);            opacity: 1; }
  100% { transform: translate(var(--x-drift), 110vh) rotate(var(--rot-end)); opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  /* Respect the "no animation" preference — drop pieces straight without
     spin, finish faster, dim them so they're an accent not a distraction. */
  .sl-confetti-piece { animation-duration: 1.2s !important; opacity: 0.5; }
  @keyframes sl-confetti-fall {
    0%   { transform: translateY(-24px); opacity: 0.5; }
    100% { transform: translateY(110vh); opacity: 0; }
  }
}

@media (min-width: 720px) {
  .sl-stage { max-width: 580px; gap: 32px; }
  .sl-card { padding: 32px 28px; }
}

/* ============================================================
   REGISTER PAGE — program tile grid (rendered by page-data.js
   from AUB_DATA.registration.programs[]). Status drives which
   badge color + button label appears per card.
   ============================================================ */
.register-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 0 auto;
  max-width: 1080px;
}
@media (min-width: 640px) {
  .register-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .register-grid { grid-template-columns: repeat(3, 1fr); }
}

.register-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--asc-white);
  border: 1px solid var(--asc-border);
  border-radius: 14px;
  padding: 28px 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.register-card:hover {
  transform: translateY(-2px);
  border-color: var(--asc-green);
  box-shadow: 0 10px 24px rgba(29,85,51,0.12);
}

.register-badge {
  align-self: flex-start;
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #f1f3f5;
  color: var(--asc-ink);
}
.register-badge--open     { background: var(--asc-green);       color: var(--asc-white); }
.register-badge--tryout   { background: var(--asc-gold);        color: var(--asc-black); }
.register-badge--soon     { background: #eef2f7;                color: #4a5560; }
.register-badge--waitlist { background: #f5a623;                color: var(--asc-black); }

.register-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 24px);
  margin: 4px 0 0;
  color: var(--asc-black);
  letter-spacing: -0.005em;
}
.register-card-ages {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--asc-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.register-card-blurb {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--asc-ink);
}
.register-card-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #6b7280;
  font-style: italic;
}

.register-card .btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.register-card-learn {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--asc-ink);
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.15s var(--ease);
}
.register-card-learn:hover {
  color: var(--asc-green);
}

.register-grid-empty {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
  margin: 28px auto 0;
  max-width: 540px;
}
