/* ─── RESET ─── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:#2c2c2c;background:#fff;overflow-x:hidden;padding-top:68px}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* ─── TOKENS ─── */
:root{
  --blue:#00aeef; --pink:#ff2d78; --purple:#9b3dff;
  --amber:#f5a623; --green:#a5d91a; --teal:#00c9b1;
  --dark:#1a1a1a; --char:#2c2c2c; --d60:#444444; --d40:#888888;
}

/* ─── TYPE ─── */
h1,h2,h3{font-family:'Bricolage Grotesque',sans-serif;letter-spacing:-0.5px;line-height:1.1;color:var(--dark)}
h1{font-size:56px;font-weight:700;line-height:64px;letter-spacing:-1px}
h2{font-size:40px;font-weight:700;line-height:44px}
p{line-height:1.7;color:#555}
.eyebrow{font-family:'Inter',sans-serif;font-size:14px!important;font-weight:400!important;line-height:1.2!important;letter-spacing:1.38px!important;text-transform:uppercase!important;color:var(--d60);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

/* ─── BUTTONS ─── */
.btn{display:inline-flex;align-items:center;gap:8px;padding:16px 40px;border-radius:100px;border:none;cursor:pointer;font-family:'Inter',sans-serif;font-size:16px;font-weight:600;line-height:24px;letter-spacing:.2px;transition:background .2s;white-space:nowrap}
.btn-blue{background:var(--blue);color:#fff}
.btn-blue:hover{background:#0090ca}
.btn-outline{background:transparent;border:1.5px solid var(--dark);color:var(--dark)}
.btn-outline:hover{background:rgba(0,0,0,.04)}

/* ─── NAV (shared with index.html) ─── */
.header-wrap{position:fixed;top:0;left:0;right:0;z-index:100;display:flex;align-items:flex-start;padding:0 max(24px, calc((100% - 1200px) / 2));background:transparent;border-bottom:1px solid transparent}
@keyframes stickySlideIn{from{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}
@keyframes navLogoIn{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}
.header-wrap.scrolled{background:#fff;border-bottom:1px solid rgba(0,0,0,0.06);animation:stickySlideIn .35s cubic-bezier(0.16,1,0.3,1) forwards}
.logo-panel{flex-shrink:0;overflow:hidden;width:fit-content}
.logo-box{display:block;background:transparent;padding:14px 0;line-height:0;max-height:200px;opacity:1;transition:max-height .2s ease,opacity .2s ease,padding .2s ease}
.logo-full{height:120px;width:auto;display:block}
.logo-compact-wrap{display:none;align-items:center;gap:10px;flex-shrink:0}
.logo-compact{width:40px;height:40px;border-radius:8px;background:transparent;display:block;object-fit:contain;flex-shrink:0}
.nav-brand .brand-name{font-family:'Inter',sans-serif;font-weight:700;font-size:14px;color:#1a1a1a;line-height:1.3}
.nav-brand .brand-tag{font-family:'Inter',sans-serif;font-size:10px;font-weight:600;color:var(--blue);line-height:1.4}
.header-wrap.scrolled .logo-panel{max-width:0;overflow:hidden}
.header-wrap.scrolled .logo-box{max-height:0;opacity:0;padding-top:0;padding-bottom:0}
.header-wrap.scrolled .nav{padding-left:0}
.header-wrap.scrolled .logo-compact-wrap{display:flex;animation:navLogoIn .3s .15s ease both}
.nav{flex:1;display:flex;align-items:center;padding:14px 0 14px 24px}
.nav-links{display:flex;align-items:center;margin-left:auto}
.nav-links a{display:flex;align-items:center;gap:6px;padding:8px 14px;border-radius:8px;font-family:'Inter',sans-serif;font-weight:400;font-size:14px;color:var(--dark);white-space:nowrap;transition:background .15s}
.nav-links a:hover{background:rgba(0,0,0,.04)}
.nav-chevron{width:14px;height:14px;display:block;flex-shrink:0;opacity:.7}
.nav-cta{background:var(--blue);color:#fff;padding:0 20px;height:40px;border-radius:100px;font-family:'Inter',sans-serif;font-weight:600;font-size:14.4px;display:inline-flex;align-items:center;flex-shrink:0;margin-left:24px;transition:background .2s}
.nav-cta:hover{background:#0090ca}
.nav-dropdown{position:relative}
.nav-dropdown .dropdown-menu{display:none;position:absolute;top:100%;left:0;padding-top:8px;min-width:200px;z-index:200}
.nav-dropdown .dropdown-menu-inner{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:10px;box-shadow:0 8px 24px rgba(0,0,0,.1);padding:10px;display:flex;flex-direction:column;gap:4px}
.nav-dropdown:hover .dropdown-menu{display:block}
.dropdown-menu-inner a{display:flex;align-items:center;min-height:44px;padding:10px 20px;border-radius:7px;font-family:'Inter',sans-serif;font-size:14px;font-weight:500;color:var(--dark);white-space:nowrap;transition:background .12s}
.dropdown-menu-inner a:hover{background:rgba(0,0,0,.04)}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px;width:40px;height:40px;justify-content:center;align-items:center}
.hamburger span{display:block;width:22px;height:2px;background:var(--dark);transition:transform .25s,opacity .15s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-menu{display:none;position:fixed;top:52px;left:0;right:0;background:#fff;padding:4px 20px 24px;box-shadow:0 10px 30px rgba(0,0,0,.08);z-index:45;flex-direction:column;gap:0;border-top:1px solid rgba(0,0,0,.06)}
@keyframes mobMenuItemIn{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
.mobile-menu.open > *{opacity:0;animation:mobMenuItemIn .32s cubic-bezier(.16,1,.3,1) forwards}
.mobile-menu.open > *:nth-child(1){animation-delay:.04s}
.mobile-menu.open > *:nth-child(2){animation-delay:.08s}
.mobile-menu.open > *:nth-child(3){animation-delay:.12s}
.mobile-menu.open > *:nth-child(4){animation-delay:.16s}
.mobile-menu.open > *:nth-child(5){animation-delay:.20s}
.mobile-menu.open > *:nth-child(6){animation-delay:.24s}
.mobile-menu.open > *:nth-child(7){animation-delay:.28s}
.mobile-menu.open > *:nth-child(8){animation-delay:.32s}
.mobile-menu.open > *:nth-child(9){animation-delay:.36s}
.mobile-menu.open{display:flex}
.mob-link{padding:14px 8px;font-size:16px;color:var(--d60);border-bottom:1px solid rgba(0,0,0,.05);display:block}
.mob-group{border-bottom:1px solid rgba(0,0,0,.05)}
.mob-group-trigger{padding:14px 8px;font-size:16px;color:var(--d60);display:flex;align-items:center;justify-content:space-between;cursor:pointer;user-select:none}
.mob-group-trigger svg{transition:transform .2s}
.mob-group.open .mob-group-trigger svg{transform:rotate(180deg)}
.mob-group .mob-sub{display:none;padding:0 8px 10px 20px;flex-direction:column;gap:0}
.mob-group.open .mob-sub{display:flex}
.mob-sub a{padding:10px 0;font-size:15px;color:var(--d60)}
.mob-group .mob-link{border-bottom:none}
.mob-cta{margin-top:12px}
.mob-cta .btn{width:100%;justify-content:center}

/* ─── HERO ─── */
.sch-hero{padding:128px max(24px, calc((100% - 1200px) / 2)) 96px;position:relative;overflow:hidden}
.sch-hero-inner{display:grid;grid-template-columns:1fr 568px;gap:80px;align-items:center;position:relative}
.sch-hero .eyebrow{margin-bottom:24px}
.sch-hero h1{margin-bottom:32px}
.sch-hero h1 .w-blue{color:var(--blue)}
.sch-hero h1 .w-purple{color:var(--purple)}
.sch-hero h1 .w-green{color:var(--green)}
.sch-hero-sub{font-size:18px;line-height:30px;color:var(--d60);margin-bottom:40px;max-width:540px}
.sch-hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.sch-hero-right{position:relative;display:grid;grid-template-columns:276px 276px;grid-template-rows:207px 207px;gap:16px}
.sch-hero-right img{width:100%;height:100%;object-fit:cover;border-radius:16px}
.sh-img1{grid-column:1;grid-row:1}
.sh-img2{grid-column:1;grid-row:2}
.sh-img3{grid-column:2;grid-row:1/span 2;height:430px}
.sch-hero-sp{position:absolute;pointer-events:none;z-index:2}
.sh-sp1{top:-20px;right:-10px;width:56px;height:56px}
.sh-sp2{bottom:-20px;right:90px;width:40px;height:40px}
.sh-sp3{bottom:20px;right:-30px;width:48px;height:48px}

/* ─── SECTION HEAD SHARED ─── */
.sec-head{text-align:center;max-width:744px;margin:0 auto 48px}
.sec-head .eyebrow{display:inline-block;margin-bottom:32px}
.sec-head h2{margin-bottom:20px}
.sec-head p{font-family:'Bricolage Grotesque',sans-serif;font-weight:400;font-size:18px;line-height:22px;color:#383838}
.sec-head p + p{margin-top:14px}

/* ─── WHY CARDS (same as preschool approach-card) ─── */
.why-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1005px;margin:56px auto 0}
.why-card{background:#fff;border-radius:16px;padding:24px;border:0;box-shadow:none}
.why-card .why-icon{width:96px;height:96px;display:flex;align-items:center;justify-content:center;margin-bottom:28px}
.why-card .why-icon img{width:96px;height:96px;display:block}
.why-card h3{font-family:'Bricolage Grotesque',sans-serif;font-size:24px;font-weight:700;line-height:18.4px;margin-bottom:14px;color:var(--dark)}
.why-card.c-purple h3{color:var(--purple)}
.why-card.c-green h3{color:var(--green)}
.why-card.c-teal h3{color:var(--teal)}
.why-card p{font-family:'Inter',sans-serif;font-size:15px;line-height:1.55;color:var(--d60);margin:0}
.why-closer{max-width:880px;margin:64px auto 0;text-align:center;font-family:'Bricolage Grotesque',sans-serif;font-weight:400;font-size:20px;line-height:1.45;color:var(--char);letter-spacing:-0.2px}
@media (max-width:768px){.why-closer{margin-top:40px;font-size:17px;line-height:1.5;padding:0 4px}}

/* ─── SECTION: WHY ─── */
.sec-why{background:linear-gradient(to top,#ddf6ff 0%,#fff 80%);padding:80px max(24px, calc((100% - 1200px) / 2)) 104px}
.sec-why .sec-head{margin:0 auto;max-width:760px;margin-bottom:0}
.sec-why .sec-head .eyebrow{margin-bottom:32px}
.sec-why h2{font-size:40px;line-height:44px;letter-spacing:-0.5px;max-width:760px;margin:0 auto 20px}
.sec-why h2 .t-blue{color:var(--blue)}
.sec-why .sec-head > p{font-family:'Bricolage Grotesque',sans-serif;font-weight:400;font-size:18px;line-height:22px;color:#383838;max-width:744px;margin:0 auto}
.sec-why .sec-head > p .t-blue{color:var(--blue)}

/* ─── SECTION: FOUR LEARNING AREAS (reuses spaces2) ─── */
.sec-spaces{background:#f8f8f8;padding:80px max(24px, calc((100% - 1320px) / 2))}
.sec-head h2 .teal{color:var(--dark)}
.spaces2-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;max-width:1212px;margin:0 auto}
.space2-card{position:relative;border-radius:16px;overflow:hidden;background:#fff;border:1px solid rgba(0,0,0,.04);aspect-ratio:591/332;display:flex;flex-direction:column;justify-content:flex-end}
.space2-card .space2-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.space2-card:hover .space2-img{transform:scale(1.04)}
.space2-body{position:relative;z-index:2;background:#1a1a1a;padding:24px 32px 32px;color:#fff;transition:padding-top .4s ease}
.space2-eyebrow{font-family:'Inter',sans-serif;font-size:14px!important;font-weight:400!important;line-height:1.2!important;letter-spacing:1.38px!important;text-transform:uppercase!important;color:var(--d60);margin-bottom:12px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.space2-card.c-blue .space2-eyebrow{color:var(--blue)}
.space2-card.c-teal .space2-eyebrow{color:var(--teal)}
.space2-card.c-green .space2-eyebrow{color:#7aba1a}
.space2-card.c-purple .space2-eyebrow{color:var(--purple)}
.space2-title{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:24px;line-height:27.6px;color:#fff;letter-spacing:-.2px}
.space2-desc{margin-top:12px;font-family:'Inter',sans-serif;font-size:15.2px;line-height:25.84px;color:rgba(255,255,255,.92);max-height:0;opacity:0;overflow:hidden;transition:max-height .45s ease,opacity .3s ease,margin-top .3s ease}
.space2-card.default-open .space2-desc{max-height:120px;opacity:1;margin-top:12px}
.space2-card:hover .space2-desc{max-height:120px;opacity:1;margin-top:12px}

/* ─── SECTION: EMPATHY ─── */
.sec-grow{padding:80px max(24px, calc((100% - 1200px) / 2));background:#fff}
.grow-inner{display:grid;grid-template-columns:537px 591px;gap:72px;align-items:start;max-width:1200px;margin:0 auto}
.grow-left .eyebrow{margin-bottom:30px}
.grow-left h2{margin-bottom:30px;color:#2c2c2c}
.grow-left h2 em{font-style:normal;color:#1a1a1a}
.grow-left .grow-body{font-family:'Inter',sans-serif;font-size:16px;line-height:26px;color:#1a1a1a}
.grow-left .grow-body p{margin:0 0 26px}
.grow-left .grow-body p:last-child{margin:0}
.grow-right{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:160px 160px;gap:12px}
.grow-tile{position:relative;border-radius:12px;overflow:hidden;background:#eee}
.grow-tile img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.grow-tile::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.63)}
.grow-tile-body{position:absolute;inset:0;padding:16px;display:flex;flex-direction:column;justify-content:center;z-index:2;color:#fff}
.grow-tile-title{font-family:'Bricolage Grotesque',sans-serif;font-weight:600;font-size:24px;line-height:28px;color:#fff;margin-bottom:8px;letter-spacing:-.2px}
.grow-tile-desc{font-family:'Inter',sans-serif;font-size:15px;line-height:1.5;color:rgba(255,255,255,.88);max-width:246px}

/* ─── SECTION: FIVE PILLARS ─── */
.sec-pillars{background:#f8f8f8;padding:96px max(24px, calc((100% - 1200px) / 2))}
.pillars-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;max-width:1200px;margin:0 auto}
.pillars-grid .pillar:nth-child(n+3){grid-column:auto}
.pillar{position:relative;background:#fff;border-radius:16px;padding:32px 28px 30px;box-shadow:none;border:0;overflow:hidden}
.pillar-num{position:absolute;right:28px;top:20px;font-family:'Bricolage Grotesque',sans-serif;font-size:40px;font-weight:700;color:rgba(0,0,0,.06);line-height:1;letter-spacing:-1px}
.pillar-tag{display:inline-flex;align-items:center;gap:6px;padding:5px 12px;border-radius:100px;font-family:'Inter',sans-serif;font-size:12.5px;font-weight:600;letter-spacing:.9px;text-transform:uppercase;margin-bottom:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.pillar-tag svg{width:14px;height:14px;flex-shrink:0}
.pillar h3{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:24px;line-height:28px;margin-bottom:12px}
.pillar p{font-family:'Inter',sans-serif;font-size:16px;line-height:1.6;color:var(--d60);margin:0}
.pillar.pl-amber .pillar-tag{background:rgba(245,166,35,.15);color:#d68910}
.pillar.pl-amber h3{color:var(--amber)}
.pillar.pl-blue .pillar-tag{background:rgba(0,174,239,.12);color:var(--blue)}
.pillar.pl-blue h3{color:var(--blue)}
.pillar.pl-purple .pillar-tag{background:rgba(155,61,255,.12);color:var(--purple)}
.pillar.pl-purple h3{color:var(--purple)}
.pillar.pl-teal .pillar-tag{background:rgba(0,201,177,.12);color:var(--teal)}
.pillar.pl-teal h3{color:var(--teal)}
.pillar.pl-green .pillar-tag{background:rgba(165,217,26,.18);color:#7aba1a}
.pillar.pl-green h3{color:#7aba1a}
.pillars-row-2{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;max-width:1200px;margin:20px auto 0}

/* ─── SECTION: TEACH ─── */
.sec-teach{padding:96px max(24px, calc((100% - 1035px) / 2));background:#fff}
.teach-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1035px;margin:0 auto 80px}
.teach-card{display:flex;flex-direction:column;gap:36px;max-width:329px}
.teach-img{width:100%;height:263px;border-radius:16px;overflow:hidden;background:#eee}
.teach-img img{width:100%;height:100%;object-fit:cover;display:block}
.teach-card-body{display:flex;flex-direction:column;gap:10px}
.teach-card h3{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:20.8px;line-height:23.92px;color:#2c2c2c;margin:0}
.teach-card p{font-family:'Inter',sans-serif;font-weight:400;font-size:16px;line-height:1.65;color:#444;margin:0}
.teach-list{list-style:none;padding:0;margin:4px 0 0;display:flex;flex-direction:column;gap:8px}
.teach-list li{font-family:'Inter',sans-serif;font-size:15px;line-height:1.55;color:#555;padding-left:20px;position:relative}
.teach-list li::before{content:'';position:absolute;left:0;top:10px;width:6px;height:6px;border-radius:50%;background:#1a1a1a;opacity:.35}
.teach-feature{display:grid;grid-template-columns:476px 1fr;gap:40px;align-items:center;max-width:1035px;margin:0 auto 56px}
.teach-feature.tf-reverse{grid-template-columns:1fr 476px}
.teach-feature-img{border-radius:16px;overflow:hidden;aspect-ratio:476/381;background:#eee}
.teach-feature-img img{width:100%;height:100%;object-fit:cover}
.teach-feature > div{display:flex;flex-direction:column;gap:18px}
.teach-feature .tf-eyebrow{margin:0}
.teach-feature.tf-blue .tf-eyebrow{color:var(--blue)}
.teach-feature.tf-purple .tf-eyebrow{color:var(--purple)}
.teach-feature h2{font-family:'Bricolage Grotesque',sans-serif;font-weight:600;font-size:32px;line-height:36px;letter-spacing:-0.25px;margin:0}
.teach-feature > div > p{font-family:'Inter',sans-serif;font-weight:400;font-size:15.2px;line-height:25.84px;color:#555;margin:0}
.tf-checks{display:flex;flex-direction:column;gap:15px;margin:0}
.tf-check{display:flex;gap:12px;align-items:flex-start}
.tf-check-icon{flex-shrink:0;width:26px;height:26px;display:block}
.tf-check span{font-family:'Inter',sans-serif;font-weight:500;font-size:14.08px;line-height:22px;color:#444}

/* ─── SECTION: LIFELONG (6 cards) ─── */
.sec-lifelong{background:#f8f8f8;padding:96px max(24px, calc((100% - 1200px) / 2))}
.lifelong-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1200px;margin:0 auto}
.life-card{background:#fff;border-radius:16px;padding:32px 24px 24px;display:flex;flex-direction:column;gap:16px;min-height:157px}
.life-card h3{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:22px;line-height:24px;margin:0}
.life-card p{font-family:'Inter',sans-serif;font-size:16px;line-height:1.6;color:var(--d60);margin:0}
.life-card.lf-blue h3{color:var(--blue)}
.life-card.lf-amber h3{color:var(--amber)}
.life-card.lf-green h3{color:#7aba1a}
.life-card.lf-purple h3{color:var(--purple)}
.life-card.lf-teal h3{color:var(--teal)}
.life-card.lf-pink h3{color:var(--pink)}

/* ─── CTA BANNER ─── */
.cta-banner{position:relative;background:linear-gradient(to top,#bfeeff 0%,#fff 80.17%);padding:120px max(24px, calc((100% - 1200px) / 2)) 100px;text-align:center;overflow:hidden;min-height:480px}
.cta-banner h2{font-family:'Bricolage Grotesque',sans-serif;font-size:44.8px;line-height:56px;font-weight:700;max-width:658px;margin:0 auto 40px;letter-spacing:-0.5px;color:#2c2c2c}
.cta-banner h2 .learn{display:block;color:var(--purple)}
.cta-banner h2 .amber{color:var(--amber)}
.cta-actions{display:inline-flex;gap:24px;flex-wrap:wrap;justify-content:center;margin-top:4px}
.cta-actions .btn{width:200px;height:60px;border-radius:100px;display:inline-flex;align-items:center;justify-content:center;font-family:'Inter',sans-serif;font-weight:600;font-size:16px}
.cta-actions .btn-blue{background:var(--blue);color:#fff;border:0}
.cta-actions .btn-outline{background:transparent;color:#1a1a1a;border:1px solid #000;font-size:14.4px}
.cta-deco{position:absolute;pointer-events:none;border-radius:8px;overflow:hidden}
.cta-d1{left:160px;top:100px;width:151px;height:114px}
.cta-d2{right:232px;top:340px;width:131px;height:98px}
.cta-d3{right:120px;top:80px;width:197px;height:148px}
.cta-d4{left:120px;top:300px;width:197px;height:148px}
.cta-deco img{width:100%;height:100%;object-fit:cover;display:block}
.cta-sparkle{position:absolute;pointer-events:none}
.cta-sparkle img{width:100%;height:100%;display:block}
.sp1{left:487px;top:87px;width:49px;height:47px}
.sp2{left:1039px;top:267px;width:45px;height:43px}
.sp3{left:961px;top:66px;width:27px;height:26px}
.sp4{left:475px;top:285px;width:25px;height:24px}

/* ─── FOOTER (shared with index.html) ─── */
footer{background:#1a1a1a;position:relative;overflow:hidden}
.f-deco{position:absolute;pointer-events:none;opacity:.4}
.f-deco img{width:100%;height:100%}
.fd1{left:58px;top:42px;width:50px;height:51px}
.fd2{right:87px;bottom:60px;width:86px;height:87px}
.footer-main{display:flex;justify-content:space-between;padding:60px max(24px, calc((100% - 1200px) / 2));gap:40px}
.footer-brand{width:320px;display:flex;flex-direction:column;gap:24px}
.footer-logo{display:flex;align-items:center;gap:12px}
.footer-logo img{width:44px;height:44px;border-radius:10px}
.footer-brand-name{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:18px;color:#fff}
.footer-brand-tag{font-family:'Inter',sans-serif;font-size:14px!important;font-weight:400!important;letter-spacing:1.38px!important;text-transform:uppercase!important;color:var(--blue);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.footer-desc{font-family:'Inter',sans-serif;font-size:14px;line-height:24px;color:#888;width:280px}
.footer-social-lbl{font-family:'Inter',sans-serif;font-size:14px!important;font-weight:400!important;letter-spacing:1.38px!important;text-transform:uppercase!important;color:#555;margin-bottom:12px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.social-icons{display:flex;gap:8px}
.s-icon{width:36px;height:36px;background:#2c2c2c;border:1px solid #333;border-radius:8px;display:flex;align-items:center;justify-content:center;transition:background .2s;color:#fff}
.s-icon:hover{background:#3a3a3a}
.s-icon img{width:20px;height:20px;opacity:.9}
.s-icon svg{width:18px;height:18px;display:block;opacity:.85;flex-shrink:0}
.footer-col{display:flex;flex-direction:column;gap:20px}
.footer-col-title{font-family:'Inter',sans-serif;font-size:14px!important;font-weight:400!important;letter-spacing:1.38px!important;text-transform:uppercase!important;color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.footer-links-list{display:flex;flex-direction:column;gap:14px}
.footer-links-list a{font-family:'Inter',sans-serif;font-size:14px;color:#888;transition:color .2s}
.footer-links-list a:hover{color:#ccc}
.contact-item{display:flex;align-items:flex-start;gap:12px;margin-bottom:20px}
.contact-item:last-child{margin-bottom:0}
.c-icon{width:32px;height:32px;background:#2c2c2c;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.c-icon img{width:15px;height:15px}
.c-name{font-family:'Inter',sans-serif;font-size:14px;font-weight:600;color:#ccc;line-height:1.4;white-space:nowrap}
.c-addr{font-family:'Inter',sans-serif;font-size:14px;color:#888;line-height:20px;margin-top:2px;width:220px}
.c-link{font-family:'Inter',sans-serif;font-size:14px;color:#888;display:block;line-height:1.55}
.c-link:hover{color:#ccc}
.footer-bottom{border-top:1px solid #2c2c2c;display:flex;justify-content:space-between;align-items:center;padding:20px max(24px, calc((100% - 1200px) / 2));font-family:'Inter',sans-serif;font-size:14px;color:#555}
.footer-bottom-links{display:flex;gap:24px}
.footer-bottom-links a{color:#555}
.footer-bottom-links a:hover{color:#888}

/* ─── RESPONSIVE ─── */
@media (max-width:1024px){
  html,body{min-width:0;max-width:100%;overflow-x:hidden}
  .sch-hero-inner{grid-template-columns:1fr;gap:40px}
  .sch-hero-right{grid-template-columns:1fr 1fr;grid-template-rows:160px 160px;max-width:560px}
  .sh-img3{height:100%}
  .why-cards{grid-template-columns:1fr 1fr;gap:20px}
  .spaces2-grid{grid-template-columns:1fr 1fr;gap:20px}
  .grow-inner{grid-template-columns:1fr;gap:48px}
  .pillars-grid{grid-template-columns:1fr 1fr}
  .pillars-row-2{grid-template-columns:1fr 1fr 1fr}
  .teach-grid{grid-template-columns:1fr 1fr}
  .teach-feature,.teach-feature.tf-reverse{grid-template-columns:1fr;gap:32px}
  .lifelong-grid{grid-template-columns:1fr 1fr}
  .cta-deco{display:none}
}
@media (max-width:768px){
  body{padding-top:0}
  .header-wrap{display:flex;align-items:center;justify-content:center;padding:0;min-height:96px;background:transparent!important;border-color:transparent!important}
  .header-wrap.scrolled{background:#fff!important;border-color:rgba(0,0,0,0.06)!important;min-height:52px}
  .logo-panel{overflow:visible;flex-shrink:0}
  .logo-box{padding:0}
  .logo-full{height:80px}
  .nav{position:absolute;right:0;top:0;bottom:0;display:flex;align-items:center;padding:0 20px;width:auto;flex:0}
  .nav-links,.nav-cta{display:none!important}
  .hamburger{display:flex}
  .header-wrap.scrolled{justify-content:flex-start;padding:0 16px}
  .header-wrap.scrolled .nav{position:static;flex:1;padding:8px 0;width:auto;justify-content:space-between}
  .header-wrap.scrolled .logo-compact-wrap{display:flex!important}

  h1{font-size:36px;line-height:44px;letter-spacing:-.5px}
  h2{font-size:28px;line-height:34px}
  .sch-hero{padding:120px 20px 64px}
  .sch-hero-left{text-align:center}
  .sch-hero h1{font-size:34px;line-height:42px}
  .sch-hero-sub{font-size:16px;line-height:26px;margin-bottom:28px;margin-left:auto;margin-right:auto}
  .sch-hero-actions{gap:12px;justify-content:center}
  .sch-hero-actions .btn{padding:14px 24px;font-size:15px}
  .sch-hero-right{grid-template-columns:1fr 1fr;grid-template-rows:130px 130px;gap:10px;max-width:none;width:100%}
  .sh-img3{grid-column:2;grid-row:1/span 2;height:100%}
  .sec-why,.sec-spaces,.sec-grow,.sec-pillars,.sec-teach,.sec-lifelong{padding:64px 20px}
  .sec-head{margin-bottom:40px}
  .why-cards{grid-template-columns:1fr;gap:16px;margin-top:40px}
  .sec-why h2{font-size:32px;line-height:40px}
  .spaces2-grid{display:flex;flex-direction:column;gap:16px;grid-template-columns:none}
  .space2-card{width:100%;aspect-ratio:auto;display:block}
  .space2-card .space2-img{position:relative;inset:auto;width:100%;height:auto;aspect-ratio:591/332;display:block;object-fit:cover}
  .space2-body{position:static;padding:16px 20px 20px}
  .space2-title{font-size:20px;line-height:26px}
  .space2-card .space2-desc{display:none}
  .grow-right{grid-template-columns:1fr 1fr;grid-template-rows:auto auto;gap:12px}
  .grow-tile{aspect-ratio:auto;min-height:240px}
  .grow-tile-body{padding:20px;justify-content:flex-end}
  .grow-tile-title{font-size:22px;line-height:26px;margin-bottom:6px}
  .grow-tile-desc{font-size:14px;line-height:18px;max-width:none}
  .pillars-grid,.pillars-row-2{grid-template-columns:1fr;gap:16px}
  .pillars-row-2{margin-top:16px}
  .teach-grid{grid-template-columns:1fr;gap:24px;margin-bottom:40px}
  .teach-feature{gap:24px;margin-bottom:40px}
  .teach-feature h2{font-size:26px;line-height:32px}
  .lifelong-grid{grid-template-columns:1fr;gap:14px}
  .cta-banner{padding:80px 20px 64px;min-height:0}
  .cta-banner h2{font-size:28px;line-height:36px;max-width:none}
  .cta-banner h2 br{display:none}
  .cta-actions{flex-direction:column;align-items:stretch;gap:20px;width:100%;max-width:320px;margin:0 auto}
  .cta-actions .btn{width:100%;height:52px;font-size:15px}
  .cta-actions .btn-outline{font-size:14px}
  .footer-main{flex-direction:column;padding:44px 20px;gap:36px}
  .footer-brand,.footer-col{width:100%!important}
  .footer-bottom{flex-direction:column;gap:10px;text-align:center;padding:16px 20px}
}

/* ── micro-animations ── */
@media (prefers-reduced-motion: no-preference){
  .reveal{opacity:0;transform:scale(.86) translateY(16px);transition:opacity .8s ease-out, transform .8s cubic-bezier(.22,.75,.2,1)}
  .reveal.in-view{opacity:1;transform:none}
  @keyframes twinkle{0%,100%{opacity:.85;transform:scale(1) rotate(0)}50%{opacity:1;transform:scale(1.18) rotate(6deg)}}
  .sch-hero-sp img,.cta-sparkle img{animation:twinkle 3.2s ease-in-out infinite;transform-origin:center;will-change:transform,opacity}
  .sh-sp2 img{animation-delay:.4s}
  .sh-sp3 img{animation-delay:.8s}
  .sp2 img{animation-delay:.3s} .sp3 img{animation-delay:.6s} .sp4 img{animation-delay:.9s}
  [data-parallax]{transform:translate3d(0,var(--py,0),0);transition:transform .08s linear;will-change:transform}
}