/* ==========================================================================
   The Myrtle Beach Basketball Academy — Design System
   Style DNA: playful, rounded/pill, energetic  (ref: NY Preschool & Kids Club)
   Palette:   basketball orange + electric blue + emerald green on white
   Type:      Josefin Sans (headings) + Montserrat (body)
   ========================================================================== */

/* ------------------------------- Tokens ---------------------------------- */
:root {
  /* Brand */
  --orange:      #F15A22;
  --orange-dark: #D4470F;
  --orange-tint: #FFF3EA;
  --blue:        #0E63E6;
  --blue-dark:   #0A4FB8;
  --blue-tint:   #EAF2FE;
  --green:       #00BF63;
  --green-dark:  #00A855;
  --green-ink:   #067A42;

  /* Program accent set (one per card) */
  --c-orange: #F15A22;
  --c-blue:   #0E63E6;
  --c-teal:   #14B8A6;
  --c-purple: #7C5CFF;
  --c-pink:   #F0568C;
  --c-amber:  #F5A623;

  /* Neutrals */
  --ink:     #10203A;   /* headings */
  --body:    #47566B;   /* body text */
  --muted:   #5E6B80;   /* secondary text */
  --line:    #E6ECF4;   /* borders */
  --bg:      #FFFFFF;
  --bg-soft: #F5F8FD;   /* section tint */
  --bg-navy: #10203A;   /* dark sections / footer */

  /* Type */
  --font-head: 'Josefin Sans', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  /* Radii — pill-forward */
  --r-pill: 100em;
  --r-lg:   28px;
  --r-md:   18px;
  --r-sm:   12px;

  /* Spacing scale (4/8) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  /* Shadows — soft, colorful-friendly */
  --sh-sm: 0 2px 8px rgba(16, 32, 58, .06);
  --sh-md: 0 12px 30px rgba(16, 32, 58, .10);
  --sh-lg: 0 24px 60px rgba(16, 32, 58, .14);
  --sh-orange: 0 14px 30px rgba(241, 90, 34, .30);
  --sh-blue:   0 14px 30px rgba(14, 99, 230, .28);

  --container: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-dark); }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* Skip to content (keyboard users) */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 0 0 10px 0; font-family: var(--font-head); font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 0; }

/* ---------------------------- Typography --------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.06;
  margin: 0 0 var(--s-4);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { margin: 0 0 var(--s-4); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--body); }
strong { color: var(--ink); font-weight: 700; }

/* ----------------------------- Layout ------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-5); }
.section   { padding-block: clamp(var(--s-8), 9vw, var(--s-9)); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: var(--s-7); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 640px; }
.measure-wide { max-width: 760px; }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Eyebrow / pill label */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-head);
  font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: #B93C0C;
  background: var(--orange-tint);
  padding: 7px 16px; border-radius: var(--r-pill);
  margin-bottom: var(--s-4);
}
.eyebrow--blue { color: var(--blue-dark); background: var(--blue-tint); }
.eyebrow--lime { color: var(--green-ink); background: #E3F7EE; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ----------------------------- Buttons ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  padding: 15px 30px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--orange-dark); color: #fff; box-shadow: var(--sh-orange); }
.btn-primary:hover { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); transform: translateY(-2px); }

.btn-blue { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-blue:hover { background: var(--orange); color: #fff; box-shadow: var(--sh-orange); transform: translateY(-2px); }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--sh-sm); }

.btn-white { background: #fff; color: var(--orange-dark); box-shadow: var(--sh-md); }
.btn-soon { background: var(--bg-soft); color: var(--muted); box-shadow: none; cursor: default; pointer-events: none; }
.btn-white:hover { background: var(--green); color: var(--ink); transform: translateY(-2px); }
.btn-outline-orange { background: #fff; color: var(--orange-dark); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange-tint); border-color: var(--orange); color: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--sh-sm); }

/* Registration modal */
.reg-modal[hidden] { display: none; }
.reg-modal { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: var(--s-4); }
.reg-modal__backdrop { position: absolute; inset: 0; background: rgba(16, 32, 58, .55); }
.reg-modal__card { position: relative; z-index: 1; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: clamp(var(--s-6), 5vw, 40px); max-width: 440px; width: 100%; text-align: center; }
.reg-modal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--bg-soft); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: background .2s var(--ease); }
.reg-modal__close:hover { background: var(--line); }
.reg-modal__title { font-size: 1.5rem; margin-bottom: var(--s-2); }
.reg-modal__sub { color: var(--muted); font-size: .95rem; margin-bottom: var(--s-6); }
.reg-modal__actions { display: flex; flex-direction: column; gap: var(--s-3); }
.reg-modal__actions .btn { width: 100%; }

.btn-lg { padding: 18px 38px; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ------------------------------ Header ----------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: var(--s-5); }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.06rem; line-height: 1.05; }
.brand:hover { color: var(--ink); }
.brand .logo { width: 46px; height: 46px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: var(--s-2); list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; color: var(--ink);
  padding: 9px 16px; border-radius: var(--r-pill); transition: all .2s var(--ease);
}
.nav-links a:hover { background: var(--bg-soft); color: var(--orange-dark); }
.nav-links a.active { color: #B93C0C; background: var(--orange-tint); }
.nav-cta { display: flex; align-items: center; gap: var(--s-3); }

.nav-toggle { display: none; width: 46px; height: 46px; border: none; background: var(--bg-soft); border-radius: var(--r-md); padding: 0; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 4px auto; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ------------------------------- Hero ------------------------------------ */
.hero { position: relative; padding-block: clamp(var(--s-7), 8vw, 90px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-8); align-items: center; }
.hero h1 { margin-bottom: var(--s-5); }
.hero h1 .hl { color: var(--orange); position: relative; white-space: nowrap; }
.hero h1 .hl-blue { color: var(--blue); }
.hero .lead { max-width: 30ch; margin-bottom: var(--s-6); }
.hero-logo { display: block; width: 100%; max-width: 420px; height: auto; margin-inline: auto; filter: drop-shadow(0 14px 30px rgba(16, 32, 58, .16)); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero-stats { display: flex; gap: var(--s-6); margin-top: var(--s-7); flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; color: var(--ink); line-height: 1; }
.hero-stat .lab { font-size: .84rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* Decorative blobs / court arcs */
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: -1; }

/* ------------------------------- Cards ----------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-6); box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }

.icon-badge {
  width: 62px; height: 62px; border-radius: 20px;
  display: grid; place-items: center; margin-bottom: var(--s-4);
  background: var(--orange-tint); color: var(--orange);
}
.icon-badge svg { width: 32px; height: 32px; }

/* Program card w/ colored top accent */
.program-card { position: relative; overflow: hidden; }
.program-card .icon-badge { transition: transform .3s var(--ease); }
.program-card:hover .icon-badge { transform: rotate(-6deg) scale(1.06); }
.program-card .age-pill {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  padding: 5px 14px; border-radius: var(--r-pill); background: var(--bg-soft); color: var(--ink);
  margin-bottom: var(--s-3);
}
.program-card h3 { font-size: 1.35rem; margin-bottom: var(--s-2); }
.program-card p { font-size: .96rem; margin-bottom: var(--s-4); }
.program-card .more { font-family: var(--font-head); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.program-card .more svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.program-card:hover .more svg { transform: translateX(4px); }
.program-card .card-price { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.2rem; margin: 0 0 var(--s-4); }
.program-card .card-price span { color: var(--orange-dark); }
.program-card .card-price small { font-weight: 600; color: var(--muted); font-size: .8rem; }
.program-card .card-price.soon { color: var(--muted); font-size: .98rem; font-weight: 600; }

/* color variants */
.acc-orange { --acc: var(--c-orange); --acc-tint: #FFF0E8; }
.acc-blue   { --acc: var(--c-blue);   --acc-tint: #E9F1FE; }
.acc-teal   { --acc: var(--c-teal);   --acc-tint: #E4FAF6; }
.acc-purple { --acc: var(--c-purple); --acc-tint: #EFEBFF; }
.acc-pink   { --acc: var(--c-pink);   --acc-tint: #FDEBF2; }
.acc-amber  { --acc: var(--c-amber);  --acc-tint: #FEF4E0; }
[class*="acc-"] .icon-badge { background: var(--acc-tint); color: var(--acc); }
[class*="acc-"] .more { color: var(--acc); }
[class*="acc-"]:hover { box-shadow: 0 18px 40px color-mix(in srgb, var(--acc) 22%, transparent); }

/* ---------------------- Age progression / journey ------------------------ */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); position: relative; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6) var(--s-5); text-align: center; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.step .ball {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto var(--s-4);
  display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  box-shadow: var(--sh-sm);
}
.step .age { font-family: var(--font-head); font-weight: 700; color: var(--orange-dark); font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
.step h3 { font-size: 1.25rem; margin: 4px 0 var(--s-3); }
.step p { font-size: .92rem; margin: 0; }

/* ----------------------------- Feature row ------------------------------- */
.feature { display: flex; gap: var(--s-4); align-items: flex-start; }
.feature .icon-badge { flex: none; margin-bottom: 0; }
.feature h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature p { font-size: .96rem; margin: 0; }

/* ---------------------------- Split / media ------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
.split.reverse .split-media { order: 2; }
.media-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); background: var(--blue-tint); }
.checklist { list-style: none; display: grid; gap: var(--s-3); margin-top: var(--s-5); }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checklist .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green); display: grid; place-items: center; margin-top: 2px; }
.checklist .tick svg { width: 15px; height: 15px; color: var(--ink); }

/* ----------------------------- Testimonials ------------------------------ */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: var(--s-4); }
.stars { display: flex; gap: 3px; color: var(--c-amber); }
.stars svg { width: 20px; height: 20px; }
.quote-card blockquote { margin: 0; font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.who .avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; }
.who .name { font-family: var(--font-head); font-weight: 700; color: var(--ink); line-height: 1.1; }
.who .role { font-size: .82rem; color: var(--muted); }

/* ------------------------------- CTA band -------------------------------- */
.cta-band { position: relative; background: var(--bg-navy); border-radius: var(--r-lg); padding: clamp(var(--s-7), 6vw, var(--s-9)); overflow: hidden; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); }
.cta-band .container-inner { position: relative; z-index: 2; max-width: 640px; }
.cta-band .court-arc { position: absolute; right: -60px; bottom: -120px; width: 340px; height: 340px; border: 3px dashed rgba(255,255,255,.16); border-radius: 50%; }
.cta-band .court-arc.two { right: 40px; bottom: -40px; width: 180px; height: 180px; }

/* ------------------------------- Stats band ------------------------------ */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); text-align: center; }
.stat-big .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--ink); line-height: 1; }
.stat-big .num em { font-style: normal; color: var(--orange); }
.stat-big .lab { color: var(--muted); font-weight: 600; margin-top: 6px; }

/* -------------------------------- FAQ ------------------------------------ */
.faq { display: grid; gap: var(--s-3); }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: var(--s-5); font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); }
.faq-q .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--orange-tint); color: var(--orange); display: grid; place-items: center; transition: transform .3s var(--ease); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 var(--s-5) var(--s-5); color: var(--body); }

/* --------------------------- Page hero (inner) --------------------------- */
.page-hero { position: relative; padding-block: clamp(var(--s-7), 7vw, var(--s-8)); background: var(--bg-soft); overflow: hidden; }
.page-hero .eyebrow { margin-bottom: var(--s-4); }
.page-hero h1 { margin-bottom: var(--s-4); }
.page-hero p { max-width: 620px; }
.breadcrumb { list-style: none; display: flex; gap: 8px; font-size: .86rem; color: var(--muted); margin-bottom: var(--s-4); font-weight: 600; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange-dark); }

/* ------------------------------- Footer ---------------------------------- */
.site-footer { background: var(--bg-navy); color: rgba(255,255,255,.7); padding-block: var(--s-8) var(--s-6); margin-top: var(--s-8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-6); }
.site-footer .brand { color: #fff; margin-bottom: var(--s-4); }
.site-footer .brand small { color: var(--green); }
.footer-about { font-size: .95rem; max-width: 30ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--s-4); }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.72); font-weight: 500; }
.footer-col a:hover { color: var(--green); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: var(--s-4); }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; color: #fff; transition: all .25s var(--ease); }
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--s-7); padding-top: var(--s-5); display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a { color: rgba(255,255,255,.72); }

/* ------------------------------ Utilities -------------------------------- */
.tint-strip { height: 6px; background: linear-gradient(90deg, var(--orange), var(--c-amber) 30%, var(--green) 55%, var(--c-teal) 78%, var(--blue)); }
.eyebrow-center { display: flex; justify-content: center; }
.mb-0 { margin-bottom: 0; }
.mt-6 { margin-top: var(--s-6); }

/* --------------------- Shared page components ---------------------------- */
/* Tag / meta pills */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--s-4) 0; }
.tag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--ink); background: var(--bg-soft); border: 1px solid var(--line); padding: 7px 14px; border-radius: var(--r-pill); }
.tag svg { width: 15px; height: 15px; color: var(--orange); }

/* Anchor jump nav (programs page) */
.jump-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: var(--s-6); }
.jump-nav a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 10px 20px; border-radius: var(--r-pill); transition: all .2s var(--ease); }
.jump-nav a:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--sh-sm); }

/* Program detail block */
.prog { scroll-margin-top: 100px; }
.prog .price-note { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.15rem; margin-top: var(--s-4); }
.prog .price-note span { color: var(--orange-dark); }

/* Monthly registration */
.month-reg { margin-top: var(--s-5); }
.month-reg-title { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.15rem; margin-bottom: var(--s-3); }
.month-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--s-4); }
.month-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: var(--s-5); box-shadow: var(--sh-sm); }
.month-card.is-next { border: 2px solid var(--orange); }
.month-card .badge-next { align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; background: var(--orange-tint); color: var(--orange-dark); padding: 3px 12px; border-radius: var(--r-pill); margin-bottom: var(--s-3); }
.month-card .badge-later { align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; background: var(--bg-soft); color: var(--muted); padding: 3px 12px; border-radius: var(--r-pill); margin-bottom: var(--s-3); }
.month-card .m-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.3rem; line-height: 1.1; }
.month-card .m-dates { color: var(--body); font-size: .9rem; margin: 6px 0 3px; }
.month-card .m-time { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: .85rem; margin: 0 0 var(--s-3); }
.month-card .m-time svg { flex: none; }
.month-card .m-grades { align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; background: var(--blue-tint); color: var(--blue-dark); padding: 3px 12px; border-radius: var(--r-pill); margin: 2px 0 8px; }
.month-card .m-loc { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: .85rem; margin: 0 0 var(--s-3); }
.month-card .m-loc svg { flex: none; }
.month-card .m-price { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.35rem; margin-bottom: var(--s-4); }
.month-card .btn { margin-top: auto; width: 100%; }
.month-note { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .82rem; margin-top: var(--s-3); }
.month-note svg { flex: none; }

/* Schedule table */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--sh-sm); background: #fff; }
.schedule { width: 100%; border-collapse: collapse; min-width: 520px; }
.schedule caption { text-align: left; padding: var(--s-4) var(--s-5) 0; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.1rem; }
.schedule th, .schedule td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.schedule thead th { font-family: var(--font-head); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--bg-soft); }
.schedule tbody tr:last-child td { border-bottom: none; }
.schedule tbody tr:hover { background: var(--bg-soft); }
.schedule .age-cell { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.schedule .pill-cell { display: inline-block; padding: 4px 12px; border-radius: var(--r-pill); font-size: .82rem; font-weight: 600; background: var(--orange-tint); color: var(--orange-dark); }

/* Value cards (about) */
.value-card { text-align: left; }
.value-card h3 { font-size: 1.25rem; margin-bottom: var(--s-2); }
.value-card p { font-size: .96rem; margin: 0; }

/* Coaches */
.coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.coach-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 680px; margin-left: auto; margin-right: auto; }
.coach-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); text-align: center; box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.coach-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.coach-card .coach-photo { width: 100%; height: auto; aspect-ratio: 1000 / 668; object-fit: cover; border-radius: var(--r-md); margin: 0 0 var(--s-4); display: block; }
.coach-card h3 { font-size: 1.25rem; margin-bottom: 2px; }
.coach-card .role { font-family: var(--font-head); font-weight: 600; color: var(--orange-dark); font-size: .9rem; margin-bottom: var(--s-3); }
.coach-card p { font-size: .92rem; margin: 0; }

/* Contact info list */
.info-list { list-style: none; display: grid; gap: var(--s-4); }
.info-list li { display: flex; gap: var(--s-4); align-items: flex-start; }
.info-list .info-ic { flex: none; width: 48px; height: 48px; border-radius: 16px; background: var(--orange-tint); color: var(--orange); display: grid; place-items: center; }
.info-list .info-ic svg { width: 22px; height: 22px; }
.info-list .info-t { font-family: var(--font-head); font-weight: 700; color: var(--ink); line-height: 1.2; }
.info-list .info-d { color: var(--body); font-size: .96rem; }
.info-list a.info-d:hover { color: var(--orange-dark); }

/* Hours list */
.hours { list-style: none; display: grid; gap: 10px; }
.hours li { display: flex; justify-content: space-between; gap: var(--s-4); padding-bottom: 10px; border-bottom: 1px dashed var(--line); }
.hours li:last-child { border-bottom: none; }
.hours .day { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.hours .time { color: var(--body); }
.hours .closed { color: var(--muted); }

/* Map placeholder card */
.map-card { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); background: var(--blue-tint); min-height: 300px; }
.map-card svg { width: 100%; height: 100%; display: block; }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); color: var(--orange); }
.map-pin svg { width: 44px; height: 44px; filter: drop-shadow(0 6px 10px rgba(16,32,58,.25)); }

/* Big 404 */
.error-hero { text-align: center; padding-block: clamp(var(--s-8), 12vw, 140px); }
.error-hero .code { font-family: var(--font-head); font-weight: 700; font-size: clamp(5rem, 18vw, 11rem); line-height: 1; color: var(--orange); }

@media (max-width: 760px) {
  .coach-grid { grid-template-columns: 1fr; }
}

/* ---------------------------- Scroll reveal ------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ------------------------------ Responsive ------------------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-art { max-width: 460px; margin-inline: auto; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: var(--s-6); }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-desktop { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: var(--s-4); gap: 4px; box-shadow: var(--sh-md);
  }
  .site-header.open .nav-links a { padding: 13px 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--s-5); }
}
@media (max-width: 460px) {
  .journey { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .hero-cta .btn { width: 100%; }
}

/* --------------------------- Reduced motion ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
