/* ==========================================================================
   Jackson Futbol Club — site.css
   Single stylesheet for all pages.
   Brand: navy #3559B1, green #02A84D. Anchored on the JFC vector logo.
   Type: Inter, 400–900.
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #3559B1;
  --navy-dark:   #243F87;
  --navy-deep:   #1A2D5C;
  --navy-soft:   #DBE3F4;
  --navy-tint:   #EEF2FB;
  --navy-line:   #1E40AF;

  --green:       #02A84D;
  --green-dark:  #017534;
  --green-soft:  #D6F2E0;
  --green-tint:  #ECFDF5;

  /* Field-status states (limited / closed) */
  --amber:       #D97706;
  --amber-dark:  #B45309;
  --amber-soft:  #FEF1D6;
  --red:         #DC2626;
  --red-dark:    #B91C1C;
  --red-soft:    #FCE4E4;

  --true-blue:      #1D4ED8;
  --true-blue-soft: #DBEAFE;

  /* Text neutrals */
  --ink:        #0F172A;
  --ink-dim:    #334155;
  --muted:      #64748B;
  --hint:       #94A3B8;
  --border:     #CBD5E1;
  --border-sft: #E2E8F0;

  /* Surfaces */
  --white:      #FFFFFF;
  --surface:    #F8FAFC;
  --surface-2:  #F1F5F9;

  /* Disabled state */
  --disabled-bg:     #F1F5F9;
  --disabled-text:   #64748B;
  --disabled-border: #CBD5E1;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 80px);

  /* Type */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;

  /* Radius / shadow */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04);
  --shadow:    0 8px 24px rgba(15, 23, 42, .08);
}

/* ----- Reset / base ----- */

* { box-sizing: border-box; }

/* Anchor jumps clear the sticky header */
:target { scroll-margin-top: 104px; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-dim);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
  letter-spacing: -0.015em;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ----- Type scale ----- */

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0;
}
.eyebrow-navy { color: var(--navy); }
.eyebrow-muted { color: var(--muted); }
.eyebrow-light { color: var(--green-soft); }

.page-h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.page-sub {
  margin-top: 16px;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-dim);
  max-width: 64ch;
}
.inline-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(53, 89, 177, .4);
  transition: text-decoration-color .15s ease;
}
.inline-link:hover {
  text-decoration-color: var(--navy);
}
.section-h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
.section-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
  max-width: 62ch;
}

.breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); }

/* ----- Buttons ----- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  padding-inline: 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm  { height: 44px; padding-inline: 18px; font-size: 14px; }

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: #2B4A99; box-shadow: var(--shadow); color: #fff; }

.btn-primary-inverse {
  background: #fff;
  color: var(--navy);
}
.btn-primary-inverse:hover { background: #f3f6fc; color: var(--navy); }

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .85);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-dark); color: #fff; }

.btn-disabled {
  background: var(--disabled-bg);
  color: var(--disabled-text);
  border: 1.5px dashed var(--disabled-border);
  cursor: not-allowed;
}
.btn-disabled:hover { transform: none; background: var(--disabled-bg); color: var(--disabled-text); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.btn-link-green { color: var(--green-dark); }
.btn-link:hover { text-decoration: none; }
.btn-link:hover .arrow { transform: translateX(4px); }

.arrow { display: inline-block; transition: transform .2s ease; }

/* ----- Pills ----- */

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill-rec      { background: var(--navy-soft); color: var(--navy); }
.pill-comp     { background: var(--green-soft); color: var(--green-dark); }
.pill-neutral  { background: var(--surface-2); color: var(--ink-dim); }
.pill-now-blue { background: var(--navy); color: #fff; }
.pill-now-green{ background: var(--green); color: #fff; }
.pill-status   { background: var(--navy); color: #fff; padding: 0 16px; }

/* ----- Header ----- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-sft);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 88px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.brand-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1.1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-dim);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav a:hover { color: var(--navy); }
.nav a.active {
  color: var(--navy);
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: -14px;
}
.header-actions .login {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-dim);
  white-space: nowrap;
}
.header-actions .login:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-sft);
  width: 40px; height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }

/* ----- Now Happening band ----- */

.now-banner {
  background: var(--navy);
  color: #fff;
  border-top: 2px solid var(--green);
  font-size: 14px;
}
.now-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
}
.now-pill {
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.now-msg { flex: 1; min-width: 0; }
.now-cta {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 1px;
}
.now-cta:hover { color: #fff; border-bottom-color: #fff; text-decoration: none; }
.now-dismiss {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  opacity: 0.85;
}
.now-dismiss:hover { opacity: 1; background: rgba(255,255,255,.12); }

/* ----- Page header (breadcrumb + h1 + sub) ----- */

.page-header {
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 56px);
}

/* ----- Section scaffolding ----- */

section { padding: clamp(56px, 7vw, 96px) 0; }
section.compact { padding: clamp(32px, 4vw, 56px) 0; }
.band-gray   { background: var(--surface); }
.band-navy   { background: var(--navy); color: #fff; }
.band-navy h2, .band-navy h3 { color: #fff; }
.band-navy-dark { background: var(--navy-dark); color: #fff; }
.band-navy-deep { background: var(--navy-deep); color: #fff; }
.band-green-soft { background: var(--green-soft); }

.section-head { max-width: 880px; }
.section-head .eyebrow + .section-h2,
.section-head .eyebrow + .page-h1 { margin-top: 12px; }

/* ----- Hero (homepage) ----- */

.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,45,92,0.10) 0%, rgba(26,45,92,0.55) 55%, rgba(26,45,92,0.92) 100%),
    linear-gradient(90deg, rgba(26,45,92,0.5), rgba(26,45,92,0) 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) var(--gutter) clamp(56px, 8vw, 100px);
}
.hero h1 {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 14ch;
}
.hero-sub {
  margin-top: 22px;
  color: #E2E8F0;
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 56ch;
  line-height: 1.55;
}
.hero-ctas {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* About hero variant (shorter, photo on top) */
.about-hero { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.about-hero-bg { position: absolute; inset: 0; z-index: 0; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,45,92,0.10) 0%, rgba(26,45,92,0.55) 55%, rgba(26,45,92,0.90) 100%);
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) var(--gutter) clamp(50px, 7vw, 80px);
}
.about-hero h1 {
  color: #fff;
  margin-top: 16px;
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.06;
  max-width: 18ch;
}
.about-hero-sub {
  margin-top: 18px;
  color: #E2E8F0;
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 60ch;
}

/* ----- Proof stat strip ----- */

.proof {
  background: var(--navy-dark);
  color: #fff;
}
.proof-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
.proof-item {
  text-align: center;
  position: relative;
}
.proof-item + .proof-item::before {
  content: "";
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: var(--navy-line);
}
.proof-big {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.proof-lbl {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93C5FD;
}

/* ----- Cards ----- */

.card-photo {
  margin: -28px -28px 20px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--surface-2);
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card {
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(53, 89, 177, .25);
}
.card-static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border-sft);
}
.card-top-stripe {
  position: relative;
  overflow: hidden;
}
.card-top-stripe::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.card-stripe-navy::before  { background: var(--navy); }
.card-stripe-green::before { background: var(--green); }

.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.card-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.card-kicker-green { color: var(--green-dark); }
.card-meta { color: var(--muted); font-size: 14px; font-weight: 500; }
.card-h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.card-h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.card-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}
.card-price {
  margin-left: auto;
  color: var(--navy);
  font-weight: 800;
  font-size: 18px;
}
.card-body {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
}
.card-body p { margin: 0 0 6px; }
.card-cta {
  margin-top: auto;
  padding-top: 18px;
  font-weight: 700;
  color: var(--navy);
  align-self: flex-start;
  text-decoration: none;
}
.card-cta-green { color: var(--green-dark); }
.card-cta:hover .arrow,
.card-link:hover .arrow { transform: translateX(4px); }

/* Fully-clickable card (whole tile is the link) */
a.card-link { text-decoration: none; color: inherit; }
a.card-link:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

.card-divider {
  border-top: 1px solid var(--border-sft);
  margin: 14px 0;
}

/* List with bullets (program "what's included") */
.bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: var(--ink-dim);
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.bullets li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 8px;
  flex-shrink: 0;
}
.bullets li.sub {
  color: var(--muted);
  padding-left: 16px;
  font-size: 14px;
}
.bullets li.sub::before { background: transparent; border: 1px solid var(--hint); }

.schedule-box {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--navy-soft);
  color: var(--ink-dim);
  font-size: 14px;
}
.schedule-box .kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

/* ----- Program grid ----- */

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

/* ----- Overview cards (Programs top) ----- */

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ----- Pathway stepper (homepage + pathway top) ----- */

.pathway {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}
.pathway::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.path-step {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.path-age {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.path-dot {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--surface);
  position: relative;
  line-height: 1;
}
.path-dot-sm { font-size: 14px; }
.pathway.on-white .path-dot { box-shadow: 0 0 0 6px #fff; }
.path-name {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.path-mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--navy-soft);
  color: var(--navy);
  margin-top: 12px;
}
.path-step .path-mini-pill { display: inline-flex; }
.path-step { display: flex; flex-direction: column; align-items: center; }
.path-mini-pill-comp { background: var(--green-soft); color: var(--green-dark); }

/* ----- Pathway long-form (player-pathway.html) ----- */

.path-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--border-sft);
}
.path-stage:last-of-type { border-bottom: 0; }
.path-stage .stage-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
}
.path-stage .stage-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.path-stage .stage-body {
  position: relative;
}
.stage-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.stage-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.stage-num {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}
.stage-section { margin-top: 24px; }
.stage-section .kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.stage-section p { margin: 0 0 4px; color: var(--ink-dim); }

.stage-h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin-top: 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.stage-meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 16px;
}

.stage-ctas {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ----- Callout boxes (Rec-Plus, Stage 3 choice, scholarship, etc.) ----- */

.callout {
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.callout-blue {
  background: var(--navy-soft);
  border: 1.5px dashed var(--navy);
}
.callout-green {
  background: var(--green-soft);
  border: 1.5px solid var(--green-dark);
}
.callout-navy {
  background: var(--navy-soft);
  border: 1.5px solid var(--navy);
}
.callout .kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}
.callout-green .kicker { color: var(--green-dark); }
.callout h2, .callout h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.callout p { color: var(--ink-dim); margin: 0 0 4px; font-size: 16px; }

/* Callout with a photo column (Programs → Rec Season details) */
.callout-with-photo {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.callout-photo {
  width: 160px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.callout .footnote {
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
}

.callout-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.callout-cols .col .kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}
.callout-cols .col p {
  color: var(--ink-dim);
  font-size: 15px;
  margin: 0 0 6px;
}

/* ----- This Season cards ----- */

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

/* ----- Instagram row (homepage) ----- */

.ig-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.6fr);
  gap: 24px;
  margin-top: 36px;
  align-items: center;
}
.ig-widget {
  width: 100%;
  min-height: 160px;
}
.ig-widget iframe { display: block; }
  gap: 20px;
  align-items: center;
}
.ig-copy h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.ig-copy .handle {
  margin-top: 6px;
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
}
.ig-copy .sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}
.ig-row .btn { margin-top: 22px; }
.ig-tile {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.ig-tile:hover img { transform: scale(1.04); }

/* ----- Summer Camps band (homepage) + feature (programs) ----- */

.camps-band {
  background: var(--navy-soft);
  border-top: 4px solid var(--green);
  padding: clamp(48px, 6vw, 80px) 0;
}
.camps-band .section-h2 { color: var(--ink); }
.camps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.camp-card {
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.camp-dates {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 4px;
}
.camp-meta {
  color: var(--ink-dim);
  font-size: 15px;
  margin: 0;
}
.camp-cta {
  margin-top: 14px;
  align-self: stretch;
  justify-content: center;
}
.camp-footnote {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

/* Programs page — featured camp card */
.camp-feature {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  overflow: hidden;
}
.camp-feature-stripe {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--green);
}
.camp-feature-head { margin-top: 4px; }
.camp-sessions-strip {
  margin: 24px 0;
  padding: 16px 20px;
  background: var(--navy-soft);
  border: 1px solid var(--navy);
  border-radius: var(--r);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
}
.camp-sessions-strip .kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.camp-sessions-body {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}
.camp-feature-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.camp-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 10px 0 8px;
}
.footnote-sm {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 0;
}

/* ----- Testimonials ----- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.quote {
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-size: 56px;
  line-height: 0.6;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 700;
}
.quote-text {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.55;
  flex: 1;
}
.quote-attrib {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

/* ----- Visit / map block (homepage) ----- */

.visit-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.visit-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 360px;
}
.visit-photo img { width: 100%; height: 100%; object-fit: cover; }
.visit-info {
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.visit-info h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.visit-info .address { color: var(--ink-dim); font-size: 15.5px; line-height: 1.6; margin-bottom: 22px; }
.visit-info .meta {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border-sft);
  padding-top: 18px;
  margin-top: auto;
  margin-bottom: 18px;
}
.visit-info .meta strong {
  display: block;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ----- Sponsors / affiliates ----- */

.sponsors {
  border-top: 1px solid var(--border-sft);
  padding: 56px 0 80px;
}
.sponsors-label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.sponsor-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.sponsor-slot {
  height: 64px;
  background: var(--surface-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  color: var(--hint);
  letter-spacing: 0.1em;
}

/* Live sponsor logo grid (homepage) — 5 × 3, fit-inside */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.sponsor-cell {
  height: 96px;
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: box-shadow .2s ease, border-color .2s ease, transform .15s ease;
}
a.sponsor-cell:hover {
  box-shadow: var(--shadow);
  border-color: rgba(53, 89, 177, .25);
  transform: translateY(-2px);
  text-decoration: none;
}
.sponsor-cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.affiliate-card {
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: 8px;
  height: 96px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.affiliate-card img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;
}

/* ----- Bumper sticker (About) ----- */

.bumper {
  background: var(--green-soft);
  padding: clamp(48px, 6vw, 72px) var(--gutter);
  text-align: center;
}
.bumper .eyebrow {
  color: var(--green-dark);
  display: block;
  margin-bottom: 16px;
}
.bumper-quote {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 24ch;
  margin: 0 auto;
}

/* ----- Story body (About) ----- */

.story {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.story p { margin: 0 0 18px; }

/* ----- Staff cards (About) ----- */

.staff-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-top: 24px;
}
.staff-photo {
  width: 100%;
  aspect-ratio: 5 / 6;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
}
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-photo-placeholder {
  width: 100%;
  aspect-ratio: 5 / 6;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--hint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.staff-photo-placeholder span { display: block; }
.staff-photo-placeholder span:last-child { margin-top: 6px; font-weight: 500; letter-spacing: 0; text-transform: none; font-size: 13px; color: var(--muted); }

.staff-body .kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.staff-body .name {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.staff-body .bio { color: var(--ink-dim); font-size: 16px; line-height: 1.6; }
.staff-body .bio p { margin: 0 0 12px; }
.staff-body .bio-placeholder {
  color: var(--muted);
  font-style: italic;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
  margin-top: 24px;
}
.board-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.board-grid li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ----- Tryouts: status banner ----- */

.status-banner {
  background: var(--navy-soft);
  border: 1.5px solid var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.status-banner h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.status-banner p { color: var(--ink-dim); margin: 0 0 2px; font-size: 16px; }

/* ----- Age matrix (Tryouts) ----- */

.matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.matrix-cell {
  border-radius: var(--r);
  padding: 18px 14px;
  text-align: center;
  border: 1px solid;
}
.matrix-cell.rec  { background: var(--green-tint); border-color: var(--green); }
.matrix-cell.united { background: var(--true-blue-soft); border-color: var(--true-blue); }
.matrix-age {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.matrix-date {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.4;
}
.matrix-tier {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
}
.matrix-cell.rec .matrix-tier { color: var(--green); }
.matrix-cell.united .matrix-tier { color: var(--true-blue); }
.matrix-legend {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-dim);
  flex-wrap: wrap;
}
.matrix-legend .swatch {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 3px;
  border: 1px solid;
  margin-right: 6px;
  vertical-align: -2px;
}
.matrix-legend .swatch.rec { background: var(--green-tint); border-color: var(--green); }
.matrix-legend .swatch.united { background: var(--true-blue-soft); border-color: var(--true-blue); }

/* ----- Schedule cards (Tryouts) ----- */

.schedule-banner {
  background: var(--navy-soft);
  border: 1px solid var(--navy);
  border-radius: var(--r);
  padding: 14px 20px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 24px;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.schedule-card {
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  overflow: hidden;
  opacity: 0.78;
}
.schedule-card-head {
  background: var(--surface-2);
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-sft);
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  font-size: 14px;
  text-transform: uppercase;
}
.schedule-card-body { padding: 22px; }
.schedule-slot { margin-bottom: 22px; }
.schedule-slot:last-child { margin-bottom: 0; }
.schedule-slot .time {
  background: var(--surface-2);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-weight: 700;
  color: var(--ink-dim);
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.schedule-slot ul { padding: 0; margin: 0; list-style: none; }
.schedule-slot ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  color: var(--muted);
  font-size: 14px;
}
.schedule-slot ul li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--hint);
  flex-shrink: 0;
}

/* ----- What to expect cards (Tryouts) ----- */

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

/* ----- About program section (Tryouts) ----- */

.about-program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.about-program-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.about-program-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ----- FAQ ----- */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  margin-top: 24px;
}
.faq h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.faq p { color: var(--ink-dim); font-size: 15px; line-height: 1.55; }

/* ----- Bottom CTA strip (navy band) ----- */

.cta-strip {
  background: var(--navy);
  color: #fff;
  padding: clamp(48px, 6vw, 80px) 0;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-strip p {
  margin-top: 12px;
  color: #C7D2FE;
  font-size: 17px;
  max-width: 58ch;
}
.cta-strip .ctas {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ----- Forms ----- */

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
}
.form-row input,
.form-row textarea,
.form-row select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(53, 89, 177, .12);
}
.form-row textarea { min-height: 110px; resize: vertical; }

/* Contact-page two-card layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  padding: 36px;
}
.contact-card h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.contact-card .info-block { margin-bottom: 20px; }
.contact-card .info-block .kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-card .info-block p { color: var(--ink-dim); font-size: 15.5px; line-height: 1.5; margin: 0; }
.contact-card .info-block a { color: var(--ink-dim); }
.contact-card .info-block a:hover { color: var(--navy); }

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.social-btn {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  border: 0;
  transition: background-color .2s ease;
}
.social-btn:hover { background: var(--navy-dark); text-decoration: none; }
.social-btn svg { width: 18px; height: 18px; }

/* Interest cards (Contact) */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.interest-card {
  background: #fff;
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.interest-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
}
.interest-card .kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: 4px;
  margin-bottom: 8px;
}
.interest-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.interest-card p {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.5;
  flex: 1;
  margin: 0 0 18px;
}

/* ----- Footer ----- */

.footer {
  background: var(--navy-deep);
  color: #CBD5E1;
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer-logo { width: 56px; height: 56px; flex-shrink: 0; }
.footer-brand-text h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 800;
}
.footer-brand-text p {
  color: var(--hint);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}
.footer-contact {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: #CBD5E1;
}
.footer-contact a { color: #CBD5E1; }
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  color: #CBD5E1;
  font-size: 14px;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--hint);
  font-size: 13px;
}
.footer-bottom a { color: inherit; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  transition: background-color .2s ease;
}
.footer-social a:hover { background: rgba(255,255,255,.1); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; }

/* ----- Responsive ----- */

@media (max-width: 1024px) {
  .programs-grid,
  .interest-grid,
  .affiliate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .camps-grid,
  .camp-feature-cols {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .programs-grid[style*="repeat(3"] { grid-template-columns: repeat(2, 1fr) !important; }
  .ig-row { grid-template-columns: 1fr; }
  .ig-copy { grid-column: 1 / -1; }
  .sponsor-row { grid-template-columns: repeat(4, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .matrix { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  .nav, .header-actions .login { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 88px;
    left: 0; right: 0;
    background: #fff;
    padding: 16px var(--gutter);
    gap: 4px;
    border-bottom: 1px solid var(--border-sft);
    align-items: stretch;
  }
  .nav.open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-sft);
    font-size: 16px;
  }
  .nav.open a:last-child { border-bottom: 0; }
  .nav.open a.active::after { display: none; }
}

@media (max-width: 900px) {
  .pathway { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .pathway::before { display: none; }

  .programs-grid, .programs-grid-2 { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .findus-grid { grid-template-columns: 1fr; }
  .findus-map { min-height: 280px; }

  .expect-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .matrix { grid-template-columns: repeat(2, 1fr); }
  .callout-cols { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; }
  .callout-with-photo { grid-template-columns: 1fr; justify-items: start; }

  .sched-grid { grid-template-columns: 1fr; }
  .reg-timeline { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .waitlist-grid { grid-template-columns: 1fr; }
  .mtk-grid { grid-template-columns: 1fr; }
  .addon-meta { grid-template-columns: 1fr 1fr; }

  .path-stage { grid-template-columns: 1fr; }
  .about-program { grid-template-columns: 1fr; }

  .staff-card { grid-template-columns: 1fr; }
  .staff-photo, .staff-photo-placeholder { aspect-ratio: 5 / 4; }

  .interest-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .proof-inner { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .proof-item:nth-child(3)::before { display: none; }

  .now-cta { display: none; }

  /* About: NEJSO badge stacks above story on mobile */
  .story[style*="grid-template-columns: 140px"] { grid-template-columns: 1fr !important; }
  .story[style*="grid-template-columns: 140px"] figure { margin-bottom: 8px !important; }
}

@media (max-width: 560px) {
  .brand-name { font-size: 16px; }
  .brand-logo { width: 44px; height: 44px; }
  .header-actions .btn { display: none; }
  .header-actions .btn.btn-register-mobile { display: inline-flex; }

  .pathway { grid-template-columns: 1fr; }
  .sponsor-row { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .affiliate-grid { grid-template-columns: 1fr 1fr; }
  .ig-row { grid-template-columns: 1fr; }
  .interest-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .matrix { grid-template-columns: 1fr; }
  .reg-timeline { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-ctas .btn { flex: 1; }
}

/* ----- Header CTA stacked-label button (subtitle inside the button) ----- */

.btn-stacked {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  height: auto;
  min-height: 56px;
  line-height: 1.15;
  gap: 2px;
}
.btn-stacked .btn-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C7D2FE;
  white-space: nowrap;
}

/* ----- Bumper sticker image band (About) ----- */

.bumper-image-band {
  background: #4F8C82;
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  text-align: center;
}
.bumper-image-band img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
}
.bumper-image-caption {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D6F2E0;
}

/* ----- Our Story 2-column (narrative left, NEJSO badge right) ----- */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  max-width: 1120px;
}
.story-grid .story-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.story-grid .story-body p { margin: 0 0 18px; }
.story-grid .story-badge {
  margin: 0;
  text-align: center;
  position: sticky;
  top: 24px;
}
.story-grid .story-badge img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.story-grid .story-badge figcaption {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 880px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-grid .story-badge { order: -1; position: static; }
  .story-grid .story-badge img { max-width: 240px; }
}

/* ----- CTA-strip hint copy (Programs bottom strip) ----- */

.cta-strip .cta-hint {
  margin-top: 16px;
  font-size: 14px;
  font-style: italic;
  color: #C7D2FE;
  max-width: 78ch;
}

/* ----- Age matrix override: uniform neutral cells ----- */

.matrix-cell {
  background: var(--surface-2);
  border-color: var(--border-sft);
}
.matrix-cell.rec,
.matrix-cell.united {
  background: var(--surface-2);
  border-color: var(--border-sft);
}
.matrix-cell.rec .matrix-tier,
.matrix-cell.united .matrix-tier { color: var(--ink-dim); }

/* ----- Contact: Find Us (map + address card) ----- */
.findus-grid { display: grid; grid-template-columns: 62% 1fr; gap: 24px; margin-top: 32px; align-items: stretch; }
.findus-map { background:#fff; border:1px solid var(--border-sft); border-radius: var(--r-lg); padding: 8px; overflow:hidden; min-height: 360px; }
.findus-map img { width:100%; height:100%; object-fit: contain; border-radius: 10px; display:block; }
.findus-card { background:#fff; border:1px solid var(--border-sft); border-radius: var(--r-lg); padding: 32px; display:flex; flex-direction:column; }
.findus-card .info-block { margin-bottom: 22px; }
.findus-card .info-block .kicker { display:block; font-size:11px; font-weight:800; letter-spacing:0.14em; text-transform:uppercase; color:var(--green-dark); margin-bottom:6px; }
.findus-card .info-block p { color: var(--ink-dim); font-size: 15.5px; line-height: 1.5; margin: 0; }
.findus-card .findus-cta { margin-top: auto; align-self: flex-start; }
.findus-card .findus-ctas { margin-top: auto; display: flex; gap: 12px; flex-wrap: wrap; }
.findus-card .findus-ctas .findus-cta { margin-top: 0; }
.findus-card .info-block p a { color: var(--navy); font-weight: 600; }

/* ----- Rec Season: schedule grid ----- */
.sched-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.sched-card { background:#fff; border:1px solid var(--border-sft); border-radius: var(--r-lg); padding: 26px 28px; }
.sched-card.is-tba { background: var(--surface); border-style: dashed; border-color: var(--border); }
.sched-head { display:flex; align-items:center; gap:12px; margin-bottom: 14px; flex-wrap: wrap; }
.sched-eyebrow { font-size:11px; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--navy); }
.sched-pattern { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0; }
.sched-meta { color: var(--muted); font-size: 14px; margin: 2px 0 14px; }
.sched-list { display:flex; flex-direction:column; gap: 7px; margin: 0; padding: 0; list-style: none; }
.sched-row { font-size: 15px; color: var(--ink); font-weight: 600; }
.sched-row .note { display:block; color: var(--muted); font-size: 13px; font-weight: 400; padding-left: 16px; margin-top: 1px; }
.sched-tba { text-align:center; padding: 28px 0 10px; }
.sched-tba .lbl { font-size: 17px; font-weight: 800; color: var(--muted); letter-spacing:-0.01em; }
.sched-tba p { margin: 10px auto 0; max-width: 38ch; color: var(--muted); font-size: 14px; line-height:1.5; }
.ballsize-list { display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.ballsize-list .brow { display:flex; justify-content:space-between; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--border-sft); border-radius:8px; padding:10px 14px; }
.ballsize-list .brow .age { font-size:14px; color:var(--ink); font-weight:600; }
.ballsize-list .brow .sz { font-size:13px; color:var(--navy); font-weight:800; }

/* ----- Rec Season: registration timeline ----- */
.reg-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.reg-item { position: relative; }
.reg-active-label { display: none; position: absolute; top: -22px; left: 2px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-dark); }
.reg-item.is-active .reg-active-label { display: block; }
.reg-card { position: relative; background:#fff; border:1px solid var(--border-sft); border-radius: var(--r-lg); padding: 24px 22px; overflow: hidden; height: 100%; }
.reg-item.is-active .reg-card { border-color: var(--green); box-shadow: 0 0 0 3px var(--green); }
.reg-stripe { position:absolute; top:0; left:0; right:0; height:4px; }
.reg-green .reg-stripe { background: var(--green); }
.reg-amber .reg-stripe { background: #D97706; }
.reg-navy .reg-stripe { background: var(--navy); }
.reg-kicker { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.reg-window { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing:-0.01em; line-height: 1.2; }
.reg-cost { margin: 10px 0 0; font-weight: 700; font-size: 14px; }
.reg-green .reg-cost { color: var(--green-dark); }
.reg-amber .reg-cost { color: #B45309; }
.reg-navy .reg-cost { color: var(--navy); }
.reg-note { margin: 8px 0 0; color: var(--ink-dim); font-size: 14px; line-height: 1.5; }
.reg-footnote { text-align:center; margin-top: 24px; color: var(--muted); font-size: 14px; }

/* ----- Rec Season: waitlist block (state-driven; shown only when waitlist stage) ----- */
.waitlist-block { display: none; }
body.is-waitlist .waitlist-block { display: block; }
.waitlist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; margin: 16px 0; }

/* ----- Rec Add-Ons stacked cards ----- */
.addon-stack { display: flex; flex-direction: column; gap: 24px; }
.addon-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 20px 0 4px; }
.addon-meta .lbl { display:block; font-size:11px; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:4px; }
.addon-meta p { margin:0; font-size:15px; color:var(--ink); font-weight:600; line-height:1.35; }
.addon-ctas { display:flex; flex-wrap:wrap; align-items:center; gap:14px 22px; margin-top:20px; }
.addon-note { color: var(--ink-dim); font-size: 14px; line-height: 1.5; margin: 8px 0 0; }

/* ----- Rec Season: "More to know" ----- */
.mtk-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:32px; }
.mtk-card { background:#fff; border:1px solid var(--border-sft); border-radius:var(--r-lg); padding:26px 28px; }
.mtk-card .kicker { display:block; font-size:11px; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--navy); margin-bottom:8px; }
.mtk-card p { margin:0; color:var(--ink-dim); font-size:15px; line-height:1.55; }
.ballsize-row { display:flex; gap:28px; flex-wrap:wrap; margin-top:10px; }
.ballsize-row .bs { font-size:14px; color:var(--muted); }
.ballsize-row .bs strong { display:block; color:var(--ink); font-size:16px; }

/* ----- Tryouts page state toggle (active / offseason) ----- */
/* Default = offseason: active-only blocks hidden until JFC flips PAGE_STATE. */
.ts-active { display: none; }
[data-tryouts-state="active"] .ts-active { display: block; }
[data-tryouts-state="active"] .ts-offseason { display: none; }
[data-tryouts-state="active"] .schedule-card { opacity: 1; }
.status-banner-open { background: var(--green-soft); border-color: var(--green-dark); }

/* Small helpers */
.mt-6 { margin-top: 6px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.text-center { text-align: center; }
.green-text { color: var(--green-dark); }
.muted-text { color: var(--muted); }

/* ----- Tighter vertical rhythm (~5–8% shorter pages) -----
   Applied per-page via <body class="tight-sections">. Mirrors the MS Rush
   density pass. Left OFF for About / Contact / Rec Season (already tight). */
.tight-sections section { padding: clamp(40px, 5vw, 64px) 0; }
.tight-sections section.compact { padding: clamp(24px, 3vw, 40px) 0; }
.tight-sections .section-head { margin-bottom: 4px; }
/* Page intro band (breadcrumb + H1 + sub): 220 → 180 */
.tight-sections .page-header { padding: clamp(40px, 5.5vw, 68px) 0 clamp(28px, 3.5vw, 40px); }
/* Bottom navy CTA strip: trim ~10% */
.tight-sections .cta-strip { padding: clamp(40px, 5vw, 64px) 0; }
/* Sponsors / footer-adjacent strip: 150 → 130 */
.tight-sections .sponsors { padding: 44px 0 60px; }
#mail-to-club { scroll-margin-top: 104px; }

/* ----- Rec Season: 2-column intro (photo + heading/CTA) ----- */
.recseason-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.recseason-intro-photo {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.recseason-intro-copy .breadcrumb { margin-bottom: 14px; }
.recseason-ctas {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.recseason-register {
  width: 260px;
  max-width: 100%;
  height: 48px;
}
.recseason-addons {
  height: 48px;
  background: #fff;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
@media (max-width: 680px) {
  .recseason-intro { grid-template-columns: 1fr; gap: 24px; }
  .recseason-intro-photo { width: 180px; height: 230px; }
}

/* ----- MS Rush: intro text + celebration photo, side by side ----- */
.msrush-intro {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
.msrush-joy-photo {
  display: block;
  width: 300px;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 14px;
  justify-self: end;
}
@media (max-width: 720px) {
  .msrush-intro { grid-template-columns: 1fr; }
  .msrush-joy-photo { justify-self: center; height: 360px; min-height: 0; width: 260px; }
}

/* ----- Tournaments: in-game action photo band ----- */
.tournament-photo {
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
}
.tournament-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}
@media (max-width: 640px) {
  .tournament-photo { height: 260px; }
}

/* ============================================================================
   Fields page — live field-status band, calendar, schedule rows
   ============================================================================ */
.fields-status-section { padding-top: 0; }

#field-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3vw, 34px) clamp(22px, 3vw, 32px);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--green-dark);
  background: var(--green-soft);
}
#field-status[data-state="limited"] { background: var(--amber-soft); border-color: var(--amber-dark); }
#field-status[data-state="closed"]  { background: var(--red-soft);  border-color: var(--red-dark); }

.fs-top { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.fs-pill {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 18px;
  border-radius: 16px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
}
#field-status[data-state="limited"] .fs-pill { background: var(--amber-dark); }
#field-status[data-state="closed"]  .fs-pill { background: var(--red-dark); }

.fs-timestamp { font-size: 14px; font-weight: 600; color: var(--green-dark); }
#field-status[data-state="limited"] .fs-timestamp { color: var(--amber-dark); }
#field-status[data-state="closed"]  .fs-timestamp { color: var(--red-dark); }
.fs-timestamp:empty { display: none; }

.fs-label { font-size: clamp(24px, 3vw, 30px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-top: 20px; }
.fs-note { margin-top: 10px; font-size: 16px; font-weight: 600; color: var(--ink); max-width: 72ch; }
.fs-help { margin-top: 10px; font-size: 15px; color: var(--ink-dim); max-width: 74ch; }
.fs-hotline { flex-shrink: 0; }

@media (max-width: 768px) {
  #field-status { flex-direction: column; align-items: flex-start; gap: 22px; }
  .fs-hotline { width: 100%; justify-content: center; }
}

/* Calendar embed */
.fs-calendar-wrap {
  border: 1px solid var(--border-sft);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.fs-calendar-wrap iframe { width: 100%; height: 600px; border: 0; display: block; }
.fs-calendar-fallback { margin-top: 16px; font-size: 15px; color: var(--muted); }
.fs-calendar-fallback a { font-weight: 600; }

/* Game schedule rows */
.fs-schedule { padding: 8px clamp(16px, 2vw, 28px); }
.fs-sched-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-sft);
}
.fs-sched-row:last-of-type { border-bottom: 0; }
.fs-sched-age { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.fs-sched-link { font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.fs-sched-link .arrow { transition: transform .15s ease; }
.fs-sched-link:hover { text-decoration: none; }
.fs-sched-link:hover .arrow { transform: translateX(4px); }
.fs-sched-footnote { margin-top: 18px; padding: 0 clamp(16px, 2vw, 28px) 4px; font-size: 14px; color: var(--muted); max-width: 88ch; }

@media (max-width: 640px) {
  .fs-sched-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .fs-sched-age { font-size: 18px; }
}

/* Field requests links */
.fs-requests-links { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 18px; }

/* Homepage mini indicator on the Visit JFC card */
.field-status-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid var(--border-sft);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-dim);
}
.field-status-mini:hover { border-color: var(--navy); color: var(--navy); text-decoration: none; }
.fs-mini-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.field-status-mini[data-state="limited"] .fs-mini-dot { background: var(--amber); }
.field-status-mini[data-state="closed"]  .fs-mini-dot { background: var(--red); }
.fs-mini-label { color: var(--ink); }

/* ============================================================================
   Coaching Resources page — curriculum download list
   ============================================================================ */
.coach-resources {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-sft);
}
.coach-resource {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-sft);
}
.coach-resource-main { flex: 1; }
.coach-resource-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.coach-resource-title .arrow { transition: transform .15s ease; }
.coach-resource-title:hover { text-decoration: none; }
.coach-resource-title:hover .arrow { transform: translateX(4px); }
.coach-resource-desc { margin: 6px 0 0; color: var(--muted); font-size: 15px; line-height: 1.5; max-width: 80ch; }
.coach-resource-tag {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hint);
  padding-top: 2px;
}
.coach-ext-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 26px;
}
@media (max-width: 560px) {
  .coach-resource { flex-direction: column; gap: 6px; }
}

/* ============================================================================
   Mobile header fit + Find Us collapse
   Placed LAST so these override earlier same-specificity rules (notably the
   .findus-grid base rule, which is defined after the responsive block above).
   Fixes horizontal overflow on phones that pushed the hamburger off-screen.
   ============================================================================ */
@media (max-width: 1080px) {
  /* Push the actions group (login/register/hamburger) to the right edge and
     let the brand name truncate instead of forcing the row wider than the viewport. */
  .header-inner { gap: 16px; }
  .header-actions { margin-left: auto; flex-shrink: 0; }
  .brand { min-width: 0; flex-shrink: 1; }
  .brand-name { overflow: hidden; text-overflow: ellipsis; }
}

@media (max-width: 768px) {
  /* Find Us: single column on tablet/phone (override of the 62% / 1fr base). */
  .findus-grid { grid-template-columns: 1fr; }
  .findus-map { min-height: 280px; }
}

@media (max-width: 560px) {
  .header-inner { gap: 12px; }
  /* Compact the mobile register button so brand + button + hamburger fit one row. */
  .header-actions .btn.btn-register-mobile {
    flex-direction: row;
    height: 40px;
    padding-inline: 14px;
    font-size: 13.5px;
    gap: 0;
  }
  .header-actions .btn.btn-register-mobile .btn-sub { display: none; }
}
