/* =========================================================================
   Little Marvels Therapy — Redesign
   Design system / shared stylesheet
   Brand palette (from IMG_7178 + logo): white, pink, yellow, blue + sage
   Type: Baloo 2 (rounded display) + Nunito Sans (body) + Caveat (accent)
   ========================================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Aleo:wght@400;500;600;700;800&family=Baloo+2:wght@400;500;600;700;800&family=Nunito+Sans:wght@400;500;600;700;800;900&family=Caveat:wght@600;700&family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- Design tokens ---------- */
:root{
  /* Brand colours */
  --white:      #ffffff;
  --cream:      #fdf8f0;   /* warm neutral base */
  --cream-deep: #f7eede;
  --ink:        #2b2f38;   /* body text, near-black warm */
  --ink-soft:   #55606e;   /* secondary text */

  --pink:       #f4a9b7;   /* primary accent */
  --pink-deep:  #e07d90;   /* pink hover / text-on-light */
  --pink-tint:  #fce6ea;   /* pink card wash */

  --yellow:     #f4cf5e;   /* highlight */
  --yellow-deep:#e6b53c;
  --yellow-tint:#fcefc8;

  --blue:       #7fb4dd;   /* cool accent */
  --blue-deep:  #3f6f9c;   /* headings accent / text */
  --blue-tint:  #dcebf6;

  --sage:       #93b0a9;   /* logo block colour */
  --sage-deep:  #5f7d76;
  --sage-tint:  #e4ede9;

  /* Roles */
  --bg:         var(--cream);
  --surface:    var(--white);
  --text:       var(--ink);
  --muted:      var(--ink-soft);

  /* Type scale (fluid) */
  --step--1: clamp(0.83rem, 0.79rem + 0.2vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.3rem, 1.15rem + 0.8vw, 1.7rem);
  --step-3:  clamp(1.5rem, 1.28rem + 1.15vw, 2.3rem);
  --step-4:  clamp(1.95rem, 1.5rem + 2.3vw, 3.3rem);

  /* Spacing */
  --gap: clamp(1rem, 0.7rem + 1.2vw, 1.6rem);
  --section-y: clamp(3rem, 2rem + 5vw, 6rem);
  --radius: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --shadow: 0 14px 34px -18px rgba(63,111,156,.35);
  --shadow-soft: 0 8px 20px -14px rgba(43,47,56,.4);
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth }
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto} *{animation-duration:.001ms!important;transition-duration:.001ms!important} }
body{
  margin:0;
  font-family:"Nunito Sans",system-ui,sans-serif;
  font-size:var(--step-0);
  line-height:1.65;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--blue-deep);text-decoration:none}
a:hover{text-decoration:underline}
h1,h2,h3,h4{font-family:"Aleo","Baloo 2",Georgia,serif;line-height:1.16;color:var(--ink);font-weight:700;margin:0 0 .4em;letter-spacing:-.005em}
h1{font-size:var(--step-4);font-weight:800;letter-spacing:-.015em}
h2{font-size:var(--step-3)}
h3{font-size:var(--step-2)}
h4{font-size:var(--step-1)}
p{margin:0 0 1em}
ul{margin:0 0 1em}
:focus-visible{outline:3px solid var(--blue-deep);outline-offset:3px;border-radius:6px}

/* ---------- Layout helpers ---------- */
.wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(1.1rem,3vw,2rem)}
.section{padding-block:var(--section-y)}
.eyebrow{
  display:inline-block;font-family:"Nunito Sans",sans-serif;font-weight:800;
  font-size:var(--step--1);letter-spacing:.14em;text-transform:uppercase;
  color:var(--sage-deep);margin-bottom:.6rem;
}
.lead{font-size:var(--step-1);color:var(--muted);font-weight:500}
.center{text-align:center}
.mx-auto{margin-inline:auto}
.measure{max-width:62ch}
.measure-narrow{max-width:44ch}

/* Marker highlight removed — plain emphasis, no background band */
.mark,.mark.pink,.mark.blue{background:none;padding:0}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  min-height:48px;padding:.7rem 1.5rem;border-radius:var(--radius-pill);
  font-family:"Nunito Sans",sans-serif;font-weight:800;font-size:var(--step-0);
  border:2px solid transparent;cursor:pointer;text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{text-decoration:none;transform:translateY(-2px)}
.btn-primary{background:var(--pink);color:#5a2530;box-shadow:var(--shadow-soft)}
.btn-primary:hover{background:var(--pink-deep);color:#fff}
.btn-blue{background:var(--blue);color:#12324e}
.btn-blue:hover{background:var(--blue-deep);color:#fff}
.btn-outline{background:transparent;border-color:var(--ink);color:var(--ink)}
.btn-outline:hover{background:var(--ink);color:var(--cream)}
.btn-ghost{background:var(--white);color:var(--ink);box-shadow:var(--shadow-soft)}
.btn-ghost:hover{background:var(--yellow-tint)}
.btn-wa{background:#25d366;color:#fff;box-shadow:var(--shadow-soft)}
.btn-wa:hover{background:#1eb457;color:#fff}
.btn-wa::before{content:"";width:1.2em;height:1.2em;flex:0 0 auto;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.21h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2Zm5.8 14.16c-.24.68-1.42 1.3-1.96 1.35-.5.05-1.14.07-1.83-.11-.42-.13-.96-.31-1.65-.61-2.9-1.25-4.8-4.17-4.94-4.36-.14-.19-1.18-1.57-1.18-2.99 0-1.42.75-2.12 1.01-2.41.26-.29.57-.36.76-.36.19 0 .38 0 .54.01.17.01.41-.06.64.49.24.56.81 1.97.88 2.11.07.14.11.31.02.5-.09.19-.14.31-.28.48-.14.17-.29.38-.42.51-.14.14-.28.29-.12.57.16.28.72 1.18 1.55 1.91 1.06.94 1.96 1.24 2.24 1.38.28.14.44.12.6-.07.16-.19.69-.81.87-1.09.18-.28.36-.23.6-.14.25.09 1.55.73 1.82.86.26.14.44.21.5.33.06.11.06.64-.18 1.31Z'/%3E%3C/svg%3E") center/contain no-repeat}
.btn-row{display:flex;flex-wrap:wrap;gap:.8rem}

/* ---------- Header / Nav (injected by script.js) ---------- */
.site-header{position:sticky;top:0;z-index:60;background:rgba(253,248,240,.92);backdrop-filter:blur(8px);border-bottom:1px solid var(--cream-deep)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:74px}
.brand{display:flex;align-items:center;gap:.6rem;font-family:"Baloo 2",serif;font-weight:900;color:var(--ink);font-size:1.25rem;text-decoration:none;line-height:1}
.brand:hover{text-decoration:none}
.brand .logo-lock{display:flex;flex-direction:column;line-height:.9}
.brand .logo-top{font-size:.72rem;letter-spacing:.02em;font-weight:700}
.brand .logo-main{background:var(--sage);color:var(--yellow);padding:.06em .34em;border-radius:6px;font-weight:900;letter-spacing:.02em;
  text-shadow:0 1px 0 rgba(0,0,0,.35);border:2px solid var(--ink)}
.brand .logo-sub{font-size:.5rem;letter-spacing:.32em;color:var(--sage-deep);font-family:"Nunito Sans",sans-serif;font-weight:700;margin-top:.15em}

.nav-links{display:flex;align-items:center;gap:.3rem;list-style:none;margin:0;padding:0}
.nav-links > li{position:relative}
.nav-links a{color:var(--ink);font-weight:700;font-size:.98rem;padding:.55rem .7rem;border-radius:10px;display:inline-block}
.nav-links a:hover{text-decoration:none;background:var(--sage-tint)}
.nav-links .has-menu > a::after{content:"⌄";margin-left:.25rem;color:var(--muted)}
.submenu{position:absolute;top:100%;left:0;min-width:230px;background:var(--white);border-radius:16px;
  box-shadow:var(--shadow);padding:.5rem;list-style:none;margin:.4rem 0 0;opacity:0;visibility:hidden;transform:translateY(6px);transition:.16s}
.nav-links .has-menu:hover .submenu,.nav-links .has-menu:focus-within .submenu{opacity:1;visibility:visible;transform:none}
.submenu a{display:block;padding:.5rem .7rem;font-weight:600;font-size:.92rem}
.submenu a:hover{background:var(--pink-tint)}
.nav-cta{display:flex;gap:.5rem;align-items:center}
.nav-toggle{display:none;background:var(--white);border:2px solid var(--ink);border-radius:12px;width:48px;height:48px;cursor:pointer;align-items:center;justify-content:center}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{content:"";display:block;width:20px;height:2.4px;background:var(--ink);border-radius:2px;position:relative;transition:.2s}
.nav-toggle span::before{position:absolute;top:-6px}
.nav-toggle span::after{position:absolute;top:6px}

@media (max-width:1000px){
  .nav-toggle{display:inline-flex}
  .nav-cta .btn{display:none}
  .nav-links{position:fixed;inset:74px 0 auto 0;flex-direction:column;align-items:stretch;gap:.1rem;
    background:var(--cream);padding:1rem clamp(1.1rem,3vw,2rem) 2rem;border-bottom:1px solid var(--cream-deep);
    box-shadow:var(--shadow);max-height:calc(100vh - 74px);overflow:auto;transform:translateY(-120%);transition:transform .25s ease}
  .nav[data-open="true"] .nav-links{transform:none}
  .nav-links a{padding:.75rem .6rem;font-size:1.05rem}
  .submenu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;background:var(--sage-tint);margin:.2rem 0 .5rem;padding:.3rem}
  .nav-links .has-menu > a::after{float:right}
}

/* ---------- Hero ---------- */
.hero{position:relative;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(1.5rem,4vw,3.5rem);align-items:center;position:relative;z-index:1}
@media (max-width:860px){.hero-grid{grid-template-columns:1fr}}
.hero h1{margin-bottom:.5rem}
.hero .bl---:where(){}
.hero-media{position:relative}
.hero-photo{border-radius:38% 38% 42% 42%/44% 44% 40% 40%;box-shadow:var(--shadow);aspect-ratio:4/3.4;object-fit:cover;width:100%}
.blob{position:absolute;border-radius:50%;filter:blur(2px);opacity:.7;z-index:-1}

/* Decorative doodles */
.doodle{position:absolute;pointer-events:none;z-index:0}

/* ---------- Cards ---------- */
.grid{display:grid;gap:var(--gap)}
.cols-2{grid-template-columns:repeat(2,1fr)}
.cols-3{grid-template-columns:repeat(3,1fr)}
.cols-4{grid-template-columns:repeat(4,1fr)}
@media (max-width:900px){.cols-3,.cols-4{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.cols-2,.cols-3,.cols-4{grid-template-columns:1fr}}

.card{background:var(--surface);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow-soft);
  border:1px solid rgba(43,47,56,.06);transition:transform .18s ease, box-shadow .18s ease;height:100%}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.card h3{font-size:var(--step-1)}
.card p{color:var(--muted);margin-bottom:.6rem}
.card .card-link{font-weight:800;color:var(--pink-deep)}
.card-icon{width:80px;height:80px;border-radius:20px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem;overflow:hidden}
.card-icon img{width:100%;height:100%;object-fit:contain;padding:8px;box-sizing:border-box}
/* Instagram feed preview — phone mockup */
.ig-split{display:grid;grid-template-columns:auto 1fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
@media(max-width:820px){.ig-split{grid-template-columns:1fr;justify-items:center;text-align:center}}
.ig-phone{display:block;width:290px;flex:none;background:#15171c;border-radius:42px;padding:12px;box-shadow:0 26px 55px rgba(20,23,28,.24);position:relative;transition:transform .35s ease}
.ig-phone:hover{transform:translateY(-5px)}
.ig-phone::before{content:"";position:absolute;top:21px;left:50%;transform:translateX(-50%);width:92px;height:7px;background:#2c2f36;border-radius:6px;z-index:3}
.ig-phone-screen{background:#fff;border-radius:32px;overflow:hidden;padding-top:16px}
.ig-top{display:flex;align-items:center;gap:.55rem;padding:.7rem .85rem .8rem}
.ig-avatar{width:40px;height:40px;border-radius:50%;object-fit:contain;background:#fdf1f4;padding:3px;flex:none}
.ig-meta{display:flex;flex-direction:column;line-height:1.2;flex:1;min-width:0;text-align:left}
.ig-meta b{font-size:.9rem;color:var(--ink)}
.ig-meta span{font-size:.7rem;color:var(--muted)}
.ig-follow{background:#e07d90;color:#fff;font-weight:800;font-size:.72rem;padding:.32rem .7rem;border-radius:9px;flex:none}
.ig-photos{display:grid;grid-template-columns:repeat(3,1fr);gap:3px}
.ig-photos img{width:100%;aspect-ratio:1;object-fit:cover;display:block}
.ig-copy{max-width:46ch}

/* Service card tinted variants */
.tint-pink{background:var(--pink-tint)}
.tint-yellow{background:var(--yellow-tint)}
/* Entry popup — current workshops / promos */
.promo-overlay{position:fixed;inset:0;z-index:200;background:rgba(43,47,56,.62);display:flex;align-items:center;justify-content:center;padding:3vh 4vw;opacity:0;visibility:hidden;transition:opacity .3s ease}
.promo-overlay.open{opacity:1;visibility:visible}
.promo-card{position:relative;display:flex;background:#fff;border-radius:22px;max-width:800px;width:100%;max-height:92vh;overflow:hidden;box-shadow:0 30px 70px rgba(0,0,0,.38);transform:translateY(16px) scale(.98);transition:transform .3s ease}
.promo-overlay.open .promo-card{transform:none}
.promo-media{flex:1 1 46%;display:block;min-width:0}
.promo-media img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.promo-body{flex:1 1 54%;padding:2.2rem 2rem;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}
.promo-body .eyebrow{margin-bottom:.5rem}
.promo-head{font-size:clamp(1.6rem,1.3rem+1vw,2.1rem);margin:0 0 .7rem;line-height:1.12}
.promo-em{color:var(--pink-deep)}
.promo-sub{color:var(--muted);margin:0 0 1.3rem;font-size:.97rem;line-height:1.55;max-width:36ch}
.promo-go{align-self:stretch}
.promo-dismiss{margin:.85rem auto 0;background:none;border:none;color:var(--muted);font-size:.85rem;text-decoration:underline;cursor:pointer;font-family:inherit}
.promo-dismiss:hover{color:var(--ink)}
.promo-close{position:absolute;top:12px;right:12px;z-index:3;width:38px;height:38px;border-radius:50%;border:1.5px solid var(--cream-deep);background:rgba(255,255,255,.92);cursor:pointer;font-size:23px;line-height:1;color:var(--ink);display:flex;align-items:center;justify-content:center;transition:transform .15s ease}
.promo-close:hover{transform:scale(1.07);background:#fff}
@media(max-width:640px){.promo-card{flex-direction:column;max-width:400px;max-height:92vh;overflow-y:auto}.promo-media{flex:none;max-height:210px}.promo-body{flex:none;padding:1.6rem 1.4rem}}
/* Play-therapy "sandbox" card — wooden-frame 9-slice with sand fill + tools on the rim */
.sandbox-card{position:relative;overflow:visible;border-style:solid;border-width:20px;border-image:url("sandbox.jpg") 34 fill / 20px / 0 stretch;border-radius:0;background:#f1e7a6;box-shadow:var(--shadow-soft);padding:1.6rem 1.8rem 1.9rem}
.sandbox-card h3{margin-top:.2rem}
.sand-bucket,.sand-shovel{position:absolute;pointer-events:none;filter:drop-shadow(0 6px 9px rgba(43,47,56,.22));z-index:3}
.sand-bucket{bottom:-26px;left:-24px;width:clamp(66px,10vw,98px);transform:rotate(-6deg)}
.sand-shovel{bottom:-30px;right:-26px;width:clamp(84px,12vw,120px);transform:rotate(6deg)}
@media(max-width:600px){.sand-bucket{width:58px;left:-10px;bottom:-18px}.sand-shovel{width:74px;right:-10px;bottom:-20px}}
.tint-blue{background:var(--blue-tint)}
.tint-sage{background:var(--sage-tint)}
.bg-pink{background:var(--pink-tint)}
.bg-yellow{background:var(--yellow-tint)}
.bg-blue{background:var(--blue-tint)}
.bg-sage{background:var(--sage-tint)}
.bg-cream{background:var(--cream)}
.bg-white{background:var(--white)}

.ico{width:34px;height:34px;stroke:var(--ink);stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}

/* Pill tags */
.tag{display:inline-block;background:var(--white);border:2px solid var(--ink);border-radius:var(--radius-pill);
  padding:.25rem .8rem;font-weight:800;font-size:var(--step--1);margin:.2rem .3rem .2rem 0}
.tag.sage{background:var(--sage-tint);border-color:var(--sage-deep);color:var(--sage-deep)}

/* Feature list with ticks */
.ticks{list-style:none;padding:0;margin:0}
.ticks li{position:relative;padding-left:1.9rem;margin-bottom:.55rem}
.ticks li::before{content:"";position:absolute;left:0;top:.35em;width:1.2rem;height:1.2rem;border-radius:50%;
  background:var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.85rem no-repeat}

/* Panel / callout */
.panel{border-radius:var(--radius-lg);padding:clamp(1.5rem,4vw,3rem)}
.quote{font-family:"Baloo 2",serif;font-size:var(--step-2);font-style:italic;line-height:1.3;color:var(--blue-deep);margin:0}

/* Process steps */
.steps{counter-reset:step;display:grid;gap:1rem}
.step{background:var(--white);border-radius:var(--radius);padding:1.3rem 1.3rem 1.3rem 3.6rem;position:relative;box-shadow:var(--shadow-soft)}
.step::before{counter-increment:step;content:counter(step);position:absolute;left:1rem;top:1.2rem;width:2rem;height:2rem;border-radius:50%;
  background:var(--yellow);color:var(--ink);font-family:"Baloo 2",serif;font-weight:900;display:flex;align-items:center;justify-content:center}
.step h4{margin:.1rem 0 .3rem}
.step p{margin:0;color:var(--muted);font-size:var(--step--1)}

/* ---------- FAQ accordion ---------- */
.faq-tabs{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.4rem}
.faq-tab{background:var(--white);border:2px solid var(--ink);border-radius:var(--radius-pill);padding:.45rem 1.1rem;font-weight:800;cursor:pointer;font-size:var(--step--1)}
.faq-tab[aria-selected="true"]{background:var(--blue);color:#12324e}
.faq-item{background:var(--white);border-radius:16px;margin-bottom:.7rem;box-shadow:var(--shadow-soft);overflow:hidden}
.faq-q{width:100%;text-align:left;background:none;border:0;padding:1.05rem 3rem 1.05rem 1.2rem;font-family:"Baloo 2",serif;
  font-weight:600;font-size:var(--step-1);cursor:pointer;position:relative;color:var(--ink)}
.faq-q::after{content:"+";position:absolute;right:1.2rem;top:50%;transform:translateY(-50%);font-size:1.6rem;color:var(--pink-deep);font-family:"Nunito Sans",sans-serif}
.faq-q[aria-expanded="true"]::after{content:"–"}
.faq-a{padding:0 1.2rem;max-height:0;overflow:hidden;transition:max-height .28s ease;color:var(--muted)}
.faq-a > div{padding-bottom:1.1rem}
.faq-a.open{max-height:1600px}

/* ---------- Testimonial ---------- */
.testimonial{background:var(--sage-tint);border-radius:var(--radius-lg);padding:clamp(1.5rem,4vw,3rem)}
.testimonial blockquote{margin:0;font-family:"Baloo 2",serif;font-size:var(--step-1);line-height:1.5;color:var(--ink)}
.testimonial cite{display:block;margin-top:1rem;font-style:normal;font-weight:800;color:var(--sage-deep)}

/* ---------- CTA band ---------- */
.cta-band{background:var(--blue-deep);color:#fff;border-radius:var(--radius-lg)}
.cta-band h2,.cta-band .eyebrow{color:#fff}
.cta-band .eyebrow{color:var(--yellow)}
.cta-band p{color:rgba(255,255,255,.9)}

/* ---------- Team ---------- */
.team-card{background:var(--white);border-radius:var(--radius);padding:1.2rem;text-align:center;box-shadow:var(--shadow-soft)}
.team-photo{width:110px;height:110px;border-radius:50%;object-fit:cover;margin:0 auto .8rem;background:var(--sage-tint);
  display:flex;align-items:center;justify-content:center;font-family:"Baloo 2",serif;font-weight:900;font-size:2rem;color:var(--sage-deep)}
.team-card h4{margin:.1rem 0 .2rem;font-size:var(--step-1)}
.team-role{color:var(--pink-deep);font-weight:800;font-size:var(--step--1);text-transform:uppercase;letter-spacing:.04em}

/* ---------- Blog ---------- */
.post-card{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-soft);display:flex;flex-direction:column;height:100%}
.post-cover{aspect-ratio:16/10;display:flex;align-items:center;justify-content:center;font-family:"Baloo 2",serif;font-weight:900;color:#fff;font-size:1.4rem;padding:1rem;text-align:center}
.post-cover-img{width:100%;aspect-ratio:16/10;object-fit:cover;display:block}
.grid > .squiggle{grid-column:1/-1;margin-block:clamp(.4rem,2vw,1.4rem)}

/* Blog article cover — lifted out of the coloured header, floating larger on the page */
.post-cover-sec{padding-block:clamp(1.4rem,3.5vw,2.6rem)}
.post-cover-sec .post-cover{margin:0}
.post-cover-sec .post-cover img{width:100%;aspect-ratio:16/8;object-fit:cover;max-height:none;border-radius:28px;box-shadow:var(--shadow);display:block}

/* ---------- Current service special (poster) ---------- */
.special{background:linear-gradient(180deg,#fbe6df 0%,#f6cec1 100%)}
.special-grid{display:grid;grid-template-columns:minmax(0,440px) 1fr;gap:clamp(1.6rem,4vw,3rem);align-items:center}
@media(max-width:820px){.special-grid{grid-template-columns:1fr;justify-items:center;text-align:center}}
.special-poster{display:block;width:100%;max-width:440px;height:auto;border-radius:18px;box-shadow:var(--shadow)}
.special-copy .special-sub{font-size:var(--step-0);color:var(--ink-soft);margin:.5rem 0 0;max-width:46ch}
@media(max-width:820px){.special-copy .special-sub{margin-inline:auto}}
.post-body{padding:1.2rem;display:flex;flex-direction:column;gap:.5rem;flex:1}
.post-cat{font-size:var(--step--1);font-weight:800;color:var(--sage-deep);text-transform:uppercase;letter-spacing:.06em}
.post-body h3{font-size:var(--step-1);margin:0}
.post-body p{color:var(--muted);font-size:.96rem;margin:0}
.post-meta{margin-top:auto;font-size:var(--step--1);color:var(--muted);font-weight:700}

/* ---------- Footer ---------- */
.site-footer{background:var(--ink);color:#e9e3d6;margin-top:var(--section-y)}
.site-footer a{color:#e9e3d6}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2rem;padding-block:clamp(2.5rem,5vw,4rem)}
@media (max-width:860px){.footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:520px){.footer-grid{grid-template-columns:1fr}}
.site-footer h4{color:#fff;font-size:var(--step-0);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.9rem}
.footer-links{list-style:none;padding:0;margin:0;display:grid;gap:.5rem}
.footer-links a:hover{color:var(--yellow)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.14);padding-block:1.3rem;font-size:var(--step--1);color:#b9b2a3;
  display:flex;flex-wrap:wrap;gap:.6rem;justify-content:space-between}
.social{display:flex;gap:.6rem}
.social a{width:42px;height:42px;border-radius:12px;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center}
.social a:hover{background:var(--pink)}
.social svg{width:20px;height:20px;fill:#fff}

/* ---------- Page hero (interior) ---------- */
.page-hero{padding-block:clamp(2.5rem,5vw,4.5rem) clamp(2rem,4vw,3rem)}
.breadcrumb{font-size:var(--step--1);color:var(--muted);font-weight:700;margin-bottom:1rem}
.breadcrumb a{color:var(--muted)}

/* Utility */
.stack > * + *{margin-top:1rem}
.pill-note{display:inline-flex;gap:.5rem;align-items:center;background:var(--white);border-radius:var(--radius-pill);padding:.4rem 1rem;font-weight:700;box-shadow:var(--shadow-soft);font-size:var(--step--1)}
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,3rem);align-items:center}
@media (max-width:800px){.split{grid-template-columns:1fr}}
.rounded{border-radius:var(--radius-lg)}
.hide-mobile{}
@media (max-width:640px){.hide-mobile{display:none}}
.chip-row{display:flex;flex-wrap:wrap;gap:.6rem;margin:.5rem 0}
hr.soft{border:0;border-top:2px dashed var(--cream-deep);margin:var(--gap) 0}

/* =========================================================================
   EDITORIAL LAYER (v2) — row-based, no content boxes
   Hand-drawn accent (Caveat) echoes the official logo. Distinct subpage look.
   ========================================================================= */

/* Real logo image in header/footer */
.brand-logo{display:inline-flex;align-items:center;text-decoration:none}
.brand-logo img{height:52px;width:auto;display:block}
.site-footer .brand-logo img{height:60px}
@media (max-width:600px){.brand-logo img{height:44px}}

/* Hand-drawn signature accent */
.script{font-family:"Caveat",cursive;font-weight:700;color:var(--sage-deep);
  font-size:1.5em;line-height:.9;display:inline-block;transform:rotate(-2deg)}
.script.pink{color:var(--pink-deep)}
.script.blue{color:var(--blue-deep)}
.script.yellow{color:var(--yellow-deep)}

/* Subpage body: warmer paper base + distinct rhythm from the homepage */
body.subpage{background:
  radial-gradient(1200px 480px at 88% -8%, var(--sage-tint) 0%, transparent 60%),
  radial-gradient(900px 420px at -6% 18%, var(--pink-tint) 0%, transparent 55%),
  var(--cream);
  background-attachment:fixed;}

/* Editorial section + alternating rows */
.ed{padding-block:clamp(2.6rem,5vw,5rem)}
.ed-row{display:grid;grid-template-columns:1.02fr 1.1fr;gap:clamp(1.6rem,5vw,4.5rem);align-items:center}
.ed-row.text-first{grid-template-columns:1.1fr 1.02fr}
.ed-row + .ed-row{margin-top:clamp(2.6rem,6vw,5.5rem)}
@media (max-width:820px){
  .ed-row,.ed-row.text-first{grid-template-columns:1fr;gap:1.6rem}
  .ed-row.reverse .ed-media{order:-1}
}
.ed-row.reverse{direction:rtl}
.ed-row.reverse > *{direction:ltr}

.ed-body{max-width:56ch}
.ed-body h2{margin-bottom:.5rem}
.ed-body .lead{margin-bottom:1rem}
.ed-kicker{font-family:"Caveat",cursive;font-weight:700;font-size:clamp(1.5rem,3vw,2.1rem);
  color:var(--sage-deep);transform:rotate(-2deg);display:inline-block;margin-bottom:.2rem}

/* Organic image treatment — image sits on a colored blob, no hard card */
.ed-media{position:relative;isolation:isolate}
.ed-media img{width:100%;height:auto;display:block;position:relative;z-index:1;
  border-radius:46% 54% 52% 48%/54% 46% 54% 46%;box-shadow:var(--shadow)}
.ed-media.rect img{border-radius:28px}
.ed-media::before{content:"";position:absolute;inset:-6% -5% -8% -7%;z-index:0;
  background:var(--blob-c,var(--sage-tint));border-radius:46% 54% 52% 48%/54% 46% 54% 46%;
  transform:rotate(-4deg)}
.ed-media.c-yellow{--blob-c:var(--yellow-tint)}
.ed-media.c-pink{--blob-c:var(--pink-tint)}
.ed-media.c-blue{--blob-c:var(--blue-tint)}
.ed-media.c-sage{--blob-c:var(--sage-tint)}

/* Squiggle divider between rows/sections */
.squiggle{display:block;width:min(320px,60%);height:20px;margin:clamp(1.6rem,4vw,3rem) auto;
  color:var(--pink);opacity:.85}
.squiggle svg{width:100%;height:100%;display:block}

/* Flowing credential list — definition rows, not boxes */
.credflow{border-top:2px dashed var(--cream-deep);margin-top:1.4rem}
.credflow > div{display:grid;grid-template-columns:minmax(120px,180px) 1fr;gap:1rem;
  padding:.85rem 0;border-bottom:2px dashed var(--cream-deep)}
.credflow dt{font-family:"Nunito Sans",sans-serif;font-weight:800;font-size:var(--step--1);
  text-transform:uppercase;letter-spacing:.08em;color:var(--sage-deep);margin:0}
.credflow dd{margin:0;color:var(--ink)}
@media (max-width:520px){.credflow > div{grid-template-columns:1fr;gap:.15rem}}

/* Specialties as a flowing tag cloud (small accents, not a box) */
.spec-cloud{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.4rem}
.spec-cloud span{background:transparent;border:2px solid var(--sage);color:var(--sage-deep);
  border-radius:var(--radius-pill);padding:.28rem .85rem;font-weight:700;font-size:var(--step--1)}

/* Editorial profile hero */
.profile-hero{padding-block:clamp(2rem,4vw,3.4rem) clamp(1rem,2vw,2rem)}
.profile-hero .ed-row{align-items:center}
.profile-name{font-size:clamp(2.4rem,4vw,3.8rem);line-height:1;margin:.2rem 0 .3rem}
.profile-role{font-family:"Nunito Sans",sans-serif;font-weight:800;color:var(--pink-deep);
  text-transform:uppercase;letter-spacing:.06em;font-size:var(--step-0)}
.profile-photo{position:relative}
.profile-photo img{width:100%;max-width:420px;border-radius:48% 52% 46% 54%/52% 48% 52% 48%;
  box-shadow:var(--shadow);position:relative;z-index:1}
.profile-photo::before{content:"";position:absolute;inset:-7%;background:var(--yellow-tint);
  border-radius:48% 52% 46% 54%/52% 48% 52% 48%;transform:rotate(-5deg);z-index:0}

/* Big pull-quote belief line */
.belief{font-family:"Baloo 2",serif;font-style:italic;font-weight:600;
  font-size:clamp(1.3rem,2.4vw,1.9rem);line-height:1.35;color:var(--blue-deep);
  max-width:26ch;border-left:4px solid var(--yellow);padding-left:1.1rem}

/* Team directory rows (editorial, not a grid of cards) */
.team-list{margin-top:1.5rem}
.team-list a.team-row{display:grid;grid-template-columns:96px 1fr auto;gap:1.2rem;align-items:center;
  padding:1.1rem 0;border-bottom:2px dashed var(--cream-deep);text-decoration:none;color:var(--ink);
  transition:padding-left .18s ease}
.team-list a.team-row:hover{padding-left:.7rem;text-decoration:none}
.team-row .avatar{width:96px;height:96px;border-radius:50%;object-fit:cover;
  background:var(--sage-tint);box-shadow:var(--shadow-soft)}
.team-row h3{margin:0;font-size:var(--step-1)}
.team-row .role{color:var(--pink-deep);font-weight:800;font-size:var(--step--1);
  text-transform:uppercase;letter-spacing:.04em}
.team-row .go{font-family:"Caveat",cursive;font-weight:700;font-size:1.4rem;color:var(--sage-deep)}
@media (max-width:600px){
  .team-list a.team-row{grid-template-columns:64px 1fr;grid-template-rows:auto auto}
  .team-row .avatar{width:64px;height:64px}
  .team-row .go{display:none}
}
.team-group-label{font-family:"Caveat",cursive;font-weight:700;color:var(--sage-deep);
  font-size:clamp(1.8rem,3vw,2.4rem);transform:rotate(-1.5deg);display:inline-block;margin:2rem 0 .3rem;
  scroll-margin-top:100px}

/* Prose block for bios — comfortable reading, no box */
.prose{max-width:64ch}
.prose p{font-size:var(--step-0);line-height:1.75;margin-bottom:1.05em}
.prose p:first-of-type::first-letter{font-family:"Baloo 2",serif;font-weight:900;
  font-size:3.1em;line-height:.8;float:left;margin:.06em .12em 0 0;color:var(--pink-deep)}

/* =========================================================================
   BLOG ARTICLE — easy-to-read reading experience for parents
   Body set in Atkinson Hyperlegible (designed for maximum legibility)
   ========================================================================= */
.post-hero{padding-block:clamp(2rem,4vw,3.4rem) clamp(1rem,2vw,1.6rem)}
.post-cat-kicker{font-family:"Caveat",cursive;font-weight:700;font-size:clamp(1.6rem,3vw,2.2rem);
  color:var(--sage-deep);transform:rotate(-2deg);display:inline-block}
.post-title{font-size:clamp(2rem,1.4rem+3vw,3.4rem);line-height:1.08;max-width:20ch;margin:.2rem 0 .6rem}
.post-meta-row{display:flex;flex-wrap:wrap;gap:.5rem 1rem;align-items:center;font-weight:700;
  color:var(--muted);font-size:var(--step--1);text-transform:uppercase;letter-spacing:.04em}
.post-meta-row .dot{width:6px;height:6px;border-radius:50%;background:var(--pink)}
.post-cover{margin:clamp(1.4rem,3vw,2.4rem) 0 0}
.post-cover img{width:100%;aspect-ratio:16/8;object-fit:cover;border-radius:28px;box-shadow:var(--shadow)}

.article{max-width:44rem;margin-inline:auto;
  font-family:"Atkinson Hyperlegible","Nunito Sans",system-ui,sans-serif;
  color:#333a42}
.article > p,.article li{font-size:1.18rem;line-height:1.85}
.article > p{margin:0 0 1.2em}
.article > p:first-of-type{font-size:1.34rem;line-height:1.68;color:var(--ink);font-weight:400}
.article h2{font-family:"Baloo 2",serif;color:var(--ink);
  font-size:clamp(1.5rem,1.2rem+1.3vw,2.05rem);line-height:1.15;margin:1.9em 0 .45em}
.article h3{font-family:"Baloo 2",serif;color:var(--ink);font-size:1.3rem;margin:1.5em 0 .35em}
.article ul,.article ol{margin:0 0 1.35em;padding-left:1.4em}
.article li{margin-bottom:.55em;padding-left:.2em}
.article ul li::marker{color:var(--pink-deep)}
.article ol li::marker{color:var(--pink-deep);font-weight:800}
.article strong{font-weight:700;color:var(--ink)}
.article a{color:var(--blue-deep);text-decoration:underline;text-underline-offset:2px}
.article blockquote{margin:1.6em 0;padding:.2em 0 .2em 1.3rem;border-left:5px solid var(--yellow);
  font-family:"Baloo 2",serif;font-style:italic;font-size:1.3rem;line-height:1.5;color:var(--blue-deep)}
.article hr{border:0;border-top:2px dashed var(--cream-deep);margin:2em 0}
.article-note{max-width:44rem;margin:2rem auto 0;padding:1.3rem 1.5rem;border-radius:20px;
  background:var(--sage-tint);font-family:"Nunito Sans",sans-serif;font-size:1.02rem;line-height:1.6}

/* =========================================================================
   DISTINCT SUBPAGE HEADER — full-width sage colour block (echoes the logo)
   Makes every subpage visibly different from the cream homepage.
   ========================================================================= */
.page-hero,.block-hero{background:var(--hdr,#3b82c4);color:#fff;position:relative;isolation:isolate;
  border-radius:0;margin-bottom:0}
body.subpage .page-hero,body.subpage .block-hero{margin-top:-.1rem}
.h-rose{--hdr:#db5c90}
.h-blue{--hdr:#3b82c4}
.h-coral{--hdr:#e86a45}
.h-sun{--hdr:#f4b834}
.page-hero .breadcrumb,.block-hero .breadcrumb,
.page-hero .breadcrumb a,.block-hero .breadcrumb a{color:rgba(255,255,255,.82)}
.page-hero .eyebrow,.block-hero .eyebrow{color:rgba(255,255,255,.92)}
.page-hero .ed-kicker,.block-hero .ed-kicker,
.page-hero .script,.block-hero .script,
.page-hero .post-cat-kicker,.block-hero .post-cat-kicker{color:#fff}
.page-hero h1,.block-hero h1,.page-hero h2,.block-hero h2,
.page-hero .profile-name,.block-hero .profile-name,
.page-hero .post-title,.block-hero .post-title{color:#fff}
.page-hero .lead,.block-hero .lead,.page-hero > .wrap p,.block-hero > .wrap p,
.page-hero .ed-body p,.block-hero .ed-body p{color:rgba(255,255,255,.92)}
.page-hero .profile-role,.block-hero .profile-role{color:#fff}
.page-hero .belief,.block-hero .belief{color:#fff;border-left-color:rgba(255,255,255,.65)}
.page-hero .post-meta-row,.block-hero .post-meta-row{color:rgba(255,255,255,.85)}
.page-hero .mark,.block-hero .mark{background:none}
.page-hero .btn-outline,.block-hero .btn-outline{border-color:#fff;color:#fff}
.page-hero .btn-outline:hover,.block-hero .btn-outline:hover{background:#fff;color:var(--ink)}
.page-hero .pill-note,.block-hero .pill-note{background:rgba(255,255,255,.92);color:var(--ink)}
.block-hero .profile-photo::before{background:rgba(255,255,255,.32)}
.block-hero .ed-media::before{background:rgba(255,255,255,.4)}
.block-hero + .squiggle{color:var(--pink)}
/* sunny-yellow header → dark text for contrast */
.h-sun .page-hero .breadcrumb,.h-sun .block-hero .breadcrumb,
.h-sun .page-hero .breadcrumb a,.h-sun .block-hero .breadcrumb a,
.h-sun .page-hero .eyebrow,.h-sun .block-hero .eyebrow{color:#6a4b00}
.h-sun .page-hero .ed-kicker,.h-sun .block-hero .ed-kicker,
.h-sun .page-hero .script,.h-sun .block-hero .script,
.h-sun .page-hero .post-cat-kicker,.h-sun .block-hero .post-cat-kicker{color:#7a5600}
.h-sun .page-hero h1,.h-sun .block-hero h1,.h-sun .page-hero h2,.h-sun .block-hero h2,
.h-sun .page-hero .profile-name,.h-sun .block-hero .profile-name,
.h-sun .page-hero .post-title,.h-sun .block-hero .post-title{color:var(--ink)}
.h-sun .page-hero .lead,.h-sun .block-hero .lead,.h-sun .page-hero > .wrap p,.h-sun .block-hero > .wrap p,
.h-sun .block-hero .ed-body p,.h-sun .page-hero .post-meta-row,.h-sun .block-hero .post-meta-row{color:#3a3320}
.h-sun .page-hero .profile-role,.h-sun .block-hero .profile-role{color:#7a2b3d}
.h-sun .page-hero .belief,.h-sun .block-hero .belief{color:var(--ink);border-left-color:#7a5600}
.h-sun .page-hero .btn-outline,.h-sun .block-hero .btn-outline{border-color:var(--ink);color:var(--ink)}
.h-sun .page-hero .btn-outline:hover,.h-sun .block-hero .btn-outline:hover{background:var(--ink);color:#fff}
.h-sun .page-hero .mark,.h-sun .block-hero .mark{background:none}

/* =========================================================================
   MEGA-MENU — organised Services dropdown (grouped, with descriptions)
   ========================================================================= */
.nav-links .has-mega{position:static}
.mega{position:absolute;left:50%;transform:translateX(-50%) translateY(6px);top:100%;
  width:min(940px,94vw);background:var(--white);border-radius:20px;box-shadow:var(--shadow);
  padding:1.1rem;margin-top:.5rem;opacity:0;visibility:hidden;transition:.16s;z-index:70}
.nav-links .has-mega:hover .mega,.nav-links .has-mega:focus-within .mega{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.mega-intro{font-weight:700;color:var(--muted);font-size:.92rem;background:var(--cream);
  border-radius:12px;padding:.7rem 1rem;margin-bottom:1rem}
.mega-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.mega-head{display:block;border-radius:14px;padding:.7rem .9rem;margin-bottom:.5rem;text-decoration:none}
.mega-head b{display:block;font-family:"Baloo 2",serif;font-weight:700;font-size:1.02rem;color:var(--ink)}
.mega-head small{color:var(--ink-soft);font-size:.8rem}
.mega-head:hover{text-decoration:none;filter:brightness(.97)}
.mega-col a.mega-item{display:block;padding:.5rem .9rem;border-radius:10px;text-decoration:none}
.mega-col a.mega-item b{display:block;font-weight:800;font-size:.95rem;color:var(--ink)}
.mega-col a.mega-item small{color:var(--ink-soft);font-size:.8rem}
.mega-col a.mega-item:hover{background:var(--cream);text-decoration:none}
@media (max-width:1000px){
  .mega{position:static;transform:none;width:auto;box-shadow:none;background:var(--sage-tint);
    opacity:1;visibility:visible;padding:.5rem;margin:.2rem 0 .5rem}
  .mega-cols{grid-template-columns:1fr;gap:.3rem}
  .mega-intro{display:none}
}

/* ---- Compact subpage header band (short, vibrant) ---- */
.page-hero{padding-block:clamp(1rem,2.2vw,1.9rem)}
.block-hero.ed,.block-hero.profile-hero,.block-hero.post-hero{padding-block:clamp(1rem,2.2vw,1.9rem)}
.block-hero .ed-row{align-items:stretch;gap:clamp(1.2rem,4vw,3rem)}
.block-hero .ed-media{display:flex}
.page-hero .breadcrumb,.block-hero .breadcrumb{margin-bottom:.5rem}
.page-hero h1,.block-hero h1,
.page-hero .profile-name,.block-hero .profile-name{font-size:clamp(1.75rem,1.3rem+1.8vw,2.6rem);margin-bottom:.3rem}
.page-hero .lead,.block-hero .lead{font-size:var(--step-0);margin-bottom:.5rem}
.block-hero .ed-body > p{margin-bottom:.45rem}
.page-hero .hero-grid{align-items:stretch}
.page-hero .hero-media{display:flex}
.page-hero .hero-photo{width:100%;height:100%;min-height:clamp(260px,28vw,380px);max-height:none;aspect-ratio:auto;object-fit:cover;border-radius:18px}
.block-hero .ed-media::before{display:none}
.block-hero .ed-media img{width:100%;height:100%;min-height:clamp(260px,28vw,380px);max-height:none;object-fit:cover;border-radius:18px;margin:0}
.block-hero .profile-photo img{max-width:215px}
.block-hero .post-cover{margin-top:.9rem}
.block-hero .post-cover img{aspect-ratio:auto;max-height:320px}
.page-hero .btn,.block-hero .btn{min-height:44px;padding:.5rem 1.15rem}

/* Smooth-scroll anchor targets clear the sticky header on every page */
section[id],[data-anchor]{scroll-margin-top:92px}

/* ---- Simple therapist profile (photo beside text, no colour header) ---- */
.profile-simple{padding-block:clamp(1.4rem,3vw,2.4rem)}
.profile-grid{display:grid;grid-template-columns:minmax(260px,400px) 1fr;gap:clamp(1.6rem,4vw,3.4rem);align-items:start}
@media (max-width:760px){.profile-grid{grid-template-columns:1fr;max-width:540px}}
.profile-photo-lg img{width:100%;border-radius:22px;box-shadow:var(--shadow);object-fit:cover;object-position:center top;aspect-ratio:5/6}
.profile-name-lg{font-size:clamp(2rem,1.4rem+2.4vw,3.1rem);line-height:1.05;margin:.1rem 0 .25rem}
.profile-role-lg{font-family:"Nunito Sans",sans-serif;font-weight:800;color:var(--pink-deep);text-transform:uppercase;letter-spacing:.05em;font-size:var(--step-0);margin:0 0 1.1rem}
.bio{max-width:62ch}
.bio p{margin:0 0 1em;line-height:1.75;color:var(--ink)}
.profile-lower{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.8rem,4vw,3.6rem);align-items:start}
@media (max-width:760px){.profile-lower{grid-template-columns:1fr}}

/* =========================================================================
   ANIMATIONS (from design zip) — subtle scroll-reveal + gentle float
   ========================================================================= */
@keyframes floaty{0%,100%{transform:translateY(0) rotate(var(--rot,0deg))}50%{transform:translateY(-9px) rotate(var(--rot,0deg))}}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
@keyframes spin-slow{to{transform:rotate(360deg)}}
@keyframes floaty-x{0%,100%{transform:translate(0,0) rotate(var(--rot,0deg))}50%{transform:translate(6px,-7px) rotate(var(--rot,0deg))}}
.float{animation:floaty 6s ease-in-out infinite}
/* Hand-drawn floaties (brand doodle set) */
.floatie{position:absolute;z-index:0;pointer-events:none;user-select:none;opacity:.85}
.floatie.slow{animation-duration:8.5s}
.floatie.fast{animation-duration:4.8s}
.floatie.spin-slow{animation:spin-slow 30s linear infinite}
.floatie.d1{animation-delay:-1.1s}
.floatie.d2{animation-delay:-2.3s}
.floatie.d3{animation-delay:-3.5s}
.floatie.d4{animation-delay:-4.6s}
.sect-deco{position:relative;overflow:hidden}
/* Featured-in press logos — uniform boxes so every logo scales evenly */
.featured-logos{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:clamp(1.2rem,3.5vw,2.6rem);margin-top:1.4rem}
.featured-logos a{display:flex;align-items:center;justify-content:center;flex:0 0 auto;width:clamp(96px,12vw,138px);height:56px;opacity:.85;transition:opacity .2s ease,transform .2s ease}
.featured-logos a:hover{opacity:1;transform:translateY(-2px)}
.featured-logos img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;display:block}
/* Article tables */
.article .table-wrap{overflow-x:auto;margin:0 0 1.4em}
.article table{width:100%;border-collapse:collapse;font-size:.95em}
.article th,.article td{text-align:left;padding:.7em .9em;border-bottom:1px solid var(--cream-deep);vertical-align:top}
.article th{background:var(--cream);font-family:"Aleo",Georgia,serif;font-weight:700}
.article tbody tr:last-child td{border-bottom:none}
@media(max-width:700px){.floatie{opacity:.7}.floatie.hide-sm{display:none}}
@media (prefers-reduced-motion:reduce){.floatie{animation:none!important}}
.float.alt{animation:floaty-x 7.5s ease-in-out infinite}
.float.slow{animation-duration:9s}
.float.fast{animation-duration:4.6s}
.spin-sun{animation:spin-slow 34s linear infinite}
.d1{animation-delay:-.4s}.d2{animation-delay:-1.2s}.d3{animation-delay:-2.1s}.d4{animation-delay:-3s}
.doo{position:absolute;background-repeat:no-repeat;background-position:center;background-size:contain;
  width:var(--s,64px);height:var(--s,64px);opacity:.9;pointer-events:none;z-index:0;will-change:transform}
.doo-star{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0%200%20100%20100' fill='none'%3E%3Cpath d='M50 8 L60 38 L92 39 L66 59 L75 91 L50 72 L25 91 L34 59 L8 39 L40 38 Z' stroke='%23e6b53c' stroke-width='6' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E")}
.doo-sun{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0%200%20100%20100' fill='none'%3E%3Ccircle cx='50' cy='50' r='19' stroke='%23e6b53c' stroke-width='6'/%3E%3Cg stroke='%23e6b53c' stroke-width='6' stroke-linecap='round'%3E%3Cpath d='M50 6v11'/%3E%3Cpath d='M50 83v11'/%3E%3Cpath d='M6 50h11'/%3E%3Cpath d='M83 50h11'/%3E%3Cpath d='M19 19l8 8'/%3E%3Cpath d='M73 73l8 8'/%3E%3Cpath d='M81 19l-8 8'/%3E%3Cpath d='M27 73l-8 8'/%3E%3C/g%3E%3C/svg%3E")}
.doo-cloud{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0%200%20100%2090' fill='none'%3E%3Cpath d='M24 70 q-16 0 -16 -15 q0 -13 14 -15 q3 -18 22 -18 q17 0 21 16 q15 -1 15 15 q0 17 -17 17 Z' stroke='%237fb4dd' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E")}
.doo-plane{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0%200%20100%20100' fill='none'%3E%3Cpath d='M94 8 L8 44 L40 54 L92 10 L50 60 L54 92 Z' stroke='%23a99be0' stroke-width='6' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E")}
.doo-squiggle{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0%200%20116%2036' fill='none'%3E%3Cpath d='M4 18 q12 -20 24 0 t24 0 t24 0 t24 0' stroke='%23f4a9b7' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");height:calc(var(--s,64px)*.31)}
.doo-dots{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0%200%20100%20100' fill='none'%3E%3Cg fill='%2393b0a9'%3E%3Ccircle cx='18' cy='30' r='6'/%3E%3Ccircle cx='52' cy='16' r='5'/%3E%3Ccircle cx='82' cy='38' r='6'/%3E%3Ccircle cx='38' cy='62' r='5'/%3E%3Ccircle cx='74' cy='76' r='6'/%3E%3C/g%3E%3C/svg%3E")}
.doo-heart{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0%200%20100%20100' fill='none'%3E%3Cpath d='M50 84 C8 54 16 18 40 22 C48 23 50 32 50 34 C50 32 52 23 60 22 C84 18 92 54 50 84 Z' fill='%23f4a9b7'/%3E%3C/svg%3E")}
.reveal{transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1)}
.js .reveal{opacity:0;transform:translateY(22px)}
.js .reveal.is-in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .float,.float.alt,.spin-sun{animation:none}
  .js .reveal{opacity:1;transform:none;transition:none}
}

/* =========================================================================
   SPACE GALLERY — horizontal scrolling carousel with arrows
   ========================================================================= */
.gallery{position:relative}
.gallery-track{display:flex;gap:clamp(.9rem,2vw,1.4rem);overflow-x:auto;scroll-snap-type:x mandatory;
  scroll-behavior:smooth;padding:.4rem .2rem 1.2rem;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.gallery-track::-webkit-scrollbar{display:none}
.gallery-track > figure{flex:0 0 min(78%,540px);scroll-snap-align:center;margin:0}
.gallery-track img{width:100%;height:clamp(240px,42vw,440px);object-fit:cover;border-radius:var(--radius-lg);
  box-shadow:var(--shadow);display:block}
.gallery-track figcaption{margin-top:.6rem;font-weight:700;color:var(--muted);font-size:var(--step--1);text-align:center}
.gallery-arrow{position:absolute;top:calc(50% - 1.4rem);transform:translateY(-50%);width:52px;height:52px;border-radius:50%;
  border:2px solid var(--ink);background:var(--white);color:var(--ink);cursor:pointer;display:flex;align-items:center;
  justify-content:center;box-shadow:var(--shadow);z-index:3;transition:transform .15s,background .15s}
.gallery-arrow:hover{background:var(--yellow);transform:translateY(-50%) scale(1.06)}
.gallery-arrow:disabled{opacity:.35;cursor:default}
.gallery-arrow.prev{left:-.4rem}.gallery-arrow.next{right:-.4rem}
.gallery-arrow svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2.6;stroke-linecap:round;stroke-linejoin:round}
@media (max-width:640px){.gallery-arrow{width:44px;height:44px}.gallery-arrow.prev{left:-.2rem}.gallery-arrow.next{right:-.2rem}}


/* ===== School-readiness domain wheel ===== */
.sr-layout{display:grid;grid-template-columns:minmax(270px,360px) 1fr;gap:clamp(1.4rem,4vw,3rem);align-items:center;margin-top:2rem}
@media(max-width:820px){.sr-layout{grid-template-columns:1fr}.sr-right{order:-1}}
.sr-left{display:flex;flex-direction:column;gap:1.1rem}
.sr-desc{background:#fff;border-radius:20px;padding:1.4rem 1.5rem;box-shadow:var(--shadow);border-top:6px solid var(--accent,var(--sage-deep));min-height:198px;display:flex;flex-direction:column;justify-content:center;transition:border-color .3s ease}
.srd-title{margin:0 0 .5rem;font-size:1.3rem;line-height:1.14}
.srd-text{margin:0;color:var(--muted);line-height:1.5}
.srd-default p{margin:.3rem 0 0;color:var(--muted)}
.sr-little{display:flex;flex-direction:column;align-items:flex-start;gap:.5rem;text-align:left}
.wheelwrap{position:relative;width:100%;max-width:560px;margin:0 auto;padding:4px}
.wheel{position:relative;width:100%;aspect-ratio:1}
.wheel-svg{width:100%;height:100%;overflow:visible;display:block}
.seg{cursor:pointer;transform-box:view-box;transform-origin:250px 250px;transition:transform .4s cubic-bezier(.34,1.3,.5,1)}
.seg-fill{fill:var(--c);stroke:var(--cream);stroke-width:4;transition:fill .3s ease}
.seg:hover,.seg.is-on{transform:scale(1.09)}
.seg:hover .seg-fill,.seg.is-on .seg-fill{fill:var(--h)}
.seg:focus{outline:none}
.seg:focus-visible .seg-fill{stroke:var(--ink);stroke-width:2.5}
.seg-label{font-family:"Aleo","Baloo 2",serif;font-weight:700;font-size:11px;fill:var(--ink);letter-spacing:.1px;text-anchor:middle}
.lpath{fill:none}
.ic-bg{fill:#fff;filter:drop-shadow(0 2px 3px rgba(43,47,56,.16))}
.wcenter-img{position:absolute;inset:24%;border-radius:50%;overflow:hidden;display:flex;align-items:center;justify-content:center;pointer-events:none;background:var(--cream)}
.wcenter-img img{width:100%;height:100%;object-fit:contain;padding:6%}
@media (max-width:560px){.seg-label{font-size:12px}}
@media (prefers-reduced-motion:reduce){.seg{transition:none}.seg:hover,.seg.is-on{transform:none}}
