/* =====================================================================
   LITTLE SPROUTS — Premium Multi-Page Preschool / School Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root
   below. Everything (colors, radius, shadows, fonts) cascades from here.
   Update the Google Fonts <link> in each HTML file if you change fonts.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:       #fffdf6;   /* warm cream page background        */
  --ink:      #2f3b2a;   /* deep green-charcoal (headings)    */
  --accent:   #ffb43b;   /* sunny orange (primary)            */
  --accent-d: #f59a17;   /* darker orange for hovers          */
  --accent2:  #4cc4a8;   /* friendly teal                     */
  --accent2-d:#36a98f;   /* darker teal                       */
  --accent3:  #ff7a9c;   /* playful pink                      */
  --accent3-d:#f25c83;   /* darker pink                       */
  --muted:    #7c8472;   /* muted sage text                   */
  --surface:  #ffffff;   /* card / surface white              */
  --line:     #efeadd;   /* warm hairline borders             */

  /* --- Fonts --- */
  --font-head: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    24px;
  --radius-sm: 16px;
  --radius-lg: 36px;
  --shadow:    0 14px 34px rgba(47, 59, 42, .08);
  --shadow-lg: 0 28px 60px rgba(47, 59, 42, .14);
  --shadow-c: 0 12px 28px rgba(255, 180, 59, .28);
  --ease:      .35s cubic-bezier(.34, 1.2, .4, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #4c5347;
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent2-d); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-d); }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 92px 0; position: relative; }
.section--soft { background: linear-gradient(180deg, #fff 0%, #fff7e9 100%); }
.section--mint { background: linear-gradient(180deg, #fff 0%, #eafaf4 100%); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent2-d);
  background: rgba(76, 196, 168, .14);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.is-pink { color: var(--accent3-d); background: rgba(255, 122, 156, .14); }
.eyebrow.is-orange { color: var(--accent-d); background: rgba(255, 180, 59, .18); }

.lead { font-size: 1.14rem; color: #565e50; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-c);
}
.btn-primary:hover { background: var(--accent-d); color: var(--ink); box-shadow: 0 16px 34px rgba(255, 180, 59, .42); }

.btn-teal {
  background: var(--accent2);
  color: #fff;
  box-shadow: 0 12px 28px rgba(76, 196, 168, .32);
}
.btn-teal:hover { background: var(--accent2-d); color: #fff; }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent2); color: var(--accent2-d); }

.btn-light {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-light:hover { background: #fff; color: var(--accent3-d); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 246, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  display: grid; place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 18px rgba(255, 122, 156, .35);
  transform: rotate(-6deg);
  transition: transform var(--ease);
}
.brand:hover .logo-mark { transform: rotate(6deg) scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  color: #5a6152;
  padding: 8px 15px;
  border-radius: 12px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(255, 180, 59, .16); color: var(--accent-d); }
.nav-links a.active { color: var(--accent2-d); font-weight: 600; background: rgba(76, 196, 168, .14); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: rgba(255, 180, 59, .16);
  border: none;
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2.5px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   PLAYFUL SHAPES (decorative blobs / dots)
   --------------------------------------------------------------------- */
.blob {
  position: absolute;
  border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  filter: blur(2px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 480px at 88% -8%, rgba(255, 180, 59, .22), transparent 62%),
    radial-gradient(620px 460px at 2% 108%, rgba(76, 196, 168, .18), transparent 58%),
    linear-gradient(180deg, #fffdf6 0%, #fff5e6 100%);
  padding: 84px 0 92px;
}
.hero .blob-1 { width: 230px; height: 230px; background: var(--accent3); top: 10%; left: -60px; opacity: .14; }
.hero .blob-2 { width: 180px; height: 180px; background: var(--accent2); bottom: 6%; right: 44%; opacity: .12; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--accent3-d); position: relative; }
.hero h1 .wiggle {
  display: inline-block;
  color: var(--accent2-d);
}
.hero .lead { max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .95rem; }
.hero-badges b { font-size: 1.3rem; }

/* Hero visual — pure CSS playful collage */
.hero-visual { position: relative; }
.hv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hv-scene {
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 180, 59, .35), transparent 50%),
    linear-gradient(150deg, #e9faf4, #fff2e0);
  min-height: 220px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.hv-scene .sun { position: absolute; top: 16px; right: 20px; font-size: 2.6rem; animation: spin 14s linear infinite; }
.hv-scene .center-emoji { font-size: 5.4rem; animation: bob 3.2s ease-in-out infinite; }
.hv-scene .cloud { position: absolute; font-size: 2rem; opacity: .9; }
.hv-scene .cloud.c1 { top: 22px; left: 18px; animation: drift 7s ease-in-out infinite; }
.hv-scene .cloud.c2 { bottom: 18px; right: 26px; font-size: 1.5rem; animation: drift 9s ease-in-out infinite reverse; }
.hv-card h4 { color: var(--ink); font-size: 1.15rem; margin-bottom: 4px; }
.hv-card .hv-meta { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .92rem; }
.hv-card .hv-meta .stars { color: var(--accent); letter-spacing: 1px; }

.hv-float {
  position: absolute;
  background: var(--surface);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  z-index: 3;
}
.hv-float small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: .78rem; }
.hv-float .fe { font-size: 1.7rem; }
.hv-float.f1 { top: -22px; left: -18px; animation: bob 4s ease-in-out infinite; }
.hv-float.f2 { bottom: 30px; right: -22px; animation: bob 4.6s ease-in-out infinite .6s; }

@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(10px); } }

/* ---------------------------------------------------------------------
   TRUST STRIP
   --------------------------------------------------------------------- */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid .ts {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.trust-grid .ts .te { font-size: 1.8rem; margin-bottom: 6px; }
.trust-grid .ts strong {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--ink);
  line-height: 1;
}
.trust-grid .ts span { color: var(--muted); font-size: .96rem; }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(76, 196, 168, .4); }

.card .icon {
  width: 62px; height: 62px;
  border-radius: 20px;
  background: rgba(255, 180, 59, .18);
  display: grid; place-items: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
  transition: transform var(--ease);
}
.card:hover .icon { transform: rotate(-8deg) scale(1.08); }
.card .icon.is-teal { background: rgba(76, 196, 168, .18); }
.card .icon.is-pink { background: rgba(255, 122, 156, .18); }
.card h3 { margin-bottom: 8px; }
.card p { color: #565e50; margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* ---------------------------------------------------------------------
   PROGRAM PREVIEW / CARDS
   --------------------------------------------------------------------- */
.program-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.program-top {
  padding: 26px 26px 22px;
  position: relative;
  overflow: hidden;
}
.program-top.t-orange { background: linear-gradient(150deg, #ffe9c2, #fff5e3); }
.program-top.t-teal   { background: linear-gradient(150deg, #d3f4ea, #effbf7); }
.program-top.t-pink   { background: linear-gradient(150deg, #ffdce5, #fff0f4); }
.program-top.t-blue   { background: linear-gradient(150deg, #d9ecff, #f0f7ff); }
.program-top .p-emoji { font-size: 2.8rem; display: block; margin-bottom: 12px; }
.program-top .age-pill {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  background: rgba(255,255,255,.8); color: var(--ink);
  padding: 6px 14px; border-radius: 999px;
}
.program-top h3 { margin: 0; }
.program-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.program-body > p { color: #565e50; }
.program-meta {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  margin: 4px 0 16px;
  font-size: .9rem;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--muted);
}
.program-meta span { display: inline-flex; align-items: center; gap: 6px; }
.learn-list { margin: 0 0 18px; display: grid; gap: 9px; }
.learn-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: #565e50; }
.learn-list li::before { content: "🌱"; font-size: .9rem; line-height: 1.5; }
.program-body .btn { margin-top: auto; align-self: flex-start; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: #5a6152;
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { border-color: var(--accent2); color: var(--accent2-d); transform: translateY(-2px); }
.filter-btn.active { background: var(--accent2); border-color: var(--accent2); color: #fff; }

/* ---------------------------------------------------------------------
   FEATURE LIST (why us / steps)
   --------------------------------------------------------------------- */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent2), var(--accent2-d));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.2rem;
  font-family: var(--font-head);
  box-shadow: 0 8px 16px rgba(76, 196, 168, .3);
}
.feature h3 { font-size: 1.18rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: #565e50; }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  min-height: 380px;
  background: linear-gradient(150deg, #ffe6bd, #ffd1dd);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  padding: 32px;
}
.split-media.media-teal { background: linear-gradient(150deg, #c8f1e6, #d6ecff); }
.split-media .sm-inner { position: relative; z-index: 1; text-align: center; }
.split-media .sm-emoji { font-size: 3.4rem; margin-bottom: 8px; display: block; animation: bob 3.6s ease-in-out infinite; }
.split-media strong { font-family: var(--font-head); font-size: 1.5rem; display: block; }
.split-media .sm-inner p { color: #56604c; margin: 6px 0 0; }
.split-media .deco { position: absolute; opacity: .55; font-size: 1.8rem; }
.split-media .deco.d1 { top: 22px; left: 26px; }
.split-media .deco.d2 { bottom: 26px; right: 30px; }
.split-media .deco.d3 { top: 40px; right: 36px; font-size: 1.3rem; }

/* ---------------------------------------------------------------------
   A DAY AT SCHOOL — timeline
   --------------------------------------------------------------------- */
.timeline { display: grid; gap: 18px; max-width: 760px; margin: 0 auto; }
.tl-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--ease);
}
.tl-item:hover { transform: translateX(6px); }
.tl-time {
  font-family: var(--font-head); font-weight: 700; color: var(--accent2-d);
  font-size: 1rem;
}
.tl-body { display: flex; align-items: center; gap: 14px; }
.tl-body .tl-emoji {
  width: 50px; height: 50px; flex: 0 0 auto;
  border-radius: 14px; background: rgba(255, 180, 59, .16);
  display: grid; place-items: center; font-size: 1.5rem;
}
.tl-body h3 { font-size: 1.08rem; margin: 0 0 2px; }
.tl-body p { margin: 0; font-size: .94rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   TEACHERS / TEAM
   --------------------------------------------------------------------- */
.team-card { text-align: center; }
.team-card .team-photo {
  width: 116px; height: 116px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-size: 3rem;
  color: #fff;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}
.team-card .team-photo.g1 { background: linear-gradient(135deg, var(--accent), var(--accent3)); }
.team-card .team-photo.g2 { background: linear-gradient(135deg, var(--accent2), #7fd9c6); }
.team-card .team-photo.g3 { background: linear-gradient(135deg, var(--accent3), #ffb0c4); }
.team-card .team-photo.g4 { background: linear-gradient(135deg, #7cc6ff, var(--accent2)); }
.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent3-d); font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-bottom: 10px; }
.team-card p { font-size: .94rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card .stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.1rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  background: rgba(255, 122, 156, .16);
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(560px 380px at 88% 14%, rgba(255, 180, 59, .4), transparent 60%),
    linear-gradient(135deg, var(--accent3), var(--accent3-d));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .deco { position: absolute; font-size: 2.4rem; opacity: .55; }
.cta-band .deco.d1 { top: 22px; left: 30px; animation: bob 4s ease-in-out infinite; }
.cta-band .deco.d2 { bottom: 24px; right: 38px; animation: bob 4.6s ease-in-out infinite .5s; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 360px at 86% -20%, rgba(255, 180, 59, .22), transparent 60%),
    radial-gradient(420px 320px at 6% 120%, rgba(255, 122, 156, .16), transparent 60%),
    linear-gradient(180deg, #fff6e7, #fffdf6);
  padding: 66px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-banner .blob-1 { width: 150px; height: 150px; background: var(--accent2); top: 12%; right: 8%; opacity: .12; }
.page-banner .pb-emoji { font-size: 2.6rem; display: block; margin-bottom: 10px; }
.page-banner h1 { margin-bottom: 10px; position: relative; z-index: 1; }
.page-banner p { max-width: 640px; color: #565e50; margin-bottom: 0; position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--accent2-d); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   ADMISSIONS — steps, dates, faq
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step .num {
  width: 48px; height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.2rem;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; color: #565e50; }

.req-list { display: grid; gap: 14px; }
.req-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.req-list .rq-ic {
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 12px; background: rgba(76, 196, 168, .16);
  display: grid; place-items: center; font-size: 1.2rem;
}
.req-list b { font-family: var(--font-head); color: var(--ink); display: block; }
.req-list span { font-size: .94rem; color: var(--muted); }

.tuition-note {
  background: linear-gradient(135deg, #fff6e7, #ffeef3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px;
  box-shadow: var(--shadow);
}
.tuition-note .tn-emoji { font-size: 2.2rem; }
.tuition-note h3 { margin: 12px 0 8px; }

.dates-list { display: grid; gap: 12px; }
.date-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow);
}
.date-row .dr-date { font-family: var(--font-head); font-weight: 700; color: var(--accent3-d); }
.date-row .dr-label b { font-family: var(--font-head); color: var(--ink); display: block; }
.date-row .dr-label span { font-size: .92rem; color: var(--muted); }

/* FAQ (accordion) */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform var(--ease); color: var(--accent2-d); flex: 0 0 auto; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease), padding var(--ease); padding: 0 24px; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px; }
.faq-a p { margin: 0; color: #565e50; font-size: .98rem; }

/* ---------------------------------------------------------------------
   FACILITIES
   --------------------------------------------------------------------- */
.facility {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.facility:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.facility .fc-emoji {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 20px; display: grid; place-items: center; font-size: 1.9rem;
  background: rgba(255, 122, 156, .14);
}
.facility h3 { font-size: 1.1rem; margin-bottom: 6px; }
.facility p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .94rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffdf9;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent2);
  box-shadow: 0 0 0 4px rgba(76, 196, 168, .16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #e05656; font-size: .84rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e05656; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: #eafaf3;
  border: 1px solid #a9e6cf;
  color: #2c8f6c;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: linear-gradient(160deg, #fff6e7, #ffeef3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 14px; background: #fff;
  display: grid; place-items: center; font-size: 1.35rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: #565e50; }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  background:
    linear-gradient(rgba(76,196,168,.05), rgba(76,196,168,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 44px),
    #f3fbf8;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.6rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #2f3b2a;
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.72); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .01em;
  margin-bottom: 14px;
}
.footer-col a { display: block; color: rgba(255,255,255,.74); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.62);
}
.footer-bottom a { color: rgba(255,255,255,.78); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.34, 1.1, .4, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

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

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
}

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

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media { order: 0; }
  .trust-grid, .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 46px 28px; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .date-row { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .steps, .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hv-float.f1 { left: -6px; }
  .hv-float.f2 { right: -6px; }
  .cta-band .deco { display: none; }
}
