:root {
  --primary: #0d5ea8;
  --secondary: #ffb703;
  --text: #17324d;
  --bg: #f6f9fc;
  --white: #ffffff;
  --border: #dbe7f3;
  --utility-bar-bg: #bf1e2e;
  --utility-bar-text: #ffffff;
  --nav-bar-bg: #6495ed;
  --nav-bar-text: #ffffff;
  --masthead-sticky-top: 104px;
}
* { box-sizing: border-box; }
html {
  scroll-padding-top: var(--masthead-sticky-top);
}
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: var(--primary); text-decoration: underline; }
a:hover { text-decoration: underline; }
a.header-logo-link,
a.footer-logo-link {
  text-decoration: none;
}
a.header-logo-link:hover,
a.footer-logo-link:hover {
  text-decoration: none;
}
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-masthead {
  position: sticky;
  top: 0;
  z-index: 100;
}
main {
  position: relative;
  z-index: 0;
}
/* Primary header / nav: assets/css/header.css */
.hero { padding: clamp(48px, 8vw, 88px) 0; background: linear-gradient(165deg, #e3f0ff 0%, #f6f9fc 42%, #fff9e6 100%); }
.hero--home {
  padding: clamp(16px, 2.5vw, 28px) 0 clamp(36px, 5vw, 56px);
}
/* Homepage hero video — swap file via $homeHeroVideoFilename in index.php */
.hero-video-wrap {
  width: 100%;
  margin: 0 auto clamp(22px, 3.5vw, 36px);
  max-width: min(1120px, 100%);
}
.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 94, 168, 0.2);
  box-shadow: 0 18px 48px rgba(13, 94, 168, 0.18);
  background: #0a2744;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(20px, 4vw, 40px);
  background: radial-gradient(
    ellipse 95% 85% at 50% 50%,
    rgba(10, 30, 50, 0.88) 0%,
    rgba(10, 30, 50, 0.55) 55%,
    rgba(10, 30, 50, 0.22) 100%
  );
  pointer-events: none;
}
.hero-video-overlay .hero-video-heading,
.hero-video-overlay .hero-video-ctas {
  pointer-events: auto;
}
.hero-video-heading {
  margin: 0 0 clamp(14px, 2.5vw, 22px);
  max-width: min(36ch, 92%);
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}
.hero-video-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
  width: 100%;
  max-width: 520px;
}
.btn.btn-hero-video-cta-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  letter-spacing: 0.02em;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 10px 28px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.08s ease, filter 0.12s ease, box-shadow 0.12s ease;
}
.btn.btn-hero-video-cta-info:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}
.btn.btn-hero-video-cta-info:active {
  transform: translateY(2px);
}
.btn.btn-hero-video-cta-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  letter-spacing: 0.02em;
  background: var(--nav-bar-bg);
  color: var(--nav-bar-text);
  border: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15), 0 10px 28px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.08s ease, filter 0.12s ease, box-shadow 0.12s ease;
}
.btn.btn-hero-video-cta-search:hover {
  color: var(--nav-bar-text);
  text-decoration: none;
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.btn.btn-hero-video-cta-search:active {
  transform: translateY(2px);
}
.hero-program-dialog {
  border: none;
  border-radius: 18px;
  padding: 0;
  margin: auto;
  max-width: 480px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(13, 24, 40, 0.35);
}
.hero-program-dialog::backdrop {
  background: rgba(13, 24, 40, 0.55);
  backdrop-filter: blur(2px);
}
.hero-program-dialog__inner {
  position: relative;
  padding: 24px 24px 22px;
}
.hero-program-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(13, 94, 168, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.hero-program-dialog__close:hover {
  background: rgba(13, 94, 168, 0.14);
}
.hero-program-dialog__title {
  margin: 0 32px 6px 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}
.hero-program-dialog__note {
  margin: 0 32px 18px 0;
  font-size: 0.9rem;
  color: #3d5a73;
  line-height: 1.4;
}
.hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr); gap: clamp(28px, 4vw, 48px); align-items: center; }
.hero-copy { min-width: 0; }
.hero-visual { min-width: 0; }
.hero-visual--single {
  align-self: start;
}
.hero-lead-form {
  margin: 0;
  padding: 22px 22px 20px;
  background: var(--white);
  border: 1px solid #dbe7f3;
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(13, 94, 168, 0.12);
}
.hero-lead-form__title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.01em;
}
.hero-lead-form__hint {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #3d5a73;
}
.hero-lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-lead-form__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2f4a63;
  letter-spacing: 0.02em;
}
.hero-lead-form input,
.hero-lead-form select {
  width: 100%;
  padding: 11px 12px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  border: 1px solid #dbe7f3;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}
.hero-lead-form input::placeholder {
  color: #8aa4bd;
}
.hero-lead-form input:focus,
.hero-lead-form select:focus {
  outline: 2px solid rgba(13, 94, 168, 0.35);
  outline-offset: 1px;
  border-color: rgba(13, 94, 168, 0.45);
}
.hero-lead-form__submit {
  margin-top: 16px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 4px 0 rgba(10, 60, 110, 0.35), 0 10px 24px rgba(13, 94, 168, 0.25);
  transition: transform 0.08s ease, filter 0.12s ease, box-shadow 0.12s ease;
}
.hero-lead-form__submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.hero-lead-form__submit:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(10, 60, 110, 0.35), 0 4px 14px rgba(13, 94, 168, 0.2);
}
.hero-mosaic { display: grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; align-items: stretch; margin-bottom: 12px; }
.hero-mosaic figure { margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid rgba(13, 94, 168, 0.12); box-shadow: 0 16px 40px rgba(13, 94, 168, 0.12); background: var(--white); }
.hero-mosaic-main { grid-column: 1; grid-row: 1 / -1; }
.hero-mosaic-main img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; }
.hero-mosaic-tile-a { grid-column: 2; grid-row: 1; }
.hero-mosaic-tile-b { grid-column: 2; grid-row: 2; }
.hero-mosaic-tile img { width: 100%; height: 100%; min-height: 104px; object-fit: cover; display: block; }
.hero-camp-banner { margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: var(--white); box-shadow: 0 12px 32px rgba(13, 94, 168, 0.1); }
.hero-camp-banner img { width: 100%; height: auto; display: block; }
.hero-cta-card { margin-top: 28px; padding: 22px 24px; background: var(--white); border: 1px solid var(--border); border-radius: 18px; border-left: 5px solid var(--primary); box-shadow: 0 14px 36px rgba(13, 94, 168, 0.1); }
.hero-cta-kicker { margin: 0 0 6px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); }
.hero-cta-headline { margin: 0 0 8px; font-size: clamp(1.25rem, 2.5vw, 1.55rem); font-weight: 800; line-height: 1.25; color: var(--text); }
.hero-cta-note { margin: 0 0 18px; font-size: 0.98rem; color: #3d5a73; max-width: 40ch; }
.hero-cta-actions { margin-bottom: 14px; }
.hero-cta-links { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; font-size: 0.95rem; }
.hero-cta-dot { color: #8aa4bd; user-select: none; }
.btn-cta { display: inline-block; padding: 16px 28px; border-radius: 12px; font-weight: 800; font-size: 1.08rem; letter-spacing: 0.02em; background: linear-gradient(180deg, #ffc933 0%, var(--secondary) 100%); color: #1a1200; border: 2px solid #e59f00; box-shadow: 0 4px 0 #c98700, 0 12px 28px rgba(255, 183, 3, 0.45); text-decoration: underline; transition: transform 0.08s ease, box-shadow 0.08s ease; }
.btn-cta:hover { text-decoration: underline; transform: translateY(-1px); box-shadow: 0 5px 0 #c98700, 0 16px 32px rgba(255, 183, 3, 0.5); color: #1a1200; }
.btn-cta:active { transform: translateY(2px); box-shadow: 0 1px 0 #c98700, 0 6px 16px rgba(255, 183, 3, 0.35); }
.eyebrow { display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 8px; }
.home-intro-heading {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.home-intro-lead {
  margin: 0 auto 18px;
  max-width: 48ch;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.home-intro-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
  align-items: stretch;
}
.home-intro-block {
  margin: 0;
  padding: 10px 12px 11px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(13, 94, 168, 0.06);
}
.home-intro-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--primary);
}
.home-intro-block__icon svg {
  width: 17px;
  height: 17px;
}
.home-intro-block__title {
  margin: 0 0 4px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}
.home-intro-block__text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #3d5a73;
  flex: 1 1 auto;
}
a.home-intro-block--link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
a.home-intro-block--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 94, 168, 0.12);
}
a.home-intro-block--link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
}
.section--home-flyers {
  padding-top: 52px;
  padding-bottom: 64px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.home-flyers-heading {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
}
.home-flyers-sub {
  margin: 0 auto 28px;
  max-width: 52ch;
  text-align: center;
  font-size: 1rem;
  color: #3d5a73;
  line-height: 1.45;
}
.home-flyers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}
.home-flyer-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.home-flyer-thumb {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #eef5fb;
  aspect-ratio: 3 / 4;
  box-shadow: 0 8px 22px rgba(13, 94, 168, 0.08);
}
.home-flyer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-flyer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}
a.home-flyer-cta:hover,
a.home-flyer-cta:focus-visible {
  text-decoration: none;
}
.home-flyer-cta.btn-primary,
a.home-flyer-cta.btn-primary:hover,
a.home-flyer-cta.btn-primary:focus-visible {
  text-decoration: none;
}
h1, h2, h3, h4 { line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 16px; }
.lead { font-size: 1.1rem; max-width: 62ch; }
.hero-card, .card, .panel, .integration-box { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: 0 10px 28px rgba(13,94,168,.06); }
.card-has-thumb { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card-has-thumb .card-thumb { margin: 0; line-height: 0; }
.card-has-thumb .card-thumb img { width: 100%; height: 160px; object-fit: cover; display: block; }
.card-has-thumb .card-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.card-has-thumb .text-link { margin-top: auto; }
.panel-visual { padding: 0; overflow: hidden; }
.panel-visual img { width: 100%; height: auto; display: block; }
.page-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.page-lead figure { margin: 0; }
.page-lead img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--border); box-shadow: 0 10px 28px rgba(13,94,168,.08); display: block; }
.page-lead-text { max-width: 62ch; }
.deployment-note { margin-top: 16px; }
.stub-brand { margin: 0 0 20px; max-width: 200px; }
.stub-brand img { width: 100%; height: auto; display: block; }
.camp-feature { margin: 0 auto 24px; max-width: 480px; }
.camp-feature img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--border); display: block; }
.footer-logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.footer-logo-link:hover { opacity: 0.92; }
/* ~2× prior ~52px footer mark */
body .site-footer img.footer-logo,
body .site-footer .footer-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 120px;
  max-width: min(520px, 92vw);
  object-fit: contain;
}
.footer-grid.footer-grid--three {
  display: grid;
  grid-template-columns: minmax(120px, 0.85fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: start;
}
.footer-grid:not(.footer-grid--three) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-title {
  margin: 0;
  font-size: 1.1rem;
  color: inherit;
}
.footer-heading {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
}
.footer-about-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #111;
}
.footer-contact-line {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #111;
}
.footer-contact-line:last-child {
  margin-bottom: 0;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 700; }
.btn-primary { background: var(--primary); color: var(--white); text-decoration: underline; }
.btn-secondary { background: var(--secondary); color: #342500; text-decoration: underline; }
.section { padding: 64px 0; }
/* After `.section` so padding + background win; matches utility bar / org red */
.section.section--home-intro {
  padding-top: 32px;
  padding-bottom: 44px;
  background-color: #bf1e2e;
  background-color: var(--utility-bar-bg, #bf1e2e);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.section-alt { background: #eef5fb; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; }
.page-banner { background: #eaf4ff; padding: 48px 0; border-bottom: 1px solid var(--border); }
.narrow { max-width: 760px; }
.site-footer {
  background: #ffffff;
  color: #000000;
  padding: 40px 0;
  border-top: 1px solid #d9d9d9;
}
.site-footer a {
  color: #000000;
  text-decoration: underline;
}
.site-masthead a[href^="tel:"],
.site-masthead a[href^="mailto:"],
.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"],
main a[href^="tel:"],
main a[href^="mailto:"],
main a[href^="sms:"] {
  text-decoration: none;
}
.site-masthead a[href^="tel:"]:hover,
.site-masthead a[href^="mailto:"]:hover,
.site-footer a[href^="tel:"]:hover,
.site-footer a[href^="mailto:"]:hover,
main a[href^="tel:"]:hover,
main a[href^="mailto:"]:hover,
main a[href^="sms:"]:hover {
  text-decoration: none;
}
.text-link { font-weight: 700; }

/* Brand red page shell — same as home .section--home-intro */
body.page-sports-red,
body.page-locations-red,
body.page-flyer-landing {
  background-color: #bf1e2e;
  background-color: var(--utility-bar-bg, #bf1e2e);
}
body.page-sports-red .page-banner,
body.page-locations-red .page-banner,
body.page-flyer-landing .page-banner {
  background: var(--utility-bar-bg, #bf1e2e);
  color: var(--utility-bar-text, #ffffff);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}
body.page-sports-red .page-banner h1,
body.page-sports-red .page-banner p,
body.page-locations-red .page-banner h1,
body.page-locations-red .page-banner p,
body.page-flyer-landing .page-banner h1,
body.page-flyer-landing .page-banner p {
  color: inherit;
}
.flyer-landing-main {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 16px 48px;
}
.flyer-landing-cta {
  text-align: center;
  margin: 18px 0;
}
.flyer-landing-figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  background: var(--white);
}
.flyer-landing-figure img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.flyer-landing-details {
  margin: 24px 0 8px;
  padding: 20px 18px 22px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  color: var(--text);
  text-align: left;
}
.flyer-landing-details p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2a3f52;
}
.flyer-landing-details p:last-child {
  margin-bottom: 0;
}
.flyer-landing-details__title {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.flyer-landing-details__title:first-of-type {
  margin-top: 18px;
}
.flyer-landing-details__subtitle {
  margin: 16px 0 8px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
}
.locations-page-main {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 48px;
}
.locations-page-lists {
  margin: 8px 0 12px;
}
.locations-page-lists .sports-locations-sub:first-of-type {
  margin-top: 4px;
}

/* Sports page (sports.php) */
.sports-page .sports-cta-bar {
  text-align: center;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.sports-sport-nav__grid {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
}
.sports-sport-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 8px;
  min-height: 100%;
  padding: 14px 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fafcfe;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.25;
  transition: background 0.12s ease, box-shadow 0.12s ease, transform 0.1s ease;
}
.sports-sport-nav__item:hover {
  background: #eef6ff;
  box-shadow: 0 8px 20px rgba(13, 94, 168, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text);
}
.sports-sport-nav__item:focus-visible {
  outline: 3px solid rgba(13, 94, 168, 0.45);
  outline-offset: 2px;
}
.sports-sport-nav__icon {
  font-size: 1.85rem;
  line-height: 1;
}
.sports-sport-nav__name {
  display: block;
}
.sports-jump-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  margin: 14px 0 6px;
}
.sports-jump-btns--lead {
  justify-content: flex-start;
}
.sports-detail-block .sports-jump-btns {
  margin-top: 18px;
  margin-bottom: 0;
  justify-content: flex-start;
}
.sports-cta-repeat {
  text-align: center;
  margin: 20px 0 4px;
}
.sports-page-layout .sports-toc-desktop {
  display: none;
}
.sports-toc-desktop__kicker {
  margin: 0 0 8px;
  padding: 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a7a94;
}
.sports-toc-desktop__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sports-toc-desktop__list a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  border-left: 3px solid transparent;
}
.sports-toc-desktop__list a:hover {
  background: #f0f6fc;
  text-decoration: underline;
}
/* Sports TOC: show from tablet-up (768px). Global subnav stays 2-col until 860px — without this,
   viewports 768–860px had no sidebar (hidden ≤860) while the TOC only appeared ≥861px. */
@media (min-width: 768px) {
  .sports-page-layout .sports-toc-desktop {
    display: block;
    margin-bottom: 14px;
  }
  .sports-page-layout .subnav-programs-inner-nav {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-with-subnav.sports-page-layout .subnav-sidebar {
    display: none;
  }
}
.sports-section {
  margin-top: 28px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.sports-section--anchor {
  scroll-margin-top: calc(var(--masthead-sticky-top) + 16px);
}
.sports-section--anchor:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.sports-page .sports-section--details {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 20px;
}
.sports-page .sports-ruled-heading {
  margin-top: 0;
}
.sports-ruled-heading {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  width: 100%;
  margin: 0 0 0.75em;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  border: none;
  padding: 0;
}
.sports-ruled-heading::before,
.sports-ruled-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #000;
  min-width: 12px;
}
.sports-ruled-heading__text {
  flex: 0 1 auto;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  text-align: center;
  max-width: min(100%, 28rem);
  line-height: 1.25;
}
.sports-detail-block {
  scroll-margin-top: calc(var(--masthead-sticky-top) + 16px);
  margin-top: 20px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfdff;
}
.sports-detail-block:first-of-type {
  margin-top: 16px;
}
.sports-detail-block__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  margin: 0 0 12px;
}
.sports-detail-block__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.15rem;
  color: var(--text);
  flex: 1 1 auto;
  min-width: 0;
}
.sports-detail-block__icon {
  font-size: 1.65rem;
  line-height: 1;
  flex-shrink: 0;
}
.sports-detail-block__name {
  flex: 1 1 auto;
  min-width: 0;
}
.sports-detail-block__cta {
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 0.82rem;
  white-space: nowrap;
}
.sports-detail-block__copy p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #3d5a73;
}
.sports-detail-block__copy p:last-child {
  margin-bottom: 0;
}
.sports-detail-block__copy ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}
.sports-detail-block__copy li {
  margin-bottom: 6px;
  line-height: 1.45;
  color: #3d5a73;
}
.sports-locations-sub {
  margin: 20px 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}
.sports-locations-disclaimer {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #eef6ff;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3d5a73;
}
.sports-locations-disclaimer a {
  font-weight: 700;
  color: var(--primary);
}
.sports-locations-sub:first-of-type {
  margin-top: 12px;
}
.sports-locations-list {
  margin: 0 0 8px;
  padding-left: 1.25rem;
}
.sports-locations-list li {
  margin-bottom: 6px;
}
.sports-section--faq .sports-faq-item {
  margin-top: 18px;
}
.sports-faq-q {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}
code { background: #eef5fb; padding: 3px 6px; border-radius: 6px; }
.page-with-subnav { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 32px; align-items: start; padding-bottom: 48px; }
.subnav-sidebar { position: sticky; top: var(--masthead-sticky-top); }
.subnav-sidebar nav { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 10px 0; box-shadow: 0 8px 20px rgba(13,94,168,.06); }
.subnav-sidebar ul { list-style: none; margin: 0; padding: 0; }
.subnav-sidebar a { display: block; padding: 10px 16px; font-weight: 600; color: var(--text); text-decoration: underline; border-left: 3px solid transparent; }
.subnav-sidebar a:hover { background: #f0f6fc; text-decoration: underline; }
.subnav-sidebar a.active { color: var(--primary); border-left-color: var(--primary); background: #eef6ff; }
.page-prose { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: clamp(20px, 3vw, 36px); box-shadow: 0 10px 28px rgba(13,94,168,.06); min-width: 0; }
.page-prose h2 { font-size: 1.45rem; margin-top: 1.5em; margin-bottom: 0.5em; }
.page-prose h2:first-child { margin-top: 0; }
.page-prose h3 { font-size: 1.15rem; margin-top: 1.25em; }
.page-prose ul { padding-left: 1.25rem; }
.page-prose .ql-align-center { text-align: center; }
.page-prose .prose-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; margin: 24px 0; }
.page-prose .partner-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 420px; margin-top: 16px; }
.page-prose .partner-logos img { width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--border); }
.page-prose .inline-figure { margin: 16px 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.page-prose .inline-figure img { width: 100%; height: auto; display: block; }
.instagram-embed-wrap {
  margin: 20px 0 8px;
  max-width: 100%;
  overflow-x: auto;
}
.instagram-embed-wrap .instagram-media {
  margin-left: auto !important;
  margin-right: auto !important;
}
.travel-team-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
  width: 100%;
}
.travel-team-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
}
@media (max-width: 640px) {
  .travel-team-buttons {
    grid-template-columns: 1fr;
  }
}
.promo-pill { display: inline-block; background: #ff9900; color: #1a1200; font-weight: 800; padding: 8px 14px; border-radius: 8px; margin-bottom: 12px; }
.sport-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-top: 20px; }
.sport-grid a { display: flex; align-items: center; justify-content: center; min-height: 72px; padding: 12px; text-align: center; font-weight: 800; color: var(--white); text-decoration: underline; border-radius: 14px; background: linear-gradient(145deg, rgba(13,94,168,.92), rgba(13,94,168,.75)), url('../images/logo.png') center/120px no-repeat; border: 1px solid var(--border); text-shadow: 0 1px 2px rgba(0,0,0,.35); }
.sport-grid a:hover { text-decoration: underline; filter: brightness(1.05); }
@media (max-width: 1100px) {
  .home-flyers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .home-flyers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-layout, .cards-3, .split, .footer-grid:not(.footer-grid--three), .footer-grid.footer-grid--three, .page-lead { grid-template-columns: 1fr; }
  .hero-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(200px, 46vw) minmax(100px, 28vw); }
  .hero-mosaic-main { grid-column: 1 / -1; grid-row: 1; }
  .hero-mosaic-tile-a { grid-column: 1; grid-row: 2; }
  .hero-mosaic-tile-b { grid-column: 2; grid-row: 2; }
  .hero-mosaic-main img { min-height: 0; height: 100%; }
  .page-with-subnav { grid-template-columns: 1fr; }
  .subnav-sidebar { position: static; }
  .page-prose .prose-split, .page-prose .partner-logos { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .home-intro-grid {
    grid-template-columns: 1fr;
  }
  .home-flyers-grid {
    grid-template-columns: 1fr;
  }
  .hero-video-ctas .btn {
    width: 100%;
  }
}

/* Homepage: compact media slider + reviews (index.php) */
.section--home-gallery-slider {
  padding-top: 40px;
  padding-bottom: 44px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.home-gallery-heading {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
}
.home-gallery-sub {
  margin: 0 auto 18px;
  max-width: 48ch;
  text-align: center;
  font-size: 0.92rem;
  color: #3d5a73;
  line-height: 1.45;
}
.home-media-slider {
  max-width: min(520px, 100%);
  margin: 0 auto;
}
.home-media-slider__viewport {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.home-media-slider__frame-wrap {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a2744;
  box-shadow: 0 8px 24px rgba(13, 94, 168, 0.12);
}
.home-media-slider__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 280px;
  margin: 0 auto;
}
.home-media-slider__media {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}
.home-media-slider__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(13, 94, 168, 0.25);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(13, 94, 168, 0.1);
  transition: background 0.15s ease, transform 0.1s ease;
}
.home-media-slider__arrow:hover {
  background: #eef6ff;
}
.home-media-slider__arrow:active {
  transform: scale(0.96);
}
.home-media-slider__caption {
  margin: 10px 0 4px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #3d5a73;
  text-align: center;
  min-height: 2.5em;
}
.home-media-slider__meta {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #8aa4bd;
  text-align: center;
}

.site-search-results {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-search-results__item {
  margin: 0 0 12px;
  padding: 0;
  font-size: 1.05rem;
}
.site-search-results__item a {
  font-weight: 700;
}

.section--home-reviews {
  padding-top: 52px;
  padding-bottom: 60px;
  border-top: 1px solid var(--border);
}
.home-reviews-heading {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
}
.home-reviews-sub {
  margin: 0 auto 28px;
  max-width: 52ch;
  text-align: center;
  font-size: 1rem;
  color: #3d5a73;
  line-height: 1.45;
}
.home-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 22px);
  margin-bottom: 28px;
}
@media (min-width: 560px) {
  .home-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .home-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(13, 94, 168, 0.08);
}
.home-review-card__stars {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 10px;
  color: #e6a200;
  color: var(--secondary);
}
.home-review-card__star {
  display: inline-flex;
  line-height: 0;
}
.home-review-card__name {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}
.home-review-card__quote {
  margin: 0;
  padding: 0;
  border: none;
  flex: 1 1 auto;
}
.home-review-card__quote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #3d5a73;
}
.home-reviews-cta {
  text-align: center;
}
.home-reviews-google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
}
.home-reviews-google-btn:hover,
.home-reviews-google-btn:focus-visible {
  text-decoration: none;
}

/* Sports page — Locations / FAQs (same look as Search programs CTA; no link underline) */
.sports-page .sports-jump-btns a.sports-jump-btns__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-family: inherit;
  cursor: pointer;
  background: var(--nav-bar-bg);
  color: var(--nav-bar-text) !important;
  border: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15), 0 8px 22px rgba(0, 0, 0, 0.18);
  text-decoration: none !important;
  text-underline-offset: unset;
  transition: transform 0.08s ease, filter 0.12s ease, box-shadow 0.12s ease;
}
.sports-page .sports-jump-btns a.sports-jump-btns__cta:hover,
.sports-page .sports-jump-btns a.sports-jump-btns__cta:focus,
.sports-page .sports-jump-btns a.sports-jump-btns__cta:focus-visible,
.sports-page .sports-jump-btns a.sports-jump-btns__cta:active,
.sports-page .sports-jump-btns a.sports-jump-btns__cta:visited {
  color: var(--nav-bar-text) !important;
  text-decoration: none !important;
}
.sports-page .sports-jump-btns a.sports-jump-btns__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.sports-page .sports-jump-btns a.sports-jump-btns__cta:active {
  transform: translateY(2px);
}
