/* Fonts worden in index.html geladen (link + preconnect) voor betrouwbaardere mobiele weergave */

/*
 * Hex-fallback laag voor in-app browsers (Facebook/Instagram WebView).
 * Sommige van deze browsers ondersteunen `hsl(var(--x) / 0.5)` (space-separated alpha) slecht of
 * het CSS-variabelen-systeem onbetrouwbaar; dan worden vlakken wit en knoppen onzichtbaar.
 * Daarom: vaste hex eerst, daarna nog steeds de var() versies in :root.
 */
html,
body {
  background-color: #FBF6EA;
  color: #3A372F;
}
.section--cream {
  background-color: #FCF8EE !important;
}
.section--blush {
  background-color: #F2DECB !important;
}
.section--blush::before {
  background-color: #FCF8EE !important;
}
.section--cream-deep {
  background-color: #EFE6D2 !important;
}
.section--sand {
  background-color: #ECD8BC !important;
}
.section--gradient-soft {
  background-color: #F4E6D0 !important;
  background-image: linear-gradient(180deg, #FBF5E5 0%, #F1DFC3 55%, #EAD3B5 100%);
}
.section--gradient-sage {
  background-color: #E2ECDB !important;
  background-image: linear-gradient(180deg, #E2ECDB 0%, #F2EAD0 48%, #E1D4BC 100%);
}
.section--hero {
  background-color: #F4ECD8 !important;
}
.stats-bar {
  background-color: #C9A858 !important;
  color: #3A372F;
}
.section--dark {
  background-color: #2A2722 !important;
  color: #FCF8EE;
}
.investment-card {
  background-color: #FFFFFF !important;
  color: #3A372F;
}
.booking-dialog__panel {
  background-color: #FCF8EE !important;
  color: #3A372F;
}
.booking-dialog__pricebox {
  background-color: #F2DECB !important;
}
.btn--primary {
  background-color: #3F6F48 !important;
  color: #FAF7F0 !important;
}
.pill-tag {
  background-color: #FFFFFF !important;
  color: #4A4434;
}
/* Bedankpagina: WhatsApp-knop is een primary CTA en moet niet wit blijven in FB/IG WebView */
.bedankt-whatsapp-btn {
  background-color: #3F6F48 !important;
  color: #FAF7F0 !important;
}
.upgrade-card {
  background-color: #FFFFFF !important;
  color: #3A372F;
}
.bedankt-video__frame {
  background-color: #EFE6D2 !important;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
iframe {
  max-width: 100%;
}

/*
 * Aspect-ratio fallback voor oude in-app browsers (Facebook/Instagram WebView op iOS < 15.4
 * en oude Android WebView). Als `aspect-ratio` niet werkt, valt het container-blok terug op
 * de natuurlijke verhouding van de foto en blijft de hele foto zichtbaar.
 */
@supports not (aspect-ratio: 1) {
  .testimonial img,
  .testimonial--light img,
  .testimonial-card__imgwrap,
  .testimonial-card__imgwrap img,
  .hero-video-frame,
  .hero-video-frame--square {
    aspect-ratio: auto !important;
    height: auto !important;
  }

  .testimonial-card__imgwrap {
    overflow: visible;
  }

  .testimonial-card__imgwrap img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-video-frame .hero-media__img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

:root {
  /* Brand neutrals & warmth (geen groen behalve knoppen) */
  --jade-tint: 98 31% 89%; /* #E2ECDB */
  --amber-tint: 46 81% 88%; /* #F7EBC8 */
  --ink-soft: 40 11% 21%; /* #3A372F */
  --ink-mute: 42 10% 38%; /* #6B6657 */
  --line: 38 40% 81%; /* #E1D4BC */

  --background: 46 52% 96%;
  --foreground: var(--ink-soft);
  --ink: var(--ink-soft);
  --cream: 45 45% 97%;
  --blush: 30 56% 89%;
  --sand: 33 55% 83%;
  --amber-400: 38 60% 59%;
  --amber: 41 73% 69%;
  --amber-deep: #c9a858;
  /* Jade — alleen primary knoppen / CTA-gradient */
  --jade: 132 32% 36%;
  --jade-deep: 132 35% 22%;
  --primary: 132 32% 36%;
  --primary-foreground: 40 60% 97%;
  --border: var(--line);
  --muted-foreground: var(--ink-mute);
  --shadow-soft: 0 10px 40px -10px hsl(40 20% 20% / 0.12);
  --shadow-elegant: 0 25px 60px -20px hsl(40 20% 15% / 0.22);
  --shadow-cta: 0 14px 30px -10px hsl(132 40% 22% / 0.45);
  --radius: 1rem;
  --gradient-hero: linear-gradient(
    135deg,
    hsl(var(--amber-tint) / 0.45) 0%,
    hsl(var(--jade-tint) / 0.65) 45%,
    hsl(var(--cream)) 100%
  );
  --gradient-cta: linear-gradient(135deg, hsl(132 32% 36%) 0%, hsl(132 35% 28%) 100%);
  --gradient-dark: linear-gradient(160deg, hsl(var(--ink-soft)) 0%, hsl(40 10% 14%) 100%);
  --space-section: clamp(3.5rem, 8vw, 6rem);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: Inter, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  /* Geen ss01: op sommige mobiele WebViews ontbreken glyph-substituten waardoor cijfers als □□ verschijnen */
  font-feature-settings: "kern";
  font-variant-numeric: lining-nums;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: hsl(var(--ink-soft));
  color: hsl(var(--cream));
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid hsl(var(--amber));
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: hsl(var(--ink));
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: hsl(var(--ink-soft));
}

:focus-visible {
  outline: 2px solid var(--amber-deep);
  outline-offset: 3px;
}

.container-narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-narrow--reserveren {
  max-width: min(52rem, 100%);
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}

.container-wide {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4.5vw, 1.5rem);
  padding-right: clamp(1rem, 4.5vw, 1.5rem);
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgb(255 255 255 / 0.75);
  backdrop-filter: blur(8px);
  color: hsl(var(--ink) / 0.85);
  box-shadow: var(--shadow-soft);
}

.accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--amber-deep);
}

/* Sterke zin in lopende tekst: rechtop, sans — Amber Deep (niet groen i.v.m. CTA) */
.standout-line {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  color: var(--amber-deep);
  line-height: 1.65;
  letter-spacing: -0.012em;
}

/* Inline accent (bijv. productnaam): zelfde kleur, rechtop, goed scannend */
span.standout-line {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  color: var(--amber-deep);
  letter-spacing: -0.012em;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: hsl(var(--foreground) / 0.85);
}

.lead .italic {
  font-style: normal;
  font-weight: 600;
  color: var(--amber-deep);
}

@media (min-width: 768px) {
  .lead {
    font-size: 1.25rem;
    line-height: 1.65;
  }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(var(--cream) / 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.6);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}

.logo-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
}

.logo-block:hover .logo {
  color: var(--amber-deep);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  color: hsl(var(--ink));
}

.logo__sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1rem;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: hsl(var(--muted-foreground));
}

.nav a:hover {
  color: hsl(var(--ink-soft));
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: hsl(var(--cream));
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-soft);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.5rem 0;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--amber));
  outline-offset: 3px;
}

/* Vaste fallback, daarna variabelen (oude WebViews / gebroken hsl) */
.btn--primary {
  background-color: #3f6f48;
  background-image: linear-gradient(135deg, #3f6f48 0%, #355c3d 100%);
  background-image: var(--gradient-cta);
  color: #faf7f0;
  color: hsl(var(--primary-foreground));
  box-shadow: 0 14px 30px -10px rgba(34, 78, 44, 0.42);
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  transform: translateY(-2px);
  color: #faf7f0;
  color: hsl(var(--primary-foreground));
}

.btn--ghost {
  background: hsl(0 0% 100% / 0.75);
  color: hsl(var(--ink));
  border: 1px solid hsl(var(--border));
}

.btn--ghost:hover {
  background: hsl(0 0% 100%);
}

/* ——— Sections ——— */
.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section--hero {
  position: relative;
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: var(--space-section);
  background: hsl(46, 45%, 94%);
  background: var(--gradient-hero);
  overflow: hidden;
}

.section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, hsl(var(--jade-tint) / 0.5), transparent);
  pointer-events: none;
}

.section--hero .container-narrow {
  position: relative;
  z-index: 1;
}

.section--blush {
  position: relative;
  background: hsl(var(--blush));
  padding-top: clamp(4rem, 10vw, 6rem);
}

.section--blush::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: hsl(var(--cream));
  clip-path: ellipse(75% 100% at 50% 0%);
  pointer-events: none;
}

.section--cream {
  background: hsl(var(--cream));
}

.section--dark {
  background: var(--gradient-dark);
  color: hsl(var(--cream));
}

.section--dark h2,
.section--dark h3 {
  color: hsl(var(--cream));
}

.section--dark .lead {
  color: hsl(var(--cream) / 0.88);
}

.section--dark .accent-italic {
  color: var(--amber-deep);
}

/* ——— Cards & lists ——— */
.check-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
}

.check-list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  background: hsl(0 0% 100% / 0.72);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s;
}

.check-list li:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-3px);
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: hsl(var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  color: hsl(var(--ink));
  font-weight: 700;
  font-size: 0.75rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .card-grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.75rem;
  background: hsl(0 0% 100% / 0.85);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.section--dark .card {
  background: hsl(0 0% 100% / 0.08);
  border: 1px solid hsl(0 0% 100% / 0.12);
  color: hsl(var(--cream) / 0.92);
}

.section--dark .card h3 {
  color: hsl(var(--cream));
}

/* ——— Media ——— */
.media-row {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .media-row {
    grid-template-columns: 1fr 1fr;
  }
}

.media-row img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
}

.figure-caption {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.75rem;
  text-align: center;
}

.video-shell {
  position: relative;
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  background: hsl(var(--ink-soft));
  aspect-ratio: 16 / 9;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: hsl(var(--cream));
  background: linear-gradient(135deg, hsl(var(--ink-soft)), hsl(40 10% 16%));
}

/* ——— Testimonials ——— */
.testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 639px) {
  .testimonial img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }
}

.testimonial__meta {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.section--dark .testimonial__meta {
  color: hsl(var(--cream) / 0.75);
}

.testimonial__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

/* ——— Pricing / CTA band ——— */
.price-box {
  max-width: 36rem;
  margin: 2rem auto 0;
  padding: 2rem;
  text-align: center;
  background: hsl(0 0% 100% / 0.9);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-elegant);
}

.price-box .price {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  color: var(--amber-deep);
  line-height: 1;
  margin: 0.5rem 0 1rem;
}

.price-box .strike {
  text-decoration: line-through;
  opacity: 0.65;
  font-size: 1rem;
  font-weight: 400;
}

.not-for {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: hsl(0 70% 45% / 0.08);
  border-left: 4px solid hsl(0 55% 45%);
  font-size: 0.95rem;
}

/* ——— Footer ——— */
.site-footer {
  padding: 2.5rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  border-top: 1px solid hsl(var(--border));
}

.site-footer a {
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.font-semibold {
  font-weight: 600;
}

.leading-snug {
  line-height: 1.4;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.stack-sm > * + * {
  margin-top: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.divider {
  height: 1px;
  background: hsl(var(--border));
  margin: 2rem 0;
  border: 0;
}

/* ——— Hero (twee kolommen + video, match met live pagina) ——— */
.hero-grid {
  display: grid;
  gap: 2.5rem 3rem;
  align-items: center;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 3.5rem;
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }
}

.hero-copy {
  max-width: 40rem;
}

@media (min-width: 1024px) {
  .hero-copy {
    max-width: none;
  }
}

.hero-kicker {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: hsl(var(--foreground) / 0.72);
  margin: 1.35rem 0 0;
  max-width: 36rem;
}

.hero-title {
  margin: 1.15rem 0 0;
  max-width: 42rem;
}

.hero-subline {
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.62;
  color: hsl(var(--foreground) / 0.82);
  margin: 1.1rem 0 0;
  max-width: 40rem;
}

.hero-supporting {
  font-family: var(--font-sans);
  font-size: clamp(0.8125rem, 1.45vw, 0.9375rem);
  line-height: 1.55;
  color: hsl(var(--foreground) / 0.7);
  margin: 1rem 0 0;
  max-width: 40rem;
}

.hero-accent-line {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.5vw, 1.5rem);
  line-height: 1.4;
  color: var(--amber-deep);
  margin: 1.5rem 0 0;
}

.hero-cta-stack {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
}

.hero-cta-stack .btn {
  order: 1;
  flex: 0 0 auto;
}

.hero-cta-stack .hero-cta-note {
  order: 2;
}

.hero-cta-note {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.6);
  font-feature-settings: normal;
  font-variant-numeric: lining-nums;
}

.hero-cta-note--wide {
  max-width: min(36rem, 100%);
  line-height: 1.55;
}

.pill-tag--icon {
  display: inline-flex;
  align-items: center;
}

.pill-icon {
  flex-shrink: 0;
  color: hsl(38 60% 50%);
}

.hero-media {
  position: relative;
}

.hero-video-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(28px);
  z-index: 0;
}

.hero-video-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  background: hsl(var(--cream));
}

.hero-video-frame--square {
  aspect-ratio: 1 / 1;
  max-height: min(85vw, min(72vh, 28rem));
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-video-frame--square {
    max-height: none;
  }
}

.hero-video-frame iframe,
.hero-video-frame .hero-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobiel: hele foto zichtbaar (geen zware crop). Desktop: strakker kader met cover. */
.hero-video-frame .hero-media__img {
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 1024px) {
  .hero-video-frame .hero-media__img {
    object-fit: cover;
    object-position: center center;
  }
}

/* ——— Stats-balk (Amber Deep) ——— */
.stats-bar {
  background: #c9a858;
  background: var(--amber-deep);
  color: hsl(var(--ink-soft));
  padding: 1.15rem 1.25rem;
}

.stats-bar .stat-label {
  color: hsl(var(--ink-soft) / 0.88);
  opacity: 1;
}

.stats-bar .stat-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--ink-soft));
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .stats-bar .stat-svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .stats-bar {
    padding: 1.25rem 1.25rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stat-item--award .stat-value {
  white-space: nowrap;
  font-size: clamp(0.92rem, 1.35vw, 1.32rem);
  letter-spacing: -0.02em;
}

@media (max-width: 380px) {
  .stat-item--award .stat-value {
    font-size: 0.82rem;
    letter-spacing: -0.03em;
  }
}

.stat-icon {
  color: hsl(var(--amber));
  font-size: 1.15rem;
  line-height: 1;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  margin: 0;
  font-weight: 500;
  font-feature-settings: normal;
  font-variant-numeric: lining-nums;
}

.stats-bar .stat-value {
  font-weight: 600;
}

.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.88;
  margin: 0;
  font-feature-settings: normal;
  font-variant-numeric: lining-nums;
}

.stat-label--mixed {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  font-feature-settings: normal;
}

.stat-label--wrap {
  max-width: min(12.5rem, 100%);
  line-height: 1.4;
}

/* ——— Subtle hero-animatie ——— */
.animate-fade-up {
  animation: fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-fade-up--delay {
  animation-delay: 0.12s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .animate-fade-up--delay {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.section--hero .container-wide {
  position: relative;
  z-index: 1;
}

/* ——— Formule-stappen ——— */
.formule-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.025em;
}

.formule-step {
  margin-top: 3.5rem;
}

.formule-step:first-of-type {
  margin-top: 2.5rem;
}

.formule-step__heading {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.formule-step__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
  color: hsl(var(--amber-400));
}

.formule-step__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin: 0;
  font-weight: 500;
}

.formule-step__intro {
  margin: 0.35rem 0 0;
  font-size: 1.0625rem;
  color: hsl(var(--muted-foreground));
}

.formule-step__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .formule-step__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .formule-step__grid--reverse .formule-step__body {
    order: -1;
  }
}

.formule-step__grid img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
}

.callout-box {
  border-radius: 0.85rem;
  border: 1px solid hsl(var(--line));
  background: hsl(var(--cream));
  padding: 1.25rem 1.35rem;
  margin-top: 1rem;
}

.callout-box__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--amber-deep);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.callout-box p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.62;
  color: hsl(var(--foreground) / 0.88);
}

.callout-box p:last-child {
  margin-bottom: 0;
}

.callout-box__note {
  margin-top: 0.65rem !important;
  padding-top: 0.35rem;
  font-size: 0.875rem !important;
  font-style: normal;
  color: hsl(var(--foreground) / 0.72) !important;
}

.callout-box--treatment-flow {
  margin-top: 1.35rem;
  padding: 1.35rem 1.45rem 1.45rem;
  background: linear-gradient(165deg, hsl(0 0% 100% / 0.92) 0%, hsl(40 45% 97% / 0.88) 100%);
  box-shadow: 0 12px 36px -18px hsl(40 18% 18% / 0.14);
}

/* ——— Testimonials (lichte kaarten) ——— */
.section--testimonials {
  background: linear-gradient(180deg, hsl(var(--blush)) 0%, hsl(var(--sand)) 100%);
}

.testimonials-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 1.25rem 0 0;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: hsl(var(--ink));
}

.testimonials-press {
  margin-top: 3rem;
  text-align: center;
}

.testimonials-press__quote {
  margin: 0;
}

.testimonials-press__source {
  margin: 0.65rem 0 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.78);
  line-height: 1.45;
}

.testimonial--light {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: hsl(var(--cream));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsl(41 73% 69% / 0.22);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.testimonial--light:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 55px -15px hsl(40 20% 15% / 0.2);
}

.testimonial--light img {
  border-radius: 0;
  margin-bottom: 0;
  aspect-ratio: 4 / 5;
}

.testimonial--light .testimonial__meta {
  padding: 1.25rem 1.75rem 0;
  margin-bottom: 0.35rem;
}

.testimonial--light .testimonial__title {
  padding: 0 1.75rem;
  margin-bottom: 0.65rem;
}

.testimonial--light p:last-of-type {
  padding: 0 1.75rem 1.75rem;
  margin: 0;
  flex-grow: 1;
}

/* ——— Over Carinda grid ——— */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 2fr 3fr;
    gap: 3rem 3.5rem;
  }
}

.about-grid__img {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .about-grid__img {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.about-grid__img img {
  display: block;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-elegant);
}

@media (min-width: 640px) {
  .about-grid__img img {
    max-height: min(52vh, 420px);
    object-fit: cover;
    object-position: center 18%;
  }
}

@media (min-width: 1024px) {
  .about-grid__img img {
    max-height: min(62vh, 480px);
    object-position: center 15%;
  }
}

.about-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  margin: 1.25rem 0 0;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.aanbod-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.offer-heading-sub {
  margin: 0.85rem 0 0;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  color: var(--amber-deep);
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.offer-heading-tagline {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ——— Page shell (match React sections) ——— */
.hero-section {
  position: relative;
  isolation: isolate;
}

.hero-bg-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 60% at 15% 20%, hsl(var(--jade-tint) / 0.75), transparent 55%),
    radial-gradient(ellipse 80% 50% at 85% 30%, hsl(var(--amber-tint) / 0.55), transparent 50%),
    radial-gradient(ellipse 70% 40% at 50% 100%, hsl(var(--line) / 0.45), transparent 45%);
}

.hero-section .hero-grid {
  position: relative;
  z-index: 1;
}

.hero-unmuted {
  color: hsl(var(--foreground) / 0.92);
}

.section-pad {
  padding-top: clamp(3.5rem, 10vw, 5.75rem);
  padding-bottom: clamp(3.25rem, 9vw, 5.75rem);
}

@media (min-width: 768px) {
  .section-pad {
    padding-top: clamp(4.75rem, 10vw, 7.5rem);
    padding-bottom: clamp(3.75rem, 8vw, 5.75rem);
  }
}

.section--gradient-sage {
  background: linear-gradient(
    180deg,
    hsl(var(--jade-tint)) 0%,
    hsl(var(--amber-tint) / 0.85) 48%,
    hsl(var(--line) / 0.65) 100%
  );
}

.section--gradient-soft {
  background: linear-gradient(180deg, hsl(40 58% 96%) 0%, hsl(33 48% 90%) 55%, hsl(30 50% 88%) 100%);
}

.section--cream-deep {
  background: hsl(38 42% 91%);
}

.section--sand {
  background: hsl(var(--sand));
}

.section--divider-top-cream {
  position: relative;
}

.section--divider-top-cream::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
  background: hsl(var(--cream));
  clip-path: ellipse(72% 100% at 50% 0%);
  transform: translateY(-65%);
  pointer-events: none;
}

.section--divider-top-blush {
  position: relative;
}

.section--divider-top-blush::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
  background: hsl(var(--blush));
  clip-path: ellipse(72% 100% at 50% 0%);
  transform: translateY(-58%);
  pointer-events: none;
}

.section--divider-top-sage {
  position: relative;
}

.section--divider-top-sage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
  background: linear-gradient(180deg, hsl(var(--jade-tint)) 0%, hsl(var(--amber-tint)) 100%);
  clip-path: ellipse(72% 100% at 50% 0%);
  transform: translateY(-58%);
  pointer-events: none;
}

.section-heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.3vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 1rem 0 0;
}

h1.section-heading-lg {
  font-size: clamp(1.85rem, 4.3vw, 3rem);
  line-height: 1.12;
}

.section-heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0;
}

.feeling-quote {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
  margin: 2rem 0;
  padding: 1.5rem 1.35rem;
  border-left: 4px solid var(--amber-deep);
  background: hsl(0 0% 100% / 0.55);
  border-radius: 0 0.85rem 0.85rem 0;
}

.why-highlight-box {
  margin: 0;
  padding: 1.15rem 1.35rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
  background: hsl(0 0% 100% / 0.72);
  border-radius: 0.85rem;
  border: 1px solid hsl(var(--line));
  box-shadow: var(--shadow-soft);
  color: var(--amber-deep);
}

.why-standout-box {
  margin-top: 0.5rem;
  padding: 1.75rem 1.5rem;
  background: var(--amber-deep);
  color: hsl(var(--ink-soft));
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  line-height: 1.45;
}

.why-standout-box p {
  margin: 0 0 0.75rem;
  color: inherit;
}

.why-standout-box p:last-child {
  margin-bottom: 0;
}

.why-standout-box .standout-line {
  color: hsl(var(--ink-soft));
}

/* Utility spacing / type (Tailwind-like class names used in HTML) */
.space-y-7 > * + * {
  margin-top: 1.75rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.text-muted-85 {
  color: hsl(var(--foreground) / 0.85);
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-16 {
  margin-top: 4rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.375rem;
  line-height: 1.35;
}

.leading-relaxed {
  line-height: 1.625;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-ink {
  color: hsl(var(--ink));
}

.text-amber-ui {
  color: hsl(38 58% 48%);
}

.italic {
  font-style: italic;
}

@media (min-width: 768px) {
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

.stat-svg {
  display: block;
  margin: 0 auto 0.35rem;
}

.check-list--for-you li {
  align-items: flex-start;
}

.check-list--for-you .check-icon {
  margin-top: 0.2rem;
}

/* Method steps (Elim formule) */
.method-steps {
  margin-top: 3rem;
}

.method-step {
  margin-top: 3.5rem;
}

.method-step:first-child {
  margin-top: 2rem;
}

.method-step__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .method-step__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .method-step__grid--reverse .method-step__text {
    order: -1;
  }
}

.method-step__img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
}

.method-step__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1;
  color: hsl(var(--amber-400));
  margin-bottom: 0.35rem;
}

.method-step__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.55rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: hsl(var(--ink));
}

.method-step__intro {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
}

.method-step__body p {
  margin-bottom: 1rem;
}

.method-step__body p:last-child {
  margin-bottom: 0;
}

/* Offer */
.offer-card {
  margin-top: 2.25rem;
  padding: 2rem 1.75rem;
  background: hsl(0 0% 100% / 0.88);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsl(var(--border) / 0.65);
}

.offer-card__lead {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 500;
  margin: 0 0 1.25rem;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.45);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.offer-list li:last-child {
  border-bottom: none;
}

.offer-check {
  flex-shrink: 0;
  display: flex;
  margin-top: 0.15rem;
}

.offer-bonus {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(40 60% 97%) 0%, hsl(91 20% 92%) 100%);
  border: 1px solid hsl(var(--amber-400) / 0.35);
}

.offer-bonus__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin: 0 0 0.25rem;
}

.offer-bonus__title {
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
}

.offer-bonus__text {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.88);
}

.offer-bonus__tag {
  margin: 0.75rem 0 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 600;
  color: var(--amber-deep);
  line-height: 1.45;
}

.for-whom-note {
  margin-top: 0.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 0.85rem;
  border-left: 3px solid hsl(var(--amber-400));
  background: hsl(38 42% 91%);
  font-style: normal;
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* Testimonial cards */
.testimonial-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: hsl(var(--cream));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsl(41 73% 69% / 0.22);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px -15px hsl(40 20% 15% / 0.2);
}

.testimonial-card__imgwrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ECD8BC;
  background: hsl(var(--sand));
}

.testimonial-card__imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

@media (max-width: 639px) {
  .testimonial-card__imgwrap {
    aspect-ratio: auto;
    height: auto;
  }
  .testimonial-card__imgwrap img {
    height: auto;
    object-fit: contain;
  }
}

.testimonial-card__body {
  padding: 1.35rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.stars {
  color: hsl(38 60% 50%);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.testimonial-card__quote-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0.65rem;
  color: hsl(var(--ink));
}

.testimonial-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: hsl(var(--foreground) / 0.88);
  flex: 1;
}

/* Close / investment */
.close-heading {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.close-copy {
  margin: 2rem auto 0;
  max-width: 40rem;
  text-align: left;
}

.close-copy p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.close-copy p:last-child {
  margin-bottom: 0;
}

.investment-card {
  margin: 2.75rem auto 0;
  width: 100%;
  max-width: 42rem;
  padding: 2rem clamp(1.15rem, 4vw, 2rem);
  text-align: left;
  background: hsl(0 0% 100% / 0.92);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsl(var(--border) / 0.55);
}

.investment-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin: 0 0 0.5rem;
}

.investment-card__title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: hsl(var(--ink));
}

.investment-card__lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.82);
}

.investment-card__rule {
  border: 0;
  border-top: 1px solid hsl(var(--border));
  margin: 1.25rem 0;
}

.investment-card__sub {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.investment-card__sub--spacing {
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: hsl(var(--ink) / 0.85);
}

.investment-card__price {
  font-size: clamp(2.25rem, 5vw, 2.85rem);
  font-weight: 600;
  color: var(--amber-deep);
  margin: 0 0 1rem;
  line-height: 1;
}

.investment-card__body p {
  margin-bottom: 0.85rem;
  font-size: 1rem;
  line-height: 1.62;
}

.investment-card__body p:last-child {
  margin-bottom: 0;
}

.investment-card__cta {
  margin-top: 1.75rem;
  text-align: center;
}

.investment-card__note {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.btn--block {
  display: flex;
  width: 100%;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 639px) {
  .hero-cta-stack {
    gap: 1rem;
  }

  .hero-cta-stack .btn {
    width: 100%;
    justify-content: center;
  }

  .btn--block {
    max-width: none;
  }
}

/* Footer ink variant */
.site-footer--ink {
  background: hsl(var(--ink-soft));
  color: hsl(var(--cream) / 0.78);
  border-top: none;
  padding: 2.75rem 1.25rem;
}

.site-footer--ink a {
  color: hsl(var(--cream));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-top {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-copyright {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.92;
}

.footer-disclaimer-wrap {
  width: 100%;
  max-width: 40rem;
  padding-top: 1rem;
  margin: 0 auto;
  border-top: 1px solid hsl(var(--cream) / 0.14);
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: hsl(var(--cream) / 0.52);
  text-wrap: balance;
}

@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .footer-top .footer-brand {
    text-align: left;
  }

  .footer-top .footer-copyright {
    text-align: right;
  }
}

.footer-brand {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--cream));
  margin: 0;
}

/* ——— Booking popup (LeadConnector + msgsndr embed) ——— */
.booking-dialog {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.5rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.5rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  box-sizing: border-box;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.booking-dialog.booking-dialog--closed {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.booking-dialog:not(.booking-dialog--closed) {
  visibility: visible;
}

.booking-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: hsl(var(--ink-soft) / 0.82);
  cursor: pointer;
}

.booking-dialog__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(48rem, 100%);
  max-height: min(92vh, 100dvh - 1rem);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: hsl(var(--cream));
  border-radius: 1.15rem;
  box-shadow: var(--shadow-elegant);
}

.booking-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  height: 2.35rem;
  width: 2.35rem;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background: hsl(var(--blush));
  color: hsl(var(--ink));
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.booking-dialog__close:hover {
  opacity: 0.85;
}

.booking-dialog__close:focus-visible {
  outline: 2px solid hsl(var(--amber));
  outline-offset: 3px;
}

.booking-dialog__inner {
  padding: 1.25rem 1.15rem 1.25rem;
}

/* Upgrade-popup alleen iframe: geen titel/sluitregel, compactere rand */
.booking-dialog__inner--upgrade-only {
  padding-top: 0.65rem;
}

.booking-dialog__inner--upgrade-only .booking-dialog__iframe-wrap {
  margin-top: 0;
}

@media (min-width: 768px) {
  .booking-dialog__inner {
    padding: 1.75rem 2rem 2rem;
    padding-top: 1.35rem;
  }

  .booking-dialog__inner--upgrade-only {
    padding-top: 0.85rem;
  }
}

.booking-dialog__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  color: hsl(var(--ink));
  margin: 0;
  padding-right: 2.75rem;
}

.booking-dialog__subtitle {
  margin: 0.5rem 0 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 600;
  color: var(--amber-deep);
  line-height: 1.45;
}

.booking-dialog__copy {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.62;
}

.booking-dialog__copy > p {
  margin-bottom: 1rem;
}

.booking-dialog__list-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1rem 0 0.5rem;
}

.booking-dialog__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-dialog__list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.booking-dialog__list li:last-child {
  margin-bottom: 0;
}

.booking-dialog__bullet {
  flex-shrink: 0;
  color: hsl(38 58% 48%);
  font-size: 0.85rem;
  line-height: 1.6;
}

.booking-dialog__pricebox {
  margin-top: 1.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: hsl(var(--blush));
}

.booking-dialog__price-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(38 58% 48%);
}

.booking-dialog__pricebox p {
  margin: 0 0 0.75rem;
}

.booking-dialog__price {
  display: block;
  margin: 0.65rem 0;
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
  color: hsl(var(--ink));
}

.booking-dialog__price-note {
  margin: 0 0 0.5rem !important;
  font-size: 1rem !important;
}

.booking-dialog__slots {
  margin: 0 !important;
  font-size: 0.875rem !important;
  color: hsl(var(--foreground) / 0.72) !important;
}

.booking-dialog__iframe-wrap {
  margin-top: 0.85rem;
  height: clamp(380px, 52vh, 640px);
  min-height: 360px;
  overflow: hidden;
  border-radius: 0.85rem;
  background: hsl(0 0% 100% / 0.88);
  box-shadow: inset 0 0 0 1px hsl(var(--border) / 0.5);
}

@media (min-width: 768px) {
  .booking-dialog__iframe-wrap {
    margin-top: 1rem;
    height: clamp(440px, 50vh, 660px);
  }
}

.booking-dialog__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.booking-dialog__title--long {
  font-size: clamp(1.05rem, 3.4vw, 1.45rem);
  line-height: 1.3;
}

.booking-dialog__subtitle--upgrade {
  margin-top: 0.85rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.88);
}

.booking-dialog__iframe-wrap--upgrade {
  height: clamp(402px, 50vh, 520px);
  min-height: 402px;
}

@media (min-width: 768px) {
  .booking-dialog__iframe-wrap--upgrade {
    height: clamp(430px, 48vh, 540px);
  }
}

/* ——— Behandeling: substappen & lichttherapie ——— */
.treatment-stap-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--ink-soft));
  margin: 1.35rem 0 0.5rem;
  line-height: 1.35;
}

.treatment-stap-title:first-of-type {
  margin-top: 0.25rem;
}

.treatment-follow-block {
  margin-top: 2rem;
  max-width: 42rem;
}

.treatment-follow-block .treatment-stap-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

.treatment-follow-block > p:not(.treatment-audience) {
  margin: 0 0 1.05rem;
}

.treatment-impact-stack {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.treatment-impact-line {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
  color: hsl(var(--ink-soft));
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  border-left: 3px solid var(--amber-deep);
  background: hsl(var(--jade-tint) / 0.4);
  border-radius: 0 0.65rem 0.65rem 0;
}

.treatment-audience {
  margin: 1.75rem 0 0;
  padding: 1.1rem 1.25rem;
  border-radius: 0.85rem;
  background: hsl(var(--amber-tint) / 0.32);
  border: 1px solid hsl(var(--line));
  font-size: 0.98rem;
  line-height: 1.58;
  color: hsl(var(--foreground) / 0.9);
}

.treatment-audience__label {
  font-weight: 600;
  color: hsl(var(--ink-soft));
}

.therapy-stats-list {
  margin: 0.65rem 0 0;
  padding-left: 1.35rem;
  list-style: disc;
  color: hsl(var(--foreground) / 0.88);
  font-size: 0.98rem;
  line-height: 1.58;
}

.therapy-stats-list li {
  margin-bottom: 0.45rem;
}

.therapy-stats-list li:last-child {
  margin-bottom: 0;
}

.investment-value-list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
}

.investment-value-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  line-height: 1.55;
  color: hsl(var(--foreground) / 0.88);
}

.investment-value-list li:last-child {
  margin-bottom: 0;
}

.investment-value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-deep);
}

/* ——— Veelgestelde vragen ——— */
.faq-section {
  margin: 3rem auto 0;
  max-width: 40rem;
  text-align: left;
}

.faq-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 1.75rem;
  color: hsl(var(--ink));
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: 0.85rem;
  border: 1px solid hsl(var(--border) / 0.65);
  background: hsl(0 0% 100% / 0.55);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
  color: hsl(var(--ink));
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  border-radius: 2px;
  background: var(--amber-deep);
  transform: rotate(45deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid hsl(var(--border) / 0.45);
  background: hsl(var(--blush) / 0.35);
}

.faq-item[open] summary::before {
  background: var(--amber-deep);
}

.faq-answer {
  margin: 0;
  padding: 0.9rem 1.15rem 1.15rem 1.15rem;
  font-size: 0.98rem;
  line-height: 1.62;
  color: hsl(var(--foreground) / 0.88);
}

.faq-answer a {
  color: hsl(var(--ink-soft));
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--amber-deep);
}

/* ——— Bedankpagina ——— */
.bedankt-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.85rem;
}

.bedankt-confirm {
  text-align: center;
}

.bedankt-confirm__lead {
  margin: 1.25rem auto 1.75rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.82);
}

.bedankt-byline {
  margin: 1.75rem 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.7);
}

.bedankt-whatsapp-btn {
  text-align: center;
  max-width: 22rem;
}

.bedankt-whatsapp-btn svg {
  flex-shrink: 0;
}

/* Upgrade-card: extra visuele aandacht binnen section--gradient-soft */
.upgrade-card {
  margin: 2.5rem auto 0;
  max-width: 44rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: #ffffff;
  background: hsl(0 0% 100% / 0.95);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsl(var(--border) / 0.55);
}

.upgrade-card__mechanism {
  margin: 0 0 1.25rem;
}

.upgrade-card__mechanism p {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: hsl(var(--foreground) / 0.86);
}

.upgrade-card__mechanism p:last-child {
  margin-bottom: 0;
}

.upgrade-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid hsl(var(--border) / 0.55);
}

.upgrade-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.45);
  font-size: 1.02rem;
  line-height: 1.55;
  color: hsl(var(--foreground) / 0.9);
}

.upgrade-list li:last-child {
  border-bottom: none;
}

.upgrade-check {
  flex-shrink: 0;
  display: flex;
  margin-top: 0.18rem;
  color: hsl(38 60% 59%);
}

.upgrade-investment {
  margin-top: 1.85rem;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  background: #fbf6ea;
  background: hsl(46 52% 96%);
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.5);
}

.upgrade-investment__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin: 0 0 0.85rem;
}

.upgrade-pricerow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.78);
}

.upgrade-pricerow + .upgrade-pricerow {
  border-top: 1px dashed hsl(var(--border) / 0.6);
}

.upgrade-pricerow--mute .upgrade-pricerow__price {
  text-decoration: line-through;
  color: hsl(var(--foreground) / 0.55);
}

.upgrade-pricerow__label {
  flex: 1;
  min-width: 0;
}

.upgrade-pricerow__price {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.upgrade-final {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 0.95rem;
  margin-top: 0.65rem;
  border-top: 1px solid hsl(var(--border));
}

.upgrade-final__label {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--ink));
}

.upgrade-final__amount {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.2vw, 2.35rem);
  font-weight: 500;
  color: var(--amber-deep);
  line-height: 1;
}

.upgrade-gift {
  margin: 1rem 0 0;
  font-size: 0.93rem;
  color: hsl(var(--foreground) / 0.75);
  line-height: 1.55;
}

.upgrade-cta {
  margin-top: 1.85rem;
  text-align: center;
}

.upgrade-cta .btn--block {
  max-width: none;
  width: 100%;
  white-space: normal;
  line-height: 1.35;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

a.upgrade-cta__btn,
a.btn.btn--primary.btn--block {
  text-decoration: none;
}

.upgrade-cta__notes {
  margin: 1rem 0 0;
}

.upgrade-cta__note {
  margin: 0.25rem 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Eén-zin testimonial onderaan bedankpagina */
.bedankt-quote {
  max-width: 38rem;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.bedankt-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 500;
  line-height: 1.45;
  color: hsl(var(--ink) / 0.92);
  margin: 0;
  quotes: none;
}

.bedankt-quote__attr {
  margin: 1.1rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: hsl(var(--foreground) / 0.7);
}

/* Video-frame: 16:9 in moderne browsers, valt netjes terug op vaste hoogte in oude WebViews */
.bedankt-video {
  margin: 2rem auto 0;
  max-width: 44rem;
}

/* Inline-variant: zit binnen de upgrade-card en moet dichter bij de CTA staan */
.bedankt-video--inline {
  margin-top: 1.5rem;
  max-width: none;
}

.bedankt-video__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 500;
  text-align: center;
  color: hsl(var(--ink) / 0.85);
}

.bedankt-video__frame {
  position: relative;
  width: 100%;
  /* Standaard 16:9 (andere pagina’s); bedankt gebruikt --adilo */
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #efe6d2;
  background: hsl(var(--cream-deep, 38 36% 88%));
  box-shadow: var(--shadow-elegant);
}

/* Adilo embed: 1280×1180 zoals door Adilo geleverd (niet 16:9) */
.bedankt-video__frame--adilo {
  padding-bottom: calc(1180 / 1280 * 100%);
  max-width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
}

.bedankt-video__adilo-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@supports (aspect-ratio: 16 / 9) {
  .bedankt-video__frame:not(.bedankt-video__frame--adilo) {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 16 / 9;
  }
}

@supports (aspect-ratio: 1280 / 1180) {
  .bedankt-video__frame--adilo {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 1280 / 1180;
  }
}

.bedankt-video__frame iframe,
.bedankt-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.bedankt-video__fallback {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: hsl(var(--foreground) / 0.7);
}

.bedankt-video__fallback a {
  color: #3F6F48;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.bedankt-video__fallback a:hover {
  color: #355c3d;
}
