:root{
  --ss-blue:#1F01B9;
  --ss-pink:#FFD3FF;
  --ss-cream:#FFF2D8;

  /* Global tokens used by inner pages inline styles */
  --primary: var(--ss-blue);
  --ink: #0b0e19;
  --muted: rgba(11,14,25,.64);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#fff;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* Lock scroll helper (JS toggles) */
.no-scroll,
.is-navOpen{
  overflow:hidden !important;
  touch-action:none;
}

/* ===== SIDEBAR + OVERLAY ===== */
.sidebarOverlay{
  position:fixed; inset:0;
  background: rgba(10,10,20,.45);
  opacity:0; pointer-events:none;
  transition:opacity .18s ease;
  z-index:80;
}
.sidebarOverlay.open{opacity:1; pointer-events:auto;}

.sidebar{
  position:fixed;
  top:0; left:0;
  height:100vh;
  width:min(86vw, 360px);
  background:#fff;
  transform:translateX(-105%);
  transition:transform .22s ease;
  z-index:90;
  border-right:1px solid rgba(31,1,185,.10);
  box-shadow:0 18px 60px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
}
.sidebar.open{transform:translateX(0)}

.sidebar__top{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 16px 12px 16px;
  border-bottom:1px solid rgba(31,1,185,.10);
}
.sidebar__title{
  font-weight:900;
  color:var(--ss-blue);
  letter-spacing:-0.02em;
}
.iconBtn{
  appearance:none;
  border:0;
  cursor:pointer;
  border-radius:14px;
  height:42px;
  width:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .12s ease, background .12s ease;
}
.iconBtn:active{transform:translateY(1px)}
.sidebar__close{
  width:40px;height:40px;
  background: rgba(31,1,185,.06);
  border:1px solid rgba(31,1,185,.10);
  color:var(--ss-blue);
}
.sidebar__nav{
  padding:12px 12px;
  display:grid;
  gap:6px;
  overflow:auto;
}
.sidebar__link{
  font-weight:800;
  padding:12px 12px;
  border-radius:14px;
  color: rgba(11,14,25,.82);
}
.sidebar__link:hover{
  background: rgba(31,1,185,.06);
  color: var(--ss-blue);
}
.sidebar__link[aria-current="page"],
.sidebar__link.active,
.sidebar__link.is-active{
  background: rgba(255,211,255,.55);
  color: var(--ss-blue);
}
.sidebar__sep{
  border:none;
  height:1px;
  background: rgba(31,1,185,.10);
  margin:8px 6px;
}
.sidebar__link--service{
  border:1px solid rgba(31,1,185,.10);
  background: rgba(255,250,239,.65);
}
.sidebar__foot{
  margin-top:auto;
  padding:14px 16px;
  border-top:1px solid rgba(31,1,185,.10);
  color: rgba(11,14,25,.60);
}
.sidebar__hint{
  padding: 0 16px 16px 16px;
  color: rgba(11,14,25,.62);
  font-weight: 750;
  line-height: 1.45;
}

/* ===== BURGER ICON ===== */
.navBurger__bars{
  width:18px;
  height:2px;
  background:#fff;
  border-radius:999px;
  position:relative;
  display:block;
}
.navBurger__bars::before,
.navBurger__bars::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:999px;
}
.navBurger__bars::before{ top:-6px; }
.navBurger__bars::after{ top:6px; }

/* ===== DIRECTION 2 HERO ===== */
body.direction2 .topbar{display:none !important;}

.page--group{min-height:100vh;}

.heroD2{
  min-height:100vh;
  background: var(--ss-blue);
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* Top row inside hero */
.heroD2__top{
  position:sticky;
  top:0;
  z-index:40;
  background:transparent;
}
.heroD2__topInner{
  max-width:1180px;
  margin:0 auto;
  padding:18px 18px 12px 18px;
  display:flex;
  align-items:center;
  gap:14px;
}
.iconBtn--hero{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
}
.iconBtn--hero:hover{ background: rgba(255,255,255,.16); }

/* Brand (left) */
.brandD2{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
  letter-spacing:-0.02em;
  text-transform:lowercase;
}
.brandD2__img{
  width:34px;height:34px;
  object-fit:contain;
  border-radius:10px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.20));
}
.brandD2__text{font-size:18px}

/* Nav (desktop) */
.navD2{
  margin-left:auto;
  display:flex;
  gap:18px;
  align-items:center;
}
.navD2__link{
  color: rgba(255,255,255,.84) !important;
  font-weight:800;
  padding:10px 10px;
  border-radius:12px;
}
.navD2__link:hover{
  background: rgba(255,255,255,.10);
  color:#fff !important;
}

/* CTA */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  user-select:none;
  border:1px solid transparent;
  cursor:pointer;
}
.btnD2__cta{
  margin-left:8px;
  background: rgba(255,211,255,.95);
  color: var(--ss-blue);
  border: 1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:10px 14px;
  font-weight:950;
}

/* Center hero */
.heroD2__inner{
  max-width:1180px;
  margin:0 auto;
  padding:22px 18px 26px 18px;
  position:relative;
}
.heroD2__center{
  text-align:center;
  padding:34px 0 6px 0;
}
.heroD2__logoMark{
  width: min(720px, 92%);
  margin: 0 auto;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,.35));
}
.heroD2__tagline{
  margin-top:18px;
  font-weight:950;
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(255,255,255,.92);
}
.heroD2__actions{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.btnD2__primary{
  background: var(--ss-pink);
  color: var(--ss-blue);
  border-radius:999px;
  padding:12px 18px;
  font-weight:950;
}
.btnD2__ghost{
  background: rgba(255,255,255,.12);
  color:#fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius:999px;
  padding:12px 18px;
  font-weight:900;
}
.btnD2__ghost:hover{ background: rgba(255,255,255,.16); }

/* Mascot */
.heroD2__mascotWrap{
  position:absolute;
  right:-10px;
  top:46%;
  transform: translateY(-50%);
  width: min(360px, 40vw);
  pointer-events:none;
  opacity:.98;
}
.heroD2__mascot{
  width:100%;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.28));
}

/* Services row (legacy) */
.heroD2__services{
  padding:14px 0 34px 0;
}
.heroD2__servicesInner{
  max-width:980px;
  margin:0 auto;
  padding:0 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.serviceChip{
  border-radius:18px;
  padding:14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  min-height:88px;
}
.serviceChip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,211,255,.55);
}
.serviceChip__k{
  display:block;
  font-weight:950;
  font-size:16px;
}
.serviceChip__s{
  display:block;
  margin-top:6px;
  font-weight:700;
  font-size:12.5px;
  color: rgba(255,255,255,.78);
  line-height:1.25;
}

/* Responsive */
@media (max-width: 980px){
  .heroD2__servicesInner{ grid-template-columns: 1fr 1fr; }
  .heroD2__mascotWrap{
    position:static;
    transform:none;
    width: min(280px, 70vw);
    margin: 18px auto 0 auto;
  }
  .heroD2__inner{ padding-bottom: 6px; }
}
@media (max-width: 760px){
  .navD2{ display:none; }
  .btnD2__cta{ margin-left:auto; }
}
@media (max-width: 520px){
  .heroD2__servicesInner{ grid-template-columns: 1fr; }
}

/* ===== Call Us FAB (premium) ===== */
.callFab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:70;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:950;

  background: var(--ss-pink);
  color: var(--ss-blue);

  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 46px rgba(0,0,0,.26);
}
.callFab:hover{ filter: brightness(1.02); }
.callFab__dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--ss-blue);
  box-shadow: 0 0 0 6px rgba(31,1,185,.12);
}
.callFab__icon{ opacity:.95; }

/* ===============================
   SCROLL + SECTIONS (legacy)
================================= */
html{ scroll-behavior: smooth; }

/* Pour éviter que le sticky top cache les titres */
#services,
#about,
#reviews{
  scroll-margin-top: 100px;
}

/* Sections sous le hero */
.section{
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 18px 80px 18px;
  color: #fff;
}

/* Titres About / Reviews */
.section h2{
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* About paragraph */
.section p{
  max-width: 680px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
}

/* ===============================
   REVIEWS GRID (legacy)
================================= */
.reviewsGrid{
  display:grid;
  gap:18px;
  margin-top: 20px;
}

.reviewCard{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(6px);
  transition: transform .12s ease, background .12s ease;
}
.reviewCard:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

.stars{
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:10px;
  color: var(--ss-pink);
}

.reviewCard p{
  margin:0 0 12px 0;
  font-weight:600;
}

.author{
  font-size:14px;
  opacity:.75;
}

/* Responsive reviews */
@media (min-width: 860px){
  .reviewsGrid{ grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   ✅ NEW LAYER: HOMOGENEOUS BLUE + FLOATING CARDS + REVEAL
========================================================= */
.afterHero{
  background: var(--ss-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* soft blobs to avoid “flat” feel */
.afterHero::before{
  content:"";
  position:absolute;
  inset:-20% -20% auto -20%;
  height: 520px;
  background:
    radial-gradient(closest-side, rgba(255,211,255,.18), transparent 70%),
    radial-gradient(closest-side, rgba(255,250,239,.14), transparent 70%);
  pointer-events:none;
}
.afterHero::after{
  content:"";
  position:absolute;
  inset:auto -20% -30% -20%;
  height: 520px;
  background:
    radial-gradient(closest-side, rgba(255,211,255,.14), transparent 70%),
    radial-gradient(closest-side, rgba(255,250,239,.10), transparent 70%);
  pointer-events:none;
}

.afterHero__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 18px 40px 18px;
  position: relative;
  z-index: 1;
}

.afterHero__pad{ height: 30px; }

.sectionBlock{ padding: 26px 0; }

.sectionHead{ margin-bottom: 14px; }

.sectionTitle{
  margin: 0 0 8px 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 40px);
}

.sectionLead{
  margin: 0;
  font-weight: 750;
  line-height: 1.55;
  opacity: .90;
  max-width: 60ch;
}

.sectionText{
  margin: 0 0 16px 0;
  color: rgba(11,14,25,.86);
  font-weight: 750;
  line-height: 1.55;
}

.sectionActions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

/* Base floating card */
.sectionCard{
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}

/* ✅ All frames = cream (requested) */
.sectionCard--cream{
  background: var(--ss-cream);
  border-color: rgba(31,1,185,.14);
  color: #0b0e19;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.sectionCard--white{
  background: var(--ss-cream);
  border-color: rgba(31,1,185,.14);
  color: #0b0e19;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
/* keep "pink" variant but still cream, with subtle pink inner ring */
.sectionCard--pink{
  background: var(--ss-cream);
  border-color: rgba(255,211,255,.60);
  color: #0b0e19;
  box-shadow: 0 18px 55px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,211,255,.45);
}

/* make the inside grid use full width (remove legacy padding) */
.sectionGridFix{
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
}

/* Service chips on light cards */
.serviceChip--light{
  background: rgba(31,1,185,.06);
  border: 1px solid rgba(31,1,185,.14);
  color: #0b0e19;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.serviceChip--light:hover{
  background: rgba(31,1,185,.085);
  border-color: rgba(31,1,185,.22);
}
.serviceChip--light .serviceChip__s{
  color: rgba(11,14,25,.72);
}

/* Icon row */
.serviceChip__kRow{
  display:flex;
  align-items:center;
  gap:10px;
}
.svcIcon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  font-weight: 900;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
}
.svcIcon--light{
  background: rgba(31,1,185,.08);
  border-color: rgba(31,1,185,.16);
}

/* Buttons on cards */
.btnOnCard{
  background: var(--ss-blue);
  color: #fff;
  border: 1px solid rgba(31,1,185,.18);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}
.btnOnCardGhost{
  background: var(--ss-pink);
  color: var(--ss-blue);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}
.btnOnCardGhost:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

/* Review cards inside cream frame */
.reviewCard--light{
  background: rgba(31,1,185,.045);
  border: 1px solid rgba(31,1,185,.12);
  backdrop-filter: none;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
}
.reviewCard--light p{
  color: rgba(11,14,25,.86);
  font-weight: 750;
}
.reviewCard--light .author{
  color: rgba(11,14,25,.62);
  opacity: 1;
}
.reviewCard--light .stars{
  color: var(--ss-blue);
  letter-spacing: .06em;
}

/* Scroll cue */
.scrollCue{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  opacity: .65;
}
.scrollCue__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display:block;
  background: rgba(255,211,255,.95);
  box-shadow: 0 0 0 10px rgba(255,211,255,.10);
  animation: cue 1.3s ease-in-out infinite;
}
@keyframes cue{
  0%,100%{ transform: translateY(0); opacity:.65; }
  50%{ transform: translateY(6px); opacity:1; }
}

/* Reveal animation (JS toggles .is-in) */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}
.stagger > *{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.stagger.is-in > *{
  opacity: 1;
  transform: translateY(0);
}
.stagger.is-in > *:nth-child(1){ transition-delay: 0ms; }
.stagger.is-in > *:nth-child(2){ transition-delay: 90ms; }
.stagger.is-in > *:nth-child(3){ transition-delay: 180ms; }
.stagger.is-in > *:nth-child(4){ transition-delay: 270ms; }

@media (max-width: 980px){
  .reviewsGrid{ grid-template-columns: 1fr; }
}

/* =========================================
   Book page (on-blue topbar helpers)
========================================= */
.topbar--onBlue{
  background: rgba(31,1,185,.0);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.brand--onBlue .brand__name,
.brand--onBlue .brand__sub{ color:#fff; }
.nav--onBlue .nav__link{
  color: rgba(255,255,255,.86);
}
.nav--onBlue .nav__link:hover{
  background: rgba(255,255,255,.10);
  color:#fff;
}

/* CallFab fallback: if empty innerHTML, show default */
.callFab:empty::before{ content:""; }
.callFab:empty{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.callFab:empty::after{
  content:"Call Us";
  font-weight:950;
}

/* =========================================================
   ✅ Book page UI (scoped) — premium wizard matching home
========================================================= */
.hidden{ display:none !important; }
.srOnly{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ✅ Base book theme (kept) */
body.theme--soap{
  background: var(--ss-blue);
  color:#fff;
}

.page{ min-height:100vh; }
.block{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}
.pageHead{
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 18px 10px 18px;
}

.bookPage__hero{
  padding-top: 10px;
  padding-bottom: 0px;
}
.bookPage__heroInner{
  display:grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 10px;
  align-items:start;
}
.bookPage__hero h1{
  margin:0;
  font-family:"Playfair Display", serif;
  font-weight:800;
  font-size: clamp(28px, 4.6vw, 46px);
  line-height:1.04;
  letter-spacing:-.6px;
  color:#fff;
}
.bookPage__hero p{
  margin:12px 0 0;
  color: rgba(255,255,255,.86);
  font-weight:800;
  line-height:1.6;
  max-width: 72ch;
}
.bookPage__heroRight{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}
.bookPage__heroMascot{
  width: min(210px, 42vw);
  opacity: .98;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.28));
}

@media (max-width: 900px){
  .bookPage__heroInner{ grid-template-columns: 1fr; }
  .bookPage__heroRight{ justify-content:center; }
}

.panel{
  border-radius: 26px;
  padding: 18px;
}
.panel--cream{
  background: var(--ss-cream);
  border: 1px solid rgba(255,211,255,.42);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  color:#0b0e19;
}

.panel__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.panel__title{
  margin:0;
  font-family:"Playfair Display", serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color:#0b0e19;
}
.panel__sub{
  margin-top:8px;
  color: rgba(11,14,25,.70);
  font-weight: 800;
  line-height: 1.45;
}

.notice{
  display:none;
  margin: 2px 0 14px 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,211,255,.35);
  border: 1px solid rgba(255,211,255,.70);
  color:#0b0e19;
  font-weight: 900;
}
.notice.show{ display:block; }

.wizardWrap{ position:relative; }

/* ✅ Lift (kept) */
body.theme--soap.book{
  --lift: 34px; /* 👈 ajuste si besoin */
}
body.theme--soap.book .wizardWrap{
  margin-top: calc(var(--lift) * -1);
}
body.theme--soap.book .panel.panel--cream.wizardWrap{
  margin-top: calc(var(--lift) * -1);
}

.cornerMascot{
  position:absolute;
  right:-6px;
  top:-16px;
  width:min(180px, 40vw);
  pointer-events:none;
  opacity:.98;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.22));
}

.wizardTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 8px;
  padding-bottom: 2px;
}
.wizardTop__left{ min-width: 240px; }
.wizardTop__right{ display:flex; flex-direction:column; align-items:flex-end; gap:10px; }

.stepPills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--ss-cream);
  border: 1px solid rgba(31,1,185,.12);
  color: rgba(11,14,25,.62);
  box-shadow: 0 12px 20px rgba(0,0,0,.10);
  font-weight: 950;
}
.pill b{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(31,1,185,.08);
  border: 1px solid rgba(31,1,185,.14);
  color: var(--ss-blue);
}
.pill.is-active{
  color: var(--ss-blue);
  background: rgba(255,211,255,.30);
  border-color: rgba(255,211,255,.85);
}
.pill.is-done{ color: #0b0e19; }

.subProgress{
  font-weight: 900;
  color: rgba(11,14,25,.70);
  background: rgba(31,1,185,.06);
  border: 1px solid rgba(31,1,185,.12);
  padding: 8px 12px;
  border-radius: 999px;
  min-height: 34px;
}

.bookPage__q{
  margin-top: 10px;
  padding: 6px 2px 0 2px;
}

.qTitle{
  margin: 0 0 6px 0;
  font-weight: 950;
  font-size: 18px;
  letter-spacing: -0.01em;
  color:#0b0e19;
}
.qHelp{
  margin:0 0 14px 0;
  color: rgba(11,14,25,.72);
  font-weight: 800;
  line-height: 1.45;
}

.qBody{ display:block; }

.optionsGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 640px){
  .optionsGrid{ grid-template-columns: 1fr; }
}

/* Options cards (Service choices) — PURE WHITE like inputs */
.opt{
  background: #fff; /* <- blanc pur */
  border: 1px solid rgba(31,1,185,.14);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  text-align:left;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease, background .12s ease;
}
.opt:hover{
  transform: translateY(-1px);
  border-color: rgba(255,211,255,.85);
  box-shadow: 0 12px 22px rgba(0,0,0,.10);
}
.opt.is-selected{
  background: #fff;
  border-color: rgba(255,211,255,.95);
  box-shadow:
    0 12px 22px rgba(0,0,0,.10),
    0 0 0 6px rgba(255,211,255,.35),
    inset 0 0 0 1px rgba(255,211,255,.35);
}
.optIcon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--ss-blue);
  background: rgba(31,1,185,.08);
  border: 1px solid rgba(31,1,185,.14);
  flex: 0 0 auto;
  font-size: 18px;
}
.optMeta{ display:block; }
.optName{
  font-weight: 950;
  color:#0b0e19;
  letter-spacing: -0.01em;
}
.optDesc{
  margin-top: 6px;
  color: rgba(11,14,25,.70);
  font-weight: 800;
  line-height: 1.35;
  font-size: 13.5px;
}
.optBtn{
  appearance:none;
  border: 0;
  width: 100%;
  cursor: pointer;
}

.field{
  display:grid;
  gap: 8px;
}
.field label{
  font-weight: 950;
  color:#0b0e19;
}
.field input,
.field textarea,
.field select{
  width:100%;
  border-radius: 16px;
  padding: 14px 14px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(31,1,185,.12);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  font-weight: 850;
  color:#0b0e19;
  outline:none;
}
.field textarea{
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color: rgba(255,211,255,.85);
  box-shadow: 0 12px 22px rgba(0,0,0,.10);
}
.fieldHint{
  color: rgba(11,14,25,.62);
  font-weight: 800;
  font-size: 13px;
}

.field--solo{ max-width: 560px; }

.formRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px){
  .formRow{ grid-template-columns: 1fr; }
}

.error{
  display:none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,211,255,.30);
  border: 1px solid rgba(255,211,255,.70);
  color:#0b0e19;
  font-weight: 950;
}
.error.show{ display:block; }

.wizActions{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  border-top: 1px solid rgba(31,1,185,.10);
  padding-top: 14px;
}
.wizActions .left,
.wizActions .right{
  display:flex;
  gap: 10px;
  align-items:center;
}

/* Buttons */
.btn{
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform .10s ease, filter .10s ease, background .10s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--pill{ padding: 10px 14px; }
.btn--wide{ min-width: 210px; }
@media (max-width: 520px){
  .btn--wide{ min-width: 0; width: 100%; }
}

.btn--primary{
  background: var(--ss-pink) !important;
  color: var(--ss-blue) !important;
  border-color: rgba(255,255,255,.18) !important;
}
.btn--ghost{
  background: rgba(31,1,185,.10);
  color: var(--ss-blue);
  border-color: rgba(31,1,185,.14);
}
.btn--ghost:hover{ background: rgba(31,1,185,.13); }
.btn.is-disabled,
.btn:disabled{
  opacity: .55;
  cursor: not-allowed;
  transform: none !important;
}

/* Quote/booking split */
.ctaSplit{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.ctaSplit > *{ flex: 1 1 240px; }

.summaryBox{
  margin-top: 10px;
  border-radius: 18px;
  padding: 14px;
  background: rgba(31,1,185,.06);
  border: 1px solid rgba(31,1,185,.12);
  color:#0b0e19;
  font-weight: 850;
  line-height: 1.55;
}
.summaryBox small{
  display:block;
  margin-top: 10px;
  color: rgba(11,14,25,.62);
  font-weight: 850;
}

.bookPage__hr{
  border:none;
  border-top:1px solid rgba(31,1,185,.12);
  margin:18px 0;
}

.bookingReveal .panel{ margin-bottom: 28px; }

/* ===== Simple topbar components (used on book.html) ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 60;

  background: var(--ss-blue);
  border-bottom: none;
  backdrop-filter: none;
}
.topbar__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  gap: 12px;
}

.hamburger{
  appearance:none;
  border: 0;
  cursor:pointer;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.hamburger__bars{
  width: 18px;
  height: 12px;
  position: relative;
}
.hamburger__bars span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius: 999px;
  background: #fff;
}
.hamburger__bars span:nth-child(1){ top:0; }
.hamburger__bars span:nth-child(2){ top:5px; opacity:.92; }
.hamburger__bars span:nth-child(3){ top:10px; }

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand__text{
  display:flex;
  flex-direction:column;
  line-height: 1.05;
}
.brand__name{
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #fff;
}
.brand__name span{ color: rgba(255,211,255,.98); }
.brand__sub{
  font-weight: 850;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}
.nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav__link{
  font-weight: 850;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,.86);
}
.nav__link:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
}
@media (max-width: 900px){
  .nav{ display:none; }
}

/* Bottom */
.bottom{
  margin-top: 34px;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.10);
}
.bottom__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 18px 30px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  color: rgba(255,255,255,.80);
}
.bottom__left{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}
.bottom__sep{ opacity:.55; }
.bottom__right{ font-weight: 900; }

.bookPage__bottom{
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* Coming soon card */
.comingSoon{
  padding: 10px 0 30px;
}
.comingSoon .panel{
  text-align:center;
  padding: 22px 18px;
}
.comingSoon h2{
  margin: 0 0 10px 0;
  font-family:"Playfair Display", serif;
  font-size: clamp(22px, 3.4vw, 32px);
  color:#0b0e19;
  letter-spacing:-.02em;
}
.comingSoon p{
  margin: 0 auto 14px;
  max-width: 56ch;
  color: rgba(11,14,25,.74);
  font-weight: 800;
  line-height: 1.55;
}
.comingSoon .tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31,1,185,.08);
  border: 1px solid rgba(31,1,185,.12);
  color:#0b0e19;
  font-weight: 950;
  margin-bottom: 12px;
}
.comingSoon .tag b{ color: var(--ss-blue); }

.bookPage__rowActions{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 10px;
}

/* ==== FORCE CREAM OVERRIDES (last wins) ==== */
/* ✅ on garde les frames cream, MAIS PAS les options (.opt) */
.sectionCard,
.sectionCard--cream,
.sectionCard--white,
.panel--cream{
  background: var(--ss-cream) !important;
}

/* reviews inner cards keep light tint (optional) */
.reviewCard--light{
  background: rgba(31,1,185,.045) !important;
}

/* =========================================================
   ✅ BOOK PAGE FIX — force blue + show white hero title + lift
   (THIS BLOCK MUST BE LAST)
========================================================= */

/* Force le fond bleu même si body n’a pas la bonne class */
body.book,
body.theme-soap,
body.theme--soap,
body.theme-soap.book,
body.theme--soap.book{
  background: var(--ss-blue) !important;
  color:#fff !important;
}

/* Si un wrapper met du blanc, on le neutralise */
body.book .page,
body.book main,
body.book .block,
body.book .pageHead{
  background: transparent !important;
}

/* Topbar texte lisible sur bleu */
body.book .topbar .brand__name{ color:#fff !important; }
body.book .topbar .brand__sub{ color: rgba(255,255,255,.78) !important; }
body.book .topbar .nav__link{ color: rgba(255,255,255,.86) !important; }
body.book .topbar .nav__link:hover{
  background: rgba(255,255,255,.10) !important;
  color:#fff !important;
}

/* Hero title “Cleaning — Book / Get a quote” toujours visible */
body.book .bookPage__hero,
body.book .bookPage__heroInner{
  background: transparent !important;
}
body.book .bookPage__hero h1{ color:#fff !important; }
body.book .bookPage__hero p{ color: rgba(255,255,255,.86) !important; }

/* Lift du cadre (panel wizard) — book only */
body.book{ --lift: 100px; } /* 👈 augmente si tu veux encore plus haut */
body.book .panel.panel--cream.wizardWrap{
  margin-top: calc(var(--lift) * -1) !important;
}

/* Petite finition */
body.book .bookPage__q{ margin-top: 6px !important; }

/* =========================================
   REVIEWS HORIZONTAL SCROLL (MOBILE)
========================================= */

@media (max-width: 860px){

  .reviewsGrid{
    display:flex !important;
    gap:16px;
    overflow-x:auto;
    padding-bottom:12px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .reviewsGrid::-webkit-scrollbar{
    display:none;
  }

  .reviewCard{
    min-width:85%;
    flex:0 0 auto;

    scroll-snap-align:start;
  }
}
/* =========================================================
   REVIEWS: mobile horizontal slider + gold stars + indicator
   + center scale effect (CSS only)
========================================================= */

/* Gold stars everywhere (desktop + mobile) */
.stars{
  color: #D4AF37 !important; /* gold */
  letter-spacing: .08em;
}

/* Mobile: horizontal scroll + snap + scale effect + indicator */
@media (max-width: 860px){

  /* Turn grid into a horizontal carousel */
  .reviewsGrid{
    display:flex !important;
    gap:14px;
    overflow-x:auto;
    overflow-y:visible;
    padding: 6px 6px 18px 6px; /* bottom space for indicator */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* hide scrollbar (cross-browser-ish) */
    scrollbar-width: none;
  }
  .reviewsGrid::-webkit-scrollbar{ display:none; }

  /* Cards size */
  .reviewCard{
    flex: 0 0 auto;
    width: 84%;
    scroll-snap-align: center;

    /* base scale */
    transform: scale(.96);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }

  /* Center scale effect (pure CSS): only works if the review cards are direct children */
  .reviewsGrid > .reviewCard:hover{
    transform: scale(1.00);
  }
  /* Nice when user taps/holds on mobile */
  .reviewsGrid > .reviewCard:active{
    transform: scale(1.00);
  }

  /* Optional: make the first/last align feel better */
  .reviewsGrid::before,
  .reviewsGrid::after{
    content:"";
    flex: 0 0 8%;
  }

  /* Scroll indicator (subtle) */
  .reviewsGrid{
    position: relative;
  }
  .reviewsGrid::marker{ content:""; } /* noop, avoids weirdness */

  /* Bar background */
  .reviewsGrid::after{
    /* keep the spacer, but also allow indicator below via pseudo overlay on parent */
  }

  /* Create a small indicator bar under the carousel */
  .reviewsGridIndicator{
    display:none; /* if you ever add a div in HTML later */
  }

  /* CSS-only indicator using a pseudo-element on the parent section if present */
  /* If your reviews sit inside a .sectionCard / panel, this still shows nicely */
  .reviewsGrid{
    --indW: 54px;
    --indH: 6px;
  }
  .reviewsGrid::before{
    content:"";
    position: sticky;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    align-self: flex-end;

    width: var(--indW);
    height: var(--indH);
    border-radius: 999px;

    background: rgba(31,1,185,.20);
    border: 1px solid rgba(31,1,185,.18);
    box-shadow: 0 10px 18px rgba(0,0,0,.10);

    /* place it visually under cards */
    margin-top: 12px;
  }
}

/* Smaller phones */
@media (max-width: 420px){
  .reviewCard{ width: 90%; }
}

/* =========================
   GLOBAL FOOTER (ALL PAGES)
========================= */

.siteFooter{
  background:#0b0e19;
  border-top:1px solid rgba(255,255,255,.08);
  padding: 26px 16px;
  margin-top: 34px;
  color: rgba(255,255,255,.78);
}

.siteFooter__inner{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.siteFooter__title{
  font-weight: 950;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
}

.siteFooter__sub{
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.62);
  margin-top: 4px;
}

.siteFooter__links,
.siteFooter__socials{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-weight: 850;
  font-size: 13px;
}

.siteFooter a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.siteFooter a:hover{
  color: rgba(255,255,255,1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.siteFooter__copy{
  font-weight: 900;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
}

/* Make sure floating call button doesn't cover footer content on small screens */
@media (max-width: 860px){
  .siteFooter{ padding-bottom: 42px; }
}

/* =========================================================
   ✅ PATCH: KILL THE HUGE GAP IN BOOK WIZARD (FORCED HEIGHT)
   This is the part that will FINALLY remove the empty space.
   Put it LAST so it wins.
========================================================= */

/* 1) Stop the wizard container from being forced to a tall height */
body.book .wizardWrap,
body.book .panel.panel--cream.wizardWrap{
  height: auto !important;
  min-height: 0 !important;
}

/* 2) If #wizardPanel is grid/flex forcing stretch, force a simple column flow */
body.book #wizardPanel{
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  height: auto !important;
  min-height: 0 !important;
}

/* 3) The actual culprit: .bookPage__q had a computed height (~500px) */
body.book .bookPage__q{
  height: auto !important;
  min-height: 0 !important;
  flex: 0 0 auto !important;
  margin-top: 6px !important;
  padding-top: 0 !important;
}

/* 4) Optional: reduce spacing under the header row even more */
body.book .wizardTop{
  padding-bottom: 0 !important;
  margin-bottom: 6px !important;
}

/* 5) If any wrapper still stretches, this prevents "fill remaining space" */
body.book #wizardPanel > *{
  flex: 0 0 auto !important;
}
body.book #wizardPanel .wizActions{
  margin-top: 12px !important;
}
/* =========================================================
   ✅ PATCH FINAL — kill the huge empty gap in the wizard card
   Put this at the VERY END of style.css
========================================================= */

/* 0) Small padding reduction inside the cream panel (the card itself) */
body.book .panel.panel--cream{
  padding-top: 12px !important;
  padding-bottom: 14px !important;
}

/* 1) The header (title + help) often leaves margins */
body.book .qTitle{
  margin: 0 0 4px 0 !important;
}
body.book .qHelp{
  margin: 0 0 8px 0 !important;
}

/* 2) This is usually the culprit: a wrapper that is stretched to a tall height */
body.book .wizardWrap,
body.book .panel.panel--cream.wizardWrap,
body.book #wizardPanel{
  height: auto !important;
  min-height: 0 !important;
}

/* 3) If wizardPanel is grid/flex, force compact column flow (no vertical stretch) */
body.book #wizardPanel{
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 8px !important; /* keeps it clean but tight */
}

/* 4) The question block sometimes gets a computed min-height / flex-grow */
body.book .bookPage__q{
  margin-top: 6px !important;
  padding-top: 0 !important;

  height: auto !important;
  min-height: 0 !important;

  flex: 0 0 auto !important;
}

/* 5) If ANY direct child inside #wizardPanel is forcing growth, stop it */
body.book #wizardPanel > *{
  flex: 0 0 auto !important;
  min-height: 0 !important;
}

/* 6) Tighten spacing between header row and options */
body.book .wizardTop{
  padding-bottom: 0 !important;
  margin-bottom: 6px !important;
}

/* 7) Remove any "invisible" spacing before the grid */
body.book .qBody{
  margin: 0 !important;
  padding: 0 !important;
}

/* 8) Options grid itself: tighter top alignment */
body.book .optionsGrid{
  margin-top: 0 !important;
}

/* 9) Actions area: less air */
body.book .wizActions{
  margin-top: 12px !important;
  padding-top: 10px !important;
}
/* =========================================================
   🔥 REMOVE WIZARD CARD COMPLETELY
   (no frame, no radius, no shadow, no padding)
========================================================= */

body.book .panel.panel--cream.wizardWrap{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-top: 0 !important; /* remove lift */
}

/* Remove global lift variable effect */
body.book{
  --lift: 0px !important;
}
/* =========================================================
   ✅ BOOK WIZARD: bring frame back + remove huge top gap
   Put this LAST so it wins
========================================================= */

/* 1) Restore the frame (card) */
body.book .panel.panel--cream.wizardWrap{
  background: var(--ss-cream) !important;
  border: 1px solid rgba(255,211,255,.42) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.18) !important;
  border-radius: 26px !important;

  /* IMPORTANT: re-add padding (frame feel) */
  padding: 16px !important;

  /* Keep your lift if you want it */
  margin-top: calc(var(--lift) * -1) !important;
}

/* 2) Kill layout rules that create the big empty gap */
body.book #wizardPanel{
  display: block !important;     /* <- stop flex stretch */
  height: auto !important;
  min-height: 0 !important;
}

/* 3) Tighten spacing between header text and options */
body.book .wizardTop{
  padding-bottom: 0 !important;
  margin-bottom: 8px !important;
}

body.book .bookPage__q{
  margin-top: 6px !important;
  padding-top: 0 !important;
}

/* Reduce space under the help text */
body.book .qHelp{
  margin-bottom: 10px !important;
}
body.book .panel.panel--cream.wizardWrap{
  padding-top: 12px !important;
}
/* =========================================================
   ✅ BOOK: remove the mysterious gap (FORCE)
   Put LAST
========================================================= */

body.book #wizardPanel{
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important; /* IMPORTANT */
  align-items: stretch !important;
  gap: 10px !important;                  /* controlled spacing */
  height: auto !important;
  min-height: 0 !important;
}

body.book #wizardPanel > *{
  flex: 0 0 auto !important; /* stop any child from stretching */
}

/* The content block that holds qTitle/qBody */
body.book .bookPage__q{
  height: auto !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Just in case qBody got a min-height somewhere else */
body.book #qBody{
  min-height: 0 !important;
  height: auto !important;
}

/* tighten header spacing */
body.book .wizardTop{
  margin: 0 !important;
  padding: 0 !important;
}
/* Ensure option cards are actually clickable */
#qBody .opt,
#qBody .optBtn{
  pointer-events: auto !important;
  position: relative;
  z-index: 2;
}

/* Mascot should NEVER block clicks */
.cornerMascot{
  pointer-events: none !important;
}