/* ============== Fonts ============== */
@font-face {
  font-family: "LT Superior";
  src: url("font/LT_superior_serif/LTSuperiorSerif-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "LT Superior";
  src: url("font/LT_superior_serif/LTSuperiorSerif-Medium.otf") format("opentype");
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "LT Superior";
  src: url("font/LT_superior_serif/LTSuperiorSerif-Semibold.otf") format("opentype");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "LT Superior";
  src: url("font/LT_superior_serif/LTSuperiorSerif-Bold.otf") format("opentype");
  font-weight: 700; font-display: swap;
}

/* ============== Tokens ============== */
:root {
  --bg:        #FAF5EE;
  --bg-warm:   #F2EAE0;
  --bg-deep:   #1E1A2C;          /* donker, met heel lichte paars-ondertoon (geen bruin) */
  --surface:   #FFFFFF;

  --ink:       #2A211C;
  --ink-soft:  #6B5D54;
  --ink-mute:  #6B5D54;
  --ink-faint: #9B8C82;

  --line:      #E8DCCF;
  --line-soft: #F0E6DB;
  --line-dark: rgba(250, 245, 238, 0.16);

  --accent:    #C68B6E;
  --accent-dk: #8A5A44;
  --accent-tn: #EFD9CB;

  --whatsapp:  #25D366;

  --shadow:    0 1px 2px rgba(42, 33, 28, 0.04), 0 8px 32px rgba(138, 90, 68, 0.06);
  --shadow-lg: 0 1px 2px rgba(42, 33, 28, 0.04), 0 24px 64px rgba(138, 90, 68, 0.12);

  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --font-serif: "LT Superior", "Cormorant Garamond", "Times New Roman", serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
}

/* ============== Base ============== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Compenseer sticky header zodat anchor-targets niet onder de header verdwijnen */
  scroll-padding-top: 88px;
  /* Voorkom horizontale overflow door decoratieve achtergrond-orbs op smal scherm */
  overflow-x: hidden;
  /* Voorkom dat iOS auto-tekst opschaalt bij rotate */
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (max-width: 720px) {
  html { scroll-padding-top: 72px; }
}
img { display: block; max-width: 100%; }
a   { color: inherit; }
p   { margin: 0 0 1em; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.1;  letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }
h4 { font-size: 19px; line-height: 1.3; }

.italic-accent { font-style: italic; font-weight: 400; color: var(--accent-dk); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dk);
  background: var(--bg-warm);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.eyebrow.on-dark {
  color: #FAF5EE;
  background: rgba(250, 245, 238, 0.1);
  border-color: rgba(250, 245, 238, 0.18);
}

.container        { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 800px;  margin: 0 auto; padding: 0 28px; }
@media (max-width: 480px) {
  .container,
  .container-narrow { padding: 0 20px; }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: #FAF5EE;
}
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { background: var(--surface); border-color: var(--accent); }
.btn-on-dark {
  background: #FAF5EE;
  color: var(--ink);
}
.btn-on-dark:hover { background: var(--accent-tn); }
.btn-ghost-dark {
  background: transparent; color: #FAF5EE;
  border-color: rgba(250, 245, 238, 0.4);
}
.btn-ghost-dark:hover { border-color: #FAF5EE; background: rgba(250, 245, 238, 0.06); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: #1FB955; transform: translateY(-1px); }
.btn-whatsapp svg { color: #fff; }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============== Header (strak) ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(18px);
  background: rgba(250, 245, 238, 0.82);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { position: relative; }
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: inline-flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  line-height: 1;
  justify-self: start;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.brand-sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}
.nav {
  display: flex; gap: 32px; align-items: center;
  justify-self: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s ease;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { justify-self: end; }

/* Hamburger — verborgen op desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px; height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  justify-self: end;
  margin-left: 8px;
  transition: background .2s ease, border-color .2s ease;
}
.nav-toggle:hover { background: var(--surface); border-color: var(--accent); }
.nav-toggle span {
  display: block;
  position: relative;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }
  /* Mobile nav: full-width drawer onder de header */
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 245, 238, 0.98);
    backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--line-soft);
    padding: 8px 0 12px;
    box-shadow: 0 12px 32px rgba(42, 33, 28, 0.08);
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 14px 28px;
    font-size: 16px;
    color: var(--ink);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header { position: sticky; }
}

/* CTA in header op heel smal scherm: laat tekst inkorten zodat het past naast hamburger */
@media (max-width: 480px) {
  .header-inner { padding: 14px 0; gap: 6px; }
  .header-cta {
    padding: 10px 14px;
    font-size: 13px;
  }
  .header-cta .arrow { display: none; }
  .brand-sub { font-size: 9.5px; letter-spacing: 0.2em; }
}
@media (max-width: 380px) {
  .brand-sub { display: none; }
}

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}
@media (max-width: 720px) { .hero { padding: 56px 0 48px; } }

.bg-orb {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
.bg-orb-hero {
  width: 480px;
  top: -120px; left: -160px;
  background: url("images/background-4.avif") center/contain no-repeat;
  aspect-ratio: 1720/1214;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero h1 .ribbon {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dk);
}
.hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-top: 24px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 420px) {
  .hero .hero-cta { flex-direction: column; align-items: stretch; }
  .hero .hero-cta .btn { justify-content: center; }
}
.hero-meta {
  margin-top: 40px;
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  flex-wrap: wrap;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 560px) {
  /* Hou de hero-visual op mobiel iets compacter zodat ie niet half-scherm vult */
  .hero-visual { aspect-ratio: 1/1; max-width: 420px; margin: 0 auto; }
}
.hero-visual .orb {
  position: absolute; inset: -10%;
  background: url("images/background-2.avif") center/cover no-repeat;
  filter: saturate(0.9);
}
.hero-visual .grain {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 90%, rgba(255, 245, 235, 0.55), transparent 60%);
}
.hero-card {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  display: flex; gap: 14px; align-items: center;
}
.hero-card .badge {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4CAF6A;
  box-shadow: 0 0 0 4px rgba(76, 175, 106, 0.18);
  flex-shrink: 0;
}
.hero-card-content strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.hero-card-content span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============== Section base ============== */
section { padding: 90px 0; position: relative; }
@media (max-width: 720px) { section { padding: 60px 0; } }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-head h2 { margin-top: 16px; }
.section-head p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 12px;
}

/* ============== Promises (op cream/wit) ============== */
.promises {
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 820px) {
  .promises-grid { grid-template-columns: 1fr; gap: 28px; }
}
.promise { display: flex; gap: 16px; align-items: flex-start; }
.promise-icon {
  width: 42px; height: 42px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--accent-dk);
}
.promise h4 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  color: var(--ink);
}
.promise p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ============== For who ============== */
.for-who { background: var(--bg); }
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .for-who-grid { grid-template-columns: 1fr; gap: 48px; }
}
.chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 8px;
}
.chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease;
}
@media (hover: hover) {
  .chip:hover { border-color: var(--accent); transform: translateY(-1px); }
}
.for-who-cta {
  margin-top: 32px;
  padding: 22px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; gap: 16px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.for-who-cta strong {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  color: var(--ink);
}
.for-who-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: url("images/background-3.avif") center/cover;
  box-shadow: var(--shadow);
}

/* ============== Testimonial ============== */
.testimonial-section {
  background: var(--bg-warm);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  background: url("images/background-3.avif") center/contain no-repeat;
  top: -120px; left: -120px;
  opacity: 0.45;
  pointer-events: none;
}
.testimonial-section::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  background: url("images/background-2.avif") center/contain no-repeat;
  bottom: -180px; right: -160px;
  opacity: 0.35;
  pointer-events: none;
}
.testimonial {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial .quote-mark {
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: -16px;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.testimonial cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============== Testimonial grid (cards) ============== */
.testimonial-grid-section { background: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.testimonial-card .quote-mark {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 22px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.005em;
}
.testimonial-card cite {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  font-style: normal;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.testimonial-card cite::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
}
.testimonial-card--accent {
  background: var(--bg-warm);
}
.testimonial-card--accent blockquote {
  font-size: 24px;
  font-style: italic;
}
@media (hover: hover) {
  .testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-tn);
    box-shadow: var(--shadow);
  }
}

/* ============== Result ============== */
.result-section { background: var(--bg); }
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .result-grid { grid-template-columns: 1fr; gap: 48px; }
}
.result-visual {
  aspect-ratio: 4/5;
  background: url("images/background-2.avif") center/cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.result-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, transparent 40%, rgba(42, 33, 28, 0.12) 100%);
  pointer-events: none;
}
.result-stat {
  position: absolute;
  inset: auto auto 24px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.result-stat .number {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--accent-dk);
  line-height: 1;
}
.result-stat .label {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============== Steps ============== */
.steps-section { background: var(--surface); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
@media (hover: hover) {
  .step:hover {
    transform: translateY(-4px);
    border-color: var(--accent-tn);
    box-shadow: var(--shadow);
  }
}
.step-num {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--accent);
  background: var(--bg-warm);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-weight: 500;
  border: 1px solid var(--line);
}
.step h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ============== Why here ============== */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
@media (hover: hover) {
  .why-card:hover {
    border-color: var(--accent-tn);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
}
.why-card .why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-warm);
  color: var(--accent-dk);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.why-card p { color: var(--ink-soft); margin: 0; font-size: 15px; }

/* ============== FAQ ============== */
.faq-section { background: var(--surface); }
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line-soft); }
.faq-item:last-of-type { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 26px;
  color: var(--accent);
  transition: transform .25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent-dk); }
.faq-answer {
  padding: 0 0 26px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
}

/* ============== CTA ============== */
.cta-section {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .cta-section { padding: 64px 0; } }
.cta-section::before {
  content: "";
  position: absolute;
  width: 700px; aspect-ratio: 4/3;
  background: url("images/background-4.avif") center/contain no-repeat;
  left: -10%; bottom: -30%;
  opacity: 0.5;
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 500px; aspect-ratio: 1/1;
  background: url("images/background-2.avif") center/contain no-repeat;
  right: -10%; top: -20%;
  opacity: 0.35;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  z-index: 1;
}
.cta-inner h2 { margin: 16px 0 16px; }
.cta-inner p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-bottom: 32px;
}
/* Op smal scherm: knoppen full-width + zachtjes stacken */
@media (max-width: 560px) {
  .cta-inner .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-inner .hero-cta .btn { justify-content: center; }
}
.cta-avatar {
  display: block;
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  border: 4px solid var(--surface);
  box-shadow: var(--shadow);
}
.cta-avatar-name {
  display: block;
  margin: -6px auto 18px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============== Footer (uitgebreid, donker) ============== */
.site-footer {
  background: var(--bg-deep);
  color: rgba(250, 245, 238, 0.7);
  padding: 80px 0 32px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
.footer-brand .brand { color: #FAF5EE; }
.footer-brand .brand-name { color: #FAF5EE; }
.footer-brand .brand-sub { color: rgba(250, 245, 238, 0.45); }
.footer-blurb {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.5;
  color: rgba(250, 245, 238, 0.72);
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FAF5EE;
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.footer-col a {
  color: rgba(250, 245, 238, 0.7);
  text-decoration: none;
  transition: color .2s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: #FAF5EE; }
.footer-col p { margin: 0; color: rgba(250, 245, 238, 0.7); line-height: 1.65; }
.footer-col p + p { margin-top: 10px; }
.footer-col .wa-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--whatsapp);
  flex-shrink: 0;
}
.footer-social {
  margin-top: 22px;
  display: flex; gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(250, 245, 238, 0.08);
  color: rgba(250, 245, 238, 0.85);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  background: rgba(250, 245, 238, 0.16);
  color: #FAF5EE;
  transform: translateY(-1px);
}
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  color: rgba(250, 245, 238, 0.45);
  font-size: 13px;
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(250, 245, 238, 0.5); text-decoration: none; }
.footer-bottom a:hover { color: #FAF5EE; }

/* ============== Page header (sub-pages) ============== */
.page-header {
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: url("images/background-4.avif") center/contain no-repeat;
  top: -200px; right: -180px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  max-width: 720px;
}
.page-header .lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 620px;
  margin-top: 20px;
}

/* ============== Booking page ============== */
.booking-section { padding: 40px 0 110px; }
.booking-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
}

.booking-form {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}
@media (max-width: 560px) {
  .booking-form { padding: 24px 20px; border-radius: var(--radius); }
}
.booking-form h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
}
.booking-form .form-sub {
  color: var(--ink-mute);
  font-size: 15px;
  margin: 0 0 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.field label .optional {
  color: var(--ink-faint);
  font-weight: 400;
  margin-left: 6px;
  font-size: 12px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  /* 16px minimum voorkomt auto-zoom op iOS bij focus. */
  font-size: 16px;
  color: var(--ink);
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color .2s ease, background .2s ease;
  min-height: 48px;
}
.field textarea { min-height: 120px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 560px) { .radio-group { grid-template-columns: 1fr 1fr; } }
.radio-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card:hover { border-color: var(--accent); }
.radio-card:has(input:checked) {
  background: var(--ink);
  color: #FAF5EE;
  border-color: var(--ink);
}

.form-actions {
  display: flex; gap: 12px; align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.form-actions small {
  color: var(--ink-mute);
  font-size: 13px;
}
@media (max-width: 480px) {
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { justify-content: center; }
  .form-actions small { text-align: center; }
}

/* Side info */
.booking-side {
  display: flex; flex-direction: column; gap: 20px;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
}
.info-card.dark {
  background: var(--ink);
  color: #FAF5EE;
  border-color: transparent;
}
.info-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 14px;
}
.info-card.dark h4 { color: #FAF5EE; }
.info-card p { margin: 0 0 12px; color: var(--ink-soft); font-size: 15px; }
.info-card.dark p { color: rgba(250, 245, 238, 0.78); }
.info-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.info-card li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.info-card.dark li { color: rgba(250, 245, 238, 0.85); }
.info-card .check {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-card.dark .check { color: var(--accent-tn); }

.contact-line {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  transition: color .2s ease;
}
.contact-line + .contact-line { border-top: 1px solid var(--line-soft); }
.contact-line .ci {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--bg-warm);
  color: var(--accent-dk);
  flex-shrink: 0;
}
.contact-line.whatsapp .ci {
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp);
}
.contact-line strong { display: block; font-weight: 500; }
.contact-line span { display: block; font-size: 13px; color: var(--ink-mute); }
.contact-line:hover { color: var(--accent-dk); }

/* ============== Animations & micro-interactions ============== */

/* 1. Scroll-reveal — secties die zacht inkomen */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Zacht stagger-effect voor children met .reveal-stagger op container */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }

/* 2. Hero-card badge — zachte ademende puls op het groene status-bolletje */
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(76, 175, 106, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(76, 175, 106, 0.06); }
}
.hero-card .badge { animation: badge-pulse 3.6s ease-in-out infinite; }

/* Hero-card zelf — heel zachte ademing */
@keyframes card-breathe {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.hero-card { animation: card-breathe 7s ease-in-out infinite; }

/* 3. Hero-visual orb — heel langzame drift + scale */
@keyframes orb-drift {
  0%, 100% { transform: scale(1)    translate(0, 0)   rotate(0deg); }
  50%      { transform: scale(1.04) translate(-1.5%, 1%) rotate(0.6deg); }
}
.hero-visual .orb { animation: orb-drift 18s ease-in-out infinite; will-change: transform; }

/* 4. Background-orbs — trage drift voor bg-orb-hero, page-header::before, cta::before/::after */
@keyframes bg-orb-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(2%, -1.5%) rotate(2deg); }
}
.bg-orb-hero { animation: bg-orb-drift 24s ease-in-out infinite; will-change: transform; }

@keyframes bg-orb-drift-alt {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-1.5%, 2%) rotate(-2deg); }
}
.page-header::before { animation: bg-orb-drift 28s ease-in-out infinite; will-change: transform; }
.cta-section::before { animation: bg-orb-drift 30s ease-in-out infinite; will-change: transform; }
.cta-section::after  { animation: bg-orb-drift-alt 26s ease-in-out infinite; will-change: transform; }

/* 5. Card hover-microinteracties — accent-lijn die zacht verschijnt + icon-glide */
.step { position: relative; }
.step::after {
  content: "";
  position: absolute;
  left: 28px; right: 28px; bottom: 18px;
  height: 1px;
  background: var(--accent-tn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}
.step:hover::after { transform: scaleX(1); }
.step-num { transition: transform .3s ease, background .3s ease, color .3s ease; }
.step:hover .step-num {
  transform: translateY(-2px);
  background: var(--accent-tn);
  color: var(--accent-dk);
}

.why-card::after {
  content: "";
  position: absolute;
  left: 32px; right: 32px; bottom: 22px;
  height: 1px;
  background: var(--accent-tn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon { transition: transform .4s cubic-bezier(.22, .61, .36, 1), background .3s ease; }
.why-card:hover .why-icon {
  transform: translateY(-2px) rotate(-3deg);
  background: var(--accent-tn);
}

/* Chip — accentpunt links die in glide bij hover */
.chip {
  position: relative;
  padding-left: 18px;
}
.chip::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: translate(-6px, -50%);
  transition: opacity .25s ease, transform .25s ease;
}
@media (hover: hover) {
  .chip:hover { padding-left: 26px; }
  .chip:hover::before { opacity: 1; transform: translate(0, -50%); }
}

/* 6. Knop-shimmer — heel subtiel licht dat over .btn-primary glijdt bij hover */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(250, 245, 238, 0.18) 50%,
    transparent 100%
  );
  transition: left .9s cubic-bezier(.22, .61, .36, 1);
  pointer-events: none;
  z-index: 0;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary > * { position: relative; z-index: 1; }

/* 7. Smooth FAQ accordion — vervangt snap-open van <details> */
.faq-item summary { user-select: none; }
.faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0;
  transition: grid-template-rows .4s cubic-bezier(.22, .61, .36, 1),
              padding .4s cubic-bezier(.22, .61, .36, 1),
              opacity .4s ease;
  opacity: 0;
}
.faq-item .faq-answer > * { min-height: 0; }
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 0 26px;
  opacity: 1;
}
.faq-item.is-open summary::after { transform: rotate(45deg); }

/* 8. Form-field focus-animaties op afspraakpagina */
.field { position: relative; }
.field label {
  transition: color .25s ease, transform .25s ease;
  transform-origin: left center;
}
.field:focus-within label { color: var(--accent-dk); }
.field input,
.field select,
.field textarea {
  position: relative;
  transition: border-color .25s ease, background .25s ease, box-shadow .3s ease, transform .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 4px rgba(198, 139, 110, 0.12);
}

/* Radio-card — zachte scale-in van checked state */
.radio-card { transition: border-color .2s ease, background .25s cubic-bezier(.22, .61, .36, 1), color .25s ease, transform .2s ease; }
.radio-card:hover { transform: translateY(-1px); }
.radio-card:has(input:checked) { transform: translateY(-1px); }

/* Counter — number kleine in-fade na reveal */
.result-stat .number {
  transition: opacity .5s ease;
}

/* Eyebrow dot — heel zacht pulserend */
@keyframes eyebrow-dot-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.7; }
}
.eyebrow::before { animation: eyebrow-dot-pulse 3.5s ease-in-out infinite; }

/* ============== Legal pages ============== */
.legal-section {
  padding: 20px 0 110px;
  background: var(--bg);
}
@media (max-width: 720px) { .legal-section { padding: 8px 0 64px; } }

.legal-disclaimer {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 40px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.legal-disclaimer::before {
  content: "i";
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent-dk);
  border: 1px solid var(--line);
  font-size: 15px;
  line-height: 1;
}

.legal-toc {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 56px;
}
.legal-toc h2 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin: 0 0 16px;
}
.legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  counter-reset: toc-counter;
}
@media (max-width: 640px) {
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-toc { padding: 22px; }
}
.legal-toc li {
  counter-increment: toc-counter;
  font-size: 14.5px;
}
.legal-toc a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  transition: color .2s ease;
}
.legal-toc a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 22px;
}
.legal-toc a:hover { color: var(--accent-dk); }

.legal-article {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}
.legal-article:last-of-type { margin-bottom: 0; }
.legal-article h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  line-height: 1.2;
}
.legal-article h2 .num {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  margin-right: 10px;
  font-size: 0.85em;
}
.legal-article h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-article p,
.legal-article ul,
.legal-article ol {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal-article ul,
.legal-article ol {
  padding-left: 22px;
}
.legal-article li { margin-bottom: 6px; }
.legal-article li::marker { color: var(--accent); }
.legal-article a {
  color: var(--accent-dk);
  text-decoration: underline;
  text-decoration-color: var(--accent-tn);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s ease;
}
.legal-article a:hover { text-decoration-color: var(--accent); }
.legal-article strong { color: var(--ink); font-weight: 600; }

.legal-todo {
  display: inline-block;
  background: var(--accent-tn);
  color: var(--accent-dk);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin: 0 4px;
  vertical-align: 2px;
}

.legal-contact {
  margin-top: 72px;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-align: center;
}
.legal-contact h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
}
.legal-contact p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 16px;
}
.legal-contact a.btn { margin: 0; }

/* ============== Reduced motion — RESPECT ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-card,
  .hero-visual .orb,
  .bg-orb-hero,
  .page-header::before,
  .cta-section::before,
  .cta-section::after,
  .hero-card .badge,
  .eyebrow::before {
    animation: none !important;
  }
  .btn-primary::before { display: none; }
}
