@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,800&family=DM+Sans:wght@400;500;600;700&family=Caveat:wght@600;700&display=swap');

:root {
  --ivory:        #FAF5EC;
  --ivory-soft:   #FFFBF1;
  --navy:         #1F2A44;
  --navy-soft:    #2E3A55;
  --teal:         #1FA89F;
  --teal-soft:    #E3F4F2;
  --teal-deep:    #167A73;
  --coral:        #F26D7C;
  --coral-soft:   #FCE3E5;
  --marigold:     #F4B43C;
  --marigold-soft:#FCEDC8;
  --sage:         #A8C3A0;
  --sage-soft:    #ECF3E8;

  --bg:           var(--ivory);
  --bg-elevated:  #FFFFFF;
  --text:         var(--navy);
  --text-muted:   #5A6275;
  --border:       rgba(31, 42, 68, 0.08);
  --border-warm:  rgba(244, 180, 60, 0.25);

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Nunito', system-ui, -apple-system, sans-serif;
  --font-hand:    'Caveat', cursive;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 4px rgba(31,42,68,0.04), 0 4px 12px rgba(31,42,68,0.04);
  --shadow-md: 0 4px 8px rgba(31,42,68,0.05), 0 12px 28px rgba(31,42,68,0.08);
  --shadow-lg: 0 8px 16px rgba(31,42,68,0.06), 0 24px 48px rgba(31,42,68,0.12);
  --shadow-clay-teal:   0 6px 0 rgba(22, 122, 115, 0.18), 0 14px 28px rgba(31,168,159,0.18);
  --shadow-clay-coral:  0 6px 0 rgba(195, 73, 84, 0.18),  0 14px 28px rgba(242,109,124,0.18);
  --shadow-clay-marigold: 0 6px 0 rgba(195, 138, 33, 0.22), 0 14px 28px rgba(244,180,60,0.22);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 180ms;
  --dur: 280ms;
  --dur-slow: 480ms;

  --container: 1200px;
  --container-narrow: 900px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--text); }
p.lead { font-size: 1.2rem; color: var(--text-muted); line-height: 1.55; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--marigold);
  border-radius: 2px;
}

.handwritten {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.4em;
  color: var(--coral);
  transform: rotate(-2deg);
  display: inline-block;
}

a { color: var(--teal-deep); text-decoration: none; transition: color var(--dur) var(--ease-out); }
a:hover { color: var(--coral); }

/* =========================================================
   Layout
   ========================================================= */

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; position: relative; }
section.tight { padding: 56px 0; }

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* =========================================================
   Header / Nav
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 8px 24px;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-brand img { width: 144px; height: 144px; object-fit: contain; }
.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.1;
}
.nav-brand-text small {
  display: block;
  font-family: var(--font-hand);
  font-size: 0.95rem;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(31, 168, 159, 0.1);
  color: var(--teal-deep);
}
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease-out);
}
.nav-menu-btn:hover { background: var(--teal-soft); }

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: -24px;
    right: -24px;
    background: rgba(250, 245, 236, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-menu-btn { display: flex; }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 4px 0 rgba(195,73,84,0.4), 0 10px 24px rgba(242,109,124,0.3);
}
.btn-primary:hover { background: #ee5667; color: white; box-shadow: 0 6px 0 rgba(195,73,84,0.4), 0 14px 32px rgba(242,109,124,0.4); }

.btn-secondary {
  background: var(--navy);
  color: var(--ivory);
  box-shadow: 0 4px 0 rgba(15,20,33,0.3), 0 10px 24px rgba(31,42,68,0.25);
}
.btn-secondary:hover { background: #2a3754; color: white; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 26px;
}
.btn-ghost:hover { background: var(--navy); color: var(--ivory); }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* =========================================================
   Decorative
   ========================================================= */

.blob {
  position: absolute;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.45;
  border-radius: 50%;
  z-index: 0;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.1;
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.age-badge small { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; opacity: 0.85; }

.pill-label {
  display: inline-block;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 24px;
  border-radius: var(--r-pill);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.pill-label-marigold { background: var(--marigold); color: var(--navy); }

.banner-ribbon {
  background: var(--marigold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 22px;
  display: inline-block;
  border-radius: var(--r-pill);
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero .blob-1 { top: -120px; left: -120px; width: 380px; height: 380px; background: var(--marigold); }
.hero .blob-2 { bottom: -150px; right: -100px; width: 420px; height: 420px; background: var(--teal); }
.hero .blob-3 { top: 30%; right: 40%; width: 180px; height: 180px; background: var(--coral); opacity: 0.25; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 8px;
}
.hero-title .hand-script {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: normal;
  color: var(--teal);
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-3deg);
  margin-right: 0.15em;
}
.hero-title .big {
  color: var(--coral);
  font-style: italic;
}
.hero-tagline-ribbon {
  background: var(--marigold);
  color: var(--navy);
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 16px 0 24px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-1.5deg);
}
.hero-desc { font-size: 1.2rem; color: var(--text-muted); max-width: 540px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta-item { display: flex; align-items: center; gap: 12px; }
.hero-meta-item .icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: grid; place-items: center;
  color: var(--teal-deep);
}
.hero-meta-item strong { font-family: var(--font-display); font-size: 1rem; color: var(--navy); }
.hero-meta-item span { display: block; font-size: 0.85rem; color: var(--text-muted); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
}
.hero-card {
  position: absolute;
  background: var(--bg-elevated);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  z-index: 2;
}
.hero-card-1 {
  top: 0; left: 8%;
  transform: rotate(-4deg);
  background: var(--teal-soft);
  color: var(--teal-deep);
}
.hero-card-2 {
  top: 58%; right: 0;
  transform: rotate(3deg);
  background: var(--coral-soft);
  color: var(--coral);
}
.hero-card-3 {
  bottom: 6%; left: 14%;
  transform: rotate(-2deg);
  background: var(--marigold-soft);
  color: #8a5d12;
}
.hero-photo {
  position: absolute;
  inset: 14% 16% 14% 16%;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--bg-elevated);
  box-shadow: var(--shadow-lg);
  background: var(--teal-soft);
  z-index: 1;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   Values strip (4-up)
   ========================================================= */

.values {
  background: var(--bg);
  border-top: 1px dashed var(--border-warm);
  border-bottom: 1px dashed var(--border-warm);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

.value-item { text-align: center; }
.value-img {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--bg-elevated);
}
.value-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.value-item h4 { margin-bottom: 8px; }
.value-item p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* =========================================================
   Services (3-up cards)
   ========================================================= */

.services { background: var(--bg-elevated); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header.left-align { text-align: left; margin: 0 0 56px; }
.section-header p.lead { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 920px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .icon-blob {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: white;
}
.service-card:nth-child(1) .icon-blob { background: var(--teal); }
.service-card:nth-child(2) .icon-blob { background: var(--coral); }
.service-card:nth-child(3) .icon-blob { background: var(--marigold); color: var(--navy); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); margin: 0; }

/* =========================================================
   Programs (3 age tiers)
   ========================================================= */

.programs { background: var(--bg); position: relative; overflow: hidden; }
.programs .blob-1 { top: 10%; left: -10%; width: 320px; height: 320px; background: var(--sage); opacity: 0.3; }
.programs .blob-2 { bottom: 5%; right: -10%; width: 280px; height: 280px; background: var(--coral); opacity: 0.25; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
@media (max-width: 920px) { .programs-grid { grid-template-columns: 1fr; } }

.program-card {
  background: var(--bg-elevated);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border-top: 6px solid var(--teal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease-out);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.program-card.jumpstart { border-color: var(--sage); }
.program-card.leaping   { border-color: var(--teal); }
.program-card.soaring   { border-color: var(--marigold); }

.program-card .program-illustration {
  height: 140px;
  display: grid;
  place-items: center;
  position: relative;
}
.program-card.jumpstart .program-illustration { background: linear-gradient(160deg, var(--sage-soft) 0%, #d8e7d3 100%); }
.program-card.leaping   .program-illustration { background: linear-gradient(160deg, var(--teal-soft) 0%, #c6e6e3 100%); }
.program-card.soaring   .program-illustration { background: linear-gradient(160deg, var(--marigold-soft) 0%, #f9dca2 100%); }
.program-illustration .emoji-art {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.program-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.program-card .age-tag {
  display: inline-block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--coral);
  margin-bottom: 4px;
}
.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.program-card p.program-desc { color: var(--text-muted); margin-bottom: 20px; }
.program-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-card ul li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--navy);
}
.program-card ul li svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.program-card .program-cta { margin-top: auto; }

/* =========================================================
   Testimonials
   ========================================================= */

.testimonials { background: var(--bg-elevated); position: relative; overflow: hidden; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--ivory-soft);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px; left: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--marigold);
  opacity: 0.4;
}
.testimonial blockquote {
  margin: 24px 0 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  position: relative; z-index: 1;
}
.testimonial-attrib { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-soft), var(--coral-soft));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-attrib strong { display: block; font-size: 0.95rem; color: var(--navy); }
.testimonial-attrib span { font-size: 0.85rem; color: var(--text-muted); }

/* =========================================================
   CTA Block
   ========================================================= */

.cta-block {
  background: var(--bg);
  padding: 88px 0;
}
.cta-inner {
  background: var(--navy);
  color: var(--ivory);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: var(--container);
  margin: 0 24px;
}
.cta-inner h2 { color: var(--ivory); margin-bottom: 16px; }
.cta-inner .handwritten { color: var(--marigold); }
.cta-inner p { color: rgba(250,245,236,0.85); max-width: 560px; margin: 0 auto 32px; font-size: 1.15rem; }
.cta-inner .blob-cta {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}
.cta-inner .blob-cta-1 { top: -60px; left: -60px; width: 280px; height: 280px; background: var(--teal); }
.cta-inner .blob-cta-2 { bottom: -80px; right: -80px; width: 320px; height: 320px; background: var(--coral); }
.cta-inner .blob-cta-3 { top: 30%; right: 20%; width: 180px; height: 180px; background: var(--marigold); }
.cta-inner .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-inner .btn-primary { box-shadow: 0 4px 0 rgba(195,73,84,0.5), 0 12px 32px rgba(242,109,124,0.4); }
.cta-inner .btn-ghost { color: var(--ivory); border-color: var(--ivory); }
.cta-inner .btn-ghost:hover { background: var(--ivory); color: var(--navy); }

@media (max-width: 720px) {
  .cta-inner { padding: 56px 28px; margin: 0 16px; }
  .cta-block { padding: 64px 0; }
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--navy);
  color: rgba(250,245,236,0.78);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 14px; }
.footer-brand h4 { color: var(--ivory); font-family: var(--font-display); margin-bottom: 8px; font-size: 1.2rem; }
.footer-brand p { color: rgba(250,245,236,0.65); font-size: 0.95rem; max-width: 280px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ivory);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(250,245,236,0.78); font-size: 0.95rem; }
.footer-col a:hover { color: var(--marigold); }

.footer-bottom {
  border-top: 1px solid rgba(250,245,236,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(250,245,236,0.55);
}
.footer-tagline {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--marigold);
}

/* =========================================================
   About page
   ========================================================= */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) { .about-hero { grid-template-columns: 1fr; } }
.about-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--coral-soft) 0%, var(--marigold-soft) 100%);
  border: 8px solid var(--bg-elevated);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-portrait .portrait-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy-soft);
  font-size: 1rem;
  text-align: center;
  padding: 32px;
}
.about-portrait .quote-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--navy);
  color: var(--ivory);
  padding: 18px 24px;
  border-radius: var(--r-lg);
  font-family: var(--font-hand);
  font-size: 1.3rem;
  line-height: 1.2;
  max-width: 230px;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
  z-index: 2;
}
.about-portrait .quote-badge::before {
  content: '';
  position: absolute;
  top: -10px; left: 30px;
  width: 20px; height: 20px;
  background: var(--marigold);
  border-radius: 50%;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .about-values { grid-template-columns: 1fr; } }
.about-value {
  background: var(--ivory-soft);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.about-value .icon-circle {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.about-value:nth-child(2) .icon-circle { background: var(--coral-soft); color: var(--coral); }
.about-value:nth-child(3) .icon-circle { background: var(--marigold-soft); color: #8a5d12; }
.about-value p { color: var(--text-muted); margin: 0; }

/* =========================================================
   Programs detail page
   ========================================================= */

.program-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px dashed var(--border-warm);
}
.program-detail:last-of-type { border-bottom: none; }
.program-detail.reverse > :first-child { order: 2; }
@media (max-width: 920px) {
  .program-detail { grid-template-columns: 1fr; gap: 40px; }
  .program-detail.reverse > :first-child { order: initial; }
}
.program-detail-visual {
  height: 440px;
  width: 100%;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  border: 6px solid var(--bg-elevated);
  box-shadow: var(--shadow-lg);
}
.program-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program-detail-visual.jumpstart { background: linear-gradient(160deg, var(--sage-soft) 0%, #c8ddc1 100%); }
.program-detail-visual.leaping   { background: linear-gradient(160deg, var(--teal-soft) 0%, #b3dedb 100%); }
.program-detail-visual.soaring   { background: linear-gradient(160deg, var(--marigold-soft) 0%, #f7d089 100%); }

.program-detail-content .age-tag {
  font-family: var(--font-hand);
  color: var(--coral);
  font-size: 1.5rem;
  font-weight: 700;
}
.program-detail-content h2 { margin: 8px 0 16px; }
.program-detail-content ul.feature-list {
  list-style: none; padding: 0;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .program-detail-content ul.feature-list { grid-template-columns: 1fr; } }
.program-detail-content ul.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.4;
}
.program-detail-content ul.feature-list li svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================
   Contact page
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info .contact-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-info .contact-list li {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-info .contact-list .icon-circle {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info .contact-list strong { display: block; color: var(--navy); font-family: var(--font-display); }
.contact-info .contact-list span { color: var(--text-muted); font-size: 0.95rem; }
.contact-info .contact-list a { color: var(--text-muted); font-size: 0.95rem; }
.contact-info .contact-list a:hover { color: var(--coral); }

.contact-form {
  background: var(--bg-elevated);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--navy);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.consent-row {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.consent-row input { margin-top: 4px; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success .success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  color: var(--teal-deep);
}
.form-success h3 { color: var(--teal-deep); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* =========================================================
   Helpers
   ========================================================= */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 24px; }
.mb-6 { margin-bottom: 40px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
