/* ── COLOUR PALETTE (matched directly to Facebook banner) ──────
   Banner BG (warm cream-yellow)  : #EDE8A0
   Dark Forest Green              : #2A6B4A
   Mid Green                      : #3C8C64
   Light Green tint               : #CBE9D7
   Bold Red (triangle)            : #D03828
   Golden Yellow (circle/feet)    : #F0C020
   Off-white body BG              : #FDFBEA
─────────────────────────────────────────────────────────────── */
:root{
  --green:    #2A6B4A;
  --green-md: #3C8C64;
  --green-lt: #CBE9D7;
  --banner:   #EDE8A0;
  --yellow:   #F0C020;
  --ylt:      #FAF5C5;
  --red:      #D03828;
  --red-lt:   #FAD8D4;
  --cream:    #FDFBEA;
  --white:    #FFFFFF;
  --text:     #1C3828;
  --muted:    #4A6E5A;
  --r:        18px;
  --sh:       0 8px 32px rgba(26,56,40,.12);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Nunito',sans-serif;background:var(--cream);color:var(--text);overflow-x:hidden}

/* ── NAV ── */
nav{
  background:var(--green);
  position:sticky;top:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;height:68px;
  box-shadow:0 3px 18px rgba(26,56,40,.28);
}
.nav-brand{display:flex;align-items:center;gap:11px;cursor:pointer;text-decoration:none}
.nav-logo-circle{
  width:44px;height:44px;border-radius:50%;
  background:var(--yellow);
  display:flex;align-items:center;justify-content:center;
  font-family:'Baloo 2',cursive;font-weight:800;font-size:.8rem;
  color:var(--green);letter-spacing:-.5px;flex-shrink:0;
  box-shadow:0 3px 10px rgba(0,0,0,.18);
}
.nav-title{font-family:'Baloo 2',cursive;font-weight:800;font-size:1.08rem;color:#fff;line-height:1.15}
.nav-title span{display:block;font-size:.66rem;font-weight:600;color:rgba(255,255,255,.58);text-transform:uppercase;letter-spacing:.04em}
.nav-links{display:flex;align-items:center;gap:3px;list-style:none}
.nav-links a{
  font-weight:700;font-size:.88rem;color:rgba(255,255,255,.78);
  text-decoration:none;padding:7px 15px;border-radius:50px;
  transition:all .18s;
}
.nav-links a:hover,.nav-links a.active{color:var(--yellow);background:rgba(255,255,255,.11)}
.nav-enroll{background:var(--red)!important;color:#fff!important;box-shadow:0 3px 12px rgba(208,56,40,.38)}
.nav-enroll:hover{background:#b42f20!important}

/* ── SHARED SECTION HELPERS ── */
.tag{
  display:inline-flex;align-items:center;gap:7px;
  font-size:.74rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase;
  color:var(--red);margin-bottom:9px;
}
.tag::before{content:'';display:block;width:16px;height:2.5px;background:currentColor;border-radius:2px}
h1.page-title,h2.stitle{font-family:'Baloo 2',cursive;font-weight:800;color:var(--green);line-height:1.2}
h2.stitle{font-size:clamp(1.75rem,3.5vw,2.4rem);margin-bottom:12px}
p.ssub{font-size:.97rem;color:var(--muted);line-height:1.8;max-width:540px}

/* ── BUTTONS ── */
.btn{display:inline-flex;align-items:center;gap:8px;border:none;border-radius:50px;
  font-family:'Nunito',sans-serif;font-weight:800;font-size:.97rem;cursor:pointer;
  text-decoration:none;transition:all .2s;padding:13px 28px}
.btn-red{background:var(--red);color:#fff;box-shadow:0 5px 18px rgba(208,56,40,.36)}
.btn-red:hover{background:#b42f20;transform:translateY(-2px);box-shadow:0 9px 26px rgba(208,56,40,.42)}
.btn-red:disabled{opacity:.6;cursor:not-allowed;transform:none}
.btn-outline{background:#fff;color:var(--green);border:2.5px solid var(--green)}
.btn-outline:hover{background:var(--green);color:#fff;transform:translateY(-2px)}
.btn-green{background:var(--green);color:#fff;box-shadow:0 5px 18px rgba(26,56,40,.28)}
.btn-green:hover{background:#1d5038;transform:translateY(-2px)}
.btn-full{width:100%;justify-content:center;padding:15px 28px}

/* ══════════════════════════════════════
   HOME PAGE
══════════════════════════════════════ */
.hero{
  background:var(--banner);
  min-height:88vh;
  display:flex;align-items:center;flex-wrap:wrap;
  padding:60px 5% 80px;
  position:relative;overflow:hidden;
}
.deco{position:absolute;pointer-events:none}
.deco-tri{
  width:0;height:0;
  border-left:72px solid transparent;
  border-right:72px solid transparent;
  border-bottom:125px solid var(--red);
  opacity:.65;right:10%;top:8%;
  animation:bob 7s ease-in-out infinite;
}
.deco-circle{
  width:145px;height:145px;border-radius:50%;
  background:var(--yellow);opacity:.55;
  right:6%;bottom:6%;
  animation:bob 8s ease-in-out infinite 1.2s;
}
.deco-square{
  width:82px;height:82px;border-radius:12px;
  background:var(--green);opacity:.18;
  top:18%;right:33%;
  animation:bob 9s ease-in-out infinite 2.3s;
}
.deco-foot{font-size:5.5rem;top:4%;right:26%;opacity:.16;animation:float 6s ease-in-out infinite}
.deco-block{font-size:3.5rem;bottom:12%;right:20%;opacity:.2;animation:float 7.5s ease-in-out infinite 1.8s}
@keyframes bob{0%,100%{transform:rotate(0) scale(1)}35%{transform:rotate(4deg) scale(1.04)}68%{transform:rotate(-3deg) scale(.97)}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-13px)}}

.hero-copy{max-width:590px;position:relative;z-index:2}
.hero-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--green);color:var(--yellow);
  border-radius:50px;padding:6px 17px;
  font-size:.78rem;font-weight:800;margin-bottom:22px;
  letter-spacing:.03em;box-shadow:0 3px 12px rgba(26,56,40,.28);
}
.hero h1{
  font-family:'Baloo 2',cursive;
  font-size:clamp(2.2rem,5vw,3.6rem);
  font-weight:800;color:var(--green);line-height:1.14;margin-bottom:18px;
}
.hero h1 em{font-style:normal;color:var(--red);position:relative}
.hero h1 em::after{
  content:'';position:absolute;left:0;right:0;bottom:3px;
  height:7px;background:var(--yellow);opacity:.65;
  border-radius:4px;z-index:-1;
}
.hero p{font-size:1.06rem;color:var(--muted);line-height:1.82;margin-bottom:30px}
.hero-btns{display:flex;gap:13px;flex-wrap:wrap;margin-bottom:38px}

.info-strip{
  display:flex;background:#fff;border-radius:15px;
  box-shadow:var(--sh);max-width:510px;overflow:hidden;
}
.ic{flex:1;padding:13px 10px;text-align:center;border-right:1px solid #eee}
.ic:last-child{border-right:none}
.ic-i{font-size:1.35rem;display:block;margin-bottom:3px}
.ic-v{font-family:'Baloo 2',cursive;font-size:.92rem;font-weight:700;color:var(--green);display:block}
.ic-l{font-size:.66rem;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.04em}

/* ── WHY FAIRWOOD ── */
.why-section{background:#fff;padding:76px 5%}
.why-head{text-align:center;margin-bottom:50px}
.why-head .tag{justify-content:center}
.why-head .ssub{margin:0 auto}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(245px,1fr));gap:20px}
.why-card{
  background:var(--cream);border-radius:var(--r);
  padding:28px 24px;border-top:4px solid transparent;
  transition:transform .22s,box-shadow .22s;
}
.why-card.c-green{border-top-color:var(--green)}
.why-card.c-red{border-top-color:var(--red)}
.why-card.c-yel{border-top-color:var(--yellow)}
.why-card:hover{transform:translateY(-6px);box-shadow:var(--sh)}
.why-icon{font-size:2.3rem;display:block;margin-bottom:13px}
.why-card h3{font-family:'Baloo 2',cursive;font-size:1.08rem;font-weight:700;color:var(--green);margin-bottom:8px}
.why-card p{font-size:.87rem;color:var(--muted);line-height:1.74}

/* ── PROGRAMS BAND ── */
.prog-section{background:var(--green);padding:70px 5%}
.prog-head{text-align:center;margin-bottom:44px}
.prog-head .tag{color:var(--yellow);justify-content:center}
.prog-head .tag::before{background:var(--yellow)}
.prog-head h2.stitle{color:#fff}
.prog-head .ssub{color:rgba(255,255,255,.62);margin:0 auto}
.prog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:15px}
.prog-card{
  background:rgba(255,255,255,.09);
  border:1.5px solid rgba(255,255,255,.14);
  border-radius:var(--r);padding:24px 18px;text-align:center;
  transition:all .22s;
}
.prog-card:hover{background:rgba(255,255,255,.16);transform:translateY(-4px)}
.prog-age{
  background:var(--yellow);color:var(--green);
  font-size:.68rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;
  padding:3px 11px;border-radius:50px;display:inline-block;margin-bottom:11px;
}
.prog-card .icon{font-size:2.1rem;display:block;margin-bottom:9px}
.prog-card h3{font-family:'Baloo 2',cursive;font-size:.97rem;font-weight:700;color:#fff;margin-bottom:6px}
.prog-card p{font-size:.8rem;color:rgba(255,255,255,.58);line-height:1.6}

/* ── SOOFIA SPOTLIGHT ── */
.soofia-section{
  background:var(--ylt);padding:78px 5%;
  display:flex;gap:56px;align-items:center;flex-wrap:wrap;
}
.soofia-card{
  flex:0 0 290px;background:#fff;border-radius:26px;
  padding:34px 26px;text-align:center;box-shadow:var(--sh);position:relative;
}
.soofia-card::before{
  content:'';position:absolute;top:-11px;right:-11px;
  width:100%;height:100%;background:var(--yellow);
  border-radius:26px;z-index:-1;opacity:.45;
}
.soofia-avatar{
  width:86px;height:86px;background:var(--green-lt);border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:2.7rem;
  margin:0 auto 14px;border:4px solid #fff;
  box-shadow:0 4px 14px rgba(26,56,40,.14);
}
.soofia-name{font-family:'Baloo 2',cursive;font-size:1.25rem;font-weight:800;color:var(--green);margin-bottom:3px}
.soofia-role{font-size:.77rem;font-weight:800;color:var(--red);text-transform:uppercase;letter-spacing:.05em;margin-bottom:16px}
.cred-list{list-style:none;text-align:left}
.cred-list li{display:flex;align-items:flex-start;gap:9px;padding:8px 0;border-bottom:1px solid #eee;font-size:.82rem;color:var(--muted)}
.cred-list li:last-child{border-bottom:none}
.ci{font-size:1.05rem;flex-shrink:0}
.soofia-text{flex:1;min-width:270px}
.soofia-text p{font-size:.97rem;color:var(--muted);line-height:1.82;margin-bottom:14px}
.quote-box{
  background:var(--green);border-radius:var(--r);
  padding:20px 22px;margin-top:22px;
}
.quote-box p{font-size:.97rem;font-weight:600;font-style:italic;color:rgba(255,255,255,.9);line-height:1.7;margin:0}
.quote-box cite{font-size:.79rem;color:var(--yellow);font-style:normal;font-weight:700;display:block;margin-top:7px}

/* ── TESTIMONIALS ── */
.testi-section{background:#fff;padding:76px 5%}
.testi-head{text-align:center;margin-bottom:44px}
.testi-head .tag{justify-content:center}
.testi-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:20px}
.testi-card{
  background:var(--cream);border-radius:var(--r);
  padding:26px 22px;border-left:4px solid var(--yellow);
  box-shadow:0 3px 14px rgba(26,56,40,.06);
}
.stars{color:var(--yellow);font-size:1.05rem;letter-spacing:2px;margin-bottom:11px}
.testi-card p{font-size:.89rem;color:var(--muted);line-height:1.78;margin-bottom:17px;font-style:italic}
.reviewer{display:flex;align-items:center;gap:11px}
.rev-av{width:37px;height:37px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.rev-name{font-weight:800;font-size:.86rem;color:var(--green);display:block}
.rev-role{font-size:.74rem;color:var(--muted)}

/* ── SERVICE AREA ── */
.area-section{background:var(--cream);padding:70px 5%}
.area-head{text-align:center;margin-bottom:38px}
.area-head .tag{justify-content:center}
.area-head .ssub{margin:0 auto}
.area-body{
  max-width:840px;margin:0 auto;
  background:#fff;border-radius:var(--r);
  padding:32px 34px;box-shadow:0 3px 14px rgba(26,56,40,.06);
}
.area-body p{font-size:.93rem;color:var(--muted);line-height:1.85;margin-bottom:14px}
.area-body p:last-child{margin-bottom:0}
.area-body strong{color:var(--green)}
.area-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.area-chip{
  background:var(--green-lt);color:var(--green);
  font-size:.78rem;font-weight:700;
  padding:5px 13px;border-radius:50px;
}

/* ── CTA BAND ── */
.cta-section{
  background:var(--banner);padding:68px 5%;text-align:center;
  border-top:4px solid var(--yellow);border-bottom:4px solid var(--yellow);
  position:relative;overflow:hidden;
}
.cta-section::before{
  content:'ABC';font-family:'Baloo 2',cursive;
  font-size:170px;font-weight:800;color:var(--green);opacity:.05;
  position:absolute;top:-15px;left:50%;transform:translateX(-50%);
  pointer-events:none;white-space:nowrap;
}
.cta-section h2{font-family:'Baloo 2',cursive;font-size:clamp(1.8rem,4vw,2.7rem);font-weight:800;color:var(--green);margin-bottom:13px}
.cta-section p{color:var(--muted);font-size:1.03rem;line-height:1.74;max-width:490px;margin:0 auto 28px}


/* ══════════════════════════════════════
   ABOUT / CONTACT PAGE HERO
══════════════════════════════════════ */
.page-hero{
  background:var(--banner);padding:76px 5% 60px;
  text-align:center;border-bottom:4px solid var(--yellow);
}
.page-pill{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--green);color:var(--yellow);
  border-radius:50px;padding:6px 17px;
  font-size:.76rem;font-weight:800;margin-bottom:17px;
}
.page-title{font-size:clamp(1.9rem,5vw,3rem);margin-bottom:13px}
.page-sub{font-size:1.03rem;color:var(--muted);max-width:550px;margin:0 auto;line-height:1.8}

/* story */
.story-section{background:#fff;padding:78px 5%;display:flex;gap:56px;align-items:flex-start;flex-wrap:wrap}
.story-text{flex:1;min-width:270px}
.story-text p{font-size:.97rem;color:var(--muted);line-height:1.82;margin-bottom:14px}
.story-sidebar{flex:0 0 295px;display:flex;flex-direction:column;gap:15px}
.side-card{background:var(--cream);border-radius:var(--r);padding:20px;border-left:4px solid var(--green)}
.side-card h4{font-family:'Baloo 2',cursive;font-size:.95rem;font-weight:700;color:var(--green);margin-bottom:10px}

/* values */
.vals-section{background:var(--ylt);padding:78px 5%;text-align:center}
.vals-section .tag{justify-content:center}
.vals-section .ssub{margin:0 auto 44px}
.vals-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(195px,1fr));gap:17px;max-width:960px;margin:0 auto}
.val-card{background:#fff;border-radius:var(--r);padding:24px 18px;box-shadow:0 3px 13px rgba(26,56,40,.07);transition:transform .22s}
.val-card:hover{transform:translateY(-5px)}
.val-card .icon{font-size:2rem;display:block;margin-bottom:9px}
.val-card h3{font-family:'Baloo 2',cursive;font-size:.97rem;font-weight:700;color:var(--green);margin-bottom:7px}
.val-card p{font-size:.81rem;color:var(--muted);line-height:1.65}

/* schedule */
.sched-section{background:#fff;padding:78px 5%}
.sched-head{text-align:center;margin-bottom:44px}
.sched-head .tag{justify-content:center}
.timeline{max-width:660px;margin:0 auto;position:relative}
.timeline::before{content:'';position:absolute;left:58px;top:0;bottom:0;width:3px;background:var(--green-lt);border-radius:3px}
.t-row{display:flex;gap:22px;align-items:flex-start;padding:15px 0}
.t-time{width:58px;text-align:right;flex-shrink:0;font-family:'Baloo 2',cursive;font-size:.8rem;font-weight:700;color:var(--muted);padding-top:4px}
.t-dot{width:25px;height:25px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.82rem;position:relative;z-index:1}
.t-dot.g{background:var(--green)} .t-dot.r{background:var(--red)} .t-dot.y{background:var(--yellow)}
.t-body h4{font-family:'Baloo 2',cursive;font-size:.97rem;font-weight:700;color:var(--green);margin-bottom:4px}
.t-body p{font-size:.82rem;color:var(--muted);line-height:1.62}


/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-body{
  background:#fff;padding:76px 5%;
  display:flex;gap:56px;flex-wrap:wrap;align-items:flex-start;
}
.c-info{flex:0 0 308px}
.c-info h3{font-family:'Baloo 2',cursive;font-size:1.3rem;font-weight:700;color:var(--green);margin-bottom:20px}
.c-block{display:flex;align-items:flex-start;gap:13px;padding:15px 0;border-bottom:1px solid var(--ylt)}
.c-block:last-of-type{border-bottom:none}
.c-icon{width:39px;height:39px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.05rem;flex-shrink:0}
.ci-g{background:var(--green-lt)} .ci-r{background:var(--red-lt)} .ci-y{background:#FFF3CC}
.c-label{display:block;font-size:.83rem;font-weight:800;color:var(--green);margin-bottom:3px}
.c-val{font-size:.86rem;color:var(--muted);line-height:1.6;text-decoration:none}
.c-val:hover{color:var(--red);text-decoration:underline}
.hours-box{background:var(--cream);border-radius:var(--r);padding:18px;margin-top:18px;border:2px solid var(--yellow)}
.hours-box h4{font-family:'Baloo 2',cursive;font-size:.93rem;font-weight:700;color:var(--green);margin-bottom:11px}
.h-row{display:flex;justify-content:space-between;font-size:.82rem;padding:5px 0;border-bottom:1px solid var(--ylt);color:var(--muted)}
.h-row:last-child{border-bottom:none}
.h-row strong{color:var(--green)}
.fb-box{
  background:var(--cream);border:2px dashed var(--green);
  border-radius:var(--r);padding:16px 20px;
  display:flex;align-items:center;gap:13px;margin-top:20px;
}
.fb-box p{font-size:.84rem;color:var(--muted);line-height:1.6;margin:0}
.fb-box a{color:var(--green);font-weight:800;text-decoration:none}
.fb-box a:hover{text-decoration:underline}

/* form */
.c-form{flex:1;min-width:270px}
.c-form h3{font-family:'Baloo 2',cursive;font-size:1.3rem;font-weight:700;color:var(--green);margin-bottom:20px}
.frow{display:flex;gap:13px;flex-wrap:wrap}
.fg{display:flex;flex-direction:column;flex:1;min-width:195px;margin-bottom:15px;position:relative}
.fg label{font-size:.78rem;font-weight:800;color:var(--green);margin-bottom:5px;text-transform:uppercase;letter-spacing:.04em}
.fg label .opt{color:var(--muted);font-weight:700;text-transform:none;letter-spacing:0;font-size:.74rem}
.fg input,.fg select,.fg textarea{
  border:2px solid #d8e8de;border-radius:12px;padding:11px 15px;
  font-family:'Nunito',sans-serif;font-size:.91rem;
  color:var(--text);background:var(--cream);outline:none;
  transition:border-color .18s,background .18s;
}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--green);background:#fff}
.fg input:invalid:not(:placeholder-shown){border-color:var(--red)}
.fg textarea{resize:vertical;min-height:90px}
.char-count{
  align-self:flex-end;font-size:.74rem;color:var(--muted);
  margin-top:4px;font-weight:700;
}
.char-count.limit{color:var(--red)}
.honeypot{position:absolute;left:-9999px;top:-9999px;opacity:0;height:0;width:0}
.form-note{font-size:.77rem;color:var(--muted);margin-bottom:16px}
.form-error{
  display:none;background:var(--red-lt);border:2px solid var(--red);
  border-radius:var(--r);padding:14px 18px;margin-bottom:18px;
  font-size:.86rem;color:#7a2318;font-weight:700;
}
.form-success{
  display:none;background:var(--green-lt);
  border:2px solid var(--green);border-radius:var(--r);
  padding:26px;text-align:center;
}
.form-success .big{font-size:2.8rem;display:block;margin-bottom:9px}
.form-success h4{font-family:'Baloo 2',cursive;font-size:1.18rem;color:var(--green);margin-bottom:5px}
.form-success p{font-size:.87rem;color:var(--muted)}

/* ── FOOTER ── */
footer{background:var(--green);padding:54px 5% 27px}
.foot-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:38px;margin-bottom:38px}
.foot-tag{font-size:.84rem;color:rgba(255,255,255,.52);line-height:1.76;margin:13px 0 18px}
.social-row{display:flex;gap:9px}
.s-btn{
  width:35px;height:35px;border-radius:50%;
  background:rgba(255,255,255,.11);
  display:flex;align-items:center;justify-content:center;
  font-size:.95rem;cursor:pointer;transition:background .18s;
}
.s-btn:hover{background:var(--red)}
.foot-col h4{font-family:'Baloo 2',cursive;font-size:.93rem;color:var(--yellow);margin-bottom:13px}
.foot-col ul{list-style:none}
.foot-col ul li{margin-bottom:8px}
.foot-col ul li a{font-size:.83rem;color:rgba(255,255,255,.52);text-decoration:none;cursor:pointer;transition:color .18s}
.foot-col ul li a:hover{color:var(--yellow)}
.foot-bottom{border-top:1px solid rgba(255,255,255,.11);padding-top:21px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:9px}
.foot-bottom p{font-size:.76rem;color:rgba(255,255,255,.36)}
.badges{display:flex;gap:8px}
.badge{background:rgba(255,255,255,.09);border-radius:50px;padding:3px 11px;font-size:.69rem;color:rgba(255,255,255,.46)}

/* ── HAMBURGER MENU TOGGLE (hidden on desktop, shown ≤768px) ── */
.nav-toggle{
  display:none;
  background:transparent;border:0;cursor:pointer;
  width:44px;height:44px;
  align-items:center;justify-content:center;
  padding:0;color:#fff;border-radius:10px;
  transition:background .18s;
}
.nav-toggle:hover{background:rgba(255,255,255,.1)}
.nav-toggle:focus-visible{outline:2px solid var(--yellow);outline-offset:2px}
.nav-toggle-bars{
  display:block;position:relative;width:22px;height:2px;
  background:#fff;border-radius:2px;transition:background .15s;
}
.nav-toggle-bars::before,.nav-toggle-bars::after{
  content:'';position:absolute;left:0;width:22px;height:2px;
  background:#fff;border-radius:2px;transition:transform .25s;
}
.nav-toggle-bars::before{top:-7px}
.nav-toggle-bars::after{top:7px}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars{background:transparent}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before{transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after{transform:translateY(-7px) rotate(-45deg)}

/* ── FAQ SECTION (used on home page) ── */
.faq-section{background:#fff;padding:76px 5%}
.faq-head{text-align:center;margin-bottom:40px}
.faq-head .tag{justify-content:center}
.faq-head .ssub{margin:0 auto}
.faq-list{max-width:740px;margin:0 auto}
.faq-item{
  background:var(--cream);border-radius:var(--r);
  margin-bottom:12px;overflow:hidden;
  border:1.5px solid #e6e0c2;
  transition:border-color .18s;
}
.faq-item[open]{border-color:var(--green)}
.faq-item summary{
  list-style:none;cursor:pointer;
  padding:18px 22px;
  font-family:'Baloo 2',cursive;font-weight:700;
  font-size:1rem;color:var(--green);
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  user-select:none;
  min-height:44px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';font-size:1.6rem;font-weight:400;color:var(--red);
  transition:transform .2s;flex-shrink:0;line-height:1;
}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item .faq-body{padding:0 22px 20px;font-size:.93rem;color:var(--muted);line-height:1.78}
.faq-item .faq-body p{margin-bottom:9px}
.faq-item .faq-body p:last-child{margin-bottom:0}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE: TABLET, MOBILE, LANDSCAPE PHONES
   Targets iPad (768-1024px), large phones, and small phones
   with proper touch-target sizing (44×44px Apple HIG minimum)
   ════════════════════════════════════════════════════════════ */

/* ── IPAD LANDSCAPE / SMALL LAPTOPS (≤1100px) ── */
@media(max-width:1100px){
  .foot-grid{grid-template-columns:1.4fr 1fr 1fr;gap:30px}
  .hero h1{font-size:clamp(2rem,4.4vw,3rem)}
}

/* ── IPAD PORTRAIT / LARGE TABLETS (≤960px) ── */
@media(max-width:960px){
  nav{padding:0 4%}
  .nav-title{font-size:1rem}
  .nav-title span{font-size:.62rem}
  .nav-links a{padding:7px 12px;font-size:.84rem}
  .hero{min-height:auto;padding:48px 5% 64px}
  .hero h1{font-size:clamp(1.95rem,4.5vw,2.9rem)}
  .hero-copy{max-width:100%}
  /* Tame the decorative shapes on tablets so they don't crowd the copy */
  .deco-tri{transform:scale(.7);transform-origin:top right;right:5%}
  .deco-circle{width:110px;height:110px;right:4%}
  .deco-square{width:60px;height:60px;right:32%}
  .deco-foot{font-size:4rem;right:24%}
  .deco-block{font-size:2.6rem;right:18%}
  .why-section,.prog-section,.soofia-section,.testi-section,.area-section,
  .vals-section,.sched-section,.faq-section{padding:60px 5%}
  .cta-section{padding:56px 5%}
  .features-grid,.why-grid{gap:16px}
  .info-strip{max-width:100%}
}

/* ── TABLETS & LARGER PHONES (≤768px) ── */
@media(max-width:768px){
  /* Show hamburger, collapse nav links into a drawer */
  .nav-toggle{display:flex}
  .nav-links{
    position:fixed;
    top:68px;left:0;right:0;
    background:var(--green);
    flex-direction:column;align-items:stretch;
    padding:14px 6%;gap:4px;
    border-top:1.5px solid rgba(255,255,255,.08);
    box-shadow:0 12px 24px rgba(26,56,40,.32);
    transform:translateY(-12px);
    opacity:0;visibility:hidden;
    transition:opacity .22s, transform .22s, visibility .22s;
    z-index:199;
    max-height:calc(100vh - 68px);
    overflow-y:auto;
  }
  .nav-links.open{
    transform:translateY(0);opacity:1;visibility:visible;
  }
  .nav-links li{width:100%}
  .nav-links a{
    display:block;width:100%;
    padding:14px 18px;font-size:1rem;
    border-radius:12px;
    min-height:44px;
  }
  .nav-cta,.nav-enroll{margin-top:6px}

  /* Section padding & layout */
  .soofia-section,.story-section,.contact-body{flex-direction:column;gap:36px}
  .soofia-card,.story-sidebar,.c-info{flex:unset;width:100%;max-width:520px;margin-left:auto;margin-right:auto}
  .soofia-card{flex:unset}
  .foot-grid{grid-template-columns:1fr 1fr;gap:30px}
  .foot-grid > div:first-child{grid-column:1/-1}
  .hero{padding:40px 5% 56px}
  .hero h1{font-size:clamp(1.85rem,6vw,2.6rem);line-height:1.18}
  .hero p{font-size:1rem}
  .hero-btns .btn{flex:1 1 100%;justify-content:center}
  .info-strip{border-radius:14px}

  /* Decorative shapes — hide on phones to keep things clean */
  .deco-tri,.deco-circle,.deco-square,.deco-foot,.deco-block{opacity:0;display:none}

  /* Larger touch targets across the board */
  .btn{padding:14px 26px;min-height:48px}
  .btn-full{padding:16px 28px}
  .s-btn{width:44px;height:44px;font-size:1.05rem}

  /* Forms */
  .frow{flex-direction:column;gap:0}
  .fg{min-width:0;width:100%}
  .fg input,.fg select,.fg textarea{
    padding:14px 16px;font-size:16px; /* 16px prevents iOS auto-zoom */
    min-height:48px;
  }
  .fg textarea{min-height:110px}

  /* Section titles */
  h1.stitle, h2.stitle{font-size:clamp(1.55rem,5.5vw,2rem)}
  .page-title{font-size:clamp(1.7rem,6vw,2.4rem)}
  .page-hero{padding:48px 5% 44px}
  .page-sub{font-size:.96rem}

  /* Programs / Why cards — slightly tighter */
  .why-card,.testi-card,.val-card,.prog-card{padding:22px 18px}
  .why-icon,.feature-icon{font-size:2rem}

  /* Timeline tightening */
  .timeline::before{left:46px}
  .t-time{width:46px;font-size:.74rem}
  .t-row{gap:16px}

  /* Footer cards */
  .foot-tag{font-size:.85rem}
}

/* ── PHONES (≤520px) ── */
@media(max-width:520px){
  nav{padding:0 4%;height:64px}
  .nav-links{top:64px}
  .nav-logo-circle{width:40px;height:40px;font-size:.74rem}
  .nav-title{font-size:.94rem}
  .nav-title span{font-size:.6rem;letter-spacing:.02em}
  .hero{padding:32px 5% 48px}
  .hero-pill{font-size:.72rem;padding:5px 14px}
  .hero h1{font-size:clamp(1.7rem,7vw,2.2rem)}
  .info-strip{flex-direction:column;border-radius:14px}
  .ic{border-right:none;border-bottom:1px solid #eee;padding:11px 16px}
  .ic:last-child{border-bottom:none}
  .why-section,.prog-section,.soofia-section,.testi-section,.area-section,
  .vals-section,.sched-section,.faq-section,.contact-body{padding:48px 5%}
  .cta-section{padding:46px 5%}
  .foot-grid{grid-template-columns:1fr;gap:26px}
  .foot-grid > div:first-child{grid-column:auto}
  .foot-bottom{flex-direction:column;text-align:center}

  /* Soofia card: stack credentials tighter */
  .soofia-card{padding:28px 22px}
  .soofia-avatar{width:74px;height:74px;font-size:2.2rem}

  /* Contact info blocks */
  .c-block{padding:13px 0}
  .c-icon{width:38px;height:38px;font-size:1rem}

  /* Daily-schedule readability */
  .t-row{gap:12px}
  .t-time{width:42px;font-size:.7rem}
  .timeline::before{left:42px}

  /* Buttons */
  .btn{padding:13px 22px;font-size:.92rem;min-height:48px}

  /* FAQ items more comfortable on small screens */
  .faq-item summary{padding:16px 18px;font-size:.95rem}
  .faq-item .faq-body{padding:0 18px 18px;font-size:.9rem}
}

/* ── SMALL PHONES (≤380px) ── */
@media(max-width:380px){
  .nav-title{font-size:.86rem;line-height:1.1}
  .nav-title span{display:none}
  h1.stitle, h2.stitle{font-size:1.45rem}
  .hero h1{font-size:1.65rem}
  .hero-btns{flex-direction:column}
  .hero-btns .btn{width:100%}
}

/* ── PRINT (helpful for parents who want to keep contact info) ── */
@media print{
  nav,.cta-section,.btn,footer,.deco,.hero-btns,.faq-section{display:none}
  body{background:#fff;color:#000}
  .hero{min-height:auto;padding:20px 0;background:#fff}
  a{color:#000;text-decoration:underline}
}
