/* =============================================================
   KICK IT KIDS SOCCER — STYLES
   green / black / white  ·  energetic, clean, parent-friendly
   ============================================================= */

:root {
  /* Brand */
  --green:        #19BE4B;   /* bright soccer green */
  --green-deep:   #0E8C39;   /* darker turf green (hovers) */
  --green-tint:   #E9F7EC;   /* faint green wash */
  --ink:          #0E1714;   /* near-black, slight charcoal-green */
  --navy:         #1A1F46;   /* deep navy — pulled from the logo */
  --ink-soft:     #41504B;   /* muted body on light */
  --paper:        #FFFFFF;
  --paper-2:      #F4F7F3;   /* off-white, green-leaning neutral */
  --line:         #E2E8E3;   /* hairline borders */
  --line-strong:  #CDD6CF;

  /* Status */
  --open:    #19BE4B;
  --wait:    #E8A21C;
  --closed:  #9AA3A0;

  --radius:   18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --btn-radius: 11px;
  --shadow:   0 1px 2px rgba(14,23,20,.04), 0 12px 30px rgba(14,23,20,.06);
  --shadow-lg: 0 24px 60px rgba(14,23,20,.12);

  --maxw: 1180px;
  --font-head: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
  white-space: nowrap;
}
.eyebrow::before {
  content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--green);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 14px 24px; border-radius: var(--btn-radius); border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--green); color: #04240E; box-shadow: 0 6px 18px rgba(25,190,75,.35); }
.btn-primary:hover { background: var(--green-deep); color: #fff; box-shadow: 0 10px 26px rgba(14,140,57,.4); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1c2c27; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-disabled { background: var(--paper-2); color: var(--closed); cursor: not-allowed; box-shadow: none; border-color: var(--line); }
.btn-disabled:hover { background: var(--paper-2); color: var(--closed); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 80px; position: relative; }

.logo { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.logo-img { height: 60px; width: auto; display: block; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: var(--ink);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.logo-mark::before { /* field stripe */
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 9px, rgba(255,255,255,.06) 9px 18px);
}
.logo-ball { width: 20px; height: 20px; border-radius: 50%; background: var(--green); position: relative; z-index: 1; box-shadow: 0 0 0 3px rgba(25,190,75,.25); }
.logo-text { line-height: .98; white-space: nowrap; }
.logo-text b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.logo-text span { display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-deep); }

.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav a {
  font-weight: 700; font-size: 13px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--navy); position: relative; padding: 6px 0; transition: color .15s; white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; border-radius: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { font-weight: 700; font-size: 14px; color: var(--navy); letter-spacing: .01em; white-space: nowrap; }
.header-phone:hover { color: var(--green-deep); }
.header-login { font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); white-space: nowrap; border-bottom: 2px solid transparent; padding-bottom: 2px; transition: border-color .15s, color .15s; }
.header-login:hover { color: var(--green-deep); border-color: var(--green); }
.header-cta .btn { text-transform: uppercase; letter-spacing: .05em; font-size: 13.5px; padding: 13px 22px; }

.mobile-wordmark { display: none; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .2s; }

.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 72px; background: var(--paper-2); position: relative; overflow: hidden; }
.hero::before { /* faint center line */
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
  background: linear-gradient(var(--line), transparent); opacity: 0; 
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--navy); font-weight: 700; font-size: 13.5px; letter-spacing: .01em;
  padding: 9px 16px 9px 14px; border-radius: 999px; white-space: nowrap;
}
.hero-badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); position: relative; flex: none; }
.hero-badge .pulse::after { content:""; position:absolute; inset:-5px; border-radius:50%; border:2px solid var(--green); animation: pulse 1.8s ease-out infinite; }
.hero h1 { font-size: clamp(40px, 5.4vw, 68px); }
.hero h1 .hl { color: var(--green-deep); }
.hero-sub { font-size: 19px; color: var(--ink-soft); margin-top: 22px; max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin-top: 26px; font-size: 15.5px; color: var(--ink-soft); max-width: 36em; line-height: 1.6; }
.hero-note strong { color: var(--navy); font-weight: 800; }

/* Photo / field card */
.hero-photo {
  position: relative; aspect-ratio: 4/4.3; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  background:
    radial-gradient(120% 90% at 30% 0%, #2bd35e 0%, #15a843 55%, #0c7d33 100%);
}
/* field markings */
.field-lines { position: absolute; inset: 0; }
.field-lines .stripe { position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(255,255,255,.05) 0 38px, transparent 38px 76px); }
.field-lines .circle { position: absolute; left: 50%; top: 46%; width: 150px; height: 150px; transform: translate(-50%,-50%); border: 3px solid rgba(255,255,255,.55); border-radius: 50%; }
.field-lines .spot { position: absolute; left: 50%; top: 46%; width: 9px; height: 9px; transform: translate(-50%,-50%); background: rgba(255,255,255,.7); border-radius: 50%; }
.field-lines .box { position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%); width: 60%; height: 90px; border: 3px solid rgba(255,255,255,.5); border-bottom: 0; border-radius: 8px 8px 0 0; }
.field-lines .midline { position: absolute; left: 0; right: 0; top: 46%; height: 3px; background: rgba(255,255,255,.45); }

.photo-slot {
  position: absolute; inset: 18px; border-radius: 20px;
  border: 2px dashed rgba(255,255,255,.65);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: #fff; text-align: center; padding: 20px;
}
.photo-slot .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.18); display: grid; place-items: center; }
.photo-slot code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12.5px; background: rgba(0,0,0,.28); padding: 5px 10px; border-radius: 7px; letter-spacing: .02em; }
.photo-slot .label { font-weight: 700; font-size: 15px; }

.enroll-badge {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); font-weight: 800; font-size: 13.5px;
  padding: 9px 15px; border-radius: 999px; box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.enroll-badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); position: relative; }
.enroll-badge .pulse::after { content:""; position:absolute; inset:-5px; border-radius:50%; border:2px solid var(--green); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0%{transform:scale(.6);opacity:.9} 100%{transform:scale(1.6);opacity:0} }

/* ---------- Section scaffolding ---------- */
.section { padding: 92px 0; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 46px); margin-top: 14px; }
.section-head p { font-size: 19px; color: var(--ink-soft); margin-top: 16px; }
.bg-alt { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: #fff; }

/* ---------- Mission ---------- */
.mission { background: var(--navy); color: #fff; padding: 92px 0; position: relative; overflow: hidden; }
.mission::after { content:""; position:absolute; right:-90px; top:-90px; width:300px; height:300px; border:2px solid rgba(255,255,255,.06); border-radius:50%; }
.mission .wrap { position: relative; z-index: 1; }
.mission-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; }
.mission h2 { font-size: clamp(30px, 3.7vw, 48px); line-height: 1.1; max-width: 11em; }
.mission h2 .hl { color: var(--green); }
.mission-body { color: rgba(255,255,255,.74); font-size: 18px; margin-top: 22px; max-width: 32em; }
.mission-photo {
  position: relative; aspect-ratio: 4/3.2; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(120% 90% at 30% 0%, #2bd35e 0%, #15a843 58%, #0c7d33 100%);
  box-shadow: var(--shadow-lg);
}
.mission-photo .photo-slot { inset: 16px; }
.ball-motif { position: absolute; right: -45px; bottom: -45px; width: 170px; height: 170px; border: 3px solid rgba(255,255,255,.28); border-radius: 50%; z-index: 2; }
.ball-motif::before { content:""; position:absolute; inset: 30px; border: 2px solid rgba(255,255,255,.2); border-radius: 50%; }

/* ---------- Program Types (offering) ---------- */
.prog-section {
  background: var(--paper);
  position: relative; overflow: hidden;
}
.prog-field-svg {
  position: absolute; width: 130%; max-width: 1500px;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  color: #000; opacity: 0.55;
  pointer-events: none; will-change: transform;
}
.prog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prog-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px 32px 36px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 2px 8px rgba(14,23,20,.04), 0 8px 24px rgba(14,23,20,.05);
  transition: box-shadow .2s, transform .2s;
}
.prog-card:hover { box-shadow: 0 4px 16px rgba(14,23,20,.08), 0 16px 40px rgba(14,23,20,.1); transform: translateY(-5px); border-color: var(--line-strong); }
.prog-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.prog-icon img { width: 38px; height: 38px; object-fit: contain; }
.prog-icon-green { background: var(--green-tint); color: var(--green-deep); }
.prog-icon-navy  { background: rgba(26,31,70,.1); color: var(--navy); }
.prog-icon-warm  { background: #fff3e0; color: #c67c00; }
.prog-card h3 {
  font-family: var(--font-head); font-size: 24px; font-weight: 700;
  color: var(--navy); letter-spacing: -.01em;
}
.prog-card > p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.6; flex: 1; }
.prog-link-cta {
  color: var(--green-deep); font-weight: 700; font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; transition: color .15s;
}
.prog-link-cta:hover { color: var(--green); }

/* ---------- Coach Bio ---------- */
.coach-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
.coach-photo {
  position: relative; aspect-ratio: 4/4.6; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #cfe9d6, #aedcba); box-shadow: var(--shadow-lg);
}
.coach-photo .photo-slot { border-color: rgba(14,23,20,.3); color: var(--ink); inset: 16px; }
.coach-photo .photo-slot .ico { background: rgba(14,23,20,.08); }
.coach-photo .photo-slot code { background: rgba(14,23,20,.08); color: var(--ink); }
.coach-photo .stripe-bg { position:absolute; inset:0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.25) 0 14px, transparent 14px 28px); }
.coach-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center top; border-radius:inherit; }

.trust-list { display: grid; gap: 14px; margin-top: 30px; }
.trust-list li { display: flex; align-items: flex-start; gap: 13px; list-style: none; font-weight: 600; font-size: 17px; }
.trust-list { padding: 0; }
.check { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--green-tint); display: grid; place-items: center; margin-top: 1px; }
.check svg { width: 15px; height: 15px; stroke: var(--green-deep); }

/* ---------- How It Works ---------- */
.steps { display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; transition: border-color .18s, box-shadow .18s, transform .18s;
}
.step:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateX(4px); }
.step-num {
  width: 56px; height: 56px; border-radius: 14px; flex: none;
  background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 24px;
  display: grid; place-items: center; position: relative;
}
.step:hover .step-num { background: var(--green); color: #04240E; }
.step h3 { font-size: 21px; }
.step p { color: var(--ink-soft); margin-top: 7px; font-size: 16.5px; }

/* ---------- Directory ---------- */
.dir-head { display: flex; flex-wrap: wrap; gap: 22px 36px; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; }
.dir-head h2 { font-size: clamp(30px, 3.6vw, 46px); }
.dir-head p { font-size: 18px; color: var(--ink-soft); margin-top: 13px; max-width: 30em; }
.dir-head .search-box { flex: 0 1 380px; }
.search-box { position: relative; max-width: 420px; width: 100%; }
.search-box svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; stroke: var(--ink-soft); pointer-events: none; }
.search-box input {
  width: 100%; font-family: var(--font-body); font-size: 17px; font-weight: 500;
  padding: 16px 18px 16px 50px; border: 2px solid var(--line-strong); border-radius: 12px;
  background: var(--paper); transition: border-color .15s, box-shadow .15s; color: var(--ink);
}
.search-box input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(25,190,75,.15); }
.dir-count { font-weight: 600; color: var(--ink-soft); font-size: 14.5px; margin-bottom: 26px; }
.dir-count b { color: var(--ink); }

.school-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.school-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.school-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.school-card.is-closed { opacity: .72; }
.school-card.is-closed:hover { transform: none; border-color: var(--line); box-shadow: none; }

.card-top { padding: 22px 24px 18px; border-bottom: 1px dashed var(--line); position: relative; }
.card-top::before { content:""; position:absolute; left:0; top:0; bottom:0; width:5px; background: var(--green); }
.school-card.is-waitlist .card-top::before { background: var(--wait); }
.school-card.is-closed .card-top::before { background: var(--closed); }
.card-name { font-size: 22px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-weight: 700; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.status-pill .d { width: 8px; height: 8px; border-radius: 50%; }
.s-open { background: var(--green-tint); color: var(--green-deep); }
.s-open .d { background: var(--open); }
.s-wait { background: #FBF1DA; color: #9a6a08; }
.s-wait .d { background: var(--wait); }
.s-closed { background: #EEF1EF; color: #6b736f; }
.s-closed .d { background: var(--closed); }

.card-rows { padding: 20px 24px; display: grid; gap: 14px; flex: 1; }
.card-row { display: flex; align-items: center; gap: 11px; font-size: 15.5px; }
.card-row .ri { display: grid; place-items: center; flex: none; }
.card-row .ri svg { width: 17px; height: 17px; stroke: var(--green-deep); }
.card-row .rk { color: var(--ink-soft); }
.card-row .rv { font-weight: 700; margin-left: auto; text-align: right; }
.card-foot { padding: 0 24px 24px; }

.dir-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
  border: 2px dashed var(--line-strong); border-radius: var(--radius); color: var(--ink-soft);
}
.dir-empty b { display: block; color: var(--ink); font-family: var(--font-head); font-size: 22px; margin-bottom: 8px; }
.dir-empty a { color: var(--green-deep); font-weight: 700; text-decoration: underline; }

/* ---------- Programs / Age groups ---------- */
.age-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.age-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.age-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-4px); }
.age-tag { font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--green-deep); background: var(--green-tint); padding: 5px 11px; border-radius: 999px; }
.age-card h3 { font-size: 28px; margin-bottom: 2px; }
.age-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green-deep); }
.age-card p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-top: 6px; }
.age-duration { font-size: 13px; font-weight: 600; color: var(--ink-soft); font-style: italic; margin-top: 2px; }

/* ---------- For Schools ---------- */
.for-schools { background: var(--green-tint); padding: 84px 0; }
.charity-banner-wrap { background: var(--paper); padding: 64px 0 72px; }
.charity-banner-img { display: block; width: 100%; max-width: 560px; margin: 0 auto; }
.fs-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 56px; align-items: center; }
.fs-kicker { display: inline-flex; align-items: center; background: #fff; border: 1px solid var(--line); color: var(--navy); font-weight: 700; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px; }
.for-schools h2 { font-size: clamp(28px, 3.3vw, 40px); max-width: 13em; line-height: 1.14; }
.for-schools p { font-size: 18px; color: var(--ink-soft); margin-top: 16px; max-width: 34em; }
.fs-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn-ghost-light { background: #fff; border-color: var(--line-strong); color: var(--navy); }
.btn-ghost-light:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.fs-points { list-style: none; padding: 28px; margin: 0; display: grid; gap: 15px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.fs-points li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; font-size: 16px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper); }
.testi-head { text-align: center; font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 48px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 28px 26px; position: relative; display: flex; flex-direction: column; gap: 16px;
}
.testi-card .quote-mark { font-family: var(--font-head); font-size: 56px; line-height: .55; color: var(--green); height: 26px; }
.testi-card blockquote { margin: 0; font-size: 17.5px; line-height: 1.55; color: var(--ink); font-weight: 500; text-wrap: pretty; }
.testi-card figcaption { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 4px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-tint); color: var(--green-deep); font-family: var(--font-head); font-weight: 800; font-size: 18px; display: grid; place-items: center; flex: none; }
.testi-card figcaption strong { display: block; font-size: 15.5px; }
.testi-card figcaption em { display: block; font-style: normal; font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; transition: border-color .18s; }
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow); }
.faq-q {
  display: flex; align-items: center; gap: 16px; width: 100%; text-align: left;
  background: none; border: 0; cursor: pointer; padding: 24px 26px;
  font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink);
}
.faq-q .toggle { margin-left: auto; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; transition: background .18s, transform .25s; }
.faq-item.open .faq-q .toggle { background: var(--green); transform: rotate(45deg); }
.faq-q .toggle svg { width: 16px; height: 16px; stroke: var(--ink); }
.faq-item.open .faq-q .toggle svg { stroke: #04240E; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 26px; color: var(--ink-soft); font-size: 17px; }

/* ---------- Contact CTA ---------- */
.contact { background: var(--green); color: #04240E; padding: 88px 0; position: relative; overflow: hidden; }
.contact::before { content:""; position:absolute; left:-60px; bottom:-90px; width:300px; height:300px; border:3px solid rgba(255,255,255,.25); border-radius:50%; }
.contact::after { content:""; position:absolute; right:-40px; top:-60px; width:200px; height:200px; border:3px solid rgba(255,255,255,.2); border-radius:50%; }
.contact .wrap { position: relative; z-index: 1; text-align: center; }
.contact h2 { font-size: clamp(30px, 4vw, 50px); }
.contact p { font-size: 19px; max-width: 34em; margin: 18px auto 0; color: #0b3a1b; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.contact .btn-dark { box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.contact .btn-white { background: #fff; color: var(--ink); }
.contact .btn-white:hover { background: var(--ink); color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #c7d0cb; padding: 60px 0 36px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo-text b { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: #c7d0cb; font-weight: 600; font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #c7d0cb; transition: background .18s, color .18s; }
.footer-social a:hover { background: var(--green); color: #04240E; }
.footer-social svg { width: 18px; height: 18px; }
.footer-note { margin-top: 28px; font-size: 14px; color: #8b948f; max-width: 60em; line-height: 1.7; }
.footer-bottom { margin-top: 26px; font-size: 13.5px; color: #6e776f; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #6e776f; text-decoration: underline; }
.footer-legal a:hover { color: #c7d0cb; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: #c7d0cb; font-size: 15px; font-weight: 600; }
.footer-contact a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { aspect-ratio: 16/12; max-width: 520px; }
  .mission-grid { grid-template-columns: 1fr; gap: 36px; }
  .mission-photo { max-width: 520px; aspect-ratio: 16/11; }
  .coach-grid { grid-template-columns: 1fr; gap: 36px; }
  .coach-photo { max-width: 420px; aspect-ratio: 5/4.84; }
  .coach-img { object-fit: cover; object-position: center top; }
  .school-grid { grid-template-columns: repeat(2, 1fr); }
  .age-grid { grid-template-columns: repeat(3, 1fr); }
  .prog-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .fs-grid { grid-template-columns: 1fr; gap: 36px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .dir-head { align-items: stretch; }
  .dir-head .search-box { flex: 1 1 auto; max-width: none; }
}
@media (max-width: 1200px) {
  .header-phone { display: none; }
}
@media (max-width: 1080px) {
  .header-login { display: none; }
}
@media (max-width: 820px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }
  .mobile-wordmark { display: block; height: 36px; width: auto; position: absolute; left: 50%; transform: translateX(-50%); pointer-events: none; }
  .mobile-nav.open { display: block; border-top: 1px solid var(--line); background: #fff; }
  .mobile-nav .wrap { padding-top: 14px; padding-bottom: 22px; display: grid; gap: 4px; }
  .mobile-nav-logo { display: flex; justify-content: center; padding: 10px 0 18px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
  .mobile-nav-logo img { height: 32px; width: auto; }
  .mobile-nav a { padding: 14px 6px; font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--line); }
  .mobile-nav .btn { margin-top: 14px; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 44px 0 52px; }
  .school-grid { grid-template-columns: 1fr; }
  .age-grid { grid-template-columns: 1fr; gap: 20px; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px; }
  .step-num { width: 44px; height: 44px; font-size: 20px; }
  .dir-toolbar { flex-direction: column; align-items: stretch; }
  .search-box { max-width: none; }
  .hero-actions .btn, .contact-actions .btn { flex: 1 1 auto; }
  .prog-cards { max-width: none; }
}

/* =============================================================
   REGISTRATION FORM — register.html / register.jsx
   ============================================================= */

/* ---- Page layout ---- */
.reg-main {
  background: var(--paper-2);
  padding: 52px 0 88px;
  min-height: calc(100vh - 83px);
}
.reg-page-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}
.reg-page-head h1 {
  font-size: clamp(32px, 4.2vw, 54px);
  color: var(--navy);
}
.reg-page-head p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.6;
}

/* ---- Form container ---- */
.reg-form {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

/* ---- Section card ---- */
.reg-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(14,23,20,.04);
}
.reg-section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.reg-section-num {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.reg-section-title {
  font-size: 20px;
  color: var(--navy);
  line-height: 1.2;
}
.reg-section-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 5px;
  line-height: 1.55;
}

/* ---- Fields grid ---- */
.reg-fields {
  padding: 28px 30px;
  display: grid;
  gap: 20px;
}
.reg-field { display: grid; gap: 6px; }

/* ---- Labels / hints / errors ---- */
.reg-label {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.3;
}
.reg-req { color: #b91c1c; font-weight: 700; }
.reg-hint {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.45;
}
.reg-error-msg {
  font-size: 13px;
  font-weight: 600;
  color: #b91c1c;
  display: flex;
  align-items: center;
  gap: 5px;
}
.reg-error-msg::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #b91c1c;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex: none;
}

/* ---- Inputs ---- */
.reg-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  padding: 13px 15px;
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  transition: border-color .14s, box-shadow .14s;
  -webkit-appearance: none;
  appearance: none;
}
.reg-input::placeholder { color: #9AA3A0; font-weight: 400; }
.reg-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(25,190,75,.14);
}
.has-error .reg-input {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185,28,28,.1);
}

/* Select arrow */
.reg-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2341504B' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

/* Textarea */
.reg-textarea {
  resize: vertical;
  min-height: 78px;
  line-height: 1.55;
}

/* ---- Consent boxes ---- */
.reg-consent-box {
  background: var(--green-tint);
  border: 1px solid rgba(25,190,75,.28);
  border-radius: 10px;
  padding: 20px 22px;
  display: grid;
  gap: 13px;
}
.reg-consent-box p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
}
.reg-legal-note {
  font-size: 12.5px !important;
  color: var(--ink-soft) !important;
  font-style: italic;
  border-top: 1px solid rgba(25,190,75,.2);
  padding-top: 11px;
  margin-top: 2px;
}

/* ---- Checkbox ---- */
.reg-check {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  transition: border-color .14s, background .14s;
  user-select: none;
}
.reg-check.is-checked {
  border-color: var(--green);
  background: var(--green-tint);
}
.has-error .reg-check { border-color: #b91c1c; }

.reg-check input[type="checkbox"] {
  width: 20px; height: 20px;
  border: 2px solid var(--line-strong);
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  margin-top: 1px;
  cursor: pointer;
  background: var(--paper);
  transition: background .13s, border-color .13s;
  position: relative;
}
.reg-check input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}
.reg-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304240E' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* ---- Radio group (photo consent) ---- */
.reg-photo-note {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.reg-radio-group { display: grid; gap: 12px; }

.reg-radio-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  transition: border-color .14s, background .14s;
  user-select: none;
}
.reg-radio-label.is-selected {
  border-color: var(--green);
  background: var(--green-tint);
}
.has-error .reg-radio-label { border-color: #b91c1c; }

.reg-radio-label input[type="radio"] {
  width: 20px; height: 20px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  margin-top: 2px;
  cursor: pointer;
  background: var(--paper);
  transition: background .13s, border-color .13s, box-shadow .13s;
  position: relative;
}
.reg-radio-label input[type="radio"]:checked {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--paper);
}

/* ---- Signature ---- */
.reg-agreement-text {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 4px;
}
.reg-signature-input {
  font-family: "Caveat", cursive;
  font-size: 24px;
  letter-spacing: .02em;
  padding: 14px 16px 10px;
}
.reg-datestamp {
  font-size: 14px;
  color: var(--ink-soft);
  padding-top: 4px;
}

/* ---- Privacy note ---- */
.reg-privacy-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  background: rgba(25,190,75,.07);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  margin: 0;
  line-height: 1.55;
}

/* ---- Error banner ---- */
.reg-error-banner {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #991B1B;
  line-height: 1.5;
}
.reg-error-banner a { color: #7F1D1D; font-weight: 700; text-decoration: underline; }

/* ---- Submit area ---- */
.reg-submit-area {
  text-align: center;
  padding: 8px 0 20px;
  display: grid;
  gap: 16px;
  justify-items: center;
}
.reg-submit-note {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 38em;
  margin: 0;
  line-height: 1.55;
}
.reg-submit-btn { min-width: 240px; }
.reg-has-errors {
  font-size: 13.5px;
  font-weight: 600;
  color: #b91c1c;
  margin: 0;
}

.reg-charity-note {
  margin: 20px 0 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.6;
}

/* ---- Success screen ---- */
.reg-success {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 20px;
  display: grid;
  gap: 16px;
  justify-items: center;
}
.reg-success-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 34px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 3px solid var(--green);
}
.reg-success h2 { font-size: 36px; color: var(--navy); }
.reg-success p  { font-size: 18px; color: var(--ink-soft); max-width: 34em; line-height: 1.65; }

/* ---- Responsive ---- */
@media (max-width: 620px) {
  .reg-fields { padding: 20px; gap: 18px; }
  .reg-section-head { padding: 18px 20px; gap: 14px; }
  .reg-section-num { width: 30px; height: 30px; font-size: 14px; border-radius: 8px; }
  .reg-section-title { font-size: 18px; }
  .reg-check, .reg-radio-label { font-size: 14.5px; padding: 14px 16px; }
  .reg-consent-box { padding: 16px; }
  .reg-signature-input { font-size: 20px; }
}

/* ---------- Program type tab switcher ---------- */
.reg-type-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.reg-type-tab {
  flex: 1 1 auto;
  padding: 12px 18px;
  border: 2px solid var(--line, #E2E8E3);
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
}
.reg-type-tab:hover { border-color: var(--green); color: var(--green-deep); }
.reg-type-tab.active { border-color: var(--green); background: var(--green-tint); color: var(--green-deep); }

/* ---------- Disclaimer box ---------- */
.reg-disclaimer {
  margin: 0 0 24px;
  padding: 14px 18px;
  background: #FFF8E7;
  border: 1px solid #F0C040;
  border-radius: 8px;
  font-size: 14px;
  color: #6B5200;
  line-height: 1.6;
}

/* ---------- Deposit notice ---------- */
.reg-deposit-notice {
  padding: 16px 20px;
  background: var(--green-tint);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.reg-deposit-notice p { margin: 0; }

/* ---------- Party price table ---------- */
.reg-price-table {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--paper-2);
  border-radius: 10px;
  font-size: 15px;
}
.reg-price-table p { margin: 0 0 8px; }
.reg-price-table ul { margin: 0 0 8px; padding-left: 18px; line-height: 1.9; }
.reg-price-table .reg-hint { margin: 0; color: var(--ink-soft); font-size: 13.5px; }
