/* styles.css — FULL REPLACEMENT (Option 1 ready)
   - Keeps main site + book page scoped
   - Fixes Programme grid selector mismatch (.glance-grid)
   - Removes old "force visible !important" overrides that break spotlight animation
*/

:root{
  --bg: #fffaf0;
  --ink: #141414;
  --muted: rgba(20,20,20,.72);

  --red: #ff4d4d;
  --wa: #25D366;

  --sun: #ffe08a;
  --sky: #dff0ff;
  --mint:#dff9ee;
  --peach:#ffe4da;
  --lav:#efe7ff;

  --taster-deep: #22324a;
  --taster-deep-2:#1a2638;

  --stroke: rgba(20,20,20,.08);
  --shadow: 0 14px 34px rgba(0,0,0,.08);

  --frame-bg: rgba(255,255,255,0.85);
  --frame-border: rgba(20,20,20,0.10);
  --frame-shadow: 0 14px 26px rgba(0,0,0,0.10);
  --frame-radius: 20px;
  --img-radius: 16px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

html, body{
  width: 100%;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; }

.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

h1,h2,h3{ margin:0 0 10px; line-height:1.12; letter-spacing:-0.01em; }
p{ margin:0 0 12px; color: var(--muted); }
strong{ color: var(--ink); }
.centre{ text-align:center; }
.muted{ color: var(--muted); }

/* =========================
   Sticky WhatsApp (bottom-right)
   ========================= */
.whatsapp-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--wa);
  color:#fff;
  text-decoration:none;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(37,211,102,0.34);
  border: 1px solid rgba(255,255,255,0.25);
}
.wa-bubble{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.18);
}
.wa-svg{ width: 20px; height: 20px; display:block; }
.whatsapp-text{ font-size: 14px; }
@media (max-width:480px){
  .whatsapp-text{ display:none; }
  .whatsapp-float{
    padding: 11px;
    right: 12px;
    bottom: 12px;
  }
  .wa-bubble{
    width: 32px;
    height: 32px;
  }
}

/* =========================
   TOP BAR
   ========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,250,240,0.96);
  border-bottom: 1px solid var(--stroke);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 6px 0;
  min-height: 56px;
}
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  line-height: 1;
}
.logo{
  height: 77px;
  width: auto;
  object-fit: contain;
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap: 10px;
}
.desktop-nav a{
  text-decoration:none;
  font-weight: 850;
  opacity: .92;
  padding: 8px 10px;
  border-radius: 12px;
  line-height: 1.1;
}
.desktop-nav a:hover{ background: rgba(0,0,0,.04); }
.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--red);
  color:#fff !important;
  text-decoration:none;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(255,77,77,.24);
  border: 1px solid rgba(0,0,0,.04);
}
.menu-toggle{
  display:none;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,0.78);
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  line-height: 0;
}
.hamburger{
  width: 22px;
  height: 2px;
  background: #222;
  display:block;
  position: relative;
  border-radius: 2px;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width: 22px;
  height: 2px;
  background:#222;
  border-radius: 2px;
}
.hamburger::before{ top:-7px; }
.hamburger::after{ top:7px; }

/* Mobile dropdown */
.mobile-nav{
  display:none;
  flex-direction: column;
  gap: 8px;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--stroke);
  background: rgba(255,250,240,0.96);
}
.mobile-nav a{
  text-decoration:none;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav a.nav-cta{
  background: var(--red);
  color:#fff !important;
  border: 1px solid rgba(0,0,0,.04);
}
body.nav-open .mobile-nav{ display:flex; }

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 950;
  border: 1px solid transparent;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.btn.primary{ background: var(--red); color:#fff; }
.btn.whatsapp{
  background: var(--wa);
  color:#fff;
  box-shadow: 0 14px 30px rgba(37,211,102,.26);
}
.btn-wa{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.18);
}
.btn.whatsapp svg{
  width: 22px;
  height: 22px;
  display:block;
}

/* =========================
   Sections
   ========================= */
.section{
  padding: 78px 0;
  position: relative;
}
.section-head{ margin-bottom: 18px; }
.section-head h2{
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 950;
}
.lead{
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.section-pillars{
  padding-top: 36px;
  padding-bottom: 48px;
}
.pillars-head{
  max-width: 980px;
  margin: 0 auto 30px;
}
.pillars-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(20,20,20,0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(34,50,74,0.86);
}
.pillars-head h2{
  max-width: 900px;
  margin: 0 auto 10px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #22324a;
  text-wrap: balance;
}
.pillars-head .lead{
  max-width: 1100px;
  font-size: 15px;
  text-wrap: balance;
}
.pillars-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.pillar-card{
  min-height: 194px;
  padding: 22px 18px;
  border-radius: 22px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 16px 28px rgba(0,0,0,0.05);
  background: rgba(255,255,255,0.82);
}
.pillar-card h3{
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.1;
  color: #22324a;
}
.pillar-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(34,50,74,0.84);
}
.pillar-creativity{ background: linear-gradient(180deg, #f9ece8 0%, #fffaf7 100%); }
.pillar-confidence{ background: linear-gradient(180deg, #eaf4ff 0%, #f8fbff 100%); }
.pillar-wellbeing{ background: linear-gradient(180deg, #edf8f4 0%, #fbfefd 100%); }
.pillar-skill{ background: linear-gradient(180deg, #f7eab1 0%, #fff9dd 100%); }

/* =========================
   HERO
   ========================= */
.hero{
  position: relative;
  overflow:hidden;
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #fff3cf 0%, #fffaf0 60%, #fffaf0 100%);
}
.hero::before, .hero::after{
  content:"";
  position:absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  opacity:.62;
  z-index:0;
}
.hero::before{
  left:-210px; top:-240px;
  background:
    radial-gradient(circle at 30% 30%, var(--sky), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--mint), transparent 62%);
}
.hero::after{
  right:-240px; bottom:-260px;
  background:
    radial-gradient(circle at 30% 30%, var(--peach), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--lav), transparent 62%);
}
.hero-content{
  position: relative;
  z-index: 2;
  text-align:center;
}

/* Desktop hero characters */
.hero-scene{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 1;
}
.hero-char{
  position:absolute;
  height:auto;
  opacity:0;
  will-change: transform, opacity;
  width: min(170px, 16vw);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.18));
}
.char-hulk  { top: 10%; left: 4%; }
.char-super { top: 12%; right: 4%; }
.char-knight{ bottom: 10%; left: 6%; }
.char-nurse { bottom: 10%; right: 6%; }

.char-super{
  transform: translate(160%, -160%) rotate(10deg) scale(0.95);
  animation: superFly 900ms cubic-bezier(.18,.9,.2,1) 120ms forwards;
}
.char-hulk{
  transform: translate(-120%, -160%) scale(0.95);
  animation: hulkDrop 850ms cubic-bezier(.2,.9,.2,1) 160ms forwards;
}
.char-knight{
  transform: translate(-160%, 160%) rotate(-10deg) scale(0.88);
  animation: knightJump 980ms cubic-bezier(.18,.9,.2,1) 200ms forwards;
}
.char-nurse{
  transform: translate(160%, 160%) scale(0.92);
  animation: nurseWalk 1000ms cubic-bezier(.18,.9,.2,1) 240ms forwards;
}

@keyframes superFly{ to{ opacity:1; transform: translate(0,0) rotate(0) scale(1);} }
@keyframes nurseWalk{ 0%{opacity:0;} 70%{opacity:1; transform: translate(0,0) scale(1);} 100%{opacity:1; transform: translate(0,0) scale(1);} }
@keyframes knightJump{ 0%{opacity:0;} 60%{opacity:1; transform: translate(10px,-10px) rotate(0) scale(1.02);} 100%{opacity:1; transform: translate(0,0) rotate(0) scale(1);} }
@keyframes hulkDrop{ 0%{opacity:0;} 70%{opacity:1; transform: translate(0,10px) scale(1.03);} 100%{opacity:1; transform: translate(0,0) scale(1);} }

/* Mobile flyers overlay */
.mobile-flyers{
  position: fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index: 9000;
  display:none;
}
.mobile-flyers .flyer{
  position: absolute;
  width: 210px;
  max-width: 56vw;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.22));
}
@media (max-width: 980px){
  .mobile-flyers{ display:block; }
}

/* Stamp */
.stamp{
  display:inline-flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.90);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
  transform: rotate(-1.2deg) scale(0.98);
  opacity: 0;
  animation: stampIn 520ms cubic-bezier(.2,.9,.2,1) 520ms forwards;
  max-width: 980px;
  margin: 0 auto;
}
.stamp-text{
  font-weight: 980;
  font-size: clamp(30px, 4.1vw, 54px);
  margin: 0;
  color: var(--ink);
  white-space: nowrap;
}
.stamp-sub{
  margin: 0;
  font-weight: 950;
  font-size: 18px;
  opacity: .9;
  letter-spacing: .01em;
}
.stamp-sub .dot{ opacity: .6; padding: 0 12px; }

@keyframes stampIn{
  0%{ opacity:0; transform: rotate(-8deg) scale(1.08); }
  70%{ opacity:1; transform: rotate(-1deg) scale(0.99); }
  100%{ opacity:1; transform: rotate(-1.2deg) scale(1); }
}

.hero-sell{
  max-width: 920px;
  margin: 18px auto 16px;
  font-size: 19px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 520ms ease-out 700ms forwards;
}
.hero-buttons{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 520ms ease-out 820ms forwards;
}
@keyframes fadeUp{ to{ opacity:1; transform: translateY(0); } }

/* =========================
   Chips
   ========================= */
.chips{
  margin: 18px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: 1200px;
}
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  font-weight: 950;
  font-size: 16px;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 760px){
  .chips{
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 8px;
    padding: 0 8px;
  }
  .chip{
    font-size: 18px;
    padding: 9px 12px;
  }
}
@media (max-width: 420px){
  .chip{
    font-size: 11px;
    padding: 8px 10px;
  }
}
.chip-sun{ background: rgba(255,224,138,0.85); }
.chip-sky{ background: rgba(223,240,255,0.85); }
.chip-mint{ background: rgba(223,249,238,0.85); }
.chip-peach{ background: rgba(255,228,218,0.85); }
.chip-lav{ background: rgba(239,231,255,0.85); }

/* =========================
   FREE TASTER STRIP
   ========================= */
.taster-strip{
  padding: 20px 16px;
  background: linear-gradient(180deg, rgba(20,20,20,0.06) 0%, rgba(20,20,20,0.03) 100%);
}
.taster-card{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(20,20,20,0.88);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}
.taster-copy{ min-width: 0; max-width: 720px; }
.taster-eyebrow{
  display: inline-flex;
  align-items: center;
  font-weight: 980;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,224,138,0.96);
  color: #141414;
  margin-bottom: 10px;
}
.taster-title{
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 980;
  line-height: 1.15;
}
.taster-strong{
  display: block;
  margin-top: 6px;
  font-size: 0.95em;
  color: rgba(255,224,138,0.98);
}
.taster-sub{
  margin-top: 10px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}
.taster-cta{ flex: 0 0 auto; }
.taster-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: #7FB2FF;
  color: #ffffff;
  text-decoration: none;
  font-weight: 980;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  box-shadow: 0 14px 28px rgba(79,156,255,0.35);
  transform-origin: center;
  animation: whatsappPulse 9s infinite;
}
.taster-btn:hover{ transform: translateY(-1px); }
@keyframes whatsappPulse{
  0%{ transform: scale(1); }
  4%{ transform: scale(1.08); }
  8%{ transform: scale(1); }
  12%{ transform: scale(1.08); }
  16%{ transform: scale(1); }
  20%{ transform: scale(1.08); }
  24%{ transform: scale(1); }
  100%{ transform: scale(1); }
}
@media (max-width: 760px){
  .taster-card{ flex-direction: column; text-align: center; padding: 18px 16px; }
  .taster-eyebrow{ font-size: 14px; padding: 10px 16px; }
  .taster-title{ font-size: 22px; }
  .taster-strong{ font-size: 18px; margin-top: 8px; }
  .taster-sub{ font-size: 15px; }
  .taster-cta{ width: 100%; margin-top: 14px; }
  .taster-btn{ width: min(360px, 100%); height: 56px; font-size: 18px; }
}
@media (prefers-reduced-motion: reduce){
  .taster-btn{ animation: none !important; }
}

/* Affordable options strip */
.access-strip{
  padding: 22px 16px;
  background: rgba(255,250,240,0.88);
}
.access-text{
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
  font-weight: 950;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  text-wrap: balance;
}
.access-break{ display: inline; }
@media (max-width: 760px){
  .access-text{ max-width: 560px; font-size: 18px; line-height: 1.35; }
  .access-break{ display: block; }
}

/* =========================
   Meta pills
   ========================= */
.hero-meta{
  margin-top: 10px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.meta-pill{
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.meta-title{
  font-size: 12px;
  font-weight: 980;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 6px;
}
.meta-value{ font-weight: 980; line-height: 1.25; }
.meta-small{ font-weight: 850; opacity: 0.78; font-size: 13px; }
.price-big{ font-size: 18px; }
.meta-sun{ background: rgba(255,224,138,0.55); }
.meta-sky{ background: rgba(223,240,255,0.55); }
.meta-mint{ background: rgba(223,249,238,0.55); }

/* =========================
   STORY
   ========================= */
.section-story{
  background: linear-gradient(180deg, rgba(223,240,255,0.8) 0%, var(--bg) 78%);
}
.story-flow{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.notice{
  background: rgba(255,255,255,0.78);
  border-radius: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.ticks{ margin: 10px 0 0; padding-left: 18px; }
.ticks li{ margin: 8px 0; }

@media (max-width: 720px){
  .notice{
    max-width: none;
    width: 100%;
    justify-self: stretch;
    text-align: center;
    padding: 16px 14px;
  }
  .ticks{
    padding-left: 0;
    list-style-position: inside;
    display: inline-block;
    text-align: left;
    margin: 12px auto 0;
  }
  .ticks li{ margin: 6px 0; }
}

/* =========================
   APPROACH (sparks) — always visible
   + OPTION 1 helper classes (spotlight)
   ========================= */
#sparks{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,224,138,0.38) 0%, rgba(223,249,238,0.25) 35%, var(--bg) 85%);
  padding: 60px 0;
}

#sparks::before,
#sparks::after{
  content:"";
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: .55;
  pointer-events:none;
  z-index: 0;
}
#sparks::before{
  left: -220px;
  top: -220px;
  background:
    radial-gradient(circle at 30% 30%, rgba(127,178,255,.55), transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(255,140,200,.38), transparent 62%);
  animation: sparksBlobA 10s ease-in-out infinite;
}
#sparks::after{
  right: -240px;
  bottom: -240px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,196,92,.55), transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(223,249,238,.65), transparent 62%);
  animation: sparksBlobB 12s ease-in-out infinite;
}
@keyframes sparksBlobA{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(18px, 22px) scale(1.06); }
}
@keyframes sparksBlobB{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-18px, -16px) scale(1.05); }
}

#sparks .wrap{ position: relative; z-index: 1; }

#sparks .spark-head{
  text-align:center;
  margin: 0 auto 16px;
  max-width: 1100px;
}
#sparks .spark-quote{
  font-weight: 980;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  color: var(--ink);
  white-space: nowrap;
  animation: sparksTitleIn .55s ease-out both;
}
#sparks .spark-sub{
  margin: .55rem auto 0;
  opacity: .85;
  max-width: 1100px;
  white-space: nowrap;
  animation: sparksSubIn .65s ease-out both;
}
@keyframes sparksTitleIn{
  0%{ opacity:0; transform: translateY(10px) scale(.985); }
  75%{ opacity:1; transform: translateY(-2px) scale(1.01); }
  100%{ opacity:1; transform: translateY(0) scale(1); }
}
@keyframes sparksSubIn{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:.85; transform: translateY(0); }
}

#sparks .spark-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

#sparks .spark-panel{
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  overflow:hidden;
  padding: 16px;
  position: relative;
  animation: sparksPanelIn .65s cubic-bezier(.18,.9,.2,1) both;
}
#sparks .spark-panel:nth-child(1){ animation-delay: .06s; }
#sparks .spark-panel:nth-child(2){ animation-delay: .12s; }
#sparks .spark-panel:nth-child(3){ animation-delay: .18s; }

@keyframes sparksPanelIn{
  0%{ opacity:0; transform: translateY(10px) scale(.99); }
  70%{ opacity:1; transform: translateY(-2px) scale(1.01); }
  100%{ opacity:1; transform: translateY(0) scale(1); }
}

/* subtle sparkle sweep */
#sparks .spark-panel::before{
  content:"";
  position:absolute;
  inset:-40% -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 55%);
  transform: translateX(-30%) rotate(12deg);
  opacity: 0;
  pointer-events:none;
  animation: sparkSweep 6.5s ease-in-out infinite;
}
@keyframes sparkSweep{
  0%{ opacity:0; transform: translateX(-30%) rotate(12deg); }
  18%{ opacity:.28; }
  35%{ opacity:0; transform: translateX(30%) rotate(12deg); }
  100%{ opacity:0; transform: translateX(30%) rotate(12deg); }
}

/* Panel header */
#sparks .spark-top{
  display:flex;
  align-items:center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
#sparks .spark-title{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 980;
  font-size: 1.08rem;
  color: var(--ink);
  min-width: 0;
}
#sparks .spark-emoji{
  min-width: 72px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.04);
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
  font-size: .76rem;
  font-weight: 980;
  letter-spacing: .06em;
  animation: emojiBob 2.8s ease-in-out infinite;
}
@keyframes emojiBob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-3px); }
}
#sparks .spark-mini{
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
}

#sparks .spark-note{
  margin: 0 0 12px;
  opacity: .8;
  font-size: .92rem;
  line-height: 1.45;
}

#sparks .tag-cloud{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-content: start;
}

/* Base tag (visible by default) */
#sparks .tag{
  display:inline-flex;
  align-items:center;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  font-weight: 950;
  font-size: .92rem;
  white-space:nowrap;
  box-shadow: 0 10px 18px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, opacity .18s ease, filter .18s ease;
}

/* OPTION 1 spotlight states used by JS (if you enable it) */
#sparks .tag.is-on{
  box-shadow: 0 16px 28px rgba(0,0,0,.10);
  filter: drop-shadow(0 10px 18px rgba(255,196,92,.18));
}
#sparks .tag.is-enter{ animation: tagPopIn .28s cubic-bezier(.18,.9,.2,1) both; }
@keyframes tagPopIn{
  0%{ opacity:0; transform: translateY(6px) scale(.94); }
  70%{ opacity:1; transform: translateY(-1px) scale(1.03); }
  100%{ opacity:1; transform: translateY(0) scale(1); }
}
#sparks .tag.is-swap{ animation: tagSwap .34s ease both; }
@keyframes tagSwap{
  0%{ transform: translateY(0) scale(1); }
  40%{ transform: translateY(-2px) scale(1.03); }
  100%{ transform: translateY(0) scale(1); }
}

/* Optional panel tint via data-tint on HTML */
#sparks .spark-panel::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 24px;
  pointer-events:none;
  opacity: 0;
  transition: opacity .35s ease;
}
#sparks .spark-panel[data-tint="sun"]::after{
  background: radial-gradient(circle at 20% 15%, rgba(255,224,138,.35), transparent 55%);
  opacity: .9;
}
#sparks .spark-panel[data-tint="mint"]::after{
  background: radial-gradient(circle at 20% 15%, rgba(223,249,238,.45), transparent 55%);
  opacity: .9;
}
#sparks .spark-panel[data-tint="sky"]::after{
  background: radial-gradient(circle at 20% 15%, rgba(223,240,255,.55), transparent 55%);
  opacity: .9;
}

#sparks .tag:hover{
  transform: translateY(-4px) rotate(-0.6deg);
  box-shadow: 0 16px 26px rgba(0,0,0,.10);
}

@media (max-width: 980px){
  #sparks .spark-grid{ grid-template-columns: 1fr; }
  #sparks .spark-quote,
  #sparks .spark-sub{ white-space: normal; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  #sparks::before,
  #sparks::after,
  #sparks .spark-panel,
  #sparks .spark-panel::before,
  #sparks .spark-emoji,
  #sparks .spark-quote,
  #sparks .spark-sub{
    animation: none !important;
    transition: none !important;
  }
  #sparks .tag.is-enter,
  #sparks .tag.is-swap{ animation: none !important; }
}

/* =========================
   COURSE
   ========================= */
.section-course{
  background: linear-gradient(180deg, rgba(255,228,218,0.82) 0%, var(--bg) 78%);
}
.feature-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature{
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.72);
}
.feature:nth-child(1){ background: rgba(223,240,255,0.78); }
.feature:nth-child(2){ background: rgba(255,228,218,0.78); }
.feature:nth-child(3){ background: rgba(223,249,238,0.78); }
.feature:nth-child(4){ background: rgba(239,231,255,0.78); }

.cta-band{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: var(--shadow);
}
.cta-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

/* =========================
   PROGRAMME “AT A GLANCE”
   NOTE: your HTML uses .glance-grid, so we style that.
   ========================= */
#programme .glance-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

#programme .glance-card{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 24px rgba(0,0,0,.06);
  min-height: 76px;
  position: relative;
  overflow:hidden;
  animation: progPop .55s cubic-bezier(.18,.9,.2,1) both;
}

#programme .glance-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,224,138,.35), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(223,240,255,.30), transparent 55%);
  opacity: .9;
  transform: translateX(-10%);
  animation: progGlow 10s ease-in-out infinite alternate;
  pointer-events:none;
}
@keyframes progGlow{
  from{ transform: translateX(-12%) translateY(-6%) scale(1); }
  to  { transform: translateX(12%) translateY(6%) scale(1.03); }
}

#programme .glance-card > *{ position: relative; z-index: 1; }

#programme .g-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 22px rgba(0,0,0,.05);
  font-size: 20px;
  flex: 0 0 auto;
  transform: rotate(-2deg);
}
#programme .g-text strong{
  display:block;
  font-weight: 980;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-bottom: 2px;
}
#programme .g-text span{
  display:block;
  font-size: .92rem;
  opacity: .78;
  line-height: 1.2;
}

@keyframes progPop{
  0%{ opacity:0; transform: translateY(10px) scale(.99); }
  100%{ opacity:1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px){
  #programme .glance-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  #programme .glance-grid{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  #programme .glance-card{ animation:none !important; }
  #programme .glance-card::before{ animation:none !important; }
}

/* =========================
   SCRAPBOOK helpers
   ========================= */
#scrapbook{
  padding: 56px 0;
}
#scrapbook .section-head{ margin-bottom: 14px; }
#scrapbook .lead{ margin-bottom: 10px; }

#scrapbook [data-scrap-media]{ position: relative; }
#scrapbook [data-scrap-media] .scrap-fallback{
  display:none;
  border-radius: 18px;
  border: 1px dashed rgba(0,0,0,.16);
  background: rgba(0,0,0,.03);
  padding: 16px;
  text-align: center;
  font-weight: 900;
  color: rgba(20,20,20,.72);
}
#scrapbook [data-scrap-media]:not(.has-image) img{ display:none; }
#scrapbook [data-scrap-media]:not(.has-image) .scrap-fallback{ display:block; }

/* =========================
   TEAM
   ========================= */
.section-team{
  background: linear-gradient(180deg, rgba(239,231,255,0.85) 0%, var(--bg) 78%);
}
.team-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.profile{
  display:flex;
  align-items:flex-start;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(20,20,20,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}
.profile-photos{
  flex: 0 0 200px;
  margin: 0;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 12px;
}
.profile-photos figure{
  margin: 0;
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 8px;
}
.profile-photos figure img{
  width: 170px;
  padding: 10px;
  border-radius: var(--frame-radius);
  background: var(--frame-bg);
  border: 1px solid var(--frame-border);
  box-shadow: var(--frame-shadow);
}
.profile-photos figure img{
  object-fit: cover;
}
.profile-photos figcaption{
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(20,20,20,0.6);
  text-align: center;
}
.profile-body{ flex: 1 1 auto; min-width: 0; }
.bullets{ margin: 10px 0 0; padding-left: 18px; }

@media (max-width: 760px){
  .profile{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .profile-photos{ width: 100%; flex: 0 0 auto; }
  .profile-photos{
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .profile-body{
    width: 100%;
    max-width: 560px;
    text-align: center;
  }
  .bullets{
    text-align: left;
    display: inline-block;
    margin: 10px auto 0;
  }
}

.trust-row{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-badge{
  background: rgba(223,249,238,0.85);
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
}

/* =========================
   INSPIRATION
   ========================= */
.section-visitors{
  background: linear-gradient(180deg, rgba(223,249,238,0.82) 0%, var(--bg) 78%);
}
.inspo-wrap{ position: relative; }
.grid3{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini{
  border-radius: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 12px 22px rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.72);
}
.mini.mint{ background: rgba(223,249,238,0.78); }
.mini.sky{ background: rgba(223,240,255,0.78); }
.mini.peach{ background: rgba(255,228,218,0.78); }

.inspo-grid{ padding: 0 140px; }
.inspo-char{
  position:absolute;
  top: 120px;
  width: 120px;
  pointer-events:none;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.14));
}
.inspo-left{ left: 10px; }
.inspo-right{ right: 10px; }

/* =========================
   VENUE
   ========================= */
.section-venue{
  background: linear-gradient(180deg, rgba(255,224,138,0.80) 0%, var(--bg) 82%);
}
.venue-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.venue-box{
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  background: rgba(255,228,218,0.72);
}
.venue-box.alt{ background: rgba(223,240,255,0.72); }
.text-link{
  display:inline-block;
  margin-top: 8px;
  font-weight: 980;
  text-decoration: none;
  border-bottom: 2px solid rgba(0,0,0,0.16);
}

/* =========================
   PARENT LIST
   ========================= */
.section-parent-list{
  background:
    radial-gradient(circle at 18% 18%, rgba(255,224,138,0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,250,240,0.96) 100%);
}
.parent-list-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  gap: 34px;
  align-items: center;
}
.parent-list-copy{
  max-width: 580px;
}
.parent-list-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(20,20,20,0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(34,50,74,0.86);
}
.parent-list-copy h2{
  margin-bottom: 12px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #22324a;
}
.parent-list-copy .lead{
  margin: 0 0 14px;
  max-width: 620px;
}
.parent-list-card{
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(20,20,20,0.06);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 22px 40px rgba(0,0,0,0.08);
}
.parent-list-form{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}
.parent-list-form label{
  display: grid;
  gap: 8px;
}
.parent-list-form span{
  font-size: 14px;
  font-weight: 850;
  color: rgba(34,50,74,0.86);
}
.parent-list-form input{
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(20,20,20,0.10);
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}
.parent-list-form input:focus{
  border-color: rgba(255,77,77,0.45);
  box-shadow: 0 0 0 4px rgba(255,77,77,0.10);
}
.parent-list-wide{
  grid-column: 1 / 2;
}
.parent-list-submit{
  grid-column: 1 / -1;
  min-height: 50px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ea7c69 0%, #e86e5f 100%);
  color: #fff;
  font: inherit;
  font-weight: 950;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 18px 26px rgba(232,110,95,0.28);
}
.parent-list-submit:hover{
  filter: brightness(1.02);
}

/* =========================
   FAQ
   ========================= */
.section-faqs{
  background: linear-gradient(180deg, rgba(255,228,218,0.82) 0%, var(--bg) 78%);
}
.faq details{
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary{ cursor:pointer; font-weight: 980; }

/* =========================
   Footer
   ========================= */
.footer{
  border-top: 1px solid rgba(20,20,20,0.06);
  padding: 26px 0;
  background: rgba(255,250,240,0.88);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links{ display:flex; gap: 12px; }

/* =========================
   Responsive (general)
   ========================= */
@media (max-width: 980px){
  .pillars-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-meta{ grid-template-columns: 1fr; margin-top: 12px; }
  .story-flow{ grid-template-columns: 1fr; text-align:center; }
  .feature-grid{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .venue-grid{ grid-template-columns: 1fr; }
  .parent-list-grid{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction: column; align-items: flex-start; }

  .hero-scene{ display:none; }
  .inspo-grid{ padding: 0; }
  .inspo-char{ display:none; }

  .stamp-text{ white-space: normal; }
}

@media (max-width: 760px){
  .wrap{ padding: 0 14px; }
  .desktop-nav{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .mobile-flyers{ display:block; }

  .stamp-text{
    white-space: normal;
  }

  .chips{
    padding: 0 4px;
  }

  .chip{
    max-width: 100%;
    white-space: normal;
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
  }

  .section-head{
    margin-bottom: 16px;
  }

  .section-head h2{
    font-size: clamp(1.9rem, 9vw, 2.65rem);
    line-height: 1.04;
  }

  .section-pillars{
    padding-top: 22px;
    padding-bottom: 34px;
  }
  .pillars-grid{ grid-template-columns: 1fr; }
  .pillars-head{ margin-bottom: 22px; }
  .pillars-kicker{ margin-bottom: 12px; }
  .pillar-card{
    min-height: auto;
    padding: 20px 16px;
  }
  .pillar-card h3{ font-size: 24px; }
  .parent-list-card{ padding: 18px; border-radius: 22px; }
  .parent-list-form{ grid-template-columns: 1fr; }
  .parent-list-wide,
  .parent-list-submit{ grid-column: auto; }

  .topbar-inner{ min-height: 52px; padding: 6px 0; }
  .logo{ height: 69px; }

  .nav-cta{ padding: 10px 14px; border-radius: 14px; }

  .hero{ padding-top: 56px; }
  .stamp-sub{ font-size: 16px; }
  .stamp-sub .dot{ padding: 0 8px; }
  .hero-sell{ font-size: 18px; }

  .section-intro,
  .tight-copy,
  .hero-sub,
  .taster-sub,
  .access-text{
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .btn,
  .event-pill,
  .theme-tag,
  .coming-item,
  .product-pill,
  .sold-stamp,
  #sparks .tag,
  #sparks .spark-mini{
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }

  .page-hero{
    padding: 38px 16px 26px;
  }

  .page-hero h1{
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-sub{
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }

  .content-section{
    padding: 34px 16px;
  }

  .content-section h2,
  .pillars-section h2,
  .community-cta h2{
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .footer-inner,
  .footer-links{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .hero-char, .stamp, .hero-sell, .hero-buttons{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .mobile-flyers{ display:none !important; }
}

/* =========================
   Mobile Sticky Book Bubble
   ========================= */
.mobile-book-bubble,
#mobileBookBubble{
  display: none;
}
@media (max-width: 760px){
  .mobile-book-bubble,
  #mobileBookBubble{
    position: fixed;
    left: 50%;
    bottom: 16px;
    width: min(360px, calc(100% - 32px));
    height: 54px;
    border-radius: 999px;
    background: var(--red);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 980;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(255,77,77,.28);
    border: 1px solid rgba(255,255,255,0.22);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .mobile-book-bubble.show,
  #mobileBookBubble.show{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .whatsapp-float{
    bottom: 84px;
    right: 14px;
  }
}

/* =========================================================
   BOOK FOR EVENTS (SCOPED — body.page-book ONLY)
   ========================================================= */

.page-book .container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.page-book .site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.page-book .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 12px; }
.page-book .brand-logo { height: 40px; width: auto; display: block; }

.page-book .nav { display: flex; gap: 14px; flex-wrap: wrap; }
.page-book .nav a { text-decoration: none; padding: 8px 10px; border-radius: 10px; }
.page-book .nav a.active { background: rgba(0,0,0,0.06); }

.page-book .section { padding: 56px 0; }
.page-book .section-soft { background: rgba(0,0,0,0.03); }
.page-book .section-lead { opacity: 0.9; max-width: 70ch; }

.page-book .hero-book { padding: 70px 0 48px; background: linear-gradient(180deg, rgba(0,0,0,0.02), transparent); }
.page-book .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: center; }
.page-book .eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: 12px; opacity: 0.8; margin: 0 0 10px; }
.page-book .subhead { font-size: 18px; line-height: 1.5; max-width: 70ch; }
.page-book .hero-ctas { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

.page-book .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 16px; border-radius: 14px; border: 1px solid rgba(0,0,0,0.12); text-decoration: none; cursor: pointer; font-weight: 600; box-shadow: none; }
.page-book .btn-primary { background: #111; color: #fff; border-color: #111; }
.page-book .btn-ghost { background: transparent; color: #111; }
.page-book .btn-wide { width: 100%; }

.page-book .trust-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.page-book .trust-item { padding: 10px 12px; border-radius: 14px; background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.06); font-size: 13px; }

.page-book .hero-art { position: relative; min-height: 320px; }
.page-book .hero-img { width: 100%; height: auto; display: block; }
.page-book .hero-float { position: absolute; width: 110px; height: auto; opacity: 0.95; }
.page-book .hero-float-1 { left: -10px; bottom: 10px; transform: rotate(-6deg); }
.page-book .hero-float-2 { right: -10px; top: 30px; transform: rotate(6deg); }

.page-book .cards-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.page-book .card { padding: 16px; border-radius: 18px; background: #fff; border: 1px solid rgba(0,0,0,0.08); }
.page-book .card h3 { margin: 0 0 8px; font-size: 16px; }
.page-book .card p { margin: 0; opacity: 0.9; }

.page-book .tag-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.page-book .tag { padding: 8px 10px; border-radius: 999px; background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.06); font-size: 13px; }

.page-book .steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.page-book .step { display: flex; gap: 12px; padding: 16px; border-radius: 18px; background: #fff; border: 1px solid rgba(0,0,0,0.08); }
.page-book .step-num { width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center; background: rgba(0,0,0,0.08); font-weight: 800; }

.page-book .form-wrap { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 22px; padding: 18px; }
.page-book .form-head { margin-bottom: 12px; }
.page-book .form { display: grid; gap: 14px; }

.page-book .fieldset { border: 1px solid rgba(0,0,0,0.08); border-radius: 18px; padding: 14px; }
.page-book .fieldset legend { padding: 0 8px; font-weight: 800; }

.page-book label { display: grid; gap: 8px; font-size: 14px; }
.page-book input,
.page-book select,
.page-book textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.14);
  font: inherit;
  background: #fff;
}
.page-book textarea{ resize: vertical; }

.page-book .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.page-book .req { color: #c0272d; }

.page-book .checkbox { display: flex; gap: 10px; align-items: flex-start; }
.page-book .checkbox input { margin-top: 3px; }

.page-book .form-note { font-size: 13px; opacity: 0.85; margin: 0; }

.page-book .faq details { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 12px 14px; margin: 10px 0; }
.page-book .faq summary { cursor: pointer; font-weight: 700; }

.page-book .site-footer { padding: 26px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.page-book .footer-inner { display: flex; gap: 12px; justify-content: space-between; flex-wrap: wrap; align-items: center; }
.page-book .footer-link { text-decoration: none; opacity: 0.8; }

@media (max-width: 900px) {
  .page-book .hero-grid { grid-template-columns: 1fr; }
  .page-book .cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .page-book .steps { grid-template-columns: 1fr; }
  .page-book .trust-strip { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .page-book .grid-2 { grid-template-columns: 1fr; }
  .page-book .cards-grid { grid-template-columns: 1fr; }
}

/* Book2 + slide-out enquiry — scoped */
.page-book .book2-hero{ position:relative; overflow:hidden; padding:54px 0 32px; }
.page-book .book2-bg{
  position:absolute; inset:-20%;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,196,92,.42), transparent 52%),
    radial-gradient(circle at 72% 25%, rgba(120,190,255,.42), transparent 55%),
    radial-gradient(circle at 32% 88%, rgba(255,140,200,.30), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,.02), transparent 65%);
  pointer-events:none;
}

.page-book .book2-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.page-book .book2-copy{ text-align:left; }
.page-book .book2-eyebrow{ text-transform:uppercase; letter-spacing:.08em; font-size:12px; opacity:.85; margin:0 0 10px; }
.page-book .book2-title{ margin:0 0 12px; font-size:clamp(30px,4vw,46px); line-height:1.05; }
.page-book .book2-subhead{ margin:0 0 10px; font-size:18px; opacity:.92; }
.page-book .book2-subline{ margin:0 0 16px; opacity:.9; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.page-book .book2-pills{ display:flex; gap:10px; flex-wrap:wrap; margin: 0 0 14px; }
.page-book .book2-pill{
  padding:8px 10px; border-radius:999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
}

.page-book .book2-ctas{ display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 16px; }
.page-book .book2-mini{ display:grid; gap:10px; margin-top: 8px; max-width: 70ch; }
.page-book .book2-mini-item{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 12px 12px;
  font-size: 14px;
}

.page-book .book2-media{ display:grid; gap:10px; }
.page-book .book2-video{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}
.page-book .book2-video video,
.page-book .book2-video iframe{
  width:100%;
  height: 360px;
  display:block;
  border:0;
  background:#000;
}
.page-book .book2-media-note{ margin:0; font-size:13px; opacity:.85; }
.page-book .book2-one-line{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

@media (max-width: 980px){
  .page-book .book2-grid{ grid-template-columns: 1fr; }
  .page-book .book2-subline{ white-space: normal; }
  .page-book .book2-video video,
  .page-book .book2-video iframe{ height: 280px; }
}

/* Slide-out panel */
.page-book .enquiry-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 999;
}
.page-book .enquiry-panel{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(720px, 92vw);
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(0,0,0,0.10);
  box-shadow: -20px 0 60px rgba(0,0,0,0.20);
  transform: translateX(102%);
  transition: transform .22s ease;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto 1fr;
}
.page-book .enquiry-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 8px;
}
.page-book .enquiry-title{ margin:0; }
.page-book .enquiry-sub{ margin: 2px 0 0; opacity:.85; font-size: 14px; }
.page-book .enquiry-close{
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  border-radius: 14px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.page-book .enquiry-form{
  padding: 10px 16px 16px;
  overflow: auto;
  display: grid;
  gap: 12px;
}
.page-book .grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.page-book .enquiry-foot{
  margin: 0;
  font-size: 13px;
  opacity: .85;
  text-align: center;
}
.page-book .enquiry-thanks{ padding: 16px; overflow: auto; }
.page-book .enquiry-thanks h3{ margin-top: 0; }

@media (max-width: 720px){
  .page-book .grid-3{ grid-template-columns: 1fr; }
}

.page-book.enquiry-open .enquiry-overlay{
  opacity: 1;
  pointer-events: auto;
}
.page-book.enquiry-open .enquiry-panel{
  transform: translateX(0);
}

/* HERO equal cards – hard override */
.page-book .book2-grid-equal{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
  align-items: stretch !important;
}
.page-book .book2-card{
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  display:flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}
.page-book .book2-card-media{
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start;
}
.page-book .book2-video{
  flex: 1 !important;
  min-height: 360px !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}
.page-book .book2-video video,
.page-book .book2-video iframe{
  width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
  display: block !important;
}
@media (max-width: 980px){
  .page-book .book2-grid-equal{ grid-template-columns: 1fr !important; }
  .page-book .book2-card{ min-height: auto; }
  .page-book .book2-video,
  .page-book .book2-video video,
  .page-book .book2-video iframe{
    min-height: 260px !important;
  }
}
/* =========================
   SPARKS — rotating pill batches + colour variation
   ========================= */

/* Base tag animation behaviour */
#sparks .tag{
  opacity: 0;
  transform: translateY(6px) scale(.96);
  transition: opacity .28s ease, transform .28s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Visible state (what JS toggles) */
#sparks .tag.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Optional: slightly dim non-visible (keeps layout stable even if you later switch to absolute) */
#sparks .tag:not(.is-visible){
  pointer-events: none;
}

/* Colour variations (JS assigns these classes) */
#sparks .tag.c1{ background: rgba(255,224,138,.85); border-color: rgba(255,196,92,.55); }
#sparks .tag.c2{ background: rgba(223,240,255,.85); border-color: rgba(127,178,255,.55); }
#sparks .tag.c3{ background: rgba(223,249,238,.85); border-color: rgba(120,200,160,.45); }
#sparks .tag.c4{ background: rgba(255,228,218,.85); border-color: rgba(255,140,200,.45); }
#sparks .tag.c5{ background: rgba(239,231,255,.85); border-color: rgba(180,140,255,.45); }

/* Add a tiny “lift” on the currently spotlighted pills */
#sparks .tag.is-on{
  box-shadow: 0 16px 26px rgba(0,0,0,.10);
}

/* Reduced motion: no fade/slide */
@media (prefers-reduced-motion: reduce){
  #sparks .tag{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* ✅ Ensure tags never disappear after animations */
#sparks .tag{
  opacity: 1 !important;
  visibility: visible !important;
  transform: none;
}
#sparks .tag.float{
  animation: bubbleFloat 4.4s ease-in-out infinite alternate;
}
@keyframes bubbleFloat{
  from{ transform: translateY(0); opacity: 1; }
  to{ transform: translateY(-4px); opacity: 1; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.page-hero{
  padding: 52px 20px 34px;
  text-align: center;
}

.page-hero .wrap{
  max-width: 980px;
  margin: 0 auto;
}

.page-hero h1{
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 980;
  color: #141414;
  text-wrap: balance;
}

.hero-sub{
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.6;
  opacity: .82;
}

/* general section spacing */
.content-section{
  padding: 42px 20px;
}

.content-section.alt{
  background: #f3f6fb;
}

.content-section .wrap{
  max-width: 980px;
  margin: 0 auto;
}

.content-section h2,
.pillars-section h2,
.community-cta h2{
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 980;
  color: #141414;
}

.content-section p,
.community-cta p{
  max-width: 760px;
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(20,20,20,.82);
}

/* tighter stacked spacing */
.content-section p:last-child,
.community-cta p:last-child{
  margin-bottom: 0;
}

/* story / mission / approach cards */
.about-card{
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
  padding: 24px;
}

/* optional two-column layout */
.approach-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.approach-copy,
.approach-side{
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
  padding: 24px;
}

.approach-list{
  margin: 0;
  padding-left: 1.1rem;
}

.approach-list li{
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgba(20,20,20,.84);
}

.approach-list li:last-child{
  margin-bottom: 0;
}

/* smaller supportive stat cards if you want them */
.about-mini-grid{
  display: grid;
  gap: 12px;
}

.about-mini{
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
}

.about-mini strong{
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 980;
  color: #141414;
}

.about-mini span{
  display: block;
  font-size: .96rem;
  line-height: 1.5;
  opacity: .78;
}

/* image strip / gallery row if you add it later */
.about-gallery{
  padding: 10px 0 0;
}

.about-gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 220px;
  border: 1px solid rgba(0,0,0,.08);
  background:
    radial-gradient(circle at 25% 30%, rgba(223,240,255,.9), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255,228,218,.9), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.01));
  box-shadow: 0 12px 24px rgba(0,0,0,.05);
}

.about-gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* pillars */
.pillars-section{
  padding: 50px 20px;
  background: #eef3f9;
}

.pillars-section .wrap{
  max-width: 980px;
  margin: 0 auto;
}

.pillars-section .section-intro{
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(20,20,20,.82);
}

.pillars-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pillar{
  background: rgba(255,255,255,.94);
  padding: 22px 18px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 22px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.pillar:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(0,0,0,.07);
}

.pillar h3{
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 980;
  color: #141414;
}

.pillar p{
  margin: 0;
  font-size: .97rem;
  line-height: 1.58;
  color: rgba(20,20,20,.78);
}

/* community CTA */
.community-cta{
  padding: 50px 20px 58px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,244,242,1), rgba(255,250,246,1));
}

.community-cta .wrap{
  max-width: 900px;
  margin: 0 auto;
}

.community-cta p{
  margin-left: auto;
  margin-right: auto;
}

.cta-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 28px;
  background: #ef675d;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: 0 14px 26px rgba(239,103,93,.22);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.cta-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(239,103,93,.28);
  opacity: .96;
}

/* trust badges if you add them */
.about-trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-trust-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 18px rgba(0,0,0,.04);
  font-size: .92rem;
  font-weight: 900;
  color: #141414;
}

/* responsive */
@media (max-width: 980px){
  .pillars-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-grid{
    grid-template-columns: 1fr;
  }

  .about-gallery-grid{
    grid-template-columns: 1fr 1fr;
  }

  .content-section,
  .pillars-section,
  .community-cta{
    padding-top: 38px;
    padding-bottom: 38px;
  }
}

@media (max-width: 640px){
  .nav-cta{
    display: none;
  }

  .page-hero{
    padding: 38px 16px 24px;
  }

  .content-section,
  .pillars-section,
  .community-cta{
    padding: 30px 16px;
  }

  .about-card,
  .approach-copy,
  .approach-side{
    padding: 18px;
    border-radius: 20px;
  }

  .pillars-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-gallery-grid{
    grid-template-columns: 1fr;
  }

  .about-gallery-item{
    min-height: 200px;
  }

  .hero-sub,
  .content-section p,
  .community-cta p{
    font-size: .98rem;
  }

  .cta-actions,
  .event-actions{
    flex-direction: column;
  }

  .cta-actions .btn,
  .event-actions .btn,
  .cta-button{
    width: 100%;
  }
}
/* =========================================================
   EVENTS PAGE
   ========================================================= */

.section-intro{
  max-width: 760px;
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(20,20,20,.82);
}

.events-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.event-card{
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.event-card-top{
  margin-bottom: 10px;
}

.event-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,224,138,.72);
  border: 1px solid rgba(0,0,0,.08);
  font-size: .86rem;
  font-weight: 980;
  color: #141414;
}

.event-card h3{
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 980;
  color: #141414;
}

.event-copy{
  margin: 0 0 14px;
  font-size: .98rem;
  line-height: 1.6;
  color: rgba(20,20,20,.8);
}

.event-detail-list{
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  font-size: .95rem;
  line-height: 1.5;
  color: rgba(20,20,20,.76);
}

.event-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.theme-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.theme-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 18px rgba(0,0,0,.04);
  font-size: .93rem;
  font-weight: 900;
  color: #141414;
}

@media (max-width: 980px){
  .events-grid{
    grid-template-columns: 1fr;
  }
}
