* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #2BAFCB;
  --teal-deep: #1E8AA0;
  --teal-soft: #BFE5EE;
  --teal-bg: #EAF7FB;
  --gold: #E8A82C;
  --gold-soft: #F4D58D;
  --gold-bg: #FFF4DC;
  --leaf: #7BC142;
  --leaf-deep: #5FA02A;
  --leaf-soft: #D9EFC2;
  --leaf-bg: #F1F9E8;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --muted: #6B7280;
  --line: #E5E7EB;
  --cream: #FFFCF5;
  --paper: #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 252, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 14px 0;
  transition: padding 0.3s ease;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img { height: 42px; width: auto; }
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.0;
}
.nav-brand-text .program {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.nav-brand-text .parent {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(43, 175, 203, 0.3);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 130px 0 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft) 0%, var(--gold) 55%, transparent 72%);
  opacity: 0.4;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, var(--leaf-soft) 0%, var(--leaf) 65%, transparent 80%);
  opacity: 0.32;
  z-index: 0;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(43, 175, 203, 0.25);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-soft);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--leaf-deep);
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  color: var(--ink);
  letter-spacing: -2px;
  margin-bottom: 24px;
}
h1 .accent-teal { color: var(--teal); }
h1 .accent-gold { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--teal-deep);
  line-height: 1.35;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  padding: 16px 28px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(43, 175, 203, 0.3);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(43, 175, 203, 0.4);
}
.btn-primary .arrow {
  transition: transform 0.2s ease;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: white;
}
.hero-insurance {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.hero-insurance strong {
  color: var(--ink);
  font-weight: 700;
  font-style: normal;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-logo-card {
  background: white;
  border-radius: 32px;
  padding: 56px 44px;
  box-shadow: 0 30px 60px -20px rgba(43, 175, 203, 0.25), 0 10px 24px -8px rgba(0,0,0,0.05);
  border-top: 6px solid var(--gold);
  text-align: center;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.hero-logo-card:hover { transform: rotate(0deg) scale(1.02); }
.hero-logo-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================================
   QUICK STATS
   ============================================ */
.stats {
  background: white;
  padding: 60px 0;
  position: relative;
  z-index: 3;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
}
.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-bg);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px auto;
}
.stat:nth-child(2) .stat-icon { background: var(--gold-bg); color: #8B6914; }
.stat:nth-child(3) .stat-icon { background: var(--leaf-bg); color: var(--leaf-deep); }
.stat:nth-child(4) .stat-icon { background: var(--teal-bg); color: var(--teal-deep); }
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   PROGRAM OVERVIEW
   ============================================ */
.program {
  padding: 30px 0;
  background: var(--cream);
  position: relative;
}
.program-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--leaf-deep);
  font-weight: 700;
  margin-bottom: 12px;
}
h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h2 .acc { color: var(--teal); font-style: italic; font-weight: 400; }
h2 .acc-gold { color: var(--gold); font-style: italic; font-weight: 400; }
.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature {
  background: white;
  border-radius: 20px;
  padding: 28px 30px;
  border-top: 4px solid var(--teal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:nth-child(2) { border-top-color: var(--gold); }
.feature:nth-child(3) { border-top-color: var(--leaf); }
.feature:nth-child(4) { border-top-color: var(--teal); }
.feature:nth-child(5) { border-top-color: var(--gold); }
.feature:nth-child(6) { border-top-color: var(--leaf); }
.feature:nth-child(7) { border-top-color: var(--teal); }
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
}
.feature-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-bg);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
.feature:nth-child(2) .feature-check { background: var(--gold-bg); color: #8B6914; }
.feature:nth-child(3) .feature-check { background: var(--leaf-bg); color: var(--leaf-deep); }
.feature:nth-child(4) .feature-check { background: var(--teal-bg); color: var(--teal-deep); }
.feature:nth-child(5) .feature-check { background: var(--gold-bg); color: #8B6914; }
.feature:nth-child(6) .feature-check { background: var(--leaf-bg); color: var(--leaf-deep); }
.feature:nth-child(7) .feature-check { background: var(--teal-bg); color: var(--teal-deep); }
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.25;
}
.feature-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================
   A DAY AT SPROUT & SHINE
   ============================================ */
.day-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--teal-bg) 100%);
  position: relative;
  overflow: hidden;
}
.day-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.08;
}
.day-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--leaf);
  opacity: 0.08;
}
.day-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.day-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.day-card {
  background: white;
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.day-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.1);
}
.day-time {
  background: var(--teal);
  color: white;
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
}
.day-time .time {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
}
.day-card:nth-child(2) .day-time { background: var(--gold); color: white; }
.day-card:nth-child(3) .day-time { background: var(--leaf); }
.day-card:nth-child(4) .day-time { background: var(--teal); }
.day-card:nth-child(5) .day-time { background: var(--gold); color: white; }
.day-card:nth-child(6) .day-time { background: var(--leaf); }
.day-content {
  flex: 1;
}
.day-content h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.day-content p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================
   WHO WE SERVE
   ============================================ */
.ages {
  padding: 100px 0;
  background: var(--cream);
}
.ages-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.ages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.age-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  border-left: 6px solid var(--leaf);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.age-card:hover { transform: translateY(-4px); }
.age-card.gold { border-left-color: var(--gold); }
.age-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--leaf-bg);
  z-index: 0;
}
.age-card.gold::after { background: var(--gold-bg); }
.age-emoji {
  font-size: 44px;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}
.age-name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.age-range {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--leaf-deep);
  background: var(--leaf-bg);
  padding: 6px 14px;
  border-radius: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.age-card.gold .age-range {
  color: #8B6914;
  background: var(--gold-bg);
}
.age-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ============================================
   WHY EARLY
   ============================================ */
.why {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.18;
}
.why::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--leaf);
  opacity: 0.15;
}
.why-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.why .section-eyebrow { color: var(--gold-soft); }
.why h2 { color: white; }
.why h2 em { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.why-body {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  font-weight: 400;
  margin-top: 24px;
  margin-bottom: 32px;
}
.why-stat {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 24px 36px;
  border-left: 5px solid var(--gold);
  text-align: left;
}
.why-stat .big {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: white;
  font-weight: 600;
  line-height: 1.2;
}
.why-stat .small {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin-top: 4px;
}

/* ============================================
   INSURANCE / PARTNERSHIPS
   ============================================ */
.insurance {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.insurance-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.insurance h2 .acc { color: var(--teal); }
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.insurance-item {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.insurance-item:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px -6px rgba(43, 175, 203, 0.2);
  transform: translateY(-2px);
}
.insurance-name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* ============================================
   APPLY / CONTACT
   ============================================ */
.apply {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.apply-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.apply-info h2 { margin-bottom: 20px; }
.apply-info .lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 32px;
}
.contact-list {
  list-style: none;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-bg);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item:nth-child(2) .contact-icon { background: var(--gold-bg); color: #8B6914; }
.contact-item:nth-child(3) .contact-icon { background: var(--leaf-bg); color: var(--leaf-deep); }
.contact-text .lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-text .val {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
}
.contact-text .val a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 2px solid var(--teal);
}
.contact-text .val a:hover {
  color: var(--teal);
}

.apply-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  border-top: 6px solid var(--gold);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.1);
}
.form-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-row {
  margin-bottom: 16px;
}
.form-row label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-row textarea {
  min-height: 90px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  background: var(--teal);
  color: white;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 32px;
  display: block !important;
  text-decoration: none !important;
  text-align: center;
}

a.form-submit:visited,
a.form-submit:active {
  color: white;
}

.form-submit:hover { background: var(--teal-deep); }
.form-disclaimer {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: white;
  padding: 60px 0 30px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 50px;
  width: auto;
  background: white;
  border-radius: 8px;
  padding: 4px;
}
.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: white;
  font-weight: 600;
}
.footer-brand .tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.footer-brand .parent-link {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold-soft);
  font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-logo-card { max-width: 360px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .program-grid { grid-template-columns: 1fr; }
  .day-grid { grid-template-columns: 1fr; }
  .ages-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hero { padding: 140px 0 60px 0; }
  .stats { padding: 40px 0; }
  .program, .day-section, .ages, .why, .apply { padding: 60px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
}
