/* ═══════════════════════════════════════════════
   TOKENS — edit here, entire site follows
   ═══════════════════════════════════════════════ */
:root{
  --cream:      #FFF7EF;
  --cream-deep: #FBEBDC;
  --paper:      #FFFFFF;
  --coral:      #FF6B45;
  --coral-dark: #E8502B;
  --sun:        #FFC24B;
  --teal:       #17807D;
  --teal-soft:  #CFE8E4;
  --sage:       #8FC9A9;
  --ink:        #2E2A39;
  --ink-soft:   #6A6478;
  --line:       #EFDECD;
  --r-sm:12px; --r-md:20px; --r-lg:28px; --r-xl:40px;
  --sh-s: 0 2px 10px rgba(46,42,57,.07);
  --sh-m: 0 10px 32px -10px rgba(46,42,57,.18);
  --sh-l: 0 24px 56px -18px rgba(46,42,57,.26);
  --display:'Fredoka','Trebuchet MS',sans-serif;
  --body:'Nunito','Segoe UI',system-ui,sans-serif;
  --nav-h:64px;
  --maxw:1160px;
}

/* ═══════════════════════════════════════════════
   KEYFRAMES — all animations defined up front
   ═══════════════════════════════════════════════ */

/* Ticker */
@keyframes marquee{ to{ transform:translateX(-50%); } }

/* Hero blob morph */
@keyframes morphBlob{
  0%,100%{ border-radius:60% 40% 55% 45%/50% 60% 40% 50%; }
  33%{ border-radius:40% 60% 45% 55%/60% 40% 55% 45%; }
  66%{ border-radius:55% 45% 60% 40%/45% 55% 50% 50%; }
}

/* Floating bob */
@keyframes bob{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
@keyframes bobSlow{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-7px); }
}

/* Sun spin */
@keyframes sunSpin{ to{ transform:rotate(360deg); } }

/* Kite sway */
@keyframes kiteSway{
  0%,100%{ transform:rotate(-4deg) translateY(0); }
  50%{ transform:rotate(5deg) translateY(-8px); }
}

/* Cloud drift */
@keyframes cloudDrift{
  0%,100%{ transform:translateX(0); }
  50%{ transform:translateX(18px); }
}

/* Shimmer sweep — the key effect for loading skeletons & card sheen */
@keyframes shimmer{
  0%{ background-position:-200% center; }
  100%{ background-position:200% center; }
}

/* Shimmer sweep on cards (hover) */
@keyframes cardSheen{
  0%{ left:-80%; }
  60%,100%{ left:130%; }
}

/* Count-up pulse */
@keyframes countPop{
  0%{ transform:scale(1); }
  50%{ transform:scale(1.18); }
  100%{ transform:scale(1); }
}

/* Scroll-reveal */
@keyframes fadeUp{
  from{ opacity:0; transform:translateY(28px); }
  to{   opacity:1; transform:translateY(0); }
}
@keyframes fadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

/* Ripple on CTA tap */
@keyframes ripple{
  to{ transform:scale(4); opacity:0; }
}

/* WhatsApp pulse ring */
@keyframes waPulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.55); }
  70%{ box-shadow:0 0 0 18px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* Spinner for form submit */
@keyframes spin{ to{ transform:rotate(360deg); } }

/* Stagger children */
@keyframes staggerFadeUp{
  from{ opacity:0; transform:translateY(22px); }
  to{ opacity:1; transform:translateY(0); }
}

/* Particle float */
@keyframes particleFloat{
  0%{ transform:translateY(0) rotate(0deg); opacity:.7; }
  100%{ transform:translateY(-120px) rotate(360deg); opacity:0; }
}

/* Progress bar fill */
@keyframes fillBar{
  from{ width:0; }
  to{ width:var(--fill); }
}

/* Bounce arrow */
@keyframes bounceDown{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(7px); }
}

/* Field shake (invalid submit) */
@keyframes shake{
  0%,100%{ transform:translateX(0); }
  20%,60%{ transform:translateX(-5px); }
  40%,80%{ transform:translateX(5px); }
}

/* ═══════════════════════════════════════════════
   BASE — mobile first
   ═══════════════════════════════════════════════ */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top:calc(var(--nav-h) + 20px); font-size:16px; }
body{
  background:var(--cream); color:var(--ink-soft);
  font-family:var(--body); line-height:1.7;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
h1,h2,h3,h4{ font-family:var(--display); color:var(--ink); line-height:1.15; font-weight:600; }
/* Mobile-first type scale */
h1{ font-size:2.15rem; letter-spacing:-.3px; }
h2{ font-size:1.75rem; }
h3{ font-size:1.15rem; }
p{ margin-bottom:.9rem; }
a{ color:inherit; text-decoration:none; }
img,svg{ max-width:100%; display:block; }
ul{ list-style:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }
:focus-visible{ outline:3px solid var(--teal); outline-offset:3px; border-radius:6px; }
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:18px; }
.section{ padding:60px 0; position:relative; scroll-margin-top:calc(var(--nav-h) + 12px); }
.section--tint{ background:var(--cream-deep); }
/* scroll-margin-top set dynamically in JS based on actual header height */
#why, #programs, #curriculum, #day, #safety, #testimonials, #gallery, #admissions, #faq{
  scroll-margin-top: 110px; /* overridden by JS */
}
.center{ text-align:center; }
.eyebrow{
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--display); font-weight:600; font-size:.78rem;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--teal); background:var(--teal-soft);
  padding:6px 14px; border-radius:999px; margin-bottom:12px;
}
.eyebrow--warm{ color:var(--coral-dark); background:#FFE2D8; }
.lede{ font-size:1rem; max-width:56ch; }
.center .lede{ margin-inline:auto; }

/* ═══════════════════════════════════════════════
   SHIMMER UTILITY — apply to any skeleton loader
   ═══════════════════════════════════════════════ */
.shimmer{
  background: linear-gradient(
    100deg,
    var(--cream-deep) 30%,
    #fff9f4 50%,
    var(--cream-deep) 70%
  );
  background-size:200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   CARD SHEEN — every card gets a light sweep on hover
   ═══════════════════════════════════════════════ */
.card{
  background:var(--paper); border-radius:var(--r-lg);
  box-shadow:var(--sh-m); border:1px solid #F4DFD0;
  position:relative; overflow:hidden;
  transition:transform .32s cubic-bezier(.34,1.48,.64,1), box-shadow .32s;
}
.card::before{
  content:""; position:absolute; top:0; left:-80%; width:60%; height:100%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.48),transparent);
  transform:skewX(-18deg); pointer-events:none;
  transition:left .0s;
}
.card:hover::before{ animation:cardSheen .55s ease; }
.card:hover{ transform:translateY(-8px); box-shadow:var(--sh-l); }

/* ═══════════════════════════════════════════════
   BUTTONS with ripple
   ═══════════════════════════════════════════════ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 24px; border-radius:999px;
  font-family:var(--display); font-weight:600; font-size:1rem;
  transition:transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s, background .18s;
  white-space:nowrap; position:relative; overflow:hidden;
}
.btn:active{ transform:scale(.96); }
.btn__ripple{
  position:absolute; border-radius:50%; width:10px; height:10px;
  background:rgba(255,255,255,.4); transform:scale(0);
  animation:ripple .5s linear;
  pointer-events:none;
}
.btn--primary{
  background:var(--coral); color:#fff;
  box-shadow:0 8px 22px -8px rgba(255,107,69,.8);
}
.btn--primary:hover{ background:var(--coral-dark); transform:translateY(-3px); box-shadow:0 14px 28px -10px rgba(255,107,69,.9); }
.btn--ghost{
  background:var(--paper); color:var(--ink);
  border:2px solid var(--line); box-shadow:var(--sh-s);
}
.btn--ghost:hover{ border-color:var(--coral); color:var(--coral-dark); transform:translateY(-3px); }
.btn--teal{
  background:var(--teal); color:#fff;
  box-shadow:0 8px 22px -8px rgba(23,128,125,.75);
}
.btn--teal:hover{ background:#0F6764; transform:translateY(-3px); }
.btn--sm{ padding:10px 18px; font-size:.9rem; }
.btn--block{ width:100%; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════ */
.reveal{ opacity:0; transform:translateY(26px); }
.reveal.is-in{ animation:fadeUp .65s cubic-bezier(.22,1,.36,1) both; }
.reveal.delay-1{ animation-delay:.1s; }
.reveal.delay-2{ animation-delay:.18s; }
.reveal.delay-3{ animation-delay:.26s; }
.reveal.delay-4{ animation-delay:.34s; }
.reveal.delay-5{ animation-delay:.42s; }

/* ═══════════════════════════════════════════════
   SITE HEADER — fully fixed, ticker + nav stacked
   ═══════════════════════════════════════════════ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:200;
}

/* ── Ticker (34px tall) ── */
.ticker{
  background:var(--ink); color:#FFEFE6;
  font-size:.76rem; letter-spacing:.03em;
  overflow:hidden; white-space:nowrap;
  height:34px; display:flex; align-items:center;
}
.ticker__track{
  display:inline-flex; gap:0;
  animation:marquee 28s linear infinite;
  width:max-content;
}
.ticker__track span{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:700; padding:0 28px;
}
.ticker__dot{ width:6px; height:6px; border-radius:50%; background:var(--sun); flex:none; }
.ticker:hover .ticker__track{ animation-play-state:paused; }

/* ── Nav bar (64px tall on mobile) ── */
.nav{
  background:#FFF7EF;
  border-bottom:1.5px solid #EFDECD;
  box-shadow:0 2px 14px rgba(46,42,57,.09);
}
.nav__inner{
  height:var(--nav-h);
  display:flex; align-items:center; gap:8px;
  max-width:var(--maxw); margin-inline:auto; padding-inline:18px;
}

/* Logo */
.logo{ display:flex; align-items:center; gap:9px; flex:none; }
.logo__mark{ width:36px; height:36px; flex:none; }
.logo__mark svg{ width:100%; height:100%; display:block; }
.logo__text span:first-child{
  display:block; font-family:var(--display); font-weight:600;
  font-size:1.05rem; color:var(--ink); line-height:1.05;
}
.logo__text span:last-child{
  display:block; font-size:.58rem; letter-spacing:.15em;
  text-transform:uppercase; color:var(--teal); font-weight:800;
}

/* CTA button */
.nav__cta{ margin-left:auto; flex:none; }

/* Burger */
.burger{
  width:40px; height:40px; border-radius:10px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:5px;
  flex:none; background:transparent;
}
.burger span{
  display:block; width:20px; height:2px; background:var(--ink);
  border-radius:2px; transition:transform .28s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ── Mobile dropdown (drops under fixed header at 98px) ── */
.nav__links{
  display:flex; flex-direction:column; gap:2px;
  position:fixed; top:98px; left:0; right:0;
  background:#FFF7EF;
  padding:10px 14px 18px;
  border-bottom:2px solid var(--line);
  box-shadow:0 10px 30px rgba(46,42,57,.13);
  z-index:199;
  transform:translateY(-6px);
  opacity:0;
  pointer-events:none;
  transition:transform .28s cubic-bezier(.4,0,.2,1), opacity .22s ease;
}
.nav__links.is-open{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}
.nav__links a{
  padding:13px 14px; border-radius:var(--r-sm);
  font-family:var(--display); font-weight:600; font-size:1rem;
  color:var(--ink); transition:background .15s, color .15s; display:block;
}
.nav__links a:hover, .nav__links a.is-active{
  background:var(--teal-soft); color:var(--teal);
}

/* Phone link — desktop only */
.nav__phone{ display:none; }

/* ── Body offset: push content below fixed header ── */
body{ padding-top:98px; }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero{ position:relative; padding:40px 0 56px; overflow:hidden; }
/* Animated confetti particles */
.hero::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,194,75,.18) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(23,128,125,.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(255,107,69,.12) 0%, transparent 35%);
}
.hero__scene{ margin-bottom:28px; }
.hero__blob{
  position:absolute; inset:-5%; border-radius:60% 40% 55% 45%/50% 60% 40% 50%;
  background:radial-gradient(circle at 35% 35%, #FFE5AC, #FFD3C0 55%, #FFF7EF 80%);
  animation:morphBlob 14s ease-in-out infinite; z-index:0; filter:blur(1px);
}
.hero__svg{ position:relative; z-index:1; width:100%; max-width:340px; margin:0 auto; }
.anim-bob{ animation:bob 3.5s ease-in-out infinite; }
.anim-bobslow{ animation:bobSlow 4.8s ease-in-out infinite; }
.anim-kite{ transform-origin:190px 50px; animation:kiteSway 5s ease-in-out infinite; }
.anim-sun{ transform-origin:76px 76px; animation:sunSpin 40s linear infinite; }
.anim-cloud1{ animation:cloudDrift 10s ease-in-out infinite; }
.anim-cloud2{ animation:cloudDrift 13s ease-in-out infinite reverse; }

.hero h1{ margin-bottom:.5rem; }
.hero h1 em{ font-style:normal; color:var(--coral); position:relative; }
.hero h1 em svg{ position:absolute; left:0; bottom:-10px; width:100%; }
.hero__sub{ font-size:1.02rem; margin-bottom:1.4rem; }
.hero__ctas{ display:flex; flex-direction:column; gap:12px; margin-bottom:1.2rem; }
.hero__badges{
  display:flex; flex-wrap:wrap; gap:8px; margin-top:4px;
}
.badge{
  display:inline-flex; align-items:center; gap:6px;
  background:var(--paper); border:1px solid var(--line);
  padding:6px 12px; border-radius:999px;
  font-size:.8rem; font-weight:700; color:var(--ink);
  box-shadow:var(--sh-s);
  animation:fadeIn .6s ease both;
}
.badge svg{ flex:none; }
.scroll-hint{
  margin-top:24px; display:flex; flex-direction:column; align-items:center;
  gap:5px; font-size:.78rem; font-weight:700; color:var(--ink-soft); opacity:.7;
}
.scroll-hint svg{ animation:bounceDown 1.6s ease-in-out infinite; }

/* Floating confetti dots */
.confetti-wrap{ position:absolute; inset:0; pointer-events:none; overflow:hidden; z-index:0; }
.confetti-dot{
  position:absolute; border-radius:50%;
  animation:particleFloat linear infinite;
  opacity:0;
}

/* ═══════════════════════════════════════════════
   TRUST STRIP with shimmer loader
   ═══════════════════════════════════════════════ */
.trust{ background:var(--ink); color:#fff; padding:36px 0; }
/* auto-fit so any number of stat items lays out without new CSS */
.trust__grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(130px,1fr)); gap:24px 12px; text-align:center;
}
.trust__item{ position:relative; }
@media(min-width:600px){
  .trust__item:not(:first-child)::before{
    content:""; position:absolute; left:0; top:20%; height:60%; width:1px;
    background:rgba(255,255,255,.12);
  }
}
/* Shimmer skeleton shown before count-up starts */
.trust__skel{
  height:2.4rem; width:80px; border-radius:8px; margin:0 auto 8px;
  background:linear-gradient(100deg,rgba(255,255,255,.08) 30%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.08) 70%);
  background-size:200% 100%;
  animation:shimmer 1.4s ease-in-out infinite;
}
.trust__num{
  font-family:var(--display); font-size:2.2rem; font-weight:600;
  color:var(--sun); line-height:1; display:none;
}
.trust__num.is-counting{ display:block; }
.trust__label{ font-size:.84rem; color:#C9C2D6; font-weight:600; }

/* ═══════════════════════════════════════════════
   PROGRAMS / generic CARDS-GRID
   ═══════════════════════════════════════════════ */
.prog-grid{ display:grid; gap:18px; margin-top:36px; }
.prog-card{ padding:22px; display:flex; flex-direction:column; }
.prog__scene{ height:80px; margin:-2px 0 12px; overflow:hidden; border-radius:var(--r-sm); }
.prog__scene svg, .prog__scene img{ width:100%; height:100%; object-fit:cover; }
.prog__age{
  font-family:var(--display); font-weight:600; font-size:.8rem; color:#fff;
  background:var(--teal); padding:5px 12px; border-radius:999px;
  align-self:flex-start; margin-bottom:10px;
}
.prog__age--coral{ background:var(--coral); }
.prog__meta{ display:flex; gap:7px; align-items:center; font-size:.86rem; font-weight:700; color:var(--ink); margin:12px 0 8px; }
.prog__meta svg{ width:14px; height:14px; flex:none; }
.prog__tags{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.prog__tags span{
  font-size:.76rem; font-weight:700; padding:4px 10px;
  border-radius:999px; background:var(--cream-deep); color:var(--ink);
}
.prog-card .btn{ margin-top:auto; }

/* ═══════════════════════════════════════════════
   CURRICULUM WHEEL
   ═══════════════════════════════════════════════ */
.wheel-wrap{ display:grid; gap:28px; margin-top:36px; }
.wheel-svg-wrap{ position:relative; max-width:340px; margin:0 auto; }
.wheel-svg-wrap svg{ width:100%; height:auto; }
.petal{ cursor:pointer; transition:transform .3s cubic-bezier(.34,1.5,.64,1); transform-origin:210px 210px; }
.petal:hover{ transform:scale(1.07); }
.petal__shape{ transition:filter .3s; }
.petal.is-on .petal__shape{ filter:drop-shadow(0 8px 18px rgba(46,42,57,.25)); }
.wheel-panel{
  padding:26px; background:var(--paper); border-radius:var(--r-lg);
  box-shadow:var(--sh-m); border:1px solid #F4DFD0;
  animation:fadeUp .4s ease both;
}
.wheel-panel__tag{
  font-family:var(--display); font-weight:600; color:var(--coral-dark);
  letter-spacing:.1em; text-transform:uppercase; font-size:.74rem;
}
.wheel-panel h3{ margin-top:6px; margin-bottom:.5rem; font-size:1.4rem; }
.wheel-panel p{ margin-bottom:14px; font-size:.95rem; }
.wheel-bullets{ display:grid; gap:7px; }
.wheel-bullets li{ display:flex; gap:9px; font-size:.92rem; align-items:flex-start; }
.wheel-bullets svg{ width:14px; height:14px; flex:none; margin-top:5px; }
.wheel-hint{ font-size:.82rem; font-style:italic; color:var(--ink-soft); margin-top:14px; margin-bottom:0; }

/* Wheel tab strip (mobile alternative to clicking petals) */
.wheel-tabs{
  display:flex; overflow-x:auto; gap:8px; padding-bottom:4px;
  scrollbar-width:none;
}
.wheel-tabs::-webkit-scrollbar{ display:none; }
.wheel-tab{
  flex:none; padding:8px 14px; border-radius:999px;
  font-family:var(--display); font-weight:600; font-size:.82rem;
  background:var(--cream-deep); color:var(--ink);
  transition:background .2s, color .2s;
  white-space:nowrap;
}
.wheel-tab.is-on{ background:var(--coral); color:#fff; }

/* ═══════════════════════════════════════════════
   TIMELINE — mobile rail
   ═══════════════════════════════════════════════ */
.day-wrap{ position:relative; margin-top:36px; }
/* The dashed crayon rail */
.day-rail{
  position:absolute; left:27px; top:28px; bottom:28px; width:3px;
  background:repeating-linear-gradient(
    180deg, var(--sun) 0 10px, transparent 10px 20px
  );
  border-radius:3px; z-index:0;
}
.day-stops{ position:relative; z-index:1; display:grid; gap:18px; }
.stop{ display:grid; grid-template-columns:56px 1fr; gap:14px; align-items:start; }
.stop__bead{
  width:54px; height:54px; border-radius:50%; background:var(--paper);
  display:grid; place-items:center;
  box-shadow:0 0 0 5px var(--cream-deep), var(--sh-s);
  transition:transform .3s;
}
.stop__bead svg{ width:24px; height:24px; }
.stop:hover .stop__bead{ transform:scale(1.1); }
.stop-card{
  background:var(--paper); border-radius:var(--r-md); padding:16px 18px;
  box-shadow:var(--sh-m); border:1px solid #F4DFD0;
  transition:transform .25s cubic-bezier(.34,1.5,.64,1), box-shadow .25s;
}
.stop-card:hover{ transform:translateX(5px); box-shadow:var(--sh-l); }
.stop__time{ font-family:var(--display); font-weight:600; color:var(--coral-dark); font-size:.88rem; }
.stop-card h3{ font-size:1.05rem; margin:.25rem 0 .3rem; }
.stop-card p{ font-size:.9rem; margin:0; }

/* ═══════════════════════════════════════════════
   CHECKLIST (safety)
   ═══════════════════════════════════════════════ */
.safety{ background:linear-gradient(160deg,#EAF5F2,#D6EDE8); }
.check{ display:grid; gap:12px; margin-top:22px; }
.check li{
  display:flex; gap:12px; align-items:flex-start;
  background:rgba(255,255,255,.75); padding:14px 16px;
  border-radius:var(--r-sm); border:1px solid rgba(23,128,125,.12);
  transition:transform .25s, box-shadow .25s;
}
.check li:hover{ transform:translateX(4px); box-shadow:var(--sh-m); }
.check__tick{
  flex:none; width:24px; height:24px; border-radius:50%;
  background:var(--teal); display:grid; place-items:center; margin-top:2px;
}
.check__tick svg{ width:13px; height:13px; }
.check strong{ display:block; color:var(--ink); font-family:var(--display); font-weight:600; font-size:.98rem; }
.check span{ font-size:.9rem; }
.safety-art{
  background:var(--paper); border-radius:var(--r-xl); padding:20px;
  box-shadow:var(--sh-l); margin-top:32px;
}
.safety-art img{ width:100%; border-radius:var(--r-md); }

/* ═══════════════════════════════════════════════
   CAROUSEL (testimonials)
   ═══════════════════════════════════════════════ */
.quotes{ max-width:720px; margin:32px auto 0; position:relative; }
.quote{
  display:none; background:var(--paper); border-radius:var(--r-lg);
  padding:32px 26px 26px; box-shadow:var(--sh-m); border:1px solid #F4DFD0;
  text-align:center;
}
.quote.is-on{ display:block; animation:fadeUp .45s ease both; }
.quote__mark{ font-family:var(--display); font-size:3.5rem; color:var(--sun); line-height:.6; }
.quote blockquote{ margin:0; }
.quote p{ font-size:1.05rem; color:var(--ink); font-style:italic; margin:12px 0 18px; }
.quote__who{ display:flex; align-items:center; justify-content:center; gap:11px; }
.quote__av{
  width:44px; height:44px; border-radius:50%; flex:none;
  display:grid; place-items:center; font-family:var(--display); font-weight:600; color:#fff;
  font-size:1.15rem;
}
.quote__name{ font-family:var(--display); font-weight:600; color:var(--ink); font-size:.98rem; }
.quote__cls{ display:block; font-size:.82rem; color:var(--ink-soft); }
.dots{ display:flex; justify-content:center; gap:8px; margin-top:20px; }
.dot{
  width:9px; height:9px; border-radius:999px; background:var(--line);
  transition:width .35s, background .35s;
  border:none; cursor:pointer;
}
.dot.is-on{ width:26px; background:var(--coral); }

/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */
.gal{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:36px; }
.tile{
  position:relative; border-radius:var(--r-md); overflow:hidden;
  box-shadow:var(--sh-m); aspect-ratio:4/3;
  transition:transform .3s cubic-bezier(.34,1.48,.64,1), box-shadow .3s;
}
.tile:hover{ transform:translateY(-6px) scale(1.02); box-shadow:var(--sh-l); }
/* Shimmer overlay while "loading" */
.tile::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg,transparent 30%,rgba(255,255,255,.35) 50%,transparent 70%);
  background-size:200% 100%;
  animation:shimmer 2.2s ease-in-out infinite;
  pointer-events:none;
}
.tile svg, .tile img{ width:100%; height:100%; object-fit:cover; }
.tile figcaption{
  position:absolute; left:10px; bottom:9px;
  background:rgba(255,255,255,.92); color:var(--ink);
  font-family:var(--display); font-weight:600; font-size:.8rem;
  padding:5px 11px; border-radius:999px;
  box-shadow:var(--sh-s);
}

/* ═══════════════════════════════════════════════
   ACCORDION (FAQ)
   ═══════════════════════════════════════════════ */
.faq-list{ max-width:760px; margin:36px auto 0; display:grid; gap:10px; }
.faq__item{
  background:var(--paper); border-radius:var(--r-md);
  border:1px solid #F4DFD0; box-shadow:var(--sh-s); overflow:hidden;
  transition:box-shadow .25s;
}
.faq__item:hover{ box-shadow:var(--sh-m); }
.faq__q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:14px;
  text-align:left; padding:18px 20px; font-family:var(--display); font-weight:600;
  font-size:1rem; color:var(--ink);
}
.faq__q:hover{ color:var(--coral-dark); }
.faq__plus{
  flex:none; width:26px; height:26px; border-radius:50%;
  background:var(--cream-deep); display:grid; place-items:center;
  transition:transform .35s cubic-bezier(.34,1.5,.64,1), background .25s, color .25s;
}
.faq__plus svg{ width:13px; height:13px; }
.faq__item.is-open .faq__plus{ transform:rotate(45deg); background:var(--coral); color:#fff; }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .38s ease; }
.faq__a p{ padding:0 20px 20px; margin:0; font-size:.95rem; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.foot{ background:var(--ink); color:#C9C2D6; padding:56px 0 22px; }
.foot-grid{ display:grid; gap:32px; }
.foot h4{ color:#fff; font-size:.98rem; margin-bottom:14px; }
.foot a:hover{ color:var(--sun); }
.foot-links li{ margin-bottom:8px; font-size:.92rem; }
.foot-contact li{
  display:flex; gap:9px; margin-bottom:10px;
  font-size:.92rem; align-items:flex-start;
}
.foot-contact svg{ width:15px; height:15px; flex:none; margin-top:4px; }
.soc{ display:flex; gap:9px; margin-top:14px; }
.soc a{
  width:36px; height:36px; border-radius:10px;
  background:rgba(255,255,255,.08); display:grid; place-items:center;
  transition:background .2s, transform .22s;
}
.soc a svg{ width:17px; height:17px; }
.soc a:hover{ background:var(--coral); transform:translateY(-3px); }
.foot__bar{
  margin-top:40px; padding-top:18px; border-top:1px solid rgba(255,255,255,.1);
  display:flex; flex-direction:column; gap:6px;
  font-size:.8rem; text-align:center;
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════ */
.wa{ position:fixed; right:16px; bottom:16px; z-index:80; }
.wa__btn{
  width:58px; height:58px; border-radius:50%; background:#25D366;
  display:grid; place-items:center;
  box-shadow:0 8px 24px -8px rgba(37,211,102,.9);
  animation:waPulse 2.4s ease-out infinite;
  transition:transform .22s;
}
.wa__btn svg{ width:28px; height:28px; }
.wa__btn:hover{ transform:scale(1.1); }
.wa__tip{
  position:absolute; right:68px; bottom:50%; transform:translateY(50%);
  background:var(--paper); color:var(--ink); font-weight:700; font-size:.84rem;
  padding:9px 14px; border-radius:999px; box-shadow:var(--sh-m);
  white-space:nowrap; pointer-events:none;
  opacity:0; transform:translateY(50%) translateX(6px);
  transition:opacity .25s, transform .25s;
}
.wa:hover .wa__tip{ opacity:1; transform:translateY(50%) translateX(0); }

/* ═══════════════════════════════════════════════
   DIVIDER SVG
   ═══════════════════════════════════════════════ */
.divider{ display:block; width:100%; height:44px; }

/* ═══════════════════════════════════════════════
   ICON SIZING — icons are injected from JSON/JS as bare
   <svg> markup (currentColor fill/stroke); size + tint them
   here per usage context instead of per-instance attributes.
   ═══════════════════════════════════════════════ */
.eyebrow svg{ width:12px; height:12px; flex:none; }
.badge svg{ width:13px; height:13px; }
.nav__phone svg{ width:15px; height:15px; }
.btn svg{ width:16px; height:16px; flex:none; }
.scroll-hint svg{ width:20px; height:20px; }
.why-scene__tag svg{ width:12px; height:12px; }
.why-strip__pill svg{ width:11px; height:11px; }
.adm-trust-icon svg{ width:18px; height:18px; }
.adm-contact svg{ width:13px; height:13px; }

/* ═══════════════════════════════════════════════
   TABLET  ≥ 600px
   ═══════════════════════════════════════════════ */
@media(min-width:600px){
  h1{ font-size:2.65rem; }
  h2{ font-size:2.1rem; }
  .hero{ padding:52px 0 72px; }
  .hero__ctas{ flex-direction:row; }
  .hero__svg{ max-width:400px; }
  .section{ padding:76px 0; }
  .prog-grid{ grid-template-columns:1fr 1fr; }
  .steps{ grid-template-columns:1fr 1fr 1fr; }
  .gal{ grid-template-columns:repeat(3,1fr); gap:16px; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .enquiry__side{ padding:40px 32px; }
  .form-body{ padding:36px 32px; }
}

/* ═══════════════════════════════════════════════
   DESKTOP  ≥ 900px
   ═══════════════════════════════════════════════ */
@media(min-width:900px){
  :root{ --nav-h:72px; }
  h1{ font-size:clamp(2.8rem,4.4vw,3.9rem); }
  h2{ font-size:clamp(2rem,3vw,2.75rem); }
  .hero{ padding:64px 0 88px; }
  .hero__layout{ display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; }
  .hero__scene{ margin-bottom:0; }
  .hero__scene-inner{ position:relative; }
  .hero__svg{ max-width:100%; }
  .hero__ctas{ flex-direction:row; }
  /* Nav: show links inline, hide hamburger */
  body{ padding-top:calc(34px + 68px); }
  .nav__links{
    position:static; flex-direction:row; gap:2px;
    background:none; padding:0; border:none; box-shadow:none;
    transform:none !important; opacity:1 !important; pointer-events:auto !important;
    transition:none; margin-left:auto; display:flex;
  }
  .nav__links a{ font-size:.88rem; padding:8px 11px; }
  .burger{ display:none; }
  .nav__phone{
    display:flex; align-items:center; gap:6px; font-weight:800;
    color:var(--ink); font-size:.88rem; padding-left:12px;
    border-left:1px solid var(--line); flex:none; white-space:nowrap;
  }
  .nav__phone:hover{ color:var(--coral-dark); }
  .nav__cta{ margin-left:10px; }
  /* Programs */
  .prog-grid{ grid-template-columns:repeat(3,1fr); }
  /* Day — alternate left/right on desktop */
  .day-rail{ left:50%; transform:translateX(-50%); }
  .day-stops{ gap:24px; }
  .stop{ grid-template-columns:1fr 72px 1fr; gap:14px; align-items:center; }
  .stop:nth-child(odd) .stop-card{ grid-column:1; text-align:right; }
  .stop:nth-child(odd) .stop__bead{ grid-column:2; }
  .stop:nth-child(even) .stop-card{ grid-column:3; }
  .stop:nth-child(even) .stop__bead{ grid-column:2; }
  .stop-card:hover{ transform:none; box-shadow:var(--sh-l); }
  /* Wheel */
  .wheel-wrap{ grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
  .wheel-tabs{ display:none; }
  /* Safety */
  .safety-layout{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
  .safety-art{ margin-top:0; }
  /* Enquiry */
  .enquiry-layout{ display:grid; grid-template-columns:.9fr 1.1fr; }
  /* Footer */
  .foot-grid{ grid-template-columns:1.3fr 1fr 1fr 1.1fr; }
  .foot__bar{ flex-direction:row; justify-content:space-between; text-align:left; }
  /* WhatsApp tip */
  .wa__btn{ width:62px; height:62px; }
  .wa{ right:22px; bottom:22px; }
}

/* ═══════════════════════════════════════════════
   REDUCE MOTION
   ═══════════════════════════════════════════════ */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; }
  .reveal.is-in{ animation:none; }
}

/* ═══════════════════════════════════════════════
   WHY section (feature-strips)
   ═══════════════════════════════════════════════ */
.why-outer{
  background:var(--ink); color:#fff; overflow:hidden; position:relative;
  padding:0;
}
/* soft radial glow in the background */
.why-outer::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(23,128,125,.28) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(255,194,75,.14) 0%, transparent 65%);
}

/* top intro band */
.why-intro{
  position:relative; z-index:1;
  padding:64px 0 0;
  text-align:center;
}
.why-intro h2{ color:#fff; }
.why-intro .eyebrow{ background:rgba(255,255,255,.1); color:var(--sun); }
.why-intro .lede{ color:#C9C2D6; }

/* large scene card: image + headline merged */
.why-scene{
  position:relative; z-index:1;
  margin:40px auto 0; max-width:var(--maxw); padding:0 18px;
}
.why-scene__inner{
  border-radius:var(--r-xl); overflow:hidden;
  background:linear-gradient(135deg,#1A3A39 0%,#0C2928 100%);
  position:relative;
  display:flex; flex-direction:column;
}
/* animated gradient shimmer across the scene */
.why-scene__inner::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg,transparent 35%,rgba(255,255,255,.04) 50%,transparent 65%);
  background-size:200% 100%;
  animation:shimmer 3.8s ease-in-out infinite;
  pointer-events:none;
  z-index:1;
}
/* Photo sits full-width above the copy on mobile, so it never overlaps the
   text — becomes a side-by-side split once there's room, from 900px up. */
.why-scene__svg{ width:100%; aspect-ratio:16/10; overflow:hidden; flex:none; }
.why-scene__svg img{ width:100%; height:100%; object-fit:cover; display:block; }
.why-scene__copy{ position:relative; z-index:2; padding:28px 24px 32px; }
.why-scene__copy h3{
  font-family:var(--display); font-weight:600;
  font-size:clamp(1.4rem,3.5vw,2.2rem); color:#fff; margin-bottom:.5rem;
}
.why-scene__copy p{ color:#A8C8C5; font-size:.95rem; margin:0; }
.why-scene__tag{
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,194,75,.18); color:var(--sun);
  font-family:var(--display); font-weight:600; font-size:.76rem;
  letter-spacing:.12em; text-transform:uppercase;
  padding:6px 13px; border-radius:999px; margin-bottom:14px;
}

/* three feature strips below */
.why-strips{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1fr;
  gap:2px; margin-top:2px;
  padding:0 18px 18px;
  max-width:var(--maxw); margin-inline:auto;
}
.why-strip{
  border-radius:var(--r-lg); overflow:hidden;
  display:grid; grid-template-columns:1fr;
  position:relative;
  cursor:default;
  transition:transform .3s cubic-bezier(.34,1.48,.64,1);
}
.why-strip:hover{ transform:scale(1.012); }
.why-strip__bg{
  position:absolute; inset:0;
  transition:opacity .4s;
}
.why-strip--a .why-strip__bg{ background:linear-gradient(135deg,#1B4C3E,#0E3329); }
.why-strip--b .why-strip__bg{ background:linear-gradient(135deg,#3A2500,#251900); }
.why-strip--c .why-strip__bg{ background:linear-gradient(135deg,#1A1035,#120B26); }
/* animated glow dot on each strip */
.why-strip::after{
  content:""; position:absolute;
  width:180px; height:180px; border-radius:50%;
  top:-40px; right:-40px;
  transition:transform .5s ease, opacity .5s;
  opacity:.35; pointer-events:none;
}
.why-strip--a::after{ background:radial-gradient(circle, #17807D, transparent 70%); }
.why-strip--b::after{ background:radial-gradient(circle, #FFC24B, transparent 70%); }
.why-strip--c::after{ background:radial-gradient(circle, #FF6B45, transparent 70%); }
.why-strip:hover::after{ transform:scale(1.4); opacity:.5; }

.why-strip__body{
  position:relative; z-index:1;
  padding:28px 26px;
  display:block;
}
.why-strip__num{
  font-family:var(--display); font-weight:600;
  font-size:1.6rem; line-height:1; color:rgba(255,255,255,.2);
  margin-bottom:12px; display:block;
}
.why-strip__content h3{ color:#fff; font-size:1.18rem; margin-bottom:.4rem; }
.why-strip__content p{ color:rgba(255,255,255,.62); font-size:.9rem; margin:0 0 14px; }
.why-strip__pills{ display:flex; flex-wrap:wrap; gap:7px; }
.why-strip__pill{
  font-size:.76rem; font-weight:700; padding:5px 12px; border-radius:999px;
  color:#fff; border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.07);
  display:inline-flex; align-items:center; gap:6px;
}
.why-strip__pill svg{ flex:none; }

/* floating orbit circles — purely decorative */
@keyframes orbitSpin{
  to{ transform:rotate(360deg); }
}
.why-orbit{
  position:absolute; border-radius:50%; border:1px dashed rgba(255,255,255,.1);
  pointer-events:none; z-index:0;
  animation:orbitSpin 30s linear infinite;
}

@media(min-width:600px){
  .why-strips{ grid-template-columns:1fr 1fr; }
  .why-strips .why-strip:first-child{ grid-column:1 / -1; }
}
@media(min-width:900px){
  .why-intro{ padding:80px 0 0; }
  /* From here there's room for a side-by-side split: photo on the right
     (row-reverse keeps it visually right while staying first in the DOM),
     copy on the left — both in normal flow, so nothing overlaps regardless
     of how much text or how tall the photo is. */
  .why-scene__inner{ flex-direction:row-reverse; min-height:380px; }
  .why-scene__svg{ width:46%; aspect-ratio:auto; align-self:stretch; }
  .why-scene__copy{ width:54%; padding:48px 44px; display:flex; flex-direction:column; justify-content:center; }
  .why-strips{ grid-template-columns:1fr 1fr 1fr; padding:0 18px 24px; }
  .why-strips .why-strip:first-child{ grid-column:auto; }
  .why-strip__body{ padding:32px 28px; display:grid; grid-template-columns:48px 1fr; gap:16px; align-items:start; }
  .why-strip__num{ margin-bottom:0; align-self:center; font-size:2.4rem; }
}

/* ═══════════════════════════════════════════════
   ADMISSIONS — premium split-screen
   ═══════════════════════════════════════════════ */
@keyframes seatTick{
  0%,100%{ opacity:1; transform:translateY(0); }
  45%{ opacity:0; transform:translateY(-10px); }
  55%{ opacity:0; transform:translateY(10px); }
}
@keyframes glowPulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(255,107,69,.4); }
  50%{ box-shadow:0 0 0 16px rgba(255,107,69,0); }
}
@keyframes floatBadge{
  0%,100%{ transform:translateY(0) rotate(-2deg); }
  50%{ transform:translateY(-8px) rotate(1deg); }
}

.adm-outer{
  background:var(--cream); padding:72px 0;
  overflow:hidden; position:relative;
}
.adm-outer::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(23,128,125,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(255,107,69,.07) 0%, transparent 60%);
}

/* ---- Steps row ---- */
.adm-steps-row{
  display:grid; grid-template-columns:1fr; gap:2px;
  margin-bottom:48px; border-radius:var(--r-xl);
  overflow:hidden; background:var(--line);
}
.adm-step{
  background:var(--paper); padding:26px 24px;
  display:grid; grid-template-columns:52px 1fr; gap:16px; align-items:start;
  transition:background .25s;
}
.adm-step:hover{ background:#fffaf6; }
.adm-step__n{
  width:52px; height:52px; border-radius:18px; flex:none;
  display:grid; place-items:center;
  font-family:var(--display); font-weight:600; font-size:1.4rem;
  color:#fff; align-self:start;
}
.adm-step h3{ font-size:1.1rem; margin-bottom:.3rem; }
.adm-step p{ margin:0; font-size:.9rem; }

/* ---- Main card ---- */
.adm-card{
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:var(--sh-l);
  border:1px solid #F4DFD0;
  background:var(--paper);
}

/* LEFT panel — dark */
.adm-left{
  background:linear-gradient(160deg,#1B2E2D 0%,#0D1C1B 100%);
  padding:36px 28px;
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; gap:28px;
}
.adm-left::before{
  content:""; position:absolute; width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle,rgba(23,128,125,.35),transparent 70%);
  top:-80px; right:-80px; pointer-events:none;
}
.adm-left::after{
  content:""; position:absolute; width:200px; height:200px; border-radius:50%;
  background:radial-gradient(circle,rgba(255,194,75,.2),transparent 70%);
  bottom:-60px; left:-60px; pointer-events:none;
}
.adm-headline{ position:relative; z-index:1; }
.adm-headline .eyebrow{ background:rgba(255,255,255,.1); color:var(--sun); margin-bottom:10px; }
.adm-headline h2{ color:#fff; font-size:clamp(1.6rem,3.5vw,2.2rem); margin-bottom:.5rem; line-height:1.2; }
.adm-headline p{ color:rgba(255,255,255,.6); font-size:.93rem; margin:0; }

/* Urgency live counter */
.adm-urgency{
  position:relative; z-index:1;
  background:rgba(255,107,69,.14);
  border:1px solid rgba(255,107,69,.28);
  border-radius:var(--r-md); padding:18px 20px;
  animation:glowPulse 3s ease infinite;
}
.adm-urgency__label{
  font-size:.76rem; font-weight:800; text-transform:uppercase;
  letter-spacing:.12em; color:var(--coral); margin-bottom:8px;
  display:flex; align-items:center; gap:7px;
}
.adm-urgency__dot{
  width:8px; height:8px; border-radius:50%; background:var(--coral);
  animation:glowPulse 1.6s ease infinite;
  flex:none;
}
.adm-urgency__msg{ font-family:var(--display); font-weight:600; font-size:1.05rem; color:#fff; }
.adm-urgency__sub{ font-size:.84rem; color:rgba(255,255,255,.55); margin-top:4px; }

/* Trust badges */
.adm-trust{ position:relative; z-index:1; display:grid; gap:10px; }
.adm-trust-item{
  display:flex; align-items:center; gap:12px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-sm); padding:13px 15px;
  transition:background .25s, transform .25s;
}
.adm-trust-item:hover{ background:rgba(255,255,255,.1); transform:translateX(4px); }
.adm-trust-icon{
  width:36px; height:36px; border-radius:12px; flex:none;
  display:grid; place-items:center;
}
.adm-trust-item strong{ display:block; color:#fff; font-size:.9rem; }
.adm-trust-item span{ font-size:.8rem; color:rgba(255,255,255,.5); }

/* contact row */
.adm-contact{ position:relative; z-index:1; border-top:1px solid rgba(255,255,255,.1); padding-top:22px; }
.adm-contact a{ color:var(--sun); font-weight:700; }
.adm-contact p{ font-size:.88rem; color:rgba(255,255,255,.55); margin:0; }
.adm-contact p + p{ margin-top:6px; }

/* RIGHT panel — form */
.adm-right{ padding:32px 24px; }
.adm-right h3{ font-family:var(--display); font-size:1.3rem; color:var(--ink); margin-bottom:4px; }
.adm-right .sub{ font-size:.88rem; color:var(--ink-soft); margin-bottom:20px; }

/* floating "free" badge */
.adm-free-badge{
  display:inline-flex; align-items:center; gap:6px;
  background:linear-gradient(135deg,var(--coral),var(--sun));
  color:#fff; font-family:var(--display); font-weight:600; font-size:.82rem;
  padding:6px 13px; border-radius:999px; margin-bottom:18px;
  box-shadow:0 6px 16px -6px rgba(255,107,69,.7);
  animation:floatBadge 3.5s ease-in-out infinite;
}

/* Form fields (generic — used by any "admissions"-type form) */
.field{ margin-bottom:16px; }
.field label{ display:block; font-weight:800; font-size:.84rem; color:var(--ink); margin-bottom:6px; }
.field input, .field select, .field textarea{
  width:100%; padding:12px 14px; border-radius:var(--r-sm);
  border:2px solid var(--line); background:var(--cream);
  font-family:var(--body); font-size:.98rem; color:var(--ink);
  transition:border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--teal); background:#fff;
  box-shadow:0 0 0 4px rgba(23,128,125,.12); outline:none;
}
.field textarea{ resize:vertical; min-height:80px; }
.form-note{ font-size:.79rem; margin-top:10px; text-align:center; }
.form-ok{ display:none; padding:36px 24px; text-align:center; }
.form-ok h3{ color:var(--teal); margin-top:12px; }
.form.is-sent .form-fields{ display:none; }
.form.is-sent .form-ok{ display:block; animation:fadeUp .45s ease both; }
/* Progress bar inside form */
.form-progress{
  height:4px; border-radius:999px; background:var(--line); margin-bottom:18px; overflow:hidden;
}
.form-progress__bar{
  height:100%; background:linear-gradient(90deg,var(--teal),var(--coral));
  border-radius:999px; width:0; transition:width .4s ease;
}

/* desktop two-col layout */
.adm-layout{
  display:grid; grid-template-columns:1fr;
}

@media(min-width:600px){
  .adm-steps-row{ grid-template-columns:1fr 1fr 1fr; gap:2px; }
  .adm-step{ grid-template-columns:44px 1fr; }
  .adm-right{ padding:36px 32px; }
}
@media(min-width:900px){
  .adm-outer{ padding:88px 0; }
  .adm-layout{ grid-template-columns:1.05fr .95fr; }
  .adm-left{ padding:48px 40px; }
  .adm-right{ padding:48px 40px; }
}
