/* ==========================================================================
   EvoKids — Redesign Prototype
   Design system: playful & colourful, modern, premium
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --coral:      #FF6B6B;
  --coral-dark: #EE5253;
  --sun:        #FFC93C;
  --sun-dark:   #F5A623;
  --mint:       #16D3A6;
  --mint-dark:  #0FB78F;
  --sky:        #3AA0E3;
  --sky-dark:   #2481C4;
  --grape:      #9B6DE0;
  --grape-dark: #7E4FCB;

  /* Neutrals */
  --ink:        #23213A;
  --ink-soft:   #4B4966;
  --muted:      #7C7A94;
  --line:       #ECE7F2;
  --cream:      #FFF9F1;
  --cream-2:    #FFF3E6;
  --white:      #FFFFFF;

  /* Semantic */
  --bg:         var(--cream);
  --text:       var(--ink);

  /* Type */
  --font-head: 'Fredoka', 'Segoe UI', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(35,33,58,.08);
  --shadow-md: 0 14px 34px rgba(35,33,58,.12);
  --shadow-lg: 0 26px 60px rgba(35,33,58,.16);
  --shadow-brand: 0 16px 30px rgba(255,107,107,.30);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral-dark);
  background: #FFE9E4; padding: 7px 16px; border-radius: var(--r-pill);
}
.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: 18px; }
.section-lead { color: var(--ink-soft); font-size: clamp(1.02rem, 2vw, 1.18rem); max-width: 62ch; margin: 16px auto 0; }
.stack-center { display: flex; flex-direction: column; align-items: center; }

/* Blobs / floating decorations */
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: 0; pointer-events: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  padding: 15px 30px; border-radius: var(--r-pill);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-3px); box-shadow: 0 22px 38px rgba(255,107,107,.38); }
.btn--sun { background: var(--sun); color: var(--ink); box-shadow: 0 16px 30px rgba(245,166,35,.28); }
.btn--sun:hover { background: var(--sun-dark); transform: translateY(-3px); }
.btn--ghost { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,.15); }
.btn--lg { padding: 17px 38px; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,249,241,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(35,33,58,.06);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255,249,241,.95); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: clamp(14px, 3vw, 38px); }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--ink); flex: none; }
.brand__pill { background: #fff; border-radius: 18px; padding: 8px 16px; box-shadow: var(--shadow-sm); display: flex; align-items: center; transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.brand:hover .brand__pill { transform: rotate(-2.5deg) scale(1.04); }
.brand__img { height: 58px; width: auto; display: block; }
.site-footer .brand__pill { padding: 8px 16px; }
.site-footer .brand__img { height: 50px; }
.brand__logo {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  color: #fff; font-size: 1.5rem; box-shadow: var(--shadow-brand); flex: none;
}
.brand__logo svg { width: 28px; height: 28px; }
.brand b { font-weight: 700; }
.brand span { color: var(--coral); }
.brand small { display: block; font-family: var(--font-body); font-weight: 700; font-size: .6rem; letter-spacing: .22em; color: var(--muted); text-transform: uppercase; margin-top: -4px; }

/* Nav links */
.nav-menu { display: flex; align-items: center; justify-content: center; flex: 1; gap: clamp(2px, 1.1vw, 16px); }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  padding: 11px 17px; border-radius: var(--r-pill); color: var(--ink-soft);
  transition: color .18s, background .18s, transform .18s cubic-bezier(.34,1.56,.64,1);
}
.nav-link:hover, .nav-item:hover .nav-link { color: var(--ink); background: rgba(255,107,107,.10); transform: translateY(-2px); }
.nav-item.is-active > .nav-link { color: var(--coral-dark); background: rgba(255,107,107,.12); }
.nav-link .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; margin-top: -3px; }
.nav-item:hover .nav-link .caret { transform: rotate(-135deg); margin-top: 2px; }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 240px; background: #fff; border-radius: var(--r-md); padding: 10px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: .22s ease; z-index: 50;
  border: 1px solid var(--line);
}
/* invisible bridge across the gap so hover doesn't drop when moving to the menu */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 16px; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--r-sm);
  font-weight: 600; color: var(--ink-soft); font-size: .96rem; transition: .16s;
}
.dropdown a:hover { background: var(--cream-2); color: var(--coral-dark); transform: translateX(3px); }
.dropdown a .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }

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

/* Language switch */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: var(--r-pill);
  background: #fff; box-shadow: var(--shadow-sm); font-family: var(--font-head); font-weight: 600; color: var(--ink);
  transition: transform .15s;
}
.lang__btn:hover { transform: translateY(-2px); }
.lang__btn .globe { width: 18px; height: 18px; }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 150px; border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu button {
  display: flex; width: 100%; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--r-sm);
  font-weight: 600; color: var(--ink-soft); font-size: .95rem;
}
.lang__menu button:hover { background: var(--cream-2); color: var(--ink); }
.lang__menu button.is-active { background: rgba(22,211,166,.14); color: var(--mint-dark); }
.lang__flag { font-size: 1.15rem; }

/* Burger */
.burger { display: none; width: 46px; height: 46px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); position: relative; }
.burger span, .burger::before, .burger::after { content: ""; position: absolute; left: 12px; right: 12px; height: 3px; border-radius: 3px; background: var(--ink); transition: .25s; }
.burger span { top: 21px; }
.burger::before { top: 14px; }
.burger::after { top: 28px; }
body.nav-open .burger span { opacity: 0; }
body.nav-open .burger::before { top: 21px; transform: rotate(45deg); }
body.nav-open .burger::after { top: 21px; transform: rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; position: relative; z-index: 2; }
.hero__title { font-size: clamp(2.3rem, 5.6vw, 4rem); line-height: 1.05; }
.hero__title .hl { color: var(--coral); position: relative; white-space: nowrap; }
.hero__title .hl-2 { color: var(--sky); }
.hero__title .hl-3 { color: var(--mint-dark); }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); margin-top: 22px; max-width: 52ch; }
.hero__points { display: grid; gap: 12px; margin: 26px 0 32px; }
.hero__points li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink-soft); }
.hero__points .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(22,211,166,.16); color: var(--mint-dark); display: grid; place-items: center; margin-top: 2px; }
.hero__points .tick svg { width: 15px; height: 15px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__visual { position: relative; }
.hero__photo {
  border-radius: 40px 40px 40px 90px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.4; background: var(--cream-2); position: relative; z-index: 2; transform: rotate(1.5deg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; z-index: 3; font-family: var(--font-head);
}
.hero__badge .emoji { font-size: 1.7rem; }
.hero__badge b { display: block; font-size: 1.3rem; color: var(--ink); line-height: 1; }
.hero__badge small { color: var(--muted); font-family: var(--font-body); font-weight: 600; }
.hero__badge--tl { top: 20px; left: -26px; animation: float 5s ease-in-out infinite; }
.hero__badge--br { bottom: 34px; right: -22px; animation: float 6s ease-in-out infinite .8s; }

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

.hero .blob-1 { width: 380px; height: 380px; background: #FFE0D8; top: -80px; right: -60px; }
.hero .blob-2 { width: 260px; height: 260px; background: #D9F3EC; bottom: -70px; left: -80px; }

/* Wavy divider */
.wave { display: block; width: 100%; height: auto; line-height: 0; }

/* ==========================================================================
   CAMPUS CARDS
   ========================================================================== */
.campus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.campus-card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s; position: relative; display: flex; flex-direction: column;
}
.campus-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.campus-card__img { aspect-ratio: 4/3.1; overflow: hidden; position: relative; }
.campus-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.campus-card:hover .campus-card__img img { transform: scale(1.07); }
.campus-card__tag { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: .78rem; padding: 6px 13px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.campus-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.campus-card__body h3 { font-size: 1.4rem; }
.campus-card__addr { color: var(--muted); font-weight: 600; font-size: .95rem; margin: 6px 0 18px; flex: 1; }
.campus-card__link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--coral-dark); align-self: flex-start; }
.campus-card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.campus-card:hover .campus-card__link svg { transform: translateX(4px); }
.campus-card__img > span { position: absolute; inset: 0; display: grid; place-items: center; }
.campus-card__tag { z-index: 2; }

/* ==========================================================================
   WELCOME / FEATURE SPLIT
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split__media .frame { position: absolute; inset: 16px -16px -16px 16px; border: 3px dashed var(--sun); border-radius: var(--r-lg); z-index: -1; }
.prose p { color: var(--ink-soft); margin-top: 16px; }
.prose h3 { margin-top: 28px; font-size: 1.4rem; }

/* Value cards */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; margin-top: 52px; }
.value-card { background: #fff; border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card__num { font-family: var(--font-head); font-weight: 700; font-size: 3.4rem; line-height: .8; opacity: .14; position: absolute; top: 14px; right: 18px; }
.value-card__icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; }
.value-card__icon svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.2rem; }
.value-card p { color: var(--ink-soft); margin-top: 8px; font-size: .97rem; }

/* colour helpers for icons/dots */
.c-coral { background: var(--coral); } .c-sun { background: var(--sun); } .c-mint { background: var(--mint); } .c-sky { background: var(--sky); } .c-grape { background: var(--grape); }
.t-coral { color: var(--coral-dark); } .t-sun { color: var(--sun-dark); } .t-mint { color: var(--mint-dark); } .t-sky { color: var(--sky-dark); } .t-grape { color: var(--grape-dark); }
.bg-cream { background: var(--cream); } .bg-white { background: #fff; } .bg-mint-soft { background: #E7Faf5; } .bg-sky-soft { background: #E9F4FC; }

/* ==========================================================================
   UNITS OF INQUIRY (carousel)
   ========================================================================== */
.units { }
.units__track-wrap { position: relative; margin-top: 46px; width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.units__track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 10px clamp(20px, 5vw, 60px) 26px; scrollbar-width: none; }
.units__track::-webkit-scrollbar { display: none; }
.unit-card { scroll-snap-align: center; flex: 0 0 clamp(320px, 34vw, 460px); background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s; }
.unit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.unit-card__top { height: 360px; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 2rem; position: relative; overflow: hidden; }
.unit-card__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.unit-card__top.has-photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 60%; background: linear-gradient(to top, rgba(20,18,35,.62), transparent); z-index: 1; }
.unit-card__month { position: absolute; bottom: 12px; left: 18px; font-size: 1.3rem; z-index: 2; text-shadow: 0 1px 6px rgba(0,0,0,.45); }
.unit-card__emoji { font-size: 3.4rem; }
.unit-card__body { padding: 18px 20px 22px; }
.unit-card__body p { color: var(--ink-soft); font-size: .95rem; margin-top: 4px; }
.carousel-btns { display: flex; gap: 12px; justify-content: center; margin-top: 8px; }
.carousel-btn { width: 52px; height: 52px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--ink); transition: .2s; }
.carousel-btn:hover { background: var(--coral); color: #fff; transform: translateY(-3px); }
.carousel-btn svg { width: 20px; height: 20px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi { background: linear-gradient(180deg, #fff 0%, var(--cream-2) 100%); }
.testi__viewport { overflow: hidden; margin-top: 46px; }
.testi__track { display: flex; transition: transform .5s cubic-bezier(.5,.1,.2,1); }
.testi-card { flex: 0 0 100%; padding: 0 clamp(6px, 3vw, 40px); }
.testi-card__inner { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: clamp(30px, 5vw, 56px); max-width: 820px; margin-inline: auto; text-align: center; position: relative; }
.testi-card__quote { font-size: 4rem; font-family: var(--font-head); color: var(--sun); line-height: .6; height: 30px; }
.testi-card__text { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink); font-weight: 600; line-height: 1.6; }
.testi-card__author { margin-top: 22px; font-family: var(--font-head); font-weight: 600; color: var(--coral-dark); font-size: 1.05rem; }
.testi-card__stars { color: var(--sun); margin-top: 6px; letter-spacing: 3px; }
.testi__dots { display: flex; gap: 9px; justify-content: center; margin-top: 30px; }
.testi__dots button { width: 11px; height: 11px; border-radius: 50%; background: rgba(35,33,58,.16); transition: .2s; }
.testi__dots button.is-active { background: var(--coral); width: 30px; border-radius: var(--r-pill); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner__inner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--sun) 100%);
  border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-banner__inner h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-banner__inner p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 52ch; margin: 14px auto 30px; }
.cta-banner__inner .btn--ghost { color: var(--coral-dark); }
.cta-deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,.14); }

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */
.page-hero { position: relative; padding: clamp(48px,7vw,90px) 0 clamp(56px,8vw,96px); overflow: hidden; text-align: center; }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--ink-soft); font-size: 1.15rem; max-width: 60ch; margin: 16px auto 0; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; color: var(--muted); font-weight: 600; font-size: .9rem; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--coral-dark); }
.breadcrumb span { opacity: .5; }
.page-hero .blob-a { width: 300px; height: 300px; background: #FFE6DE; top: -90px; left: -70px; }
.page-hero .blob-b { width: 220px; height: 220px; background: #E1F5EE; bottom: -80px; right: -50px; }

/* ==========================================================================
   BIO / PEOPLE
   ========================================================================== */
.people { display: grid; gap: 28px; }
.bio-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; display: grid; grid-template-columns: 240px 1fr; }
.bio-card__media { position: relative; background: linear-gradient(135deg, var(--sky), var(--grape)); min-height: 260px; display: grid; place-items: center; color: #fff; }
.bio-card__avatar { width: 118px; height: 118px; border-radius: 50%; background: rgba(255,255,255,.22); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; border: 4px solid rgba(255,255,255,.5); }
.bio-card__body { padding: 30px 32px; }
.bio-card__body h3 { font-size: 1.45rem; }
.bio-card__role { display: inline-block; margin: 8px 0 14px; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--coral-dark); background: #FFE9E4; padding: 5px 14px; border-radius: var(--r-pill); }
.bio-card__body p { color: var(--ink-soft); font-size: .98rem; margin-top: 12px; }
.bio-card__body a { color: var(--sky-dark); font-weight: 700; }
.bio-card:nth-child(2) .bio-card__media { background: linear-gradient(135deg, var(--coral), var(--sun)); }
.bio-card:nth-child(3) .bio-card__media { background: linear-gradient(135deg, var(--mint), var(--sky)); }
.bio-card:nth-child(4) .bio-card__media { background: linear-gradient(135deg, var(--grape), var(--coral)); }
.bio-card:nth-child(5) .bio-card__media { background: linear-gradient(135deg, var(--sun), var(--mint)); }

/* ==========================================================================
   TIMELINE / PROCESS
   ========================================================================== */
.timeline { position: relative; max-width: 860px; margin: 50px auto 0; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 3px; background: repeating-linear-gradient(var(--sun) 0 10px, transparent 10px 20px); }
.tl-item { position: relative; padding-left: 82px; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-num { position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; box-shadow: var(--shadow-sm); z-index: 1; }
.tl-item:nth-child(5n+1) .tl-num { background: var(--coral); }
.tl-item:nth-child(5n+2) .tl-num { background: var(--sun); color: var(--ink); }
.tl-item:nth-child(5n+3) .tl-num { background: var(--mint); }
.tl-item:nth-child(5n+4) .tl-num { background: var(--sky); }
.tl-item:nth-child(5n+5) .tl-num { background: var(--grape); }
.tl-card { background: #fff; border-radius: var(--r-md); padding: 20px 26px; box-shadow: var(--shadow-sm); }
.tl-card h3 { font-size: 1.15rem; }
.tl-card p { color: var(--ink-soft); margin-top: 6px; font-size: .97rem; }

/* ==========================================================================
   GALLERY (Kids in action)
   ========================================================================== */
.gallery { columns: 4; column-gap: 18px; }
.gallery img, .gallery .g-tile { width: 100%; border-radius: var(--r-md); margin-bottom: 18px; break-inside: avoid; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.g-tile { aspect-ratio: var(--ar, 1); display: grid; place-items: center; color: #fff; font-size: 2.6rem; }
.gallery .g-tile:hover, .gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ==========================================================================
   CAMPUS DETAIL
   ========================================================================== */
.campus-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.campus-slider { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.campus-slider .slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s; }
.campus-slider .slide.is-active { opacity: 1; }
.campus-slider .slide img { width: 100%; height: 100%; object-fit: cover; }
.campus-slider .g-tile { width: 100%; height: 100%; border-radius: 0; margin: 0; }
.slider-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; gap: 8px; justify-content: center; z-index: 2; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.55); }
.slider-dots button.is-active { background: #fff; width: 26px; border-radius: var(--r-pill); }
.info-chip { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.info-chip__icon { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; color: #fff; }
.info-chip__icon svg { width: 22px; height: 22px; }
.info-chip b { display: block; font-family: var(--font-head); }
.info-chip span { color: var(--muted); font-weight: 600; font-size: .92rem; }

/* Tabs */
.tabs { margin-top: 46px; }
.tab-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tab-btn { padding: 12px 22px; border-radius: var(--r-pill); background: #fff; box-shadow: var(--shadow-sm); font-family: var(--font-head); font-weight: 600; color: var(--ink-soft); transition: .2s; }
.tab-btn:hover { color: var(--ink); }
.tab-btn.is-active { background: var(--coral); color: #fff; box-shadow: var(--shadow-brand); }
.tab-panels { margin-top: 30px; }
.tab-panel { display: none; animation: fade .4s; }
.tab-panel.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px);} to {opacity:1; transform:none;} }
.coming-soon { text-align: center; padding: 60px 20px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.coming-soon .emoji { font-size: 3.4rem; }
.coming-soon h3 { margin-top: 12px; font-size: 1.5rem; }
.coming-soon p { color: var(--muted); margin-top: 6px; }
.schedule-img { border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; background: #fff; }
.schedule-placeholder { aspect-ratio: 16/10; display: grid; place-items: center; text-align: center; color: var(--muted); background: repeating-linear-gradient(45deg, #fff, #fff 14px, var(--cream-2) 14px, var(--cream-2) 28px); border-radius: var(--r-lg); }

/* ---- Campus tab content (editable) ---- */
.tab-content { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: clamp(26px, 4vw, 46px); }
.tab-content > h3 { font-size: 1.5rem; text-align: center; }
.tab-intro { color: var(--ink-soft); max-width: 70ch; margin: 12px auto 30px; text-align: center; font-size: 1.05rem; }
.tab-note { color: var(--muted); font-size: .88rem; margin-top: 22px; text-align: center; }

/* pricing cards */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.price-card { border: 2px solid var(--line); border-radius: var(--r-lg); padding: 30px 24px; text-align: center; background: var(--cream); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card--featured { border-color: var(--coral); background: #fff; box-shadow: var(--shadow-brand); position: relative; }
.price-card--featured::before { content: "★ Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .76rem; padding: 5px 14px; border-radius: var(--r-pill); white-space: nowrap; }
.price-card__badge { display: inline-block; font-family: var(--font-head); font-weight: 600; color: var(--coral-dark); background: #FFE9E4; padding: 5px 14px; border-radius: var(--r-pill); font-size: .82rem; align-self: center; }
.price-card__amount { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--ink); margin: 16px 0 4px; }
.price-card__amount span { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--muted); }
.price-card__list { margin: 18px 0 0; display: grid; gap: 11px; text-align: left; flex: 1; }
.price-card__list li { display: flex; gap: 10px; color: var(--ink-soft); font-size: .95rem; }
.price-card__list li::before { content: "✓"; color: var(--mint-dark); font-weight: 800; flex: none; }
.price-card .btn { margin-top: 24px; }

/* content tables */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.content-table { width: 100%; border-collapse: collapse; min-width: 520px; background: #fff; }
.content-table th, .content-table td { padding: 14px 18px; text-align: left; }
.content-table thead th { background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.content-table tbody tr:nth-child(even) { background: var(--cream-2); }
.content-table tbody td { border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .95rem; }
.content-table tbody td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--ink); }

/* daily timeline */
.day-timeline { display: grid; gap: 14px; max-width: 760px; margin: 0 auto; }
.day-row { display: flex; gap: 18px; align-items: flex-start; background: var(--cream); border-radius: var(--r-md); padding: 16px 20px; transition: transform .2s; }
.day-row:hover { transform: translateX(5px); }
.day-time { flex: none; font-family: var(--font-head); font-weight: 700; color: var(--coral-dark); min-width: 68px; }
.day-act b { font-family: var(--font-head); }
.day-act p { color: var(--ink-soft); font-size: .94rem; margin-top: 2px; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-wrap { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: clamp(28px, 4vw, 52px); }
.form-section { margin-bottom: 12px; }
.form-section__title { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; margin: 30px 0 20px; color: var(--ink); }
.form-section:first-child .form-section__title { margin-top: 0; }
.form-section__num { width: 34px; height: 34px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; font-size: .95rem; flex: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 2px solid var(--line); border-radius: var(--r-sm); background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); background: #fff; box-shadow: 0 0 0 4px rgba(255,107,107,.12); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237C7A94' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--coral); background: #FFF3F3; }
.field__error { color: var(--coral-dark); font-size: .82rem; font-weight: 700; display: none; }
.field.invalid .field__error { display: block; }

/* radio / choice pills */
.choice-group { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; }
.choice span { display: inline-flex; align-items: center; padding: 11px 18px; border-radius: var(--r-pill); border: 2px solid var(--line); background: var(--cream); font-weight: 700; font-size: .95rem; color: var(--ink-soft); transition: .18s; }
.choice input:checked + span { border-color: var(--coral); background: rgba(255,107,107,.10); color: var(--coral-dark); }
.choice input:focus-visible + span { box-shadow: 0 0 0 4px rgba(255,107,107,.14); }

/* file dropzone */
.dropzone { border: 2px dashed var(--line); border-radius: var(--r-md); padding: 26px; text-align: center; background: var(--cream); transition: .2s; cursor: pointer; }
.dropzone:hover, .dropzone.is-drag { border-color: var(--coral); background: rgba(255,107,107,.06); }
.dropzone svg { width: 34px; height: 34px; color: var(--muted); margin-bottom: 8px; }
.dropzone b { color: var(--coral-dark); }
.dropzone small { display: block; color: var(--muted); margin-top: 4px; }
.dropzone__file { margin-top: 10px; font-weight: 700; color: var(--mint-dark); }

.form-note { color: var(--muted); font-size: .9rem; margin-top: 18px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success.show { display: block; animation: fade .4s; }
.form-success .emoji { font-size: 3.6rem; }
.form-success h3 { margin-top: 12px; font-size: 1.6rem; color: var(--mint-dark); }
.form-success p { color: var(--ink-soft); margin-top: 8px; }

/* contact layout */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact-info { background: linear-gradient(160deg, var(--sky), var(--grape)); color: #fff; border-radius: var(--r-xl); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-md); }
.contact-info h2 { color: #fff; }
.contact-info p { color: rgba(255,255,255,.9); margin-top: 10px; }
.contact-info__item { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.contact-info__item .ic { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,.18); display: grid; place-items: center; flex: none; }
.contact-info__item .ic svg { width: 22px; height: 22px; }
.contact-info__item b { display: block; }
.contact-info__item span { color: rgba(255,255,255,.85); font-size: .95rem; }
.contact-socials { display: flex; gap: 12px; margin-top: 30px; }
.contact-socials a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; transition: .2s; }
.contact-socials a:hover { background: #fff; color: var(--sky-dark); transform: translateY(-3px); }
.contact-socials svg { width: 20px; height: 20px; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 30px; border: 0; width: 100%; height: 320px; }

/* franchise locations */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 18px; margin-top: 30px; }
.loc-pill { background: #fff; border-radius: var(--r-md); padding: 22px; text-align: center; box-shadow: var(--shadow-sm); font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; transition: .25s; }
.loc-pill:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.loc-pill .pin { font-size: 1.8rem; display: block; margin-bottom: 6px; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 22px; }
.stat { text-align: center; background: #fff; border-radius: var(--r-lg); padding: 30px 20px; box-shadow: var(--shadow-sm); }
.stat b { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); display: block; line-height: 1; }
.stat span { color: var(--ink-soft); font-weight: 600; margin-top: 8px; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: #C9C6DE; padding-top: 70px; margin-top: 40px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; line-height: 1.7; }
.footer-links a { display: block; padding: 6px 0; color: #C9C6DE; font-weight: 600; font-size: .95rem; transition: .16s; }
.footer-links a:hover { color: var(--sun); transform: translateX(4px); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--sun); flex: none; margin-top: 3px; }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input { flex: 1; padding: 12px 16px; border-radius: var(--r-pill); border: none; background: rgba(255,255,255,.08); color: #fff; }
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline: 2px solid var(--sun); }
.newsletter button { width: 46px; height: 46px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; flex: none; transition: .2s; }
.newsletter button:hover { background: var(--coral-dark); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .2s; }
.footer-socials a:hover { background: var(--coral); color: #fff; transform: translateY(-3px); }
.footer-socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .88rem; color: #8B88A6; }
.footer-bottom a { color: var(--sun); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* mobile drawer base */
.nav-backdrop { position: fixed; inset: 0; background: rgba(35,33,58,.45); opacity: 0; visibility: hidden; transition: .25s; z-index: 90; }
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .campus-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 3; }
}
@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .burger { display: block; }
  .nav-menu {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 86vw);
    background: #fff; flex: none; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    padding: calc(var(--nav-h) + 16px) 20px 30px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; z-index: 95;
  }
  body.nav-open .nav-menu { transform: none; }
  .nav-link { justify-content: space-between; padding: 14px 16px; font-size: 1.05rem; }
  .nav-link:hover, .nav-item:hover .nav-link { transform: none; }
  .nav-item:hover .nav-link { background: var(--cream-2); }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: 4px 0 8px 14px; min-width: 0; display: none; }
  .dropdown::before { display: none; }
  /* neutralise desktop hover behaviour on touch so items don't shift off-screen */
  .nav-item:hover .dropdown { transform: none; visibility: hidden; }
  .nav-item.open .dropdown { display: block; opacity: 1; visibility: visible; transform: none; }
  .nav-item.open .nav-link .caret { transform: rotate(-135deg); }
  .nav-link .caret { pointer-events: none; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__points { max-width: 440px; margin-inline: auto; text-align: left; }
  .hero__cta { justify-content: center; }
  .hero__visual { max-width: 420px; margin: 28px auto 0; }
  .hero__badge { display: none; }
  .hero__photo { transform: none; aspect-ratio: 16/11; border-radius: 32px 32px 32px 64px; }
  .hero__photo > div { font-size: 6rem !important; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .bio-card { grid-template-columns: 1fr; }
  .bio-card__media { min-height: 200px; }
  .campus-hero { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .campus-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__badge--tl { left: 0; } .hero__badge--br { right: 0; }
  .cta-banner__inner, .form-wrap { padding: 26px 20px; }
  .timeline::before { left: 22px; } .tl-item { padding-left: 66px; } .tl-num { width: 46px; height: 46px; font-size: 1.15rem; }
}

/* ==========================================================================
   PLAYFUL LAYER — extra whimsy across the whole site
   ========================================================================== */

/* Confetti dot texture behind transparent (cream) sections */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .55;
  background-image:
    radial-gradient(circle, rgba(255,201,60,.55) 2.5px, transparent 3px),
    radial-gradient(circle, rgba(255,107,107,.42) 2.5px, transparent 3px),
    radial-gradient(circle, rgba(22,211,166,.42) 2px, transparent 2.5px);
  background-size: 140px 140px, 200px 200px, 170px 170px;
  background-position: 0 0, 70px 90px, 130px 40px;
}

/* Keyframes */
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes wiggle { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@keyframes twinkle { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.94); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes drift { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(0,-16px) rotate(8deg); } }

/* Hand-drawn wavy underline under centred section titles */
.stack-center .section-title::after {
  content: ""; display: block; width: 92px; height: 12px; margin: 16px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92' height='12' viewBox='0 0 92 12' fill='none' stroke='%23FF6B6B' stroke-width='3.5' stroke-linecap='round'%3E%3Cpath d='M3 8 Q 14 1 25 8 T 47 8 T 69 8 T 89 8'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Squiggle under hero highlight word */
.hero__title .hl::after, .page-hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12' fill='none' stroke='%23FFC93C' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M3 8 Q 18 1 33 8 T 63 8 T 93 8 T 117 8'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}
.page-hero h1 .hl { position: relative; color: var(--coral); }

/* Bobbing / wiggling emojis + icons */
.value-card__icon { animation: bob 4s ease-in-out infinite; }
.value-card:nth-child(2) .value-card__icon { animation-delay: .4s; }
.value-card:nth-child(3) .value-card__icon { animation-delay: .8s; }
.value-card:nth-child(4) .value-card__icon { animation-delay: 1.2s; }
.value-card:nth-child(5) .value-card__icon { animation-delay: 1.6s; }
.value-card:hover .value-card__icon { animation: wiggle .5s ease-in-out; }
.unit-card:hover .unit-card__emoji { animation: wiggle .5s ease-in-out; }
.loc-pill .pin { display: inline-block; animation: bob 3.5s ease-in-out infinite; }
.testi-card__stars { animation: twinkle 3s ease-in-out infinite; }
.eyebrow { animation: none; }

/* Colourful top edge on cards for extra pop */
.value-card, .campus-card, .bio-card, .unit-card { border-top: 5px solid transparent; }
.value-card:nth-child(5n+1), .campus-card:nth-child(4n+1), .unit-card:nth-child(6n+1) { border-top-color: var(--coral); }
.value-card:nth-child(5n+2), .campus-card:nth-child(4n+2), .unit-card:nth-child(6n+2) { border-top-color: var(--sun); }
.value-card:nth-child(5n+3), .campus-card:nth-child(4n+3), .unit-card:nth-child(6n+3) { border-top-color: var(--mint); }
.value-card:nth-child(5n+4), .campus-card:nth-child(4n+4), .unit-card:nth-child(6n+4) { border-top-color: var(--sky); }
.value-card:nth-child(5n+5), .unit-card:nth-child(6n+5) { border-top-color: var(--grape); }

/* Jelly / tilt hovers */
.value-card:hover { transform: translateY(-8px) rotate(-1.6deg); }
.campus-card:hover { transform: translateY(-10px) rotate(1.2deg); }
.unit-card:hover { transform: translateY(-8px) rotate(-2deg) scale(1.02); }
.loc-pill:hover { transform: translateY(-6px) rotate(-2.5deg) scale(1.03); }
.stat:hover { transform: translateY(-6px) rotate(1.5deg); transition: transform .25s; }
.bio-card { transition: transform .25s, box-shadow .25s; }
.bio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bio-card:hover .bio-card__avatar { animation: wiggle .5s ease-in-out; }

/* Buttons: springy pop */
.btn { transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .2s ease; }
.btn--primary:hover, .btn--sun:hover, .btn--ghost:hover { transform: translateY(-4px) scale(1.03); }

/* Timeline number pops on hover of its card */
.tl-item .tl-num { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.tl-item:hover .tl-num { transform: scale(1.14) rotate(-8deg); }
.tl-card { transition: transform .25s, box-shadow .25s; }
.tl-item:hover .tl-card { transform: translateX(6px); box-shadow: var(--shadow-md); }

/* Floating emoji stickers on CTA banners */
.cta-banner__inner::before, .cta-banner__inner::after {
  position: absolute; font-size: 2.6rem; opacity: .9; pointer-events: none;
}
.cta-banner__inner::before { content: "🎈"; top: 18px; left: 26px; animation: drift 6s ease-in-out infinite; }
.cta-banner__inner::after { content: "⭐"; bottom: 18px; right: 30px; animation: drift 7s ease-in-out infinite 1s; }

/* Dropdown dots gently pulse on hover */
.dropdown a:hover .dot { animation: twinkle 1.2s ease-in-out infinite; }

/* Lang button globe spins on hover */
.lang__btn:hover .globe { animation: spin-slow 2.4s linear infinite; }

/* Section eyebrow badge tilt */
.eyebrow { transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.stack-center:hover .eyebrow { transform: rotate(-3deg) scale(1.05); }

/* Info chips wiggle icon on hover */
.info-chip { transition: transform .2s; }
.info-chip:hover { transform: translateX(4px); }
.info-chip:hover .info-chip__icon { animation: wiggle .5s ease-in-out; }

/* Hero floating sticker accents */
.hero::after {
  content: "✏️"; position: absolute; font-size: 2.4rem; right: 8%; top: 24%;
  animation: drift 7s ease-in-out infinite; opacity: .85; z-index: 1; pointer-events: none;
}
.hero::before {
  content: "🌟"; position: absolute; font-size: 2rem; left: 6%; bottom: 18%;
  animation: drift 6s ease-in-out infinite .6s; opacity: .8; z-index: 1; pointer-events: none;
}
@media (max-width: 900px) { .hero::after, .hero::before { display: none; } }
@media (max-width: 900px) { .brand__img { height: 46px; } .brand__pill { padding: 6px 12px; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  body::before { display: none; }
}
