/* =======================================================================
   Wisdom School — static stylesheet
   Converted from a Next.js + Tailwind build into plain, hand-written CSS.
   ======================================================================= */

/* ---------- Fonts (Google Fonts, replaces next/font) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --radius: 1.25rem;

  --background: #fbf8ef;
  --foreground: #3a3327;
  --card: #fffdf7;
  --primary: #80cbc4;
  --primary-foreground: #1f4a47;
  --secondary: #b4ebe6;
  --muted: #f1ecdd;
  --muted-foreground: #7a6f5c;
  --accent: #ffb433;
  --accent-foreground: #4a2e00;
  --border: #ece5d2;

  --cream: #fbf8ef;
  --teal: #80cbc4;
  --aqua: #b4ebe6;
  --sun: #ffb433;

  --ink: #3a3327;
  --ink-soft: #5a5247;
  --ink-mute: #7a6f5c;
  --ink-faint: #a89f8c;
  --teal-dark: #1f4a47;
  --teal-deep: #1f8f86;
  --teal-mid: #6dad9f;
  --pink: #ff8fa3;
  --sand: #f3eddc;

  --font-display: 'Fredoka', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  background: var(--cream);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48dGV4dCB4PSIxIiB5PSIyNyIgZm9udC1zaXplPSIyNiI+JiM5OTk5OyYjNjUwMzk7PC90ZXh0Pjwvc3ZnPg==") 2 28, auto;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 999px; border: 2px solid var(--muted); }
::-webkit-scrollbar-thumb:hover { background: var(--teal-mid); }
::selection { background: var(--sun); color: var(--accent-foreground); }

/* ---------- Layout helpers ---------- */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { position: relative; overflow: hidden; padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 6rem 0; } }
.section--sand { background: var(--sand); }

.text-balance { text-wrap: balance; }

/* doodle wavy underline for highlighted heading words */
.doodle-underline {
  position: relative;
  display: inline-block;
  color: var(--teal-deep);
}
.doodle-underline svg { position: absolute; left: 0; bottom: -0.5rem; width: 100%; height: 0.7rem; }

/* ---------- Decorative floating doodles ---------- */
.doodle { position: absolute; pointer-events: none; }
@keyframes doodle-bob { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-14px) rotate(calc(var(--rot,0deg) + 3deg)); } }
@keyframes doodle-bob-2 { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(10px) rotate(calc(var(--rot,0deg) - 4deg)); } }
@keyframes doodle-sway { 0%,100% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } }
@keyframes doodle-spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes doodle-wiggle { 0%,100% { transform: rotate(0deg); } 25% { transform: rotate(8deg); } 75% { transform: rotate(-8deg); } }
@keyframes float-cloud { 0% { transform: translateX(0); } 100% { transform: translateX(40px); } }
.animate-bob { animation: doodle-bob 6s ease-in-out infinite; }
.animate-bob-2 { animation: doodle-bob-2 7s ease-in-out infinite; }
.animate-sway { animation: doodle-sway 5s ease-in-out infinite; }
.animate-spin-slow { animation: doodle-spin-slow 28s linear infinite; }
.animate-wiggle { animation: doodle-wiggle 4s ease-in-out infinite; }
.animate-cloud { animation: float-cloud 12s ease-in-out infinite alternate; }

@media (max-width: 767px)  { .hide-sm { display: none !important; } }
@media (max-width: 1023px) { .hide-md { display: none !important; } }
@media (max-width: 1279px) { .hide-lg { display: none !important; } }

/* ---------- Scroll-reveal (replaces framer-motion whileInView) ---------- */
.reveal {
  opacity: 0;
  transform: translate(var(--rx, 0), var(--ry, 28px));
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translate(0, 0); }
.reveal--right { --rx: 28px; --ry: 0px; }
.reveal--left  { --rx: -28px; --ry: 0px; }
.reveal--up    { --rx: 0px; --ry: 29px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 700; font-size: 1rem;
  padding: 0.9rem 1.75rem; transition: all 0.3s ease; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--sun); color: var(--accent-foreground); box-shadow: 0 14px 30px -10px rgba(255,180,51,0.8); }
.btn-accent:hover { background: #ffc45a; }
.btn-outline { background: #fff; color: var(--teal-dark); box-shadow: none; border: 1px solid var(--teal); }
.btn-outline:hover { background: rgba(180,235,230,0.4); }
.btn-teal { background: var(--teal); color: var(--teal-dark); box-shadow: 0 14px 30px -10px rgba(128,203,196,0.8); }
.btn-teal:hover { background: var(--teal-mid); color: #fff; }
.btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* =======================================================================
   Navbar
   ======================================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  transition: all 0.3s ease; background: transparent;
  opacity: 0; transform: translateY(-16px);
  animation: nav-in 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: 0.1s;
  height: 7.5rem; backdrop-filter: blur(0px); box-shadow: none; border-bottom: none;
  padding:25px;
}
@keyframes nav-in { to { opacity: 1; transform: translateY(0); } }
.navbar.scrolled {
  background: rgba(251,248,239,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -12px rgba(58,51,39,0.25);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; transition: height 0.3s ease;
}
.navbar.scrolled .navbar-inner { height: 4rem; }

.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand-badge {
  display: inline-flex; align-items: center; justify-content: center;

  overflow: hidden; transition: transform 0.3s ease;
}
.brand:hover .brand-badge { transform: rotate(-6deg); }
.brand-badge img { height: 2.25rem; width: 2.25rem; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.brand-text .b2 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  position: relative; padding: 0.5rem 0.9rem; font-size: 1.125rem; font-weight: 600;
  border-radius: 999px; color: var(--ink-soft); transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-links a .dot {
  position: absolute; left: 50%; bottom: -2px; height: 4px; width: 4px;
  transform: translateX(-50%) scaleX(0); border-radius: 999px; background: var(--sun);
  opacity: 0; transition: all 0.3s ease;
}
.nav-links a.active .dot { opacity: 1; transform: translateX(-50%) scaleX(3); }

.navbar-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  height: 2.75rem; width: 2.75rem; border-radius: 1rem; background: #fff;
  border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu drawer */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 60; background: rgba(58,51,39,0.35);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: 82vw; max-width: 24rem; background: var(--cream);
  border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; gap: 0.65rem; padding: 1.5rem 1.5rem 1rem; }
.mobile-menu-list { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.5rem 1rem 0; }
.mobile-menu-list a {
  display: block; border-radius: 1rem; padding: 0.9rem 1rem; font-size: 1.1rem; font-weight: 600;
  color: var(--ink); transition: background 0.2s ease;
}
.mobile-menu-list a:hover { background: rgba(180,235,230,0.4); }
.mobile-menu-list a span { margin-right: 0.75rem; font-family: var(--font-display); color: var(--sun); }
.mobile-menu-cta { padding: 1rem 1.5rem; }
.mobile-menu-foot { margin-top: auto; padding: 2rem 1.5rem 1.5rem; font-size: 0.9rem; color: var(--ink-mute); }
.mobile-menu-close {
  margin-left: auto; margin-right: 1rem; height: 2.5rem; width: 2.5rem;
  border-radius: 0.75rem; background: #fff; border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
}

/* =======================================================================
   Hero
   ======================================================================= */
.hero { padding: 7rem 0 4rem; }
@media (min-width: 640px)  { .hero { padding: 8rem 0 5rem; } }
@media (min-width: 1024px) { .hero { padding: 9rem 0 5rem; } }

.hero-glow-1, .hero-glow-2 { position: absolute; border-radius: 999px; filter: blur(60px); z-index: -1; }
.hero-glow-1 { top: -6rem; left: -6rem; height: 18rem; width: 18rem; background: rgba(180,235,230,0.4); }
.hero-glow-2 { top: 2.5rem; right: 0; height: 20rem; width: 20rem; background: rgba(255,180,51,0.15); }

.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 3rem; } }

.hero-text { text-align: center; }
@media (min-width: 1024px) { .hero-text { text-align: left; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px;
  background: #fff; padding: 0.4rem 1rem; font-size: 0.9rem; font-weight: 600;
  color: var(--teal-dark); box-shadow: 0 1px 3px rgba(0,0,0,0.06); border: 1px solid var(--border);
}
.hero-badge .dot { display: inline-block; height: 0.5rem; width: 0.5rem; border-radius: 999px; background: var(--sun); }

.hero h1 {
  margin-top: 1.25rem; font-size: 2.6rem; line-height: 1.05; font-weight: 600; color: var(--ink);
}
@media (min-width: 640px)  { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.1rem; } }

.hero p.lede {
  margin: 1.25rem auto 0; max-width: 36rem; font-size: 1.125rem; line-height: 1.65; color: var(--ink-soft);
}
@media (min-width: 1024px) { .hero p.lede { margin-left: 0; } }

.hero-ctas { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; justify-content: center; } }
@media (min-width: 1024px) { .hero-ctas { justify-content: flex-start; } }

.hero-trust { margin-top: 2.25rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; font-size: 0.9rem; color: var(--ink-mute); }
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }
.hero-trust b { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.hero-trust .sep { height: 2rem; width: 1px; background: var(--border); }

.hero-photo-wrap { position: relative; margin: 0 auto; max-width: 36rem; }
@media (min-width: 1024px) { .hero-photo-wrap { max-width: none; } }
.hero-photo-glow { position: absolute; inset: 0; z-index: -1; transform: scale(0.95); border-radius: 999px; background: rgba(255,180,51,0.15); filter: blur(60px); }
.hero-photo-float { animation: hero-float 6s ease-in-out infinite; }
@keyframes hero-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-photo-float img {
  height: 280px; width: 100%; object-fit: contain; margin: 0 auto;
  filter: drop-shadow(0 30px 35px rgba(58,51,39,0.28));
}
@media (min-width: 640px)  { .hero-photo-float img { height: 360px; } }
@media (min-width: 1024px) { .hero-photo-float img { height: 440px; } }

.hero-stat-card {
  position: absolute; bottom: -0.5rem; left: -0.75rem; display: flex; align-items: center; gap: 0.75rem;
  border-radius: 1rem; background: rgba(255,255,255,0.95); padding: 0.75rem 1rem;
  box-shadow: 0 20px 30px -10px rgba(58,51,39,0.2); border: 1px solid var(--border);
}
@media (min-width: 640px) { .hero-stat-card { left: -1.5rem; } }
.hero-stat-card .icon { display: flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center; border-radius: 0.75rem; background: var(--aqua); }
.hero-stat-card p.big { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--ink); }
.hero-stat-card p.small { font-size: 0.75rem; color: var(--ink-mute); }

/* =======================================================================
   Section heading
   ======================================================================= */
.section-heading { max-width: 42rem; }
.section-heading.center { margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px;
  background: rgba(180,235,230,0.5); padding: 0.4rem 0.9rem; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-dark);
}
.eyebrow .dot { display: inline-block; height: 0.4rem; width: 0.4rem; border-radius: 999px; background: var(--sun); }
.section-heading h2 { margin-top: 1rem; font-size: 1.875rem; font-weight: 600; line-height: 1.2; color: var(--ink); }
@media (min-width: 640px)  { .section-heading h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-heading h2 { font-size: 2.75rem; } }
.section-heading p.desc { margin-top: 1rem; font-size: 1.125rem; line-height: 1.65; color: var(--ink-soft); }

/* =======================================================================
   About
   ======================================================================= */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-photos { position: relative; }
.about-photo-main { overflow: hidden; border-radius: 2rem; box-shadow: 0 24px 50px -22px rgba(58,51,39,0.4); }
.about-photo-main img { height: 320px; width: 100%; object-fit: cover; }
@media (min-width: 640px) { .about-photo-main img { height: 420px; } }
.about-photo-small {
  position: absolute; bottom: -2rem; right: -0.75rem; width: 11rem; overflow: hidden;
  border-radius: 1.5rem; border: 4px solid var(--cream); box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.about-photo-small img { height: 10rem; width: 100%; object-fit: cover; }
.about-pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.pillar {
  display: flex; gap: 1rem; border-radius: 1rem; background: rgba(255,255,255,0.7);
  padding: 1rem; border: 1px solid var(--border); transition: all 0.3s ease;
}
.pillar:hover { transform: translateY(-4px); background: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.pillar .star {
  flex-shrink: 0; margin-top: 0.15rem; display: flex; height: 2.25rem; width: 2.25rem;
  align-items: center; justify-content: center; border-radius: 0.75rem; background: var(--aqua);
  font-family: var(--font-display); font-weight: 700; color: var(--teal-dark);
}
.pillar h3 { font-size: 1.125rem; font-weight: 600; color: var(--ink); }
.pillar p { margin-top: 0.15rem; font-size: 0.95rem; line-height: 1.5; color: var(--ink-soft); }

/* =======================================================================
   Curriculum
   ======================================================================= */
.curriculum-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .curriculum-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .curriculum-grid { grid-template-columns: repeat(4, 1fr); } }
.program-card {
  display: flex; flex-direction: column; overflow: hidden; border-radius: 1.75rem;
  background: #fff; border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.program-card:hover { transform: translateY(-8px); box-shadow: 0 24px 44px -22px rgba(58,51,39,0.4); }
.program-photo { position: relative; height: 12rem; width: 100%; overflow: hidden; }
.program-photo img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover .program-photo img { transform: scale(1.05); }
.program-photo .fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(58,51,39,0.35), transparent 60%); }
.program-age { position: absolute; left: 0.75rem; top: 0.75rem; border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; color: #fff; }
.program-num {
  position: absolute; right: 0.75rem; top: 0.75rem; display: flex; height: 2rem; width: 2rem;
  align-items: center; justify-content: center; border-radius: 999px; background: rgba(255,255,255,0.95);
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--ink);
}
.program-body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem; }
.program-body h3 { font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.program-body p { margin-top: 0.5rem; font-size: 0.95rem; line-height: 1.5; color: var(--ink-soft); }
.program-points { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.program-points li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--ink-soft); }
.program-points .bullet { display: inline-block; height: 0.4rem; width: 0.4rem; border-radius: 999px; }
.curriculum-note { margin-top: 2.5rem; text-align: center; font-size: 0.95rem; color: var(--ink-mute); }
.curriculum-note a { font-weight: 700; color: var(--teal-deep); text-decoration: underline; text-decoration-color: var(--sun); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.curriculum-note a:hover { color: var(--teal-dark); }

/* =======================================================================
   Why Us
   ======================================================================= */
.stats-grid { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .stats-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  position: relative; border-radius: 1.5rem; background: #fff; padding: 1.5rem; text-align: center;
  border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: all 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.stat-card .value { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; }
@media (min-width: 640px) { .stat-card .value { font-size: 3rem; } }
.stat-card p { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--ink-soft); }
.stat-card .star { position: absolute; top: -0.5rem; right: -0.5rem; height: 1.5rem; width: 1.5rem; opacity: 0.8; }

.reasons-grid { margin-top: 2rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
.reason-card {
  display: flex; flex-direction: column; overflow: hidden; border-radius: 1.75rem; background: #fff;
  border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: all 0.3s ease;
}
@media (min-width: 640px) { .reason-card { flex-direction: row; } }
.reason-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -22px rgba(58,51,39,0.4); }
.reason-photo { position: relative; height: 13rem; width: 100%; overflow: hidden; }
@media (min-width: 640px) { .reason-photo { height: auto; width: 40%; } }
.reason-photo img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.reason-card:hover .reason-photo img { transform: scale(1.05); }
.reason-badge { position: absolute; left: 0.75rem; top: 0.75rem; border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; color: #fff; }
.reason-body { flex: 1; padding: 1.5rem; }
.reason-body h3 { font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.reason-body p { margin-top: 0.5rem; font-size: 0.95rem; line-height: 1.5; color: var(--ink-soft); }

.whyus-cta {
  margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  border-radius: 1.5rem; background: rgba(180,235,230,0.4); padding: 2rem; text-align: center;
  border: 1px solid rgba(128,203,196,0.3);
}
@media (min-width: 640px) { .whyus-cta { flex-direction: row; text-align: left; } }
.whyus-cta svg { flex-shrink: 0; height: 3rem; width: 5rem; }
.whyus-cta p { font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; color: var(--teal-dark); }
.whyus-cta a { flex-shrink: 0; }

/* =======================================================================
   Admission
   ======================================================================= */
.admission-grid { margin-top: 3.5rem; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .admission-grid { grid-template-columns: 1fr 1fr; } }
.steps { display: flex; flex-direction: column; gap: 1rem; }
.step {
  display: flex; gap: 1rem; border-radius: 1rem; background: #fff; padding: 1.25rem;
  border: 1px solid var(--border); transition: all 0.3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.step:hover .step-num { transform: rotate(6deg); }
.step-num {
  flex-shrink: 0; display: flex; height: 3rem; width: 3rem; align-items: center; justify-content: center;
  border-radius: 1rem; background: var(--sun); font-family: var(--font-display); font-size: 1.125rem;
  font-weight: 700; color: var(--accent-foreground); box-shadow: 0 8px 18px -8px rgba(255,180,51,0.8);
  transition: transform 0.3s ease;
}
.step h3 { font-size: 1.125rem; font-weight: 600; color: var(--ink); }
.step p { margin-top: 0.25rem; font-size: 0.95rem; line-height: 1.5; color: var(--ink-soft); }

.key-dates { margin-top: 1.5rem; border-radius: 1rem; border: 2px dashed var(--teal); background: rgba(255,255,255,0.6); padding: 1.25rem; }
.key-dates h3 { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 600; color: var(--teal-dark); }
.key-dates h3 svg { height: 1.25rem; width: 1.25rem; }
.key-dates-grid { margin-top: 0.75rem; display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .key-dates-grid { grid-template-columns: 1fr 1fr; } }
.key-date { border-radius: 0.75rem; background: #fff; padding: 0.75rem; border: 1px solid var(--border); }
.key-date .label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.key-date .value { margin-top: 0.1rem; font-size: 0.875rem; font-weight: 600; color: var(--ink); }

.form-card {
  position: relative; overflow: hidden; border-radius: 1.75rem; background: #fff;
  padding: 1.5rem; border: 1px solid var(--border); box-shadow: 0 24px 50px -25px rgba(58,51,39,0.4);
}
@media (min-width: 640px) { .form-card { padding: 2rem; } }
.form-card .doodle-corner { position: absolute; top: -0.75rem; right: -0.75rem; height: 2.5rem; width: 2.5rem; }
.form-card h3 { font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.form-card > p.sub { margin-top: 0.25rem; font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.form-grid { display: grid; gap: 1rem; }
.form-row2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; margin-bottom: 0.4rem; font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--pink); }
.field input, .field select, .field textarea {
  width: 100%; border-radius: 0.75rem; border: 1px solid var(--border); background: #fff;
  padding: 0.75rem 1rem; font-size: 0.95rem; color: var(--ink); font-family: inherit; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(128,203,196,0.3);
}
.form-note { text-align: center; font-size: 0.75rem; color: var(--ink-mute); }

/* =======================================================================
   Contact
   ======================================================================= */
.contact-grid { margin-top: 3.5rem; display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-left { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-info-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-card {
  border-radius: 1rem; background: #fff; padding: 1.25rem; border: 1px solid var(--border);
  transition: all 0.3s ease; white-space: pre-line;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.contact-info-card .label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info-card p.value { margin-top: 0.4rem; font-size: 0.95rem; font-weight: 500; line-height: 1.5; color: var(--ink); }
.map-frame { overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); }
.map-frame iframe { display: block; width: 100%; border: 0; }
.contact-photo { position: relative; overflow: hidden; border-radius: 1.5rem; }
.contact-photo img { height: 11rem; width: 100%; object-fit: cover; }
@media (min-width: 640px) { .contact-photo img { height: 13rem; } }
.contact-photo .fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(58,51,39,0.45), transparent 70%); }
.contact-photo .caption { position: absolute; bottom: 0.75rem; left: 1rem; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: #fff; }

/* =======================================================================
   Footer
   ======================================================================= */
.site-footer { position: relative; margin-top: auto; overflow: hidden; background: var(--ink); color: var(--sand); }
.footer-inner { display: grid; gap: 2.5rem; padding: 3.5rem 0; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand p { margin-top: 1rem; max-width: 24rem; font-size: 0.95rem; line-height: 1.5; color: var(--ink-faint); }
.footer-brand .brand-text .b1 { color: #fff; font-size: 1.5rem; }
.footer h3 { font-size: 1rem; font-weight: 600; color: #fff; }
.footer-links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.95rem; color: var(--ink-faint); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--teal); }
address { font-style: normal; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.95rem; color: var(--ink-faint); }
address a:hover { color: var(--teal); }
.footer-follow { margin-top: 1.25rem; }
.footer-follow p { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--teal); }
.footer-social { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-social a {
  border-radius: 999px; background: rgba(255,255,255,0.1); padding: 0.4rem 0.9rem; font-size: 0.875rem;
  font-weight: 600; color: var(--sand); border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s ease;
}
.footer-social a:hover { transform: translateY(-2px); background: var(--teal); color: var(--teal-dark); }
.footer-bottom {
  margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.875rem; color: var(--ink-faint);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p:first-child { display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom svg { height: 1rem; width: 1rem; }

/* =======================================================================
   Cloud intro overlay
   ======================================================================= */
.cloud-intro {
  position: fixed; inset: 0; z-index: 100; overflow: hidden; background: var(--cream);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cloud-intro.fade-out { opacity: 0; pointer-events: none; }
.cloud-intro-center {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cloud-intro-sun {
  opacity: 0; transform: translateY(80px) scale(0.7);
  animation: intro-sun-in 1.1s cubic-bezier(0.16,1,0.3,1) forwards; animation-delay: 0.2s;
}
.cloud-intro-sun svg { height: 7rem; width: 7rem; }
@media (min-width: 640px) { .cloud-intro-sun svg { height: 9rem; width: 9rem; } }
@keyframes intro-sun-in { to { opacity: 1; transform: translateY(0) scale(1); } }
.cloud-intro-brand {
  margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(30px);
  animation: intro-brand-in 0.9s cubic-bezier(0.16,1,0.3,1) forwards; animation-delay: 0.55s;
}
@keyframes intro-brand-in { to { opacity: 1; transform: translateY(0); } }
.cloud-intro-brand img { height: 4rem; width: 4rem; object-fit: contain; }
@media (min-width: 640px) { .cloud-intro-brand img { height: 5rem; width: 5rem; } }
.cloud-intro-brand h1 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 600; color: var(--ink); }
@media (min-width: 640px) { .cloud-intro-brand h1 { font-size: 3rem; } }
.cloud-intro-brand p { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.28em; color: var(--teal); }

.cloud-half { position: absolute; inset-block: 0; width: 50%; transition: transform 1.4s cubic-bezier(0.16,1,0.3,1); transition-delay: 1.25s; }
.cloud-half svg { height: 100%; width: 100%; }
.cloud-left  { left: 0; }
.cloud-right { right: 0; }
.cloud-intro.open .cloud-left  { transform: translateX(-105%); }
.cloud-intro.open .cloud-right { transform: translateX(105%); }

/* ---------- Toast ---------- */
.toast-wrap {
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 200;
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center; pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 0.5rem; border-radius: 0.9rem; padding: 0.8rem 1.25rem;
  font-size: 0.9rem; font-weight: 600; color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  opacity: 0; transform: translateY(-12px); transition: all 0.3s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: #2f8f6a; }
.toast.error { background: #d9617a; }
