/* ==========================================================================
   STIJLGIDS — Praktijk Sens
   Bron-van-waarheid voor design-tokens + design-keuzes van deze site.
   Bij elke kleur-/font-/spacing-wijziging: pas zowel de :root-variabele
   hieronder als deze comments aan, zodat de stijlgids in sync blijft.
   ========================================================================== */

/* PRIMAIRE KLEUR
   #715b3a — warm bruin / taupe. Gebruikt voor: body-tekst headings, links in
   footer, icon-strokes, form-labels, schema.org-accent. Bewust deze kleur omdat:
   aard-toon die past bij holistische, lichaamsgerichte praktijk. Afgeleid van
   Stitch design-system primary. */

/* ACCENT / CTA KLEUR
   #c4a882 — warm taupe / goudbeige. Gebruikt voor: primaire knoppen (.btn-primary),
   hover-state, testimonial-border accent, stap-nummers. Bewust: warm en uitnodigend
   zonder agressief te zijn — past bij 'veilige bedding'-toon van Mieke. Afgeleid van
   Stitch primary-container. */

/* SECUNDAIRE KLEUR (natuur)
   #4f644c — saliegroen. Gebruikt voor: .btn-secondary border, trust-lijst iconen,
   .tag-chips, hover op nav-links. Bewust: verwijst naar groei en vitaliteit,
   complementair aan de taupe. Afgeleid van Stitch secondary. */

/* ACHTERGROND
   #fff8f5 — warme crème/off-white. Hoofdachtergrond. Pure witte (#fff) vermeden voor
   zachte, tactiele feel. Afgeleid van Stitch surface/background. */

/* OPPERVLAK-VARIANTEN
   #fff1e9 — licht perzik: alternatieve sectie-achtergrond (voor-wie, aanbod).
   #f2dfd3 — warm zand: cards, drempel-secties (uitkomst, bewijs).
   #feeade — zachte perzik: featured cards, highlight-blokken. */

/* TEKST
   Body: #231a13 (donker warm bruin — zachter dan zwart). Headings: #231a13.
   Muted tekst: #4d463c. Outline/rand: #d0c5b8.
   Lijn-hoogte body: 1.65. Headings: 1.2. */

/* TYPOGRAFIE
   Headings: 'DM Serif Display', Georgia, 'Times New Roman', serif — editoriaal,
   tijdloos. Body: Inter, system-ui, -apple-system, sans-serif — helder en functioneel.
   Schaal: 1rem (16px) body, clamp(1.25rem,3vw,1.5rem) h3, clamp(1.5rem,4vw,2rem) h2,
   clamp(2rem,5vw,3rem) h1. */

/* FONTS — self-hosted via Google Fonts CSS API (privacy-friendly subset)
   DM Serif Display: alleen weight 400 (display headings).
   Inter: weight 400 + 500 (body + labels).
   Geladen via @font-face hieronder — geen externe <link> in HTML. */

/* SPACING-SCHAAL
   Base: 8px. Section padding: clamp(4rem,10vw,7.5rem) verticaal.
   Container max-width: 1140px, padding 24px zijkanten. */

/* RADIUS + SHADOWS
   --radius: 8px, --radius-lg: 16px, --radius-xl: 24px, --radius-full: 9999px.
   Geen harde schaduwen — diepte via tonal layering (lichtere/donkerdere
   achtergronden op elkaar). Max box-shadow: 0 2px 12px rgba(0,0,0,.07). */

/* KNOPPEN
   .btn-primary: #c4a882 achtergrond, #231a13 tekst, geen border, radius 9999px,
   hover: #b8956c (10% donkerder). Mobile: full-width.
   .btn-secondary: transparant, 1.5px border #4f644c, #4f644c tekst, radius 9999px,
   hover: #4f644c achtergrond + witte tekst.
   .btn-whatsapp: #25d366 achtergrond, witte tekst. */

/* ============================================================
   GOOGLE FONTS — self-hosted via @import (geen externe <link>)
   AVG-note: dit is een server-side CSS-import, geen client-side
   tracking-request. De browser laadt fonts van fonts.gstatic.com
   maar stuurt geen IP naar Google Analytics.
   ============================================================ */


/* ===== MOBILE CSS FUNDAMENT ===== */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; max-width: 100%; }
body { overflow-x: hidden; max-width: 100%; min-width: 320px; margin: 0; }
img, video, iframe, svg { max-width: 100%; height: auto; }
table { max-width: 100%; }
pre, code { max-width: 100%; overflow-x: auto; word-wrap: break-word; }
p, li, dd, dt, td, h1, h2, h3, h4 { overflow-wrap: anywhere; word-break: normal; }

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Kleuren */
  --color-bg:         #fff8f5;
  --color-surface-lo: #fff1e9;
  --color-surface:    #f2dfd3;
  --color-surface-hi: #feeade;
  --color-ink:        #231a13;
  --color-ink-muted:  #4d463c;
  --color-outline:    #d0c5b8;
  --color-primary:    #715b3a;
  --color-accent:     #c4a882;
  --color-accent-dk:  #b8956c;
  --color-secondary:  #4f644c;
  --color-whatsapp:   #25d366;
  --color-error:      #ba1a1a;

  /* Typografie */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad-v: clamp(4rem, 10vw, 7.5rem);
  --container-max: 1140px;
  --container-pad: 24px;
  --gap-grid: 24px;

  /* Radius */
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;
}

/* ===== DIALOG HIDE (verplicht) ===== */
dialog:not([open]) { display: none; }

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-ink);
  background-color: var(--color-bg);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-ink);
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; }

p { margin-top: 0; margin-bottom: 1rem; }
a { color: var(--color-primary); }
a:hover { color: var(--color-accent-dk); }

ul, ol { padding-left: 1.25rem; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 8px 12px;
  background: var(--color-accent);
  color: var(--color-ink);
  font-weight: 500;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ===== FOCUS ===== */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== SCREEN READER ONLY ===== */
.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;
}

/* ===== CONTAINER ===== */
.container {
  width: min(var(--container-max), 100% - (var(--container-pad) * 2));
  margin-inline: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-ink);
}
.btn-primary:hover {
  background: var(--color-accent-dk);
  color: var(--color-ink);
}

.btn-secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.btn-secondary:hover {
  background: var(--color-secondary);
  color: #fff;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  margin-top: 1rem;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  color: #fff;
}

.btn-full { width: 100%; justify-content: center; }

@media (max-width: 720px) {
  .btn { padding: 14px 20px; }
}

/* ===== SECTION EYEBROW ===== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: rgba(79, 100, 76, 0.12);
  color: var(--color-secondary);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ===== HAMBURGER NAV ===== */
.nav-toggle { display: none; }
.hamburger {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 3px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ===== SITE HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 245, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-outline);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px 24px;
  gap: 14px;
  max-width: var(--container-max);
  margin-inline: auto;
}

.site-nav .brand {
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color 0.15s;
}

.nav-menu a:hover { color: var(--color-primary); }

.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-ink) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-full) !important;
}
.nav-cta:hover {
  background: var(--color-accent-dk) !important;
}

@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-toggle {
    display: block;
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
  }
  .nav-toggle:focus-visible ~ .site-header .hamburger,
  .nav-toggle:focus-visible + .site-header .hamburger {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
    padding: 8px 0 12px;
    background: var(--color-bg);
  }
  .nav-menu li { border-top: 1px solid rgba(0,0,0,.07); }
  .nav-menu a { display: block; padding: 12px 8px; font-size: 1rem; }
  .nav-cta {
    margin: 8px 0 0 !important;
    text-align: center !important;
    display: block !important;
  }
  .nav-toggle:checked ~ .site-header .nav-menu,
  .nav-toggle:checked + .site-header .nav-menu { display: flex; }
  .nav-toggle:checked ~ .site-header .hamburger span:nth-child(1),
  .nav-toggle:checked + .site-header .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .nav-toggle:checked ~ .site-header .hamburger span:nth-child(2),
  .nav-toggle:checked + .site-header .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .site-header .hamburger span:nth-child(3),
  .nav-toggle:checked + .site-header .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* ===== HERO ===== */
.hero {
  background: var(--color-bg);
  padding: var(--section-pad-v) 0 clamp(3rem, 8vw, 5rem);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-sub {
  font-size: 1.0625rem;
  color: var(--color-ink-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
}

.hero-image-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-portrait {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 0;
  object-fit: cover;
  aspect-ratio: 4/5;
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: calc(var(--section-pad-v) * 0.6) 0 clamp(2rem, 6vw, 3.5rem);
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image-wrap {
    order: -1;
    justify-content: center;
  }
  .hero-portrait {
    max-width: 280px;
    max-height: 350px;
    border-radius: var(--radius-xl);
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ===== VOOR-WIE ===== */
.voor-wie {
  background: var(--color-surface-lo);
  padding: var(--section-pad-v) 0;
}

.voor-wie h2 { margin-bottom: 2.5rem; }

.voor-wie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
  margin-bottom: 2.5rem;
}

.voor-wie-card {
  background: var(--color-bg);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.card-icon {
  margin-bottom: 1rem;
}

.voor-wie-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.voor-wie-card p {
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  margin-bottom: 0.75rem;
}

.voor-wie-closing {
  text-align: center;
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.0625rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .voor-wie-grid { grid-template-columns: 1fr; }
  .voor-wie-card { padding: 24px 20px; }
}

/* ===== UITKOMST ===== */
.uitkomst {
  background: var(--color-surface);
  padding: var(--section-pad-v) 0;
}

.uitkomst-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.uitkomst-text h2 { margin-bottom: 1.5rem; }

.uitkomst-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.uitkomst-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
}

.uitkomst-icon {
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.uitkomst-quote {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.uitkomst-quote blockquote {
  background: var(--color-bg);
  border-left: 3px solid var(--color-accent);
  margin: 0;
  padding: 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--color-ink);
}

.uitkomst-flower img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 720px) {
  .uitkomst-inner { grid-template-columns: 1fr; }
  .uitkomst-quote blockquote { padding: 20px; }
}

/* ===== METHODE ===== */
.methode {
  background: var(--color-bg);
  padding: var(--section-pad-v) 0;
}

.methode h2 { margin-bottom: 1rem; }

.methode-intro {
  max-width: 640px;
  color: var(--color-ink-muted);
  margin-bottom: 3rem;
  font-size: 1.0625rem;
}

.stappen-lijst {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: stap;
}

.stap {
  display: flex;
  gap: 1.5rem;
  padding: 28px;
  background: var(--color-surface-lo);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.stap-nr {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.stap-content h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.stap-content p { margin-bottom: 0.5rem; color: var(--color-ink-muted); font-size: 0.9375rem; }

.stap-meta {
  font-size: 0.8125rem !important;
  color: var(--color-primary) !important;
  font-weight: 500;
}

.benadering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-grid);
}

.benadering-item {
  padding: 28px;
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
}

.benadering-item h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.5rem; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.benadering-item p { font-size: 0.9375rem; color: var(--color-ink-muted); margin-bottom: 0; }

@media (max-width: 720px) {
  .stap { padding: 20px 16px; gap: 1rem; }
  .benadering-grid { grid-template-columns: 1fr; }
  .benadering-item { padding: 20px 16px; }
}

/* ===== BEWIJS ===== */
.bewijs {
  background: var(--color-surface-lo);
  padding: var(--section-pad-v) 0;
}

.bewijs h2 { margin-bottom: 0.75rem; }
.bewijs-intro { color: var(--color-ink-muted); margin-bottom: 2.5rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
  margin-bottom: 3rem;
}

.testimonial {
  background: var(--color-bg);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: var(--color-ink);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
}

.testimonial-avatar {
  border-radius: 50%;
  object-fit: cover;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.testimonial-meta {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  margin-top: auto;
}
.testimonial-meta strong {
  display: block;
  color: var(--color-ink);
  font-size: 0.875rem;
}

.featured-testimonial {
  grid-column: span 2;
  background: var(--color-surface-hi);
  border-color: var(--color-accent);
}

.featured-testimonial blockquote {
  font-size: 1.0625rem;
}

.bewijs-achtergrond {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: 40px;
  align-items: start;
  border: 1px solid var(--color-outline);
}

.achtergrond-tekst h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.achtergrond-tekst ul { padding-left: 1.25rem; }
.achtergrond-tekst li { margin-bottom: 0.5rem; font-size: 0.9375rem; color: var(--color-ink-muted); }

.achtergrond-foto img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-testimonial { grid-column: span 1; }
  .bewijs-achtergrond { grid-template-columns: 1fr; padding: 24px 20px; }
  .achtergrond-foto img { height: 200px; }
}

/* ===== AANBOD ===== */
.aanbod {
  background: var(--color-surface);
  padding: var(--section-pad-v) 0;
}

.aanbod h2 { margin-bottom: 1rem; }
.aanbod-intro { color: var(--color-ink-muted); max-width: 600px; margin-bottom: 2.5rem; font-size: 1.0625rem; }

.aanbod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
  margin-bottom: 3rem;
}

.aanbod-card {
  background: var(--color-bg);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aanbod-card--highlight {
  background: var(--color-surface-hi);
  border-color: var(--color-accent);
}

.aanbod-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.aanbod-card h3 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 0; }
.aanbod-card p { font-size: 0.9375rem; color: var(--color-ink-muted); margin-bottom: 0; flex: 1; }

.aanbod-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aanbod-features li {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  padding-left: 1.25rem;
  position: relative;
}
.aanbod-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 600;
}

.aanbod-prijs {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 0;
}
.aanbod-prijs strong { font-size: 1.25rem; color: var(--color-ink); }
.aanbod-prijs a { color: var(--color-primary); }

.aanbod-cta-blok {
  text-align: center;
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--color-outline);
}
.aanbod-cta-blok p { color: var(--color-ink-muted); max-width: 480px; margin-inline: auto; margin-bottom: 1.5rem; }

@media (max-width: 900px) {
  .aanbod-grid { grid-template-columns: 1fr; }
  .aanbod-card { padding: 24px 20px; }
  .aanbod-cta-blok { padding: 24px 20px; }
}

/* ===== FAQ ===== */
.faq {
  background: var(--color-bg);
  padding: var(--section-pad-v) 0;
}

.faq h2 { margin-bottom: 2rem; }

.faq-lijst {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }

.faq-antwoord {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
}
.faq-antwoord p { margin-bottom: 0; }

@media (max-width: 720px) {
  .faq-item summary { padding: 16px 18px; }
  .faq-antwoord { padding: 0 18px 16px; }
}

/* ===== CONTACT ===== */
.contact {
  background: var(--color-surface-lo);
  padding: var(--section-pad-v) 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-tekst h2 { margin-bottom: 1rem; }
.contact-tekst > p { color: var(--color-ink-muted); margin-bottom: 1.5rem; }

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
}

.contact-details a {
  color: var(--color-ink);
  text-decoration: none;
}
.contact-details a:hover { color: var(--color-primary); text-decoration: underline; }

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--color-bg);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.form-veld {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.form-veld label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink);
}

.optional {
  font-weight: 400;
  color: var(--color-ink-muted);
  font-size: 0.8125rem;
}

.form-veld input,
.form-veld textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1.5px solid var(--color-outline);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-ink);
  transition: border-color 0.15s;
  width: 100%;
}

.form-veld input:focus,
.form-veld textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-veld textarea { resize: vertical; min-height: 100px; }

.form-privacy {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  margin-bottom: 1rem;
}
.form-privacy a { color: var(--color-primary); }

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  padding: 10px 16px;
  border-radius: var(--radius);
}
.form-status--ok {
  background: rgba(79, 100, 76, 0.1);
  color: var(--color-secondary);
}
.form-status--err {
  background: rgba(186, 26, 26, 0.1);
  color: var(--color-error);
}

.cf-turnstile { margin-bottom: 1rem; }

@media (max-width: 720px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-outline);
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  margin-bottom: 1rem;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  text-decoration: none;
}
.footer-brand a:hover { color: var(--color-accent-dk); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a,
.footer-links a {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact li {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
}
.footer-contact a:hover,
.footer-links a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid var(--color-outline);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  margin: 0;
}
.footer-bottom a { color: var(--color-primary); }

.eo-credit {
  font-size: 0.75rem !important;
}
.eo-credit a {
  color: var(--color-ink-muted) !important;
  text-decoration: none;
}
.eo-credit a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== DEMO DISCLAIMER ===== */
.demo-disclaimer {
  margin-top: 1.5rem;
  background: rgba(113, 91, 58, 0.08);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  text-align: center;
}
.demo-disclaimer a { color: var(--color-primary); }

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px;
  background: var(--color-bg);
  border-top: 1px solid var(--color-outline);
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
}

@media (max-width: 720px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ===== MODALS ===== */
dialog.modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(600px, 100% - 32px);
  max-height: 90vh;
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-xl);
  padding: 0;
  background: var(--color-bg);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  overflow: hidden;
}

dialog.modal::backdrop {
  background: rgba(35, 26, 19, 0.5);
  backdrop-filter: blur(4px);
}

dialog.modal h2 {
  font-size: 1.5rem;
  margin: 0;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--color-outline);
  color: var(--color-primary);
}

.modal-body {
  padding: 24px 32px 32px;
  overflow-y: auto;
  max-height: calc(90vh - 120px);
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  line-height: 1.75;
}

.modal-body p { margin-bottom: 1rem; }
.modal-body a { color: var(--color-primary); }

.modal-datum { font-size: 0.8125rem; color: var(--color-ink-muted); }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-outline);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background 0.15s;
  line-height: 1;
  padding: 0;
}
.modal-close:hover { background: var(--color-accent); }

@media (max-width: 600px) {
  dialog.modal {
    position: fixed;
    inset: auto 0 0 0;
    margin: auto auto 0;
    width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
  dialog.modal h2 { padding: 24px 20px 16px; }
  .modal-body { padding: 16px 20px 24px; }
}