/* ==========================================================================
   MILI TUITION CENTRE — PREMIUM EDITORIAL REDESIGN
   Design: Warm · Editorial · Trustworthy · Playful · Premium
   Color System: Cream #F8F4EA · Dark Cocoa #35231B · Orange #F5662A · Green #78A83A · Yellow #F7C948
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
  /* Core palette */
  --bg-page:         #F2EDE4;
  --bg-cream:        #F8F4EA;
  --bg-card:         #FFFDF8;
  --text-dark:       #35231B;
  --text-muted:      #6B5347;
  --text-light:      rgba(255,253,248,0.88);

  /* Brand colours */
  --primary-orange:  #F5662A;
  --orange-hover:    #E05419;
  --accent-green:    #78A83A;
  --accent-yellow:   #F7C948;

  /* Supporting tints */
  --soft-green:      #EEF2D8;
  --soft-yellow:     #FEF3D6;
  --soft-peach:      #FBE0D0;
  --soft-lavender:   #EDE7F5;

  /* Border */
  --border-warm:     rgba(53, 35, 27, 0.09);
  --border-subtle:   rgba(53, 35, 27, 0.05);
  --border-dark:     rgba(255,255,255,0.14);

  /* Layered Shadows */
  --shadow-xs:       0 2px 5px rgba(53, 35, 27, 0.04);
  --shadow-sm:       0 4px 14px -2px rgba(53, 35, 27, 0.06), 0 2px 6px -1px rgba(53, 35, 27, 0.03);
  --shadow-md:       0 12px 30px -4px rgba(53, 35, 27, 0.08), 0 4px 12px -2px rgba(53, 35, 27, 0.04);
  --shadow-lg:       0 24px 48px -8px rgba(53, 35, 27, 0.12), 0 8px 20px -4px rgba(53, 35, 27, 0.05);
  --shadow-orange:   0 8px 25px -3px rgba(245, 102, 42, 0.35);
  --shadow-green:    0 8px 25px -3px rgba(120, 168, 58, 0.3);

  /* Easing */
  --ease-smooth:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:        cubic-bezier(0.22, 1, 0.36, 1);

  /* Typography */
  --font-heading:    'DM Serif Display', 'Fraunces', Georgia, serif;
  --font-body:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-gap:     100px;
  --container-max:   1240px;
  --container-xl:    1400px;
  --side-pad:        clamp(20px, 5vw, 60px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Scroll progress bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-yellow) 50%, var(--accent-green) 100%);
  z-index: 10000;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(245, 102, 42, 0.55);
}

/* --------------------------------------------------------------------------
   2. CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.container-xl {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* --------------------------------------------------------------------------
   3. GLOBAL SECTION TOKENS
   -------------------------------------------------------------------------- */
.section {
  padding: var(--section-gap) 0;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-green);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.eyebrow-light {
  color: rgba(255,253,248,0.7);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-heading.centered {
  text-align: center;
}

.section-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
}

.section-lead.centered {
  text-align: center;
  margin: 0 auto;
}

.heading-accent {
  color: var(--primary-orange);
}

/* --------------------------------------------------------------------------
   4. BUTTON SYSTEM
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.28s var(--ease-smooth);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  position: relative;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-orange {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2.5px);
  box-shadow: 0 12px 28px -2px rgba(245,102,42,0.45);
}

.btn-orange .arrow-icon {
  transition: transform 0.25s var(--ease-smooth);
}

.btn-orange:hover .arrow-icon {
  transform: translate(3px, -3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1.8px solid rgba(53,35,27,0.25);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  border-color: var(--text-dark);
  background-color: rgba(53,35,27,0.05);
  transform: translateY(-2.5px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--bg-cream);
  border: 1.8px solid rgba(255,253,248,0.4);
}

.btn-outline-light:hover {
  border-color: rgba(255,253,248,0.9);
  background-color: rgba(255,253,248,0.12);
  transform: translateY(-2.5px);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 15.5px;
}

.btn-nav {
  padding: 9px 20px;
  font-size: 13.5px;
}

.btn-block {
  width: 100%;
}

.arrow-icon { width: 14px; height: 14px; }
.phone-icon { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   5. NAVIGATION
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(248,244,234,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(53,35,27,0.06);
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), background-color 0.3s var(--ease-smooth);
}

.navbar.scrolled {
  border-bottom-color: rgba(53,35,27,0.1);
  box-shadow: 0 4px 24px rgba(53,35,27,0.07);
  background-color: rgba(248,244,234,0.96);
}

.nav-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-mark {
  width: 38px;
  height: 38px;
  transition: transform 0.3s var(--ease-spring);
}

.nav-brand:hover .brand-logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.logo-svg { width: 100%; height: 100%; }

.brand-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  color: var(--text-dark);
}

.brand-subtitle {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--primary-orange);
  margin-top: 1px;
}

.brand-location {
  font-size: 9px;
  font-weight: 600;
  color: var(--accent-green);
  margin-top: 1px;
}

.brand-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(120, 168, 58, 0.12);
  border: 1px solid rgba(120, 168, 58, 0.28);
  color: #4b6d21;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  margin-left: 10px;
  transition: all 0.25s var(--ease-smooth);
}

.brand-status-pill:hover {
  background: rgba(120, 168, 58, 0.18);
  transform: translateY(-1px);
}

.status-pulse-dot {
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 0 0 rgba(120, 168, 58, 0.7);
  animation: pulseDot 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulseDot {
  to {
    box-shadow: 0 0 0 8px rgba(120, 168, 58, 0);
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
  position: relative;
  padding: 6px 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
  border-radius: 2px;
  transition: width 0.28s var(--ease-smooth), left 0.28s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--primary-orange);
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
  display: block;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background-color: var(--bg-cream);
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px; /* navbar height */
}

/* Float & pulse keyframe animations */
@keyframes floatSquiggle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes floatPencil {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-12px) rotate(-8deg); }
}

@keyframes floatBook {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseStar {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.3) rotate(18deg); opacity: 1; filter: drop-shadow(0 0 6px rgba(247, 201, 72, 0.6)); }
}

@keyframes floatIllustration {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Decorative doodles with smooth floating animations */
.hero-doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.doodle-squiggle-top {
  top: 100px;
  left: 8%;
  width: 80px;
  opacity: 0.7;
  animation: floatSquiggle 6s ease-in-out infinite;
}

.doodle-star-1 {
  top: 140px;
  left: 14%;
  color: var(--primary-orange);
  font-size: 14px;
  opacity: 0.7;
  animation: pulseStar 4s ease-in-out infinite;
}

.doodle-star-2 {
  top: 200px;
  right: 12%;
  color: var(--accent-yellow);
  font-size: 12px;
  opacity: 0.8;
  animation: pulseStar 4.5s ease-in-out infinite 1.5s;
}

.doodle-dots-cluster {
  top: 160px;
  right: 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  animation: floatGentle 5s ease-in-out infinite 0.5s;
}

.doodle-dots-cluster span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-green);
  opacity: 0.4;
  display: block;
}

.doodle-pencil {
  right: 6%;
  bottom: 120px;
  width: 22px;
  opacity: 0.55;
  animation: floatPencil 5.5s ease-in-out infinite;
}

.doodle-book-right {
  right: 14%;
  top: 220px;
  width: 55px;
  opacity: 0.35;
  animation: floatBook 6s ease-in-out infinite 1s;
}

/* Hero 3-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 40px var(--side-pad) 0 var(--side-pad);
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
}

/* Children columns */
.hero-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  align-self: flex-end;
}

.child-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.student-img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(53,35,27,0.12));
  position: relative;
  z-index: 2;
  transition: transform 0.6s var(--ease-smooth), filter 0.6s var(--ease-smooth);
}

.student-img:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 18px 36px rgba(53,35,27,0.18));
}

.child-doodle {
  position: absolute;
  z-index: 5;
}

.doodle-target {
  bottom: 30px;
  left: -10px;
  width: 60px;
  height: 60px;
  animation: floatGentle 4.8s ease-in-out infinite 0.7s;
}

.doodle-backpack {
  bottom: 30px;
  right: -10px;
  width: 56px;
  height: 64px;
  animation: floatGentle 5.2s ease-in-out infinite 1.2s;
}

/* Center hero content */
.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 80px 20px;
  z-index: 10;
  position: relative;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow-text {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-green);
  white-space: nowrap;
}

.eyebrow-line {
  width: 28px;
  height: 1.5px;
  background-color: var(--accent-green);
  opacity: 0.6;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  text-wrap: balance;
}

.headline-accent {
  color: var(--primary-orange);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-underline {
  width: 220px;
  height: 12px;
  margin: 10px auto 20px auto;
  transition: transform 0.3s var(--ease-smooth);
}

.hero-headline:hover + .hero-underline {
  transform: scaleX(1.05);
}

.hero-underline svg { width: 100%; height: 100%; }

.hero-subtext {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-illustration {
  width: 160px;
  height: 80px;
  opacity: 0.75;
  animation: floatIllustration 5s ease-in-out infinite;
}

.hero-illustration svg { width: 100%; height: 100%; }

/* --------------------------------------------------------------------------
   7. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  background: linear-gradient(180deg, #35231B 0%, #291A14 100%);
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), var(--shadow-sm);
}

.trust-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 34px var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
  padding: 6px 40px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-smooth);
}

.trust-stat:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: #FFFDF8;
  line-height: 1;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.trust-stat:hover .stat-number {
  color: var(--accent-yellow);
}

.stat-text {
  font-size: 18px;
  font-weight: 800;
  color: #FFFDF8;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,253,248,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-divider {
  width: 1px;
  height: 44px;
  background-color: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. WHY FAMILIES CHOOSE MILI
   -------------------------------------------------------------------------- */
.section-why {
  background-color: var(--bg-cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-intro {
  position: sticky;
  top: 96px;
}

.why-intro .section-heading {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.why-intro-doodle {
  margin-top: 24px;
  width: 120px;
}

.why-intro-doodle svg { width: 100%; height: 100%; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 22px;
  align-items: start;
  border-radius: 16px;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  border: 1px solid transparent;
}

.why-item:hover {
  background-color: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
  border-color: var(--border-warm);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-orange);
  opacity: 0.35;
  line-height: 1;
  padding-top: 4px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.why-item:hover .why-num {
  opacity: 1;
  transform: scale(1.1);
}

.why-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.why-item:hover .why-title {
  color: var(--primary-orange);
}

.why-desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-divider {
  display: none;
}

/* --------------------------------------------------------------------------
   9. BRAND STORY SECTION
   -------------------------------------------------------------------------- */
.section-brand-story {
  background-color: var(--text-dark);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.brand-story-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 100px var(--side-pad);
  position: relative;
}

.story-doodle {
  position: absolute;
  pointer-events: none;
}

.story-doodle-star {
  top: 60px;
  right: 80px;
  color: var(--accent-yellow);
  font-size: 20px;
  opacity: 0.5;
}

.story-doodle-squiggle {
  bottom: 80px;
  left: 40px;
  width: 70px;
  opacity: 0.6;
}

.brand-story-content {
  max-width: 720px;
  margin-bottom: 64px;
}

.story-heading {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  color: #FFFDF8;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.story-heading em {
  color: var(--accent-yellow);
  font-style: italic;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-body p {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,253,248,0.75);
  line-height: 1.7;
  max-width: 640px;
}

/* Four brand values */
.story-values {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.story-value {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.value-word {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #FFFDF8;
  letter-spacing: -0.01em;
}

.value-doodle {
  width: 36px;
  height: 14px;
}

/* --------------------------------------------------------------------------
   10. OUR APPROACH SECTION
   -------------------------------------------------------------------------- */
.section-approach {
  background-color: var(--bg-cream);
}

.approach-header {
  margin-bottom: 64px;
  text-align: center;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* The connecting path SVG */
.approach-path {
  position: absolute;
  top: 62px;
  left: 60px;
  right: 60px;
  height: 60px;
  z-index: 0;
  pointer-events: none;
}

.approach-path svg {
  width: 100%;
  height: 100%;
}

.approach-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  animation-delay: var(--step-delay, 0s);
}

.step-num-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-orange);
  margin-bottom: 12px;
  opacity: 0.65;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.approach-step:hover .step-icon {
  transform: translateY(-4px);
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 200px;
}

/* --------------------------------------------------------------------------
   11. CLASSES & PROGRAMS SECTION
   -------------------------------------------------------------------------- */
.section-classes {
  background-color: var(--bg-page);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}

.section-lead-right {
  text-align: right;
  max-width: 380px;
  align-self: flex-end;
}

/* Tabs */
.grade-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  background-color: var(--bg-cream);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--border-warm);
  width: fit-content;
  box-shadow: var(--shadow-xs);
}

.tab-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: all 0.25s var(--ease-smooth);
  border-radius: 10px;
}

.tab-btn::after {
  display: none;
}

.tab-btn:hover {
  color: var(--text-dark);
  background-color: rgba(53,35,27,0.04);
}

.tab-btn.active {
  color: var(--primary-orange);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: tabFadeSlideIn 0.35s var(--ease-smooth);
}

@keyframes tabFadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Program layout */
.program-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
}

.program-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-green);
  margin-bottom: 12px;
  display: block;
}

.program-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.program-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.program-desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 500px;
}

.program-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-list li {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.program-list li:hover {
  transform: translateX(4px);
}

.program-list li::before {
  content: "✓";
  color: var(--accent-green);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

/* Program visual/badge */
.program-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.program-badge {
  width: 220px;
  padding: 38px 24px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.program-badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.early-badge  { background-color: var(--soft-green); }
.junior-badge { background-color: var(--soft-yellow); }
.middle-badge { background-color: var(--soft-peach); }

.badge-big-text {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.badge-tag {
  display: inline-block;
  background-color: rgba(53,35,27,0.07);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 3px 2px;
}

.program-doodle { opacity: 0.7; }

/* --------------------------------------------------------------------------
   12. WHAT CHILDREN LEARN
   -------------------------------------------------------------------------- */
.section-offers {
  background-color: var(--bg-cream);
}

.offers-header {
  margin-bottom: 60px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.offer-block {
  background-color: var(--bg-card);
  padding: 38px 26px;
  border-radius: 18px;
  border: 1px solid var(--border-warm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.35s var(--ease-smooth);
  animation-delay: var(--offer-delay, 0s);
  box-shadow: var(--shadow-xs);
}

.offer-block:hover {
  background-color: #FFFFFF;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 102, 42, 0.25);
}

.offer-icon {
  width: 42px;
  height: 42px;
  transition: transform 0.35s var(--ease-spring);
}

.offer-icon svg { width: 100%; height: 100%; }

.offer-block:hover .offer-icon {
  transform: scale(1.12) rotate(6deg);
}

.offer-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.offer-subjects {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. ACTIVITIES SECTION
   -------------------------------------------------------------------------- */
.section-activities {
  background-color: var(--bg-page);
}

.activities-intro {
  margin-bottom: 52px;
}

.activities-intro .section-heading {
  max-width: 640px;
}

.activities-underline {
  width: 220px;
  height: 12px;
  margin: 12px 0 20px 0;
}

.activities-underline svg { width: 100%; height: 100%; }

/* Editorial image + category layout */
.activities-editorial {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Asymmetric image composition */
.act-images {
  display: flex;
  gap: 16px;
  align-items: stretch;
  height: 440px;
}

.act-img-main {
  flex: 1.3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.act-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.act-img-main:hover img { transform: scale(1.05); }

.act-img-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.act-img-top, .act-img-bottom {
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  box-shadow: var(--shadow-xs);
}

.act-img-top img, .act-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.act-img-top:hover img, .act-img-bottom:hover img { transform: scale(1.05); }

/* Category list */
.act-categories {
  padding-top: 8px;
}

.act-categories-lead {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.act-category-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 12px;
  border-bottom: 1px solid var(--border-warm);
  border-radius: 12px;
  transition: all 0.25s var(--ease-smooth);
}

.act-category-item:hover {
  background-color: rgba(53, 35, 27, 0.03);
  transform: translateX(4px);
}

.act-category-item:first-of-type {
  border-top: 1px solid var(--border-warm);
}

.act-cat-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.25s var(--ease-spring);
}

.act-cat-icon svg { width: 100%; height: 100%; }

.act-category-item:hover .act-cat-icon {
  transform: scale(1.15);
}

.act-cat-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.act-cat-desc {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   14. CELEBRATIONS SECTION
   -------------------------------------------------------------------------- */
.section-celebrations {
  background-color: var(--soft-green);
  padding: 84px 0;
}

.celebrations-header {
  margin-bottom: 48px;
  text-align: center;
}

.celebrations-strip {
  display: flex;
  gap: 18px;
  align-items: flex-end;
}

.fest-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s var(--ease-smooth);
}

.fest-item:hover {
  transform: translateY(-5px);
}

.fest-item-tall .fest-img {
  height: 280px;
}

.fest-img {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.fest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.fest-item:hover .fest-img img {
  transform: scale(1.06);
}

.fest-caption h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.fest-caption p {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   15. FIELD TRIPS SECTION
   -------------------------------------------------------------------------- */
.section-fieldtrips {
  background-color: var(--bg-cream);
}

.fieldtrips-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}

.fieldtrips-img-col {
  position: relative;
}

.fieldtrips-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.fieldtrips-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.fieldtrips-img-wrap:hover img {
  transform: scale(1.04);
}

.fieldtrip-doodle {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  pointer-events: none;
  opacity: 0.7;
}

.fieldtrip-doodle svg { width: 100%; height: 100%; }

.fieldtrips-text-col .section-lead {
  margin-bottom: 16px;
}

.fieldtrips-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   16. 15 YEARS SECTION
   -------------------------------------------------------------------------- */
.section-years {
  background-color: var(--soft-yellow);
  padding: 0;
}

.years-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 84px var(--side-pad);
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.years-left {
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
}

.years-big {
  font-family: var(--font-heading);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--text-dark) 40%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(53,35,27,0.08));
}

.years-unit {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--primary-orange);
  opacity: 0.95;
  margin-top: 8px;
}

.years-divider {
  width: 2px;
  height: 120px;
  background-color: rgba(53,35,27,0.15);
  flex-shrink: 0;
}

.years-poem {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.years-poem em {
  color: var(--primary-orange);
  font-style: italic;
}

.years-tagline {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
}

.years-doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
}

.years-star-1 {
  top: 30px;
  right: 12%;
  font-size: 22px;
  color: var(--primary-orange);
}

.years-star-2 {
  bottom: 30px;
  right: 20%;
  font-size: 14px;
  color: var(--accent-green);
}

/* --------------------------------------------------------------------------
   17. LOCATION & CONTACT SECTION
   -------------------------------------------------------------------------- */
.section-location {
  background-color: var(--bg-cream);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.location-underline {
  width: 180px;
  height: 12px;
  margin: 12px 0 20px 0;
}

.location-underline svg { width: 100%; height: 100%; }

.location-lead {
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 14px;
  border-bottom: 1px solid var(--border-warm);
  border-radius: 12px;
  transition: all 0.25s var(--ease-smooth);
}

.contact-row:hover {
  background-color: rgba(53, 35, 27, 0.035);
  transform: translateX(4px);
}

.contact-row:first-child {
  border-top: 1px solid var(--border-warm);
}

.contact-icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.contact-row-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-row-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.75;
}

.hours-closed {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.location-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.location-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-score {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

.rating-stars {
  color: #F5A623;
  font-size: 13px;
}

.rating-count {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Map */
.location-map {
  position: sticky;
  top: 96px;
}

.google-map-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-smooth);
}

.google-map-container:hover {
  box-shadow: var(--shadow-md);
}

.google-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-popup-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #FFFDF8;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 10;
  max-width: 230px;
  border: 1px solid var(--border-warm);
}

.map-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.map-popup-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

.map-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 800;
  color: #1A73E8;
  text-decoration: none;
}

.map-popup-address {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 8px;
}

.map-popup-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  margin-bottom: 5px;
}

.map-popup-rating .score { font-weight: 800; color: var(--text-dark); }
.map-popup-rating .stars { color: #F5A623; font-size: 10px; }
.map-popup-rating .reviews { color: #70757A; }

.map-larger-link {
  font-size: 10.5px;
  font-weight: 700;
  color: #1A73E8;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   18. FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.section-final-cta {
  background-color: var(--text-dark);
  padding: 0;
}

.final-cta-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 100px var(--side-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-doodle {
  position: absolute;
  pointer-events: none;
}

.cta-star-left {
  top: 50px;
  left: 10%;
  color: var(--accent-yellow);
  font-size: 18px;
  opacity: 0.4;
}

.cta-star-right {
  bottom: 60px;
  right: 12%;
  color: var(--accent-green);
  font-size: 14px;
  opacity: 0.4;
}

.cta-squiggle {
  bottom: 50px;
  left: 8%;
  width: 100px;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  color: #FFFDF8;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,253,248,0.7);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 36px auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-warm);
}

.footer-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 64px var(--side-pad) 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo-wrap {
  width: 36px;
  height: 36px;
}

.footer-logo-svg { width: 100%; height: 100%; }

.footer-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.footer-location {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
}

.footer-tagline {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 280px;
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary-orange);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-hours {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer-cta {
  margin-top: 12px;
  align-self: flex-start;
  font-size: 13.5px;
  padding: 9px 20px;
}

.footer-bar {
  border-top: 1px solid var(--border-warm);
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 18px var(--side-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bar p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   20. MODALS & TOAST (preserved, refined)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(53,35,27,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-smooth), visibility 0.3s var(--ease-smooth);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  padding: 38px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 70px -10px rgba(53,35,27,0.25);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s var(--ease-spring), opacity 0.35s var(--ease-smooth);
  border: 1px solid var(--border-warm);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-sm { max-width: 360px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--text-dark);
  background-color: rgba(53,35,27,0.05);
  transform: rotate(90deg);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.modal-header p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.text-center { text-align: center; }

.call-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--soft-peach);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  transition: transform 0.3s var(--ease-spring);
}

.modal-card:hover .call-icon-circle {
  transform: scale(1.1);
}

.call-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.call-btn {
  background-color: var(--bg-cream);
  padding: 13px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 800;
  font-size: 16px;
  border: 1px solid var(--border-warm);
  transition: all 0.25s var(--ease-smooth);
}

.call-btn:hover {
  border-color: var(--primary-orange);
  background-color: var(--soft-peach);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.call-sub {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

.call-address {
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border-warm);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  transition: border-color 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth), background-color 0.25s var(--ease-smooth);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-orange);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(245, 102, 42, 0.15);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(53, 35, 27, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFDF8;
  padding: 14px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(53, 35, 27, 0.25);
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.35s var(--ease-spring);
  max-width: 400px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}

.toast-notification.active {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  color: var(--accent-green);
  font-weight: 900;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   21. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
  transition-delay: var(--step-delay, 0s);
  will-change: opacity, transform;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Grid stagger delays */
.offers-grid .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.offers-grid .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.offers-grid .reveal-item:nth-child(3) { transition-delay: 0.25s; }
.offers-grid .reveal-item:nth-child(4) { transition-delay: 0.35s; }

.approach-steps .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.approach-steps .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.approach-steps .reveal-item:nth-child(3) { transition-delay: 0.25s; }
.approach-steps .reveal-item:nth-child(4) { transition-delay: 0.35s; }

.celebrations-strip .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.celebrations-strip .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.celebrations-strip .reveal-item:nth-child(3) { transition-delay: 0.25s; }
.celebrations-strip .reveal-item:nth-child(4) { transition-delay: 0.35s; }

/* Floating Quick Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 990;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-spring);
}

.floating-actions.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.28s var(--ease-smooth);
  border: none;
  text-decoration: none;
}

.btn-top {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-warm);
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  transition: all 0.25s var(--ease-smooth);
}

.btn-top.show-top {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.btn-top:hover {
  background: #FFFFFF;
  color: var(--primary-orange);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 102, 42, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  gap: 9px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* Focus / accessibility */
:focus-visible {
  outline: 2px solid var(--primary-orange);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE — TABLET 1024px
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root { --section-gap: 80px; }

  .hero-grid {
    grid-template-columns: 220px 1fr 220px;
  }

  .student-img { max-height: 400px; }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-intro {
    position: static;
  }

  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .approach-path { display: none; }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .act-images { height: 360px; }

  .fieldtrips-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-map {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE — MOBILE 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --section-gap: 64px; --side-pad: 20px; }

  /* Nav */
  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border-warm);
    box-shadow: 0 8px 24px rgba(53,35,27,0.08);
    z-index: 90;
    padding: 8px 0;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    padding: 14px var(--side-pad);
    font-size: 15px;
  }

  .nav-link::after { display: none; }

  .btn-nav { display: none; }

  .mobile-toggle { display: flex; }

  /* Hero */
  .hero-section {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    padding: 40px var(--side-pad) 0 var(--side-pad);
    gap: 0;
  }

  .hero-child-left { order: 3; }
  .hero-center     { order: 1; padding: 32px 0 24px; }
  .hero-child-right{ order: 2; display: none; }

  .hero-headline { font-size: clamp(44px, 12vw, 64px); }
  .hero-subtext { font-size: 15px; }
  .hero-eyebrow { justify-content: center; }

  .student-img { max-height: 300px; }

  .hero-child-left {
    justify-content: center;
    padding-bottom: 0;
  }

  .child-doodle { display: none; }

  /* Trust strip */
  .trust-inner {
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }

  .trust-stat {
    padding: 18px 22px;
    flex: 1 0 45%;
    min-width: 140px;
  }

  .trust-divider:nth-child(4) { display: none; }

  /* Section heading */
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-lead-right {
    text-align: left;
    max-width: 100%;
  }

  /* Approach */
  .approach-steps {
    grid-template-columns: 1fr 1fr;
  }

  /* Classes */
  .program-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }

  .program-visual { align-items: flex-start; }

  /* Offers */
  .offers-grid {
    grid-template-columns: 1fr;
  }

  /* Celebrations */
  .celebrations-strip {
    flex-wrap: wrap;
  }

  .fest-item {
    flex: 0 0 calc(50% - 8px);
  }

  .fest-item-tall .fest-img { height: 220px; }

  /* Years */
  .years-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .years-big { font-size: clamp(80px, 20vw, 120px); }

  .years-divider {
    width: 60px;
    height: 1.5px;
  }

  .years-tagline { margin: 0 auto; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-brand { grid-column: auto; }

  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* --------------------------------------------------------------------------
   24. RESPONSIVE — SMALL MOBILE 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }

  .fest-item {
    flex: 0 0 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .grade-tabs {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
  }

  .tab-btn {
    border: 1px solid var(--border-warm);
    border-radius: 8px;
    margin-bottom: 4px;
    padding: 12px 16px;
    text-align: left;
    background-color: var(--bg-card);
  }

  .tab-btn::after { display: none; }

  .tab-btn.active {
    background-color: var(--primary-orange);
    color: #FFFFFF;
    border-color: var(--primary-orange);
  }
}
