:root {
  --cream: #fdf6f1;
  --cream-2: #f8ece3;
  --blush: #f3ddd2;
  --ink: #3a2f2c;
  --ink-soft: #6b5c56;
  --accent: #c67856;
  --accent-dark: #9c5738;
  --sage: #8a9a7e;
  --white: #ffffff;
  --logo-light: #ebccbf;
  --logo-dark: #cd7653;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 20px 50px -20px rgba(58, 47, 44, 0.25);
  --shadow-sm: 0 10px 25px -12px rgba(58, 47, 44, 0.2);
  --max-width: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: "Assistant", "Segoe UI", Tahoma, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-weight: 800; line-height: 1.25; }

.eyebrow {
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 10px;
  font-size: .95rem;
}

.accent { color: var(--accent); }

section[id] { scroll-margin-top: 20px; }
.section { padding: 80px 0; }
@media (max-width: 720px) { .section { padding: 54px 0; } }

.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-sub { color: var(--ink-soft); font-size: 1rem; margin-top: 12px; }
.section-note { color: var(--accent-dark); font-size: .88rem; font-weight: 600; margin-top: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 30px -14px rgba(166, 95, 64, .5); }
.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
}
.whatsapp-float a {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent-dark);
  border: 1px solid rgba(58,47,44,.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease, color .2s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--accent); color: var(--white); }

/* Nav */
.nav-wrap {
  position: relative;
  z-index: 80;
  background: var(--cream);
  border-bottom: 1px solid rgba(58,47,44,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; }
.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  white-space: nowrap;
}
.logo-word {
  font-family: "Suez One", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
}
.logo-word .lw1 { color: var(--logo-light); }
.logo-word .lw2 { color: var(--logo-dark); }
.logo-tagline {
  font-family: "Assistant", sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .01em;
  color: var(--accent-dark);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .logo-tagline { font-size: .62rem; }
  .logo-word { letter-spacing: .1em; }
}
.logo-mark--onDark .lw1 { color: #e8c9b8; }
.logo-mark--onDark .lw2 { color: #e2896a; }
.logo-mark--onDark .logo-tagline { color: var(--blush); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--accent-dark); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    box-shadow: 0 20px 34px -12px rgba(58,47,44,.32);
    border-bottom: 1px solid rgba(58,47,44,.08);
  }
  .nav-links.open { max-height: 80vh; overflow-y: auto; }
  .nav-links li { width: 100%; }
  .nav-links li + li { border-top: 1px solid rgba(58,47,44,.07); }
  .nav-links a {
    display: flex; align-items: center; gap: 10px;
    padding: 15px 24px; width: 100%;
    font-weight: 600; color: var(--ink);
    transition: background .2s ease, color .2s ease, padding .2s ease;
  }
  .nav-links a::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
    opacity: .55; transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links a:active { background: var(--blush); color: var(--accent-dark); padding-inline-start: 30px; }
  .nav-links a:active::before { opacity: 1; transform: scale(1.6); }
  .nav-links li:has(.nav-cta) { border-top: none; padding: 14px 24px 20px; }
  .nav-links a.nav-cta {
    margin: 0; display: flex; justify-content: center; width: 100%;
    text-align: center; padding: 14px 20px; color: var(--white) !important;
    box-shadow: 0 12px 22px -10px rgba(198,120,86,.7);
  }
  .nav-links a.nav-cta::before { display: none; }
}

/* Hero */
.hero { padding: 48px 0 56px; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, var(--blush) 0%, transparent 55%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; min-width: 0; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 22px; }
.hero-sub { color: var(--ink-soft); font-size: 1.1rem; max-width: 480px; margin-bottom: 32px; }
.hero-break-mobile, .mobile-break { display: none; }
@media (max-width: 900px) { .mobile-break { display: block; } }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.hero-values {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.hero-value-pill {
  font-size: .76rem; font-weight: 600; color: var(--accent-dark);
  background: var(--white); border: 1px solid rgba(58,47,44,.12);
  padding: 6px 13px; border-radius: 999px;
}
.hero-media { position: relative; }
.hero-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
}
.hero-media-mobile { display: none; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-break-mobile { display: block; }
  .hero-break-desktop { display: none; }
  .hero-media { display: none; }
  .hero-media-mobile {
    display: flex; justify-content: center; margin: 6px 0 22px;
  }
  .hero-media-mobile img {
    width: 130px; height: 130px; border-radius: 50%; object-fit: cover;
    box-shadow: var(--shadow-sm); border: 3px solid var(--white);
  }
  .hero-values { justify-content: center; width: 100%; min-width: 0; margin-top: 18px; }
  .hero-values::after { content: ""; flex-basis: 100%; order: 2; }
  .hero-value-pill { font-size: .7rem; padding: 5px 11px; white-space: nowrap; }
  .hero-value-pill:last-child { order: 3; }
  .hero { padding: 32px 0 40px; }
  .hero-media-mobile { margin: 4px 0 16px; }
  .hero-sub { margin-bottom: 22px; }
  .services { padding-top: 44px; }
}

h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }

.booklet-teaser { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.booklet-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 24px;
  max-width: 560px;
  margin-inline: auto;
}
.booklet-teaser-copy { min-width: 0; max-width: 42ch; }
.booklet-teaser-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.booklet-teaser-media { max-width: 200px; margin: 0 auto; }
.booklet-teaser-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.booklet-teaser .age-badge { margin-inline: auto; }
.booklet-teaser .launch-price-box { align-items: center; width: fit-content; margin: 8px auto 20px; }

@media (min-width: 901px) {
  .booklet-teaser-grid {
    grid-template-columns: 1fr 260px;
    justify-items: start;
    text-align: start;
    gap: 40px;
    max-width: 860px;
    margin-inline: auto;
  }
  .booklet-teaser-media { order: 2; max-width: 100%; margin: 0; transform: rotate(-4deg); }
  .booklet-teaser-copy { order: 1; max-width: 50ch; }
  .booklet-teaser .age-badge { margin-inline: 0; }
  .booklet-teaser .launch-price-box { align-items: flex-start; width: fit-content; margin: 8px 0 20px; }
}

.age-badge {
  display: inline-block;
  background: var(--blush);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.price-row { display: flex; align-items: baseline; gap: 12px; }
.price-now { font-size: 1.8rem; font-weight: 800; color: var(--accent-dark); font-variant-numeric: tabular-nums; }
.price-was { font-size: 1.05rem; color: var(--ink-soft); text-decoration: line-through; }

@media (max-width: 900px) {
  .booklet-teaser { padding-top: 48px; }
  .age-badge { font-size: .76rem; margin-bottom: 12px; }
}

.launch-price-box {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  margin: 8px 0 20px;
}
.launch-badge {
  background: var(--accent-dark); color: var(--white);
  font-size: .68rem; font-weight: 800; letter-spacing: .02em;
  padding: 4px 10px; border-radius: 6px; white-space: nowrap;
}
.launch-price-box .price-row { display: flex; align-items: baseline; gap: 10px; }
.launch-price-box .price-now { font-size: 2.4rem; color: var(--accent-dark); }
.launch-price-box .price-was { font-size: 1rem; color: var(--ink-soft); }
@media (max-width: 900px) {
  .launch-price-box { align-items: center; width: fit-content; margin-left: auto; margin-right: auto; }
  .launch-price-box .price-now { font-size: 2.4rem; }
  .launch-price-box .price-was { font-size: 1.15rem; }
}

.booklet-purchase {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin: 0 0 20px;
  box-shadow: var(--shadow-sm);
}
.booklet-purchase-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.booklet-purchase-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--blush); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.booklet-purchase .pay-box-title { font-weight: 800; font-size: 1.02rem; margin: 0; }
.booklet-purchase p:not(.pay-box-title) { color: var(--ink-soft); margin: 0 0 16px; font-size: .92rem; }
.booklet-purchase strong, .booking-modal-body strong { white-space: nowrap; }
.pay-logos {
  display: flex; align-items: center; gap: 16px;
  padding-top: 14px; border-top: 1px solid rgba(58,47,44,.08);
}
.pay-logo { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; box-shadow: var(--shadow-sm); }
.pay-logos a { display: block; line-height: 0; border-radius: 10px; transition: transform .15s ease; }
.pay-logos a:hover { transform: translateY(-2px); }
.booklet-purchase .btn { margin-top: 16px; width: 100%; }


/* Services - photo card carousel */
.offer-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
.offer-grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 4px 10px;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.offer-grid::-webkit-scrollbar { display: none; }
.carousel-nav {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(58,47,44,.12);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.carousel-nav:hover { background: var(--accent); color: var(--white); }
@media (max-width: 640px) {
  .offer-carousel, .reviews-carousel, .blog-teaser-carousel {
    position: relative;
  }
  .carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; z-index: 5;
    background: rgba(255,255,255,.92);
  }
  .carousel-prev { right: 2px; }
  .carousel-next { left: 2px; }
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  flex: 0 0 320px;
  scroll-snap-align: start;
}
@media (max-width: 640px) {
  .offer-carousel { flex-direction: column; }
  .offer-carousel .carousel-nav { display: none; }
  .offer-grid {
    flex-direction: column;
    overflow: visible;
    scroll-snap-type: none;
    gap: 20px;
    padding: 4px;
  }
  .offer-card { flex: 0 0 auto; width: 100%; }
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer-media { position: relative; height: 180px; }
.offer-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offer-badge {
  position: absolute; top: 14px; inset-inline-start: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--cream);
  font-size: .74rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
}
.offer-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.offer-eyebrow2 { display: flex; align-items: center; gap: 6px; color: var(--accent-dark); font-size: .85rem; font-weight: 700; margin: 0 0 4px; }
.offer-card-body h3 { font-size: 1.25rem; margin: 0 0 6px; }
.offer-desc2 { color: var(--ink-soft); font-size: .92rem; margin: 0 0 10px; }
.offer-ages { font-size: .82rem; color: var(--ink-soft); margin: 0 0 10px; }
.offer-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.offer-tag-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .74rem; font-weight: 600; color: var(--ink-soft);
  background: var(--cream); border: 1px solid rgba(58,47,44,.12);
  padding: 5px 11px; border-radius: 999px;
}
.offer-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(58,47,44,.1);
}
.offer-price-single {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  background: var(--cream); border-radius: 999px;
  padding: 12px; margin: 0 0 16px;
}
.offer-price-single strong { font-size: 1.3rem; font-weight: 800; color: var(--accent-dark); font-variant-numeric: tabular-nums; }
.offer-price-single span { font-size: .85rem; color: var(--ink-soft); }

/* Adjustment-period visibility toggles - flags live in script.js, nothing else needs to change */
body.prices-hidden-sessions .offer-card .offer-price-grid,
body.prices-hidden-sessions .offer-card .offer-price-single,
body.prices-hidden-sessions #offerModalPrice { display: none; }
body.prices-hidden-personal .personal-price,
body.prices-hidden-personal #personalModalPrice { display: none; }
body.dates-hidden .field:has(#bookDate) { display: none; }
body.dates-hidden .field:has(#bookPackage) { display: none; }
.price-chip {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 13px 4px;
  background: var(--cream);
  border-inline-start: 1px solid rgba(58,47,44,.1);
}
.price-chip:first-child { border-inline-start: none; }
.price-chip strong { font-size: 1.2rem; font-weight: 800; color: var(--accent-dark); font-variant-numeric: tabular-nums; }
.price-chip span { font-size: .78rem; color: var(--ink-soft); }
label.price-chip { cursor: pointer; transition: background .2s ease; }
.price-chip input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.price-chip:has(input:checked), .price-chip.price-chip-selected { background: var(--accent); }
.price-chip:has(input:checked) strong, .price-chip:has(input:checked) span,
.price-chip.price-chip-selected strong, .price-chip.price-chip-selected span { color: var(--white); }
.offer-card-cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white); font-weight: 700; font-size: .94rem;
  padding: 13px; border-radius: 999px; border: none; cursor: pointer;
  font-family: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.offer-card-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.resident-note {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  max-width: 640px; margin: 32px auto 0;
  background: var(--white); border: 1px solid rgba(58,47,44,.1);
  border-radius: 999px; padding: 12px 22px;
  font-size: .88rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.resident-note-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--blush); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 640px) { .resident-note { text-align: right; } }

/* Personal accompaniment panel */
.personal-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-top: 48px;
  box-shadow: var(--shadow-sm);
}
.personal-title { font-weight: 800; font-size: 1.15rem; margin-bottom: 10px; text-align: center; }
.personal-intro { text-align: center; color: var(--ink-soft); font-size: .92rem; max-width: 700px; margin: 0 auto 26px; }
.personal-list { list-style: none; }
.personal-list li {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(58,47,44,.08); flex-wrap: wrap;
}
.personal-list li:last-child { border-bottom: none; }
.personal-info { display: flex; flex-direction: column; gap: 2px; }
.personal-info strong { font-size: 1.02rem; }
.personal-info span { color: var(--ink-soft); font-size: .9rem; }
.personal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.personal-tags .offer-tag-pill { font-size: .7rem; padding: 4px 9px; }
.offer-tag-pill.gift-tag { background: var(--accent); color: var(--white); border-color: var(--accent); font-weight: 700; }
.personal-action { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.personal-price { font-weight: 700; color: var(--accent-dark); font-size: .92rem; white-space: nowrap; }
.personal-cta {
  font-size: .84rem; font-weight: 700; color: var(--white); background: var(--accent);
  padding: 8px 18px; border-radius: 999px; transition: background .2s; white-space: nowrap;
  border: none; cursor: pointer; font-family: inherit; display: inline-block;
}
.personal-cta:hover { background: var(--accent-dark); }
@media (max-width: 640px) {
  .personal-panel { padding: 28px 22px; }
  .personal-list li { flex-direction: column; align-items: flex-start; gap: 10px; }
  .personal-action { width: 100%; flex-direction: column; align-items: flex-start; gap: 8px; }
}

.services-note {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 28px; color: var(--ink-soft); font-weight: 500; font-size: .92rem;
}
.services-note-badge {
  background: var(--blush); color: var(--accent-dark);
  font-size: .72rem; font-weight: 800; letter-spacing: .02em;
  padding: 4px 12px; border-radius: 999px;
}

/* Wayfinding */
.wayfinding { padding: 0 0 56px; }
.wayfinding-box {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 40px;
  box-shadow: var(--shadow-sm);
}
.wayfinding-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.wayfinding-copy { flex: 1; }
.wayfinding-copy h3 { font-size: 1.15rem; margin-bottom: 4px; }
.wayfinding-copy p { color: var(--ink-soft); font-size: .92rem; margin: 0; }
.wayfinding-cta {
  flex-shrink: 0; white-space: nowrap;
  background: #25D366; color: var(--white);
  box-shadow: 0 14px 28px -14px rgba(37,211,102,.55);
}
.wayfinding-cta:hover { background: #1fb959; }
@media (max-width: 640px) {
  .wayfinding-box { flex-direction: column; text-align: center; padding: 28px 24px; }
}

/* Reviews - carousel */
.reviews { background: var(--white); }
.reviews-carousel {
  display: flex; align-items: center; gap: 14px;
  max-width: 1040px; margin: 44px auto 0;
}
.reviews-stack {
  display: flex; align-items: center; gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 4px 10px;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.reviews-stack::-webkit-scrollbar { display: none; }
.review-strip {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.review-strip:nth-child(even) { background: var(--cream-2); }
.review-strip-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.review-stars { display: flex; gap: 2px; color: #d9a441; font-size: .8rem; letter-spacing: 2px; }
.review-strip-quote { color: var(--ink); font-size: .93rem; margin: 0; }
.review-strip-name { display: flex; align-items: baseline; gap: 6px; }
.review-strip-name strong { font-size: .92rem; }
.review-strip-name span { font-size: .84rem; color: var(--ink-soft); }
@media (max-width: 560px) { .review-strip { flex-basis: 82vw; } }

/* Blog teaser - carousel */
.blog-teaser { background: var(--cream-2); }
.blog-teaser-carousel {
  display: flex; align-items: center; gap: 14px;
  max-width: 900px; margin: 0 auto;
}
.blog-teaser-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 4px 10px;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.blog-teaser-grid::-webkit-scrollbar { display: none; }
.blog-teaser-card {
  display: block;
  flex: 0 0 210px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
@media (max-width: 640px) {
  .blog-teaser-card { flex-basis: 44vw; padding: 16px 14px; }
  .blog-teaser-card h3 { font-size: .84rem; }
  .blog-teaser-card .post-card-icon-cover { width: 38px; height: 38px; margin-bottom: 10px; }
  .blog-teaser-card .post-card-icon-cover svg { width: 17px; height: 17px; }
}
.blog-teaser-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-teaser-card div { padding: 0; }
.blog-teaser-card h3 { font-size: .92rem; margin-top: 6px; line-height: 1.35; }
.blog-teaser-card .post-card-icon-cover {
  width: 48px; height: 48px; border-radius: 50%; padding: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); margin-bottom: 14px;
}
.blog-teaser-card .post-card-icon-cover svg { width: 21px; height: 21px; }
.blog-teaser-card .post-card-icon-cover.tone-blush { background: var(--blush); }
.blog-teaser-card .post-card-icon-cover.tone-cream { background: var(--cream-2); color: var(--accent); }
.blog-teaser-card .post-card-icon-cover.tone-ink { background: var(--ink); color: var(--cream); }
.post-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--blush);
  padding: 3px 10px;
  border-radius: 999px;
}

/* WhatsApp community */
.community { background: var(--white); padding: 90px 80px; }
@media (max-width: 720px) { .community { padding: 60px 24px; } }
.community-box {
  background: linear-gradient(135deg, #f0fbf4 0%, var(--cream-2) 100%);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--radius);
  padding: 56px 60px;
  text-align: center;
}
.community-copy { max-width: 620px; margin: 0 auto; }
.community-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.community-badge {
  display: inline-block;
  font-size: .82rem; font-weight: 700;
  padding: 6px 16px; border-radius: 999px;
  background: var(--white); color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.community-badge-free { background: #25D366; color: var(--white); }
.community p { color: var(--ink-soft); margin-bottom: 26px; }
.community-cta {
  background: #25D366; color: var(--white);
  box-shadow: 0 14px 28px -14px rgba(37,211,102,.55);
}
.community-cta:hover { background: #1fb959; transform: translateY(-3px); }
@media (max-width: 640px) { .community-box { padding: 40px 26px; } }

/* Instagram */
.instagram { background: var(--white); }
.ig-widget {
  max-width: 760px; margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(58,47,44,.08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.ig-widget-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ig-widget-icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.ig-widget-id strong { font-size: .98rem; }
.ig-widget-id a { color: var(--ink); transition: color .2s; }
.ig-widget-id a:hover { color: var(--accent-dark); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 560px) { .ig-grid { grid-template-columns: 1fr 1fr; } }
.ig-grid a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
}
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ig-grid a:hover img { transform: scale(1.06); }
.ig-widget-caption { text-align: center; color: var(--ink-soft); font-size: .86rem; margin: 16px 0 0; }

.ig-cta { text-align: center; margin-top: 32px; }
.btn-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  color: var(--white); font-weight: 700; font-size: .92rem;
  padding: 11px 24px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* FAQ */
.accordion { max-width: 760px; margin: 0 auto; }
.acc-item {
  border-bottom: 1px solid rgba(58,47,44,.12);
}
.acc-trigger {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
}
.acc-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform .3s ease, background .3s ease;
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.acc-panel p { padding: 0 4px 22px; color: var(--ink-soft); }

/* Contact */
.contact { background: linear-gradient(180deg, var(--cream-2) 0%, var(--blush) 100%); }
.contact-single { max-width: 560px; margin: 0 auto; text-align: center; }
.contact-sub { color: var(--ink-soft); margin: 12px 0 24px; }
.contact-list { list-style: none; margin-bottom: 34px; display: flex; flex-wrap: wrap; flex-direction: row; justify-content: center; align-items: center; gap: 14px 28px; }
.contact-list li, .contact-list a { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.contact-list a:hover { color: var(--accent-dark); }
.contact-list a:hover .contact-icon { background: var(--accent); color: var(--white); }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.contact-secondary { background: transparent; gap: 8px; font-size: .92rem; padding: 13px 26px; }

/* Booking modal */
.booking-modal-card { max-width: 560px; }
.booking-modal-body { padding: 30px 30px 32px; text-align: start; }
.booking-modal-body h3 { font-size: 1.3rem; margin: 6px 0 8px; }
.booking-sub { color: var(--ink-soft); font-size: .92rem; margin-bottom: 22px; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.booking-form .field { display: flex; flex-direction: column; gap: 6px; }
.booking-form .field-full { grid-column: 1 / -1; }
.booking-form label {
  font-size: .84rem; font-weight: 700; color: var(--ink);
  min-height: 2.9em; display: flex; align-items: flex-end;
}
.booking-form input, .booking-form select, .booking-form textarea {
  font-family: inherit; font-size: .94rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid rgba(58,47,44,.14);
  border-radius: 10px; padding: 10px 12px;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.booking-form textarea { resize: vertical; }
.booking-form button[type="submit"] { margin-top: 6px; }
@media (max-width: 560px) { .booking-form { grid-template-columns: 1fr; } }

/* Modal system (offer detail + exit popup) */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(58,47,44,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%; max-width: 460px; max-height: 88vh; overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  transition: transform .25s ease;
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute; top: 14px; inset-inline-end: 14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--white); border: none; cursor: pointer;
  font-size: 1.3rem; line-height: 1; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--accent); color: var(--white); }

.offer-modal-media { height: auto; aspect-ratio: 16/9; }
.offer-modal-body { padding: 24px 26px 28px; }
.personal-modal-card { max-width: 640px; }
.personal-modal-body { padding-top: 44px; }
.personal-modal-format { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 18px; }
.personal-format-pill {
  font-family: inherit; cursor: pointer; font-size: .84rem; font-weight: 700;
  color: var(--accent-dark); background: var(--cream); border: 1.5px solid rgba(58,47,44,.15);
  border-radius: 999px; padding: 8px 16px; transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.personal-format-pill:hover { border-color: var(--accent); }
.personal-format-pill-selected { background: var(--accent); border-color: var(--accent); color: var(--white); }
.personal-modal-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blush); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.personal-modal-subtitle { font-weight: 800; font-size: .95rem; color: var(--ink); margin: 18px 0 10px; }
.personal-modal-steps { list-style: none; margin: 0 0 18px; display: flex; flex-direction: column; gap: 12px; counter-reset: step; }
.personal-modal-steps li {
  display: flex; flex-direction: column; gap: 2px;
  padding-inline-start: 34px; position: relative;
}
.personal-modal-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; inset-inline-start: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-size: .78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.personal-modal-steps strong { font-size: .92rem; color: var(--ink); }
.personal-modal-steps span { font-size: .84rem; color: var(--ink-soft); }
.personal-modal-tags { margin-bottom: 18px; }
.personal-modal-price { margin-bottom: 18px; }
.offer-modal-body h3 { font-size: 1.35rem; margin: 0 0 8px; }
.offer-modal-bullets { list-style: none; margin: 4px 0 18px; display: flex; flex-direction: column; gap: 9px; }
.offer-modal-bullets li {
  padding-inline-start: 20px; position: relative; font-size: .92rem; color: var(--ink);
}
.offer-modal-bullets li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .5em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.offer-modal-dates {
  background: var(--cream); border-radius: 12px;
  padding: 12px 16px; margin: 0 0 16px;
}
.offer-modal-dates-title { font-size: .78rem; font-weight: 700; color: var(--accent-dark); margin-bottom: 8px; }
.offer-modal-dates-soon {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--accent-dark);
}
.offer-modal-dates-soon svg { flex-shrink: 0; margin-top: 2px; }
.offer-modal-dates-soon p { margin: 0; font-size: .88rem; color: var(--ink-soft); line-height: 1.5; }
.offer-modal-dates-hint { font-size: .78rem; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.5; }
.offer-modal-dates-count { font-size: .74rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.session-counter {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: .8rem; font-weight: 700; color: var(--accent-dark); margin-bottom: 8px;
}
.session-clear {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: .74rem; font-weight: 600; color: var(--ink-soft); text-decoration: underline;
}
.session-clear:hover { color: var(--accent-dark); }
.session-tile-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px;
}
.session-tile {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 6px; border-radius: 12px;
  background: var(--white); border: 1.5px solid rgba(58,47,44,.15);
  cursor: pointer; transition: border-color .2s ease, background .2s ease, opacity .2s ease;
}
.session-tile:hover { border-color: var(--accent); }
.session-tile input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.session-tile-day { font-size: .68rem; font-weight: 700; color: var(--ink-soft); }
.session-tile-date { font-size: 1rem; font-weight: 800; color: var(--ink); line-height: 1.15; font-variant-numeric: tabular-nums; }
.session-tile-time { font-size: .68rem; font-weight: 600; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.session-tile-selected { background: var(--accent); border-color: var(--accent); }
.session-tile-selected .session-tile-day,
.session-tile-selected .session-tile-date,
.session-tile-selected .session-tile-time { color: var(--white); }
.session-tile-disabled { opacity: .4; cursor: not-allowed; }
.session-tile-disabled:hover { border-color: rgba(58,47,44,.15); }
.session-tile-disabled input { cursor: not-allowed; }
.session-later-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 10px; padding: 12px 14px; border-radius: 12px;
  border: 1.5px dashed var(--accent); background: var(--white); color: var(--accent-dark);
  font-family: inherit; font-size: .85rem; font-weight: 700; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.session-later-btn svg { flex-shrink: 0; }
.session-later-btn:hover { background: var(--blush); transform: translateY(-1px); }
.session-later-btn-selected { background: var(--accent); border-style: solid; border-color: var(--accent); color: var(--white); }
.session-later-btn-selected:hover { background: var(--accent-dark); }

.cohort-card-list { display: flex; flex-direction: column; gap: 8px; }
.cohort-card {
  position: relative; display: flex; flex-direction: column; gap: 3px;
  padding: 12px 16px; border-radius: 12px;
  background: var(--white); border: 1.5px solid rgba(58,47,44,.15);
  cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.cohort-card:hover { border-color: var(--accent); }
.cohort-card input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.cohort-card-day { font-size: .92rem; font-weight: 800; color: var(--ink); }
.cohort-card-range { font-size: .78rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.cohort-card-selected { background: var(--accent); border-color: var(--accent); }
.cohort-card-selected .cohort-card-day,
.cohort-card-selected .cohort-card-range { color: var(--white); }

.slot-option {
  position: relative; display: flex; flex-direction: column; gap: 8px;
  background: var(--white); border: 1.5px solid rgba(58,47,44,.15);
  border-radius: 12px; padding: 12px 14px; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.slot-option-dates span {
  font-size: .76rem; font-weight: 700; color: var(--ink-soft);
  background: var(--cream); border: 1px solid rgba(58,47,44,.1);
  padding: 3px 9px; border-radius: 999px; font-variant-numeric: tabular-nums;
}
.slot-option-later {
  margin-top: 10px;
  border-style: dashed;
  background: transparent;
}
.offer-modal-dates-list { display: flex; flex-wrap: wrap; gap: 8px; }
.date-tile {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  width: 92px; padding: 9px 6px; border-radius: 12px;
  background: var(--white); border: 1.5px solid rgba(58,47,44,.15);
  cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.date-tile input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: pointer;
}
.date-tile:has(input:checked),
.date-tile:has(input:checked) .date-tile-weekday,
.date-tile:has(input:checked) .date-tile-day,
.date-tile:has(input:checked) .date-tile-time,
.date-tile:has(input:checked) .date-tile-age,
.date-tile.date-tile-selected .date-tile-weekday,
.date-tile.date-tile-selected .date-tile-day,
.date-tile.date-tile-selected .date-tile-time,
.age-pill-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.age-pill {
  text-align: center;
  font-family: inherit; font-size: .8rem; font-weight: 700; color: var(--ink-soft);
  background: var(--white); border: 1.5px solid rgba(58,47,44,.15);
  padding: 10px 4px; border-radius: 12px; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.age-pill:hover { border-color: var(--accent); }
.age-pill-selected { background: var(--accent); border-color: var(--accent); color: var(--white); }
.offer-modal-quote {
  background: var(--blush); border-radius: 14px; padding: 16px 18px;
  margin: 0 auto 20px; max-width: 360px;
}
.offer-modal-quote p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 8px; }
.offer-modal-quote footer { font-size: .82rem; font-weight: 700; color: var(--accent-dark); }
.quote-meta { display: flex; align-items: center; justify-content: flex-start; gap: 8px; margin-bottom: 8px; }
.quote-label { font-size: .68rem; font-weight: 700; color: var(--ink-soft); }
.quote-stars { display: flex; align-items: center; gap: 2px; color: var(--accent); }
.offer-modal-actions { display: flex; flex-direction: column; gap: 10px; }
.offer-modal-actions .btn { width: 100%; }

.exit-popup-card { max-width: 420px; padding: 40px 32px 32px; text-align: center; }
.exit-popup-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--blush); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.exit-popup-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.exit-popup-card p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 22px; }
.exit-popup-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.exit-popup-form input {
  font-family: inherit; font-size: .94rem; text-align: center;
  background: var(--cream); border: 1.5px solid rgba(58,47,44,.14);
  border-radius: 999px; padding: 12px 16px;
}
.exit-popup-form input:focus { outline: none; border-color: var(--accent); }
.exit-popup-card .btn-primary { display: flex; width: 100%; margin-bottom: 14px; }
.exit-popup-dismiss {
  background: none; border: none; cursor: pointer;
  color: var(--ink-soft); font-size: .84rem; text-decoration: underline;
  font-family: inherit;
}

/* Image lightbox */
.lightbox-card { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-card img {
  max-width: 90vw; max-height: 90vh; display: block;
  border-radius: 12px; box-shadow: var(--shadow);
}
.lightbox-card .modal-close { top: -14px; inset-inline-end: -14px; }

/* Footer */
.footer { background: var(--accent-dark); color: var(--cream); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer p { font-size: .9rem; opacity: .85; }
.footer-voucher-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--cream); opacity: .8;
  border: 1px solid rgba(253,246,241,.3); border-radius: 999px;
  padding: 6px 14px; transition: opacity .2s ease, border-color .2s ease;
}
.footer-voucher-link:hover { opacity: 1; border-color: rgba(253,246,241,.6); }
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; gap: 10px; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
