/* ═══════════════════════════════════════════════════════════════
   MOONLITE MONTESSORI ACADEMY — SHARED DESIGN SYSTEM
   One stylesheet for every page. Edit here once, it applies everywhere.
   ═══════════════════════════════════════════════════════════════ */

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

:root{
  /* Soft green, cream & warm neutral palette */
  --forest:#4a5d43;--forest-mid:#6f8566;--forest-light:#eef3ea;--forest-xlight:#f7faf5;
  --terra:#8c5b20;--terra-mid:#d9a06a;--terra-pale:#f2cfae;--terra-light:#faf0e4;--terra-xlight:#fdf8f2;
  --gold:#c9a24a;--gold-deep:#7c611f;--gold-light:#faf3e0;--sage:#9caf88;--sage-deep:#566e44;--sage-light:#eef2e6;
  --cream:#faf8f3;--sand:#f1ebdf;--text:#2f3a2a;--muted:#5c6553;--border:#dde3d3;--white:#ffffff;

  /* Motion: distinct eases for distinct jobs — not one bounce for everything */
  --ease-snap:cubic-bezier(.16,1,.3,1);        /* confident, no overshoot — buttons, primary CTAs */
  --ease-soft:cubic-bezier(.4,0,.2,1);         /* structural transitions — sidebar, topbar */
  --ease-lift:cubic-bezier(.22,1,.36,1);       /* card hovers — gentle, no bounce */
  --spring:cubic-bezier(.34,1.15,.64,1);       /* single hero moment only — logo mark */

  --sidebar-w:72px;--sidebar-expanded:240px;
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important;}
}

html{scroll-behavior:smooth;}
body{font-family:'DM Sans',sans-serif;color:var(--text);background:var(--cream);line-height:1.7;font-size:16px;overflow-x:hidden;}

a{color:inherit;}
:focus-visible{outline:2.5px solid var(--terra);outline-offset:3px;border-radius:4px;}

.skip-link{
  position:absolute;left:1rem;top:-100px;z-index:1000;
  background:var(--forest);color:white;padding:12px 20px;border-radius:0 0 10px 10px;
  font-weight:700;font-size:14px;text-decoration:none;transition:top .2s var(--ease-snap);
}
.skip-link:focus{top:0;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* Icon system — replaces every emoji-as-icon in the site */
.icon{width:1em;height:1em;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;vertical-align:-0.14em;}
.icon-lg{width:34px;height:34px;stroke-width:1.4;}
.icon-xl{width:44px;height:44px;stroke-width:1.3;}

/* ═══════════════════════════════════════
   VERTICAL SIDEBAR NAV
═══════════════════════════════════════ */
.sidebar{
  position:fixed;top:0;left:0;bottom:0;
  width:var(--sidebar-w);
  background:var(--forest);
  z-index:300;
  display:flex;flex-direction:column;
  transition:width .35s var(--ease-soft);
  overflow:hidden;
  box-shadow:4px 0 24px rgba(74,93,67,.25);
}
.sidebar:hover{width:var(--sidebar-expanded);}
.sidebar-logo{
  display:flex;align-items:center;gap:14px;
  padding:20px 18px;
  border-bottom:1px solid rgba(255,255,255,.1);
  text-decoration:none;flex-shrink:0;
  min-height:80px;
}
.sidebar-logo-icon{
  width:36px;height:36px;border-radius:10px;
  background:var(--terra);color:white;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:18px;
  transition:transform .35s var(--spring);
}
.sidebar-logo-icon .icon{width:19px;height:19px;}
.sidebar:hover .sidebar-logo-icon{transform:rotate(-8deg) scale(1.1);}
.sidebar-logo-text{opacity:0;white-space:nowrap;transition:opacity .2s ease .1s;}
.sidebar:hover .sidebar-logo-text{opacity:1;}
.sidebar-logo-name{font-size:14px;font-weight:700;color:white;line-height:1.2;}
.sidebar-logo-tag{font-size:10px;color:rgba(255,255,255,.55);text-transform:uppercase;letter-spacing:.08em;margin-top:2px;}

.sidebar-nav{flex:1;display:flex;flex-direction:column;padding:12px 0;overflow-y:auto;}
.sidebar-nav a{
  display:flex;align-items:center;gap:14px;
  padding:13px 18px;text-decoration:none;
  color:rgba(255,255,255,.72);font-size:14px;font-weight:500;
  white-space:nowrap;position:relative;
  transition:color .22s ease,background .22s ease,border-color .22s ease;
  border-left:3px solid transparent;
}
.sidebar-nav a:hover{color:white;background:rgba(255,255,255,.08);border-left-color:var(--terra);}
.sidebar-nav a.active{color:white;background:rgba(255,255,255,.1);border-left-color:var(--terra);}
.sidebar-nav a .nav-icon{flex-shrink:0;width:22px;text-align:center;transition:transform .3s var(--ease-lift);display:inline-flex;justify-content:center;}
.sidebar-nav a:hover .nav-icon{transform:scale(1.14);}
.sidebar-nav-label{opacity:0;transition:opacity .2s ease .1s;}
.sidebar:hover .sidebar-nav-label{opacity:1;}
.sidebar-enrol{padding:14px;border-top:1px solid rgba(255,255,255,.1);flex-shrink:0;}
.sidebar-enrol a{
  display:flex;align-items:center;justify-content:center;gap:10px;
  background:var(--terra);color:white;
  font-size:13px;font-weight:700;
  padding:11px 14px;border-radius:10px;text-decoration:none;
  white-space:nowrap;overflow:hidden;
  transition:background .25s ease,transform .25s var(--ease-snap);
}
.sidebar-enrol a:hover{background:var(--terra-mid);transform:scale(1.03);}
.sidebar-enrol-label{opacity:0;transition:opacity .2s ease .1s;}
.sidebar:hover .sidebar-enrol-label{opacity:1;}

/* ═══════════════════════════════════════
   MOBILE TOP NAV
═══════════════════════════════════════ */
.mobile-nav{
  display:none;
  position:sticky;top:0;z-index:200;
  background:var(--forest);
  padding:0 1.25rem;height:64px;
  align-items:center;justify-content:space-between;
  box-shadow:0 2px 16px rgba(74,93,67,.3);
}
.mobile-logo{display:flex;align-items:center;gap:10px;text-decoration:none;}
.mobile-logo-icon{width:36px;height:36px;border-radius:9px;background:var(--terra);color:white;display:flex;align-items:center;justify-content:center;font-size:18px;}
.mobile-logo-icon .icon{width:19px;height:19px;}
.mobile-logo-name{font-size:15px;font-weight:700;color:white;}
.mobile-hamburger{background:none;border:none;cursor:pointer;padding:6px;display:flex;flex-direction:column;gap:5px;}
.mobile-hamburger span{display:block;width:22px;height:2px;background:white;border-radius:2px;transition:transform .25s var(--ease-snap),opacity .2s ease;}
.mobile-hamburger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.mobile-hamburger[aria-expanded="true"] span:nth-child(2){opacity:0;}
.mobile-hamburger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.mobile-menu{
  display:none;position:absolute;top:64px;left:0;right:0;
  background:var(--forest);padding:1rem;
  box-shadow:0 8px 24px rgba(0,0,0,.2);z-index:199;
}
.mobile-menu.open{display:block;}
.mobile-menu a{
  display:flex;align-items:center;gap:12px;color:rgba(255,255,255,.82);text-decoration:none;
  font-size:15px;font-weight:500;padding:11px 14px;border-radius:8px;
  transition:background .2s ease,color .2s ease;
}
.mobile-menu a:hover,.mobile-menu a.active{background:rgba(255,255,255,.1);color:white;}
.mobile-menu-enrol{display:flex!important;justify-content:center;background:var(--terra);color:white!important;text-align:center;border-radius:10px;margin-top:8px;font-weight:700!important;}

/* ═══════════════════════════════════════
   HORIZONTAL TOP BAR (desktop)
═══════════════════════════════════════ */
.topbar{
  position:fixed;top:0;left:var(--sidebar-w);right:0;height:64px;z-index:200;
  background:rgba(250,247,242,.96);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 2.5rem;
  box-shadow:0 2px 16px rgba(74,93,67,.08);
  transition:left .35s var(--ease-soft);
}
.topbar.no-sidebar{left:0;}
.topbar-logo{display:flex;align-items:center;gap:10px;text-decoration:none;}
.topbar-logo-icon{width:34px;height:34px;border-radius:9px;background:var(--forest);color:white;display:flex;align-items:center;justify-content:center;font-size:17px;}
.topbar-logo-icon .icon{width:18px;height:18px;}
.topbar-logo-name{font-size:15px;font-weight:700;color:var(--forest);line-height:1.1;}
.topbar-logo-tag{font-size:10px;color:var(--muted);letter-spacing:.06em;text-transform:uppercase;}
.topbar-links{display:flex;align-items:center;gap:.1rem;list-style:none;}
.topbar-links a{font-size:13px;font-weight:600;color:var(--muted);text-decoration:none;padding:7px 12px;border-radius:8px;transition:color .22s ease,background .22s ease;white-space:nowrap;}
.topbar-links a:hover,.topbar-links a.active{color:var(--forest);background:var(--forest-light);}
.topbar-right{display:flex;align-items:center;gap:14px;}
.topbar-phone{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--muted);font-weight:500;}
.topbar-phone a{color:var(--terra);text-decoration:none;font-weight:700;}
.topbar-enrol{display:inline-flex;align-items:center;gap:7px;background:var(--terra);color:white;font-size:13px;font-weight:700;padding:9px 20px;border-radius:9px;text-decoration:none;transition:background .25s ease,transform .25s var(--ease-snap),box-shadow .25s var(--ease-snap);box-shadow:0 4px 12px rgba(201,138,74,.3);white-space:nowrap;}
.topbar-enrol:hover{background:var(--terra-mid);transform:translateY(-2px);box-shadow:0 8px 20px rgba(201,138,74,.4);}

.main-wrap{padding-top:64px;}
.main-wrap.no-sidebar{margin-left:0;}

/* ═══════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════ */
.hero{min-height:100vh;display:flex;align-items:center;background:var(--forest);position:relative;overflow:hidden;}
.hero-bg-img{position:absolute;inset:0;z-index:0;}
.hero-bg-img img{width:100%;height:100%;object-fit:cover;display:block;opacity:.22;}
.hero-bg-img::after{content:'';position:absolute;inset:0;background:linear-gradient(140deg,rgba(74,93,67,.96) 0%,rgba(74,93,67,.82) 50%,rgba(111,133,102,.6) 100%);}
.hero-inner{max-width:1100px;margin:0 auto;padding:5rem 3rem 4rem;position:relative;z-index:1;width:100%;display:grid;grid-template-columns:1fr 460px;gap:4rem;align-items:center;}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.14em;color:var(--terra-mid);background:rgba(201,138,74,.15);padding:6px 16px;border-radius:100px;margin-bottom:1.5rem;border:1px solid rgba(201,138,74,.3);}
.hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(38px,5.5vw,68px);line-height:1.04;font-weight:700;color:white;margin-bottom:1.4rem;}
.hero h1 em{color:var(--terra-mid);font-style:italic;}
.hero-sub{font-size:17px;color:rgba(255,255,255,.8);max-width:480px;line-height:1.85;margin-bottom:2rem;}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:2.5rem;}
.btn-terra{background:var(--terra);color:white;font-family:'DM Sans',sans-serif;font-weight:700;font-size:15px;padding:14px 30px;border-radius:10px;border:none;cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:9px;box-shadow:0 6px 22px rgba(201,138,74,.4);transition:background .25s ease,transform .3s var(--ease-snap),box-shadow .3s var(--ease-snap);}
.btn-terra:hover{background:var(--terra-mid);transform:translateY(-3px);box-shadow:0 12px 28px rgba(201,138,74,.5);}
.btn-ghost-white{background:rgba(255,255,255,.08);color:white;font-family:'DM Sans',sans-serif;font-weight:500;font-size:15px;padding:14px 30px;border-radius:10px;border:1.5px solid rgba(255,255,255,.25);cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:9px;transition:background .25s ease,transform .3s var(--ease-snap),border-color .25s ease;}
.btn-ghost-white:hover{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.5);transform:translateY(-3px);}
.btn-outline{background:transparent;color:var(--forest);font-family:'DM Sans',sans-serif;font-weight:700;font-size:14px;padding:12px 26px;border-radius:10px;border:1.5px solid var(--border);cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:8px;transition:all .25s ease;}
.btn-outline:hover{border-color:var(--forest);background:var(--forest-light);}
.hero-pills{display:flex;flex-wrap:wrap;gap:10px;}
.hero-pill{display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,.08);color:rgba(255,255,255,.85);font-size:13px;font-weight:500;padding:6px 16px;border-radius:100px;border:1px solid rgba(255,255,255,.15);}
.hero-imgs{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:260px 160px;gap:12px;}
.hi{border-radius:16px;overflow:hidden;position:relative;}
.hi img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s var(--ease-lift);}
.hi:hover img{transform:scale(1.06);}
.hi.wide{grid-column:1/3;border-radius:20px 20px 0 0;}

/* ═══════════════════════════════════════
   HOMEPAGE HERO — v2, light/editorial split
═══════════════════════════════════════ */
.hero-v2{background:var(--cream);padding:6.5rem 3rem 4.5rem;overflow:hidden;}
.hero-v2-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4.5rem;align-items:center;}
.hero-v2-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.14em;color:var(--terra);background:var(--terra-light);padding:6px 16px;border-radius:100px;margin-bottom:1.5rem;border:1px solid var(--terra-mid);}
.hero-v2 h1{font-family:'Cormorant Garamond',serif;font-size:clamp(36px,4.8vw,58px);line-height:1.1;font-weight:700;color:var(--forest);margin-bottom:1.4rem;}
.hero-v2 h1 em{color:var(--terra);font-style:italic;}
.hero-v2-sub{font-size:16.5px;color:var(--muted);max-width:480px;line-height:1.85;margin-bottom:2rem;}
.hero-v2-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:2.25rem;}
.hero-v2-pills{display:flex;flex-wrap:wrap;gap:10px;}
.hero-v2-pill{display:inline-flex;align-items:center;gap:7px;background:white;color:var(--forest);font-size:13px;font-weight:500;padding:6px 16px;border-radius:100px;border:1px solid var(--border);}
.hero-v2-imgwrap{position:relative;}
.hero-v2-img{border-radius:24px;overflow:hidden;height:520px;box-shadow:0 30px 60px rgba(74,93,67,.18);}
.hero-v2-img img{width:100%;height:100%;object-fit:cover;display:block;}
.hero-v2-badge{position:absolute;bottom:-22px;left:-22px;background:white;padding:16px 22px;border-radius:16px;box-shadow:0 16px 36px rgba(74,93,67,.2);display:flex;align-items:center;gap:14px;}
.hero-v2-badge-icon{width:44px;height:44px;border-radius:12px;background:var(--forest-light);color:var(--forest);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.hero-v2-badge strong{display:block;font-size:20px;color:var(--forest);font-family:'Cormorant Garamond',serif;line-height:1;}
.hero-v2-badge span{font-size:12px;color:var(--muted);}

/* ═══════════════════════════════════════
   DIFFERENCE LIST — short checklist band
═══════════════════════════════════════ */
.diff-section{background:var(--sand);}
.diff-list{display:grid;grid-template-columns:1fr 1fr;gap:.5rem 3rem;margin-top:.5rem;}
.diff-item{display:flex;align-items:flex-start;gap:14px;padding:1rem 0;border-bottom:1px solid var(--border);}
.diff-item .icon{color:var(--terra);flex-shrink:0;margin-top:3px;}
.diff-item strong{display:block;color:var(--forest);font-size:15.5px;margin-bottom:2px;}
.diff-item span{color:var(--muted);font-size:14px;line-height:1.6;}

/* Resource cards — 3-up variant of the quick-card pattern */
.resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar{background:var(--terra);padding:1.1rem 3rem;}
.trust-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;}
.trust-item{display:flex;align-items:center;gap:9px;color:white;font-size:14px;font-weight:600;}
.trust-icon{display:inline-flex;}

/* ═══════════════════════════════════════
   PAGE HERO (subpages)
═══════════════════════════════════════ */
.page-hero{background:var(--forest);position:relative;overflow:hidden;padding:5.5rem 3rem 4.5rem;}
.page-hero-bg{position:absolute;inset:0;z-index:0;}
.page-hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.20;}
.page-hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(140deg,rgba(74,93,67,.96) 0%,rgba(74,93,67,.85) 60%,rgba(111,133,102,.65) 100%);}
.page-hero-inner{position:relative;z-index:1;max-width:900px;margin:0 auto;text-align:center;}
.page-hero .eyebrow{color:var(--terra-pale);justify-content:center;display:flex;}
.page-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(34px,5vw,56px);color:white;font-weight:700;margin:.6rem 0 1.1rem;line-height:1.1;}
.page-hero p{font-size:16px;color:rgba(255,255,255,.8);max-width:620px;margin:0 auto;line-height:1.85;}

/* ═══════════════════════════════════════
   SECTIONS (shared)
═══════════════════════════════════════ */
.section{padding:5rem 3rem;}
.section-inner{max-width:1100px;margin:0 auto;}
.eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:11px;text-transform:uppercase;letter-spacing:.16em;font-weight:700;margin-bottom:.65rem;}
.section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(28px,4vw,42px);font-weight:700;margin-bottom:.9rem;line-height:1.15;}
.section-sub{font-size:16px;color:var(--muted);max-width:640px;line-height:1.88;margin-bottom:2.5rem;}

/* ═══════════════════════════════════════
   WHAT WE OFFER — signature split cards
═══════════════════════════════════════ */
.offer-grid{display:grid;grid-template-columns:1fr 1fr;gap:3px;border-radius:20px;overflow:hidden;box-shadow:0 12px 40px rgba(74,93,67,.14);}
.offer-card{position:relative;height:340px;overflow:hidden;cursor:default;}
.offer-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s var(--ease-lift),filter .4s ease;}
.offer-card:hover img{transform:scale(1.06);filter:brightness(.85);}
.offer-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(74,93,67,.92) 0%,rgba(74,93,67,.3) 55%,transparent 100%);transition:background .4s ease;}
.offer-card:hover .offer-overlay{background:linear-gradient(to top,rgba(74,93,67,.96) 0%,rgba(74,93,67,.5) 60%,transparent 100%);}
.offer-body{position:absolute;bottom:0;left:0;right:0;padding:1.75rem;}
.offer-age{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;padding:4px 12px;border-radius:100px;margin-bottom:.75rem;}
.offer-card:nth-child(1) .offer-age{background:var(--terra);color:white;}
.offer-card:nth-child(2) .offer-age{background:var(--sage-deep);color:white;}
.offer-card:nth-child(3) .offer-age{background:var(--gold-deep);color:white;}
.offer-card:nth-child(4) .offer-age{background:var(--forest);color:white;}
.offer-title{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:700;color:white;margin-bottom:.35rem;}
.offer-desc{font-size:14px;color:rgba(255,255,255,.8);line-height:1.65;max-height:0;overflow:hidden;transition:max-height .4s ease,opacity .3s ease;opacity:0;}
.offer-card:hover .offer-desc{max-height:100px;opacity:1;}
.offer-link{display:inline-flex;align-items:center;gap:6px;color:var(--terra-mid);font-size:13px;font-weight:700;margin-top:.6rem;opacity:0;transition:opacity .3s ease .1s;}
.offer-card:hover .offer-link{opacity:1;}

/* ═══════════════════════════════════════
   OSC FEATURE STRIP (homepage)
═══════════════════════════════════════ */
.osc-strip{background:linear-gradient(135deg,var(--terra) 0%,#a04820 100%);padding:4rem 3rem;position:relative;overflow:hidden;}
.osc-strip::before{content:'';position:absolute;top:-60px;right:-60px;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,.06);}
.osc-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.osc-text .eyebrow{color:rgba(255,255,255,.7);opacity:1;}
.osc-text .section-title{color:white;}
.osc-text p{font-size:15px;color:rgba(255,255,255,.82);line-height:1.88;margin-bottom:1.1rem;}
.osc-features{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:1.5rem;}
.osc-feat{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:12px;padding:1rem 1.1rem;transition:background .3s ease,transform .3s var(--ease-lift);}
.osc-feat:hover{background:rgba(255,255,255,.18);transform:translateY(-3px);}
.osc-feat-icon{display:block;margin-bottom:.4rem;color:white;}
.osc-feat h4{font-size:13px;font-weight:700;color:white;margin-bottom:.2rem;}
.osc-feat p{font-size:13px;color:rgba(255,255,255,.72);line-height:1.55;margin:0;}

/* ═══════════════════════════════════════
   MOSAIC
═══════════════════════════════════════ */
.mosaic{display:grid;grid-template-columns:repeat(5,1fr);height:200px;overflow:hidden;}
.mosaic div{overflow:hidden;}
.mosaic img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease-lift);}
.mosaic div:hover img{transform:scale(1.08);}

/* ═══════════════════════════════════════
   WHY MOONLITE / VALUES / PILLARS (colour card grids)
═══════════════════════════════════════ */
.why-section,.pillars-section{background:linear-gradient(160deg,var(--forest-xlight) 0%,var(--terra-xlight) 50%,var(--forest-xlight) 100%);}
.values-section{background:linear-gradient(160deg,var(--forest-xlight) 0%,var(--terra-xlight) 50%,var(--forest-xlight) 100%);}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.pillars-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.why-card,.value-card,.pillar-card{border-radius:18px;padding:1.85rem;transition:transform .32s var(--ease-lift),box-shadow .32s var(--ease-lift);}
.why-card:hover,.value-card:hover,.pillar-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(0,0,0,.18);}
.why-card.w1,.value-card.v1,.pillar-card.p1{background:linear-gradient(135deg,#2e1f2c,var(--forest));}
.why-card.w2,.value-card.v2,.pillar-card.p2{background:linear-gradient(135deg,#8a3a18,var(--terra));}
.why-card.w3,.value-card.v3,.pillar-card.p3{background:linear-gradient(135deg,#6b4f5e,var(--sage));}
.why-card.w4,.pillar-card.p4{background:linear-gradient(135deg,#8a6020,var(--gold));}
.why-card.w5{background:linear-gradient(135deg,#3d2440,#7a5a78);}
.why-card.w6{background:linear-gradient(135deg,#6a2a10,#c87050);}
.why-icon,.value-icon,.pillar-icon{margin-bottom:.85rem;display:block;color:white;}
.why-card h3,.value-card h3,.pillar-card h3{font-size:16px;font-weight:700;color:white;margin-bottom:.6rem;}
.why-card p,.value-card p,.pillar-card p{font-size:14px;color:rgba(255,255,255,.82);line-height:1.75;}

/* ═══════════════════════════════════════
   CURRICULUM AREAS
═══════════════════════════════════════ */
.curric-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;}
.curric-card{background:white;border:1px solid var(--border);border-radius:16px;padding:1.5rem 1.25rem;text-align:center;transition:transform .3s var(--ease-lift),box-shadow .3s var(--ease-lift),border-color .3s ease;}
.curric-card:hover{transform:translateY(-6px);box-shadow:0 16px 36px rgba(74,93,67,.12);border-color:var(--terra);}
.curric-icon{margin-bottom:.7rem;display:flex;justify-content:center;color:var(--terra);}
.curric-card h4{font-family:'Cormorant Garamond',serif;font-size:17px;color:var(--forest);margin-bottom:.4rem;}
.curric-card p{font-size:12.5px;color:var(--muted);line-height:1.6;}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-section{background:linear-gradient(160deg,var(--forest) 0%,#2a1a28 50%,var(--forest) 100%);padding:5rem 3rem;}
.testi-inner{max-width:1100px;margin:0 auto;}
.testi-inner .eyebrow{color:var(--terra-pale);opacity:1;}
.testi-inner .section-title{color:white;}
.testi-inner .section-sub{color:rgba(255,255,255,.75);}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:2rem;}
.testi-card{border-radius:18px;padding:1.85rem;display:flex;flex-direction:column;transition:transform .3s var(--ease-lift),box-shadow .3s var(--ease-lift);}
.testi-card:hover{transform:translateY(-7px);box-shadow:0 18px 44px rgba(0,0,0,.3);}
.testi-card.ft{background:rgba(201,138,74,.18);border:2px solid rgba(201,138,74,.5);}
.testi-card.reg{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);}
.quote-mark{font-family:'Cormorant Garamond',serif;font-size:56px;line-height:.7;color:var(--terra-mid);margin-bottom:.85rem;display:block;opacity:.7;}
.testi-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.1);color:rgba(255,255,255,.88);font-size:12px;font-weight:600;padding:5px 12px;border-radius:100px;margin-bottom:1rem;}
.testi-card.ft .testi-badge{background:rgba(201,138,74,.3);color:var(--terra-pale);}
.testi-text{font-size:15px;line-height:1.82;color:rgba(255,255,255,.88);margin-bottom:1.25rem;flex:1;}
.testi-stars{color:var(--terra-pale);font-size:15px;letter-spacing:2px;margin-bottom:.85rem;}
.testi-author{display:flex;align-items:center;gap:12px;border-top:1px solid rgba(255,255,255,.12);padding-top:1rem;}
.testi-card.ft .testi-author{border-top-color:rgba(201,138,74,.4);}
.avatar{width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;color:white;flex-shrink:0;}
.avatar .icon{width:20px;height:20px;}
.author-name{font-size:14px;font-weight:700;color:white;}
.testi-card.ft .author-name{color:var(--terra-pale);}
.author-detail{font-size:12px;color:rgba(255,255,255,.5);}

/* ═══════════════════════════════════════
   FIND US
═══════════════════════════════════════ */
.find-section{background:var(--sand);padding:5rem 3rem;}
.find-section .eyebrow{color:var(--terra);}
.find-section .section-title{color:var(--forest);}
.find-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;}
.map-embed{border-radius:20px;overflow:hidden;box-shadow:0 10px 36px rgba(74,93,67,.14);height:360px;}
.map-embed iframe{width:100%;height:100%;border:0;display:block;}
.contact-details h3{font-family:'Cormorant Garamond',serif;font-size:22px;color:var(--forest);margin-bottom:1.25rem;}
.contact-item{display:flex;align-items:flex-start;gap:14px;margin-bottom:1.1rem;padding:1.1rem 1.25rem;background:white;border:1px solid var(--border);border-radius:14px;transition:box-shadow .25s var(--ease-lift),transform .25s var(--ease-lift);}
.contact-item:hover{box-shadow:0 8px 22px rgba(74,93,67,.1);transform:translateX(4px);}
.contact-icon{width:42px;height:42px;border-radius:12px;background:var(--terra-light);color:var(--terra);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.contact-item strong{font-size:13px;font-weight:700;color:var(--forest);display:block;margin-bottom:2px;}
.contact-item span{font-size:14px;color:var(--muted);line-height:1.6;}
.contact-item a{color:var(--terra);text-decoration:none;font-weight:600;}

/* QUICK CONTACT CARDS */
.quick-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:3rem;}
.quick-card{background:white;border:1px solid var(--border);border-radius:16px;padding:1.6rem 1.3rem;text-align:center;transition:transform .3s var(--ease-lift),box-shadow .3s var(--ease-lift),border-color .3s ease;}
.quick-card:hover{transform:translateY(-6px);box-shadow:0 16px 36px rgba(74,93,67,.12);border-color:var(--terra);}
.quick-icon{width:48px;height:48px;border-radius:12px;background:var(--terra-light);color:var(--terra);display:flex;align-items:center;justify-content:center;margin:0 auto .85rem;}
.quick-card h4{font-size:13px;font-weight:700;color:var(--forest);margin-bottom:.4rem;text-transform:uppercase;letter-spacing:.04em;}
.quick-card p{font-size:14px;color:var(--muted);line-height:1.5;}
.quick-card a{color:var(--terra);text-decoration:none;font-weight:700;}

.contact-main{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;}
.hours-card{background:white;border:1px solid var(--border);border-radius:16px;padding:1.6rem 1.75rem;margin-top:1.5rem;}
.hours-card h3{font-family:'Cormorant Garamond',serif;font-size:20px;color:var(--forest);margin-bottom:1rem;}
.hours-row{display:flex;justify-content:space-between;font-size:14px;padding:8px 0;border-bottom:1px solid var(--border);}
.hours-row:last-child{border-bottom:none;}
.hours-row span:first-child{color:var(--text);font-weight:600;}
.hours-row span:last-child{color:var(--muted);}

/* ═══════════════════════════════════════
   FORMS (enrol / contact)
═══════════════════════════════════════ */
.enrol-form-card{background:white;border-radius:20px;padding:2.25rem;text-align:left;box-shadow:0 12px 40px rgba(74,93,67,.15);}
.enrol-form-card h3{font-family:'Cormorant Garamond',serif;font-size:24px;color:var(--forest);margin-bottom:.5rem;display:flex;align-items:center;gap:10px;}
.enrol-form-card > p{font-size:14px;color:var(--muted);margin-bottom:1.5rem;line-height:1.7;}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.form-group{display:flex;flex-direction:column;gap:6px;}
.form-group.full{grid-column:1/-1;}
label{font-size:13px;font-weight:700;color:var(--forest);}
input,select,textarea{font-family:'DM Sans',sans-serif;font-size:14px;border:1.5px solid var(--border);border-radius:10px;padding:11px 15px;color:var(--text);background:white;width:100%;transition:border-color .22s ease,box-shadow .22s ease;}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--forest);box-shadow:0 0 0 3px rgba(74,93,67,.1);}
input[aria-invalid="true"],select[aria-invalid="true"],textarea[aria-invalid="true"]{border-color:#b3392f;}
textarea{resize:vertical;min-height:88px;}
.field-error{font-size:12.5px;color:#b3392f;min-height:1.2em;}
.form-submit{background:linear-gradient(135deg,var(--terra),var(--terra-mid));color:white;font-family:'DM Sans',sans-serif;font-weight:700;font-size:16px;padding:15px 32px;border-radius:12px;border:none;cursor:pointer;width:100%;margin-top:1.25rem;box-shadow:0 6px 20px rgba(201,138,74,.35);display:inline-flex;align-items:center;justify-content:center;gap:9px;transition:transform .3s var(--ease-snap),box-shadow .3s var(--ease-snap);}
.form-submit:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(201,138,74,.45);}
.form-note{display:flex;align-items:center;justify-content:center;gap:6px;font-size:12px;color:var(--muted);text-align:center;margin-top:10px;}
.form-success{display:none;text-align:center;padding:3rem 1.5rem;}
.form-success .tick{color:var(--terra);margin-bottom:16px;animation:popIn .45s var(--ease-snap);display:flex;justify-content:center;}
@keyframes popIn{from{transform:scale(0);opacity:0;}to{transform:scale(1);opacity:1;}}
.form-success h3{font-family:'Cormorant Garamond',serif;font-size:28px;color:var(--forest);margin-bottom:12px;justify-content:center;}
.form-success p{color:var(--muted);font-size:15px;line-height:1.8;}

/* FAQ */
.faq-section{background:var(--sand);}
.faq-grid{display:grid;gap:14px;max-width:800px;}
.faq-item{background:white;border:1px solid var(--border);border-radius:14px;overflow:hidden;}
.faq-q{width:100%;text-align:left;background:none;border:none;font-family:inherit;padding:1.2rem 1.5rem;font-weight:700;font-size:15px;color:var(--forest);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;}
.faq-q .icon{transition:transform .25s var(--ease-snap);color:var(--terra);flex-shrink:0;}
.faq-item.open .faq-q .icon{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0 1.5rem;}
.faq-item.open .faq-a{max-height:200px;padding-bottom:1.3rem;}
.faq-a p{font-size:14px;color:var(--muted);line-height:1.75;}

/* ═══════════════════════════════════════
   STORY / INTRO SPLITS (about, montessori)
═══════════════════════════════════════ */
.story-grid,.intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.story-img,.intro-img{border-radius:20px;overflow:hidden;height:420px;box-shadow:0 20px 50px rgba(74,93,67,.18);}
.story-img img,.intro-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease-lift);}
.story-img:hover img,.intro-img:hover img{transform:scale(1.05);}
.story-text .section-title,.intro-text .section-title{color:var(--forest);}
.story-text p,.intro-text p{font-size:15px;color:var(--muted);line-height:1.9;margin-bottom:1.2rem;}
.intro-text blockquote{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:20px;color:var(--terra);border-left:3px solid var(--terra);padding-left:1.1rem;margin:1.4rem 0;line-height:1.5;}

/* STATS STRIP */
.stats-strip{background:linear-gradient(135deg,var(--terra) 0%,#a04820 100%);padding:3rem;}
.stats-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center;}
.stat-num{font-family:'Cormorant Garamond',serif;font-size:42px;font-weight:700;color:white;line-height:1;}
.stat-label{font-size:13px;color:rgba(255,255,255,.85);margin-top:.5rem;font-weight:500;}

/* TEAM */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.team-card{background:white;border:1px solid var(--border);border-radius:16px;padding:1.75rem 1.4rem;text-align:center;transition:transform .3s var(--ease-lift),box-shadow .3s var(--ease-lift);}
.team-card:hover{transform:translateY(-6px);box-shadow:0 16px 36px rgba(74,93,67,.12);}
.team-avatar{width:64px;height:64px;border-radius:50%;background:var(--forest-light);color:var(--forest);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;}
.team-card h4{font-family:'Cormorant Garamond',serif;font-size:18px;color:var(--forest);margin-bottom:.3rem;}
.team-role{font-size:12px;color:var(--terra);font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.6rem;}
.team-card p{font-size:13px;color:var(--muted);line-height:1.65;}
.team-note{text-align:center;font-size:13px;color:var(--muted);margin-top:2rem;font-style:italic;}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.filter-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:2.5rem;}
.filter-tab{background:white;border:1.5px solid var(--border);color:var(--muted);font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;padding:9px 20px;border-radius:100px;cursor:pointer;transition:border-color .25s ease,color .25s ease,background .25s ease;}
.filter-tab:hover{border-color:var(--terra);color:var(--terra);}
.filter-tab[aria-pressed="true"]{background:var(--terra);border-color:var(--terra);color:white;}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.gallery-item{position:relative;border-radius:14px;overflow:hidden;cursor:pointer;aspect-ratio:1/1;background:var(--forest-light);border:none;padding:0;display:block;width:100%;}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease-lift);}
.gallery-item:hover img{transform:scale(1.08);}
.gallery-item-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(74,93,67,.75) 0%,transparent 45%);opacity:0;transition:opacity .3s ease;display:flex;align-items:flex-end;padding:14px;}
.gallery-item:hover .gallery-item-overlay,.gallery-item:focus-visible .gallery-item-overlay{opacity:1;}
.gallery-item-caption{color:white;font-size:12.5px;font-weight:600;text-align:left;}

.lightbox{display:none;position:fixed;inset:0;background:rgba(20,30,20,.94);z-index:999;align-items:center;justify-content:center;padding:2rem;}
.lightbox.open{display:flex;}
.lightbox-inner{max-width:900px;max-height:85vh;position:relative;}
.lightbox-inner img{max-width:100%;max-height:85vh;border-radius:12px;display:block;box-shadow:0 20px 60px rgba(0,0,0,.5);}
.lightbox-caption{color:white;text-align:center;margin-top:1rem;font-size:14px;}
.lightbox-close{position:absolute;top:-46px;right:0;background:rgba(255,255,255,.12);border:none;color:white;width:38px;height:38px;border-radius:50%;cursor:pointer;transition:background .25s ease,transform .25s var(--ease-snap);display:flex;align-items:center;justify-content:center;}
.lightbox-close:hover{background:var(--terra);transform:rotate(90deg);}
.lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.12);border:none;color:white;width:44px;height:44px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .25s ease;}
.lightbox-nav:hover{background:var(--terra);}
.lightbox-prev{left:-56px;}
.lightbox-next{right:-56px;}
@media(max-width:900px){.lightbox-prev{left:6px;}.lightbox-next{right:6px;}}

.update-note{background:var(--sand);border-radius:14px;padding:1.25rem 1.5rem;margin-bottom:2.5rem;font-size:13.5px;color:var(--muted);}
.update-note strong{color:var(--forest);}

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.featured-card{background:white;border-radius:22px;box-shadow:0 16px 46px rgba(74,93,67,.14);overflow:hidden;display:grid;grid-template-columns:340px 1fr;margin-bottom:3.5rem;}
.featured-thumb{background:var(--forest-light);position:relative;}
.featured-thumb img{width:100%;height:100%;object-fit:cover;display:block;min-height:320px;}
.featured-body{padding:2.5rem 2.75rem;display:flex;flex-direction:column;justify-content:center;}
.featured-tag{display:inline-flex;align-items:center;gap:6px;background:var(--terra-light);color:var(--terra);font-size:12px;font-weight:700;padding:5px 14px;border-radius:100px;margin-bottom:1rem;width:fit-content;}
.featured-body h2{font-family:'Cormorant Garamond',serif;font-size:28px;color:var(--forest);margin-bottom:.7rem;line-height:1.2;}
.featured-body p{font-size:14.5px;color:var(--muted);line-height:1.8;margin-bottom:1.5rem;}
.featured-actions{display:flex;gap:12px;flex-wrap:wrap;}
.archive-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.archive-card{background:white;border:1px solid var(--border);border-radius:16px;overflow:hidden;transition:transform .3s var(--ease-lift),box-shadow .3s var(--ease-lift);}
.archive-card:hover{transform:translateY(-6px);box-shadow:0 16px 36px rgba(74,93,67,.12);}
.archive-thumb{height:160px;background:var(--forest-light);overflow:hidden;}
.archive-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.archive-body{padding:1.25rem 1.4rem;}
.archive-month{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--terra);margin-bottom:.4rem;}
.archive-body h4{font-family:'Cormorant Garamond',serif;font-size:18px;color:var(--forest);margin-bottom:.7rem;line-height:1.3;}
.archive-link{font-size:13px;font-weight:700;color:var(--forest);text-decoration:none;display:inline-flex;align-items:center;gap:6px;}
.archive-link:hover{color:var(--terra);}
.empty-state{display:flex;flex-direction:column;align-items:center;gap:.6rem;text-align:center;padding:3rem 1.5rem;color:var(--muted);font-size:14px;background:white;border:1.5px dashed var(--border);border-radius:16px;}
.empty-state .icon{color:var(--sage);}
.signup-strip{background:linear-gradient(135deg,var(--terra) 0%,#a04820 100%);padding:3.5rem 3rem;border-radius:22px;text-align:center;margin-top:3.5rem;}
.signup-strip h3{font-family:'Cormorant Garamond',serif;font-size:26px;color:white;margin-bottom:.6rem;}
.signup-strip p{font-size:14.5px;color:rgba(255,255,255,.85);margin-bottom:1.5rem;}
.signup-form{display:flex;gap:10px;max-width:420px;margin:0 auto;flex-wrap:wrap;justify-content:center;}
.signup-form input{flex:1;min-width:200px;padding:12px 16px;border-radius:10px;border:none;font-family:'DM Sans',sans-serif;font-size:14px;}
.signup-form button{background:var(--forest);color:white;border:none;padding:12px 24px;border-radius:10px;font-weight:700;font-size:14px;cursor:pointer;transition:background .25s ease,transform .25s var(--ease-snap);}
.signup-form button:hover{background:#2a1a28;transform:translateY(-2px);}
.signup-success{display:none;align-items:center;justify-content:center;gap:8px;color:white;font-weight:600;font-size:14px;}

/* ═══════════════════════════════════════
   OSC PAGE
═══════════════════════════════════════ */
.schedule-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.schedule-card{background:white;border:1px solid var(--border);border-radius:18px;padding:1.85rem;transition:transform .3s var(--ease-lift),box-shadow .3s var(--ease-lift);}
.schedule-card:hover{transform:translateY(-8px);box-shadow:0 20px 44px rgba(74,93,67,.14);}
.schedule-time{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;padding:5px 14px;border-radius:100px;margin-bottom:1rem;background:var(--terra-light);color:var(--terra);}
.schedule-card h3{font-family:'Cormorant Garamond',serif;font-size:22px;color:var(--forest);margin-bottom:.6rem;}
.schedule-card p{font-size:14px;color:var(--muted);line-height:1.75;}

.day-strip{background:linear-gradient(135deg,var(--forest) 0%,#2a1a28 100%);padding:4.5rem 3rem;}
.day-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.day-text .eyebrow{color:var(--terra-pale);}
.day-text .section-title{color:white;}
.day-text p{font-size:15px;color:rgba(255,255,255,.82);line-height:1.88;margin-bottom:1.1rem;}
.day-img{border-radius:18px;overflow:hidden;height:380px;box-shadow:0 20px 50px rgba(0,0,0,.3);}
.day-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease-lift);}
.day-img:hover img{transform:scale(1.04);}

.holiday-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;}
.holiday-img{border-radius:20px;overflow:hidden;height:400px;box-shadow:0 20px 50px rgba(74,93,67,.18);}
.holiday-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease-lift);}
.holiday-img:hover img{transform:scale(1.05);}
.holiday-text .section-title{color:var(--forest);}
.holiday-text p{font-size:15px;color:var(--muted);line-height:1.9;margin-bottom:1.1rem;}

.prog-list{list-style:none;display:grid;gap:10px;margin-top:1.2rem;}
.prog-list li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:var(--text);}
.prog-list li .icon{flex-shrink:0;width:22px;height:22px;padding:4px;box-sizing:border-box;border-radius:50%;background:var(--forest-light);color:var(--forest);margin-top:1px;}

.note-band{background:var(--sand);padding:3.5rem 3rem;text-align:center;}
.note-inner{max-width:680px;margin:0 auto;}
.note-inner h3{font-family:'Cormorant Garamond',serif;font-size:26px;color:var(--forest);margin-bottom:.8rem;}
.note-inner p{font-size:15px;color:var(--muted);line-height:1.85;}

/* ═══════════════════════════════════════
   PROGRAMMES PAGE
═══════════════════════════════════════ */
.prog-block{padding:4.5rem 3rem;}
.prog-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.prog-block.reverse .prog-inner{direction:rtl;}
.prog-block.reverse .prog-inner > *{direction:ltr;}
.prog-img{border-radius:20px;overflow:hidden;height:400px;box-shadow:0 20px 50px rgba(74,93,67,.18);}
.prog-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease-lift);}
.prog-img:hover img{transform:scale(1.05);}
.prog-age{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;padding:5px 14px;border-radius:100px;margin-bottom:1rem;color:white;}
.prog-text h2{font-family:'Cormorant Garamond',serif;font-size:clamp(26px,3.5vw,38px);font-weight:700;color:var(--forest);margin-bottom:1rem;line-height:1.15;}
.prog-text p{font-size:15px;color:var(--muted);line-height:1.9;margin-bottom:1.2rem;}

.materials-section{background:linear-gradient(160deg,var(--forest-xlight) 0%,var(--terra-xlight) 50%,var(--forest-xlight) 100%);}
.materials-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center;}
.materials-imgs{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.materials-imgs img{width:100%;height:220px;object-fit:cover;border-radius:16px;display:block;box-shadow:0 10px 30px rgba(74,93,67,.14);}
.materials-imgs img:nth-child(2){margin-top:2.5rem;}
.materials-text .section-title{color:var(--forest);}
.materials-text p{font-size:15px;color:var(--muted);line-height:1.9;margin-bottom:1.1rem;}

/* ═══════════════════════════════════════
   ENROL BAND
═══════════════════════════════════════ */
.enrol-band{background:var(--forest);padding:4.5rem 3rem;text-align:center;}
.enrol-inner{max-width:680px;margin:0 auto;}
.enrol-band .eyebrow{color:var(--terra-pale);justify-content:center;display:flex;}
.enrol-band h2{font-family:'Cormorant Garamond',serif;font-size:clamp(28px,4vw,44px);color:white;font-weight:700;margin-bottom:1rem;line-height:1.15;}
.enrol-inner>p{font-size:16px;color:rgba(255,255,255,.78);line-height:1.85;margin-bottom:2.5rem;}

/* ═══════════════════════════════════════
   LEGAL PAGES (privacy / accessibility)
═══════════════════════════════════════ */
.legal-content{max-width:760px;}
.legal-content h2{font-family:'Cormorant Garamond',serif;color:var(--forest);font-size:24px;margin:2rem 0 .8rem;}
.legal-content h2:first-child{margin-top:0;}
.legal-content p,.legal-content li{font-size:15px;color:var(--muted);line-height:1.85;margin-bottom:.8rem;}
.legal-content ul{padding-left:1.4rem;}
.legal-updated{font-size:13px;color:var(--muted);font-style:italic;margin-bottom:2rem;}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer{background:var(--forest-light);color:var(--muted);padding:3.5rem 3rem 1.5rem;border-top:1px solid var(--border);}
.footer-inner{max-width:1100px;margin:0 auto;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;margin-bottom:2.5rem;}
.footer-brand-row{display:flex;align-items:center;gap:10px;margin-bottom:.85rem;}
.footer-brand-icon{width:38px;height:38px;border-radius:10px;background:var(--terra);color:white;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.footer-brand-icon .icon{width:19px;height:19px;}
.footer-logo-name{color:var(--forest);font-size:18px;font-weight:700;}
.footer-brand p{font-size:14px;line-height:1.8;margin-top:.75rem;}
.footer-contact-line{display:flex;align-items:center;gap:8px;margin-top:.5rem;font-size:13px;}
.footer-contact-line a{color:var(--muted);text-decoration:none;}
.footer-contact-line a:hover{color:var(--terra);}
.footer-col h4{font-size:11px;font-weight:700;color:var(--forest);text-transform:uppercase;letter-spacing:.12em;margin-bottom:.9rem;}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:8px;}
.footer-col ul li a{font-size:14px;color:var(--muted);text-decoration:none;display:inline-block;transition:color .22s ease,transform .22s ease;}
.footer-col ul li a:hover{color:var(--terra);transform:translateX(4px);}
.footer-socials{display:flex;gap:10px;margin-top:1.25rem;}
.social-btn{width:38px;height:38px;border-radius:10px;background:white;color:var(--forest);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;text-decoration:none;transition:background .28s ease,color .28s ease,transform .28s var(--ease-snap);}
.social-btn:hover{background:var(--terra);color:white;border-color:var(--terra);transform:translateY(-4px);}
.footer-bottom{border-top:1px solid var(--border);padding-top:1.5rem;font-size:13px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;color:var(--muted);}
.footer-bottom a{color:var(--muted);text-decoration:none;}
.footer-bottom a:hover{color:var(--terra);}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1080px){
  .curric-grid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:960px){
  .sidebar{display:none;}
  .topbar{display:none;}
  .mobile-nav{display:flex;}
  .main-wrap{margin-left:0;padding-top:0;}
  .hero-inner{grid-template-columns:1fr;}.hero-imgs{display:none;}.hero-inner{padding:4rem 1.5rem 3rem;}
  .hero-v2{padding:3.5rem 1.5rem 3rem;}
  .hero-v2-inner{grid-template-columns:1fr;gap:2.5rem;}
  .hero-v2-img{height:280px;}
  .hero-v2-badge{position:static;margin-top:16px;max-width:fit-content;}
  .offer-grid{grid-template-columns:1fr;}
  .osc-inner{grid-template-columns:1fr;}.osc-img{height:240px;}
  .why-grid{grid-template-columns:1fr 1fr;}
  .values-grid{grid-template-columns:1fr 1fr;}
  .pillars-grid{grid-template-columns:1fr 1fr;}
  .curric-grid{grid-template-columns:1fr 1fr 1fr;}
  .testi-grid{grid-template-columns:1fr 1fr;}
  .find-grid{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .story-grid,.intro-grid{grid-template-columns:1fr;}
  .story-img,.intro-img{height:280px;order:-1;}
  .stats-inner{grid-template-columns:1fr 1fr;}
  .team-grid{grid-template-columns:1fr 1fr;}
  .quick-grid{grid-template-columns:1fr 1fr;}
  .contact-main{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:repeat(3,1fr);}
  .featured-card{grid-template-columns:1fr;}
  .featured-thumb img{min-height:220px;}
  .archive-grid{grid-template-columns:1fr 1fr;}
  .schedule-grid{grid-template-columns:1fr;}
  .day-inner{grid-template-columns:1fr;}.day-img{height:260px;order:-1;}
  .holiday-grid{grid-template-columns:1fr;}.holiday-img{height:280px;order:-1;}
  .prog-inner{grid-template-columns:1fr;}
  .prog-block.reverse .prog-inner{direction:ltr;}
  .prog-img{height:280px;order:-1;}
  .materials-grid{grid-template-columns:1fr;}
  .materials-imgs img:nth-child(2){margin-top:0;}
  .resource-grid{grid-template-columns:1fr 1fr;}
  .diff-list{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .section{padding:3.5rem 1.5rem;}
  .trust-bar{padding:1rem 1.5rem;}.trust-inner{justify-content:center;}
  .testi-section,.enrol-band,.find-section,.osc-strip,.page-hero,.stats-strip,.day-strip,.note-band{padding:3.5rem 1.5rem;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .mosaic{grid-template-columns:repeat(3,1fr);}
  .curric-grid{grid-template-columns:1fr 1fr;}
  .quick-grid{grid-template-columns:1fr 1fr;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .featured-body{padding:2rem 1.75rem;}
  .signup-strip{padding:2.5rem 1.5rem;}
}
@media(max-width:520px){
  .hero h1{font-size:36px;}
  .why-grid,.testi-grid,.values-grid,.pillars-grid,.team-grid,.curric-grid,.quick-grid,.archive-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .osc-features{grid-template-columns:1fr;}
  .mosaic{grid-template-columns:1fr 1fr;height:auto;}
  .stats-inner{grid-template-columns:1fr 1fr;}
  .hero-v2{padding:2.5rem 1.25rem 2.5rem;}
  .hero-v2-img{height:220px;}
  .hero-v2-pills{gap:8px;}
  .hero-v2-pill{font-size:12px;padding:5px 12px;}
  .resource-grid{grid-template-columns:1fr;}
}
