/* ============================================================
   ÉÉN KEUZE — Gedeelde stijlen
   Design tokens, componenten, animaties, layout
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --bg:     #F9F5EF;
  --tekst:  #1E1714;
  --accent: #9B6B47;
  --goud:   #C4A265;
  --zacht:  #EDE5D8;
  --muted:  #8A7A6E;
  --licht:  #F3EDE3;
  --wit:    #FDFAF6;

  /* Rapport — Crème & Perzik palet (ingetogen, één warme familie) */
  --papier:        #F1E7D0;
  --ivoor:         #FDFAF5;
  --creme-zacht:   #FDFAF5;
  --perzik-zacht:  #FBEDE4;
  --nootmuskaat:   #FBEDE4;
  --espresso:      #3D2B20;
  --goud-diep:     #B8893A;
  --inkt:          #2A1F18;
  --aarde:         #6B5142;
  --mist:          #A89684;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== BASIS ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--tekst);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--tekst);
}

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

/* ===== UTILITY ===== */
.verborgen { display: none !important; }

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

.container-smal {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.sectie-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--goud);
  display: block;
  margin-bottom: var(--space-3);
}

.ornament-lijn {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--goud), transparent);
  margin: var(--space-3) auto;
}

.scheidingslijn {
  width: 100%;
  height: 1px;
  background: var(--zacht);
  border: none;
  margin: var(--space-5) 0;
}

/* ===== LOGO (tekstversie voor lichte achtergrond) ===== */
.logo-tekst {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--tekst);
  text-decoration: none;
  white-space: nowrap;
}

.logo-tekst:hover {
  color: var(--tekst);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--zacht);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

/* ===== KNOPPEN ===== */
.knop-primair {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.87rem;
  letter-spacing: 0.07em;
  color: var(--wit);
  background: var(--tekst);
  border: none;
  border-radius: 0;
  padding: 0.85rem 2.4rem;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  line-height: 1;
}

.knop-primair:hover {
  background: var(--accent);
  color: var(--wit);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(155, 107, 71, 0.38), 0 4px 12px rgba(155, 107, 71, 0.18);
}

.knop-primair:focus-visible {
  outline: 2px solid var(--goud);
  outline-offset: 3px;
}

.knop-primair:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.knop-primair:active {
  transform: translateY(0);
}

.knop-download {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--inkt);
  background: var(--ivoor);
  border: 1px solid rgba(184,137,58,0.32);
  border-radius: 28px;
  padding: 0.75rem 2rem;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 2px 6px rgba(184,137,58,0.10);
}

.knop-download:hover {
  transform: translateY(-1px);
  background: var(--creme-zacht);
  border-color: rgba(184,137,58,0.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 4px 14px rgba(184,137,58,0.18);
}

.knop-download:focus-visible {
  outline: 2px solid var(--goud-diep);
  outline-offset: 3px;
}

.knop-download:active {
  transform: translateY(0);
}

.knop-download:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.knop-terug {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0.4rem;
  cursor: pointer;
  transition: color 0.18s ease;
}

.knop-terug:hover {
  color: var(--tekst);
}

.knop-terug:focus-visible {
  outline: 2px solid var(--zacht);
  outline-offset: 2px;
}

/* ===== FORMULIER ===== */
.naam-input,
.open-veld {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--tekst);
  background: var(--wit);
  border: 1px solid var(--zacht);
  border-radius: 0;
  padding: 0.9rem 1rem;
  width: 100%;
  transition: border-color 0.18s ease;
}

.naam-input::placeholder,
.open-veld::placeholder {
  color: var(--muted);
  font-style: italic;
}

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

.naam-input.fout,
.open-veld.fout {
  border-color: #E74C3C;
}

.fout-tekst {
  color: #C0392B;
  font-size: 0.78rem;
  margin-top: var(--space-1);
  display: none;
}

.fout-tekst.zichtbaar {
  display: block;
}

.open-veld {
  min-height: 180px;
  resize: vertical;
}

/* ===== ANTWOORD-OPTIE ===== */
.optie {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.82rem 1.1rem;
  background: var(--wit);
  border: 1px solid var(--zacht);
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--tekst);
  margin-bottom: var(--space-2);
  text-align: left;
  width: 100%;
}

.optie:hover {
  border-color: var(--accent);
  background: var(--licht);
}

.optie.aan {
  border-color: var(--accent);
  background: var(--licht);
}

.optie:focus-visible {
  outline: 2px solid var(--goud);
  outline-offset: 2px;
}

.optie-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid #BFB0A5;
  flex-shrink: 0;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.optie.aan .optie-dot {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===== LIKERT ===== */
.likert-wrap {
  width: 100%;
}

.likert-schaal {
  display: flex;
  gap: var(--space-2);
  width: 100%;
  margin-bottom: var(--space-2);
}

.likert-knop {
  flex: 1;
  padding: 0.8rem 0.4rem;
  background: var(--wit);
  border: 1px solid var(--zacht);
  border-radius: 0;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--muted);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-align: center;
}

.likert-knop:hover {
  border-color: var(--accent);
  background: var(--licht);
  color: var(--tekst);
}

.likert-knop.aan {
  border-color: var(--accent);
  background: var(--licht);
  color: var(--tekst);
}

.likert-knop:focus-visible {
  outline: 2px solid var(--goud);
  outline-offset: 2px;
}

.likert-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== VOORTGANGSBALK ===== */
.balk-wrap {
  max-width: 580px;
  margin: 0 auto var(--space-5);
  padding: 0 var(--space-4);
}

.balk {
  width: 100%;
  height: 1px;
  background: var(--zacht);
  position: relative;
  overflow: hidden;
}

.balk-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--goud));
  width: 0%;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.balk-teller {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.73rem;
  color: var(--muted);
  text-align: right;
  margin-top: var(--space-3);
}

/* ===== SCHERMEN (analyse.html) ===== */
.scherm {
  display: none;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
}

.scherm.actief {
  display: flex;
}

/* ===== RAPPORT-HERO ===== */
.rapport-hero {
  background: linear-gradient(180deg, var(--ivoor) 0%, var(--bg) 100%);
  width: 100%;
  padding: var(--space-8) var(--space-5) var(--space-7);
  text-align: center;
  border-bottom: 1px solid rgba(184,137,58,0.14);
}

.rapport-hero-merktag {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: var(--space-4);
  display: block;
}

.rapport-hero-logo {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--goud-diep);
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto var(--space-6);
}

.rapport-hero-kop {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--inkt);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.rapport-hero-datum {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  color: var(--aarde);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding: 0 var(--space-4);
}

.rapport-hero-datum::before,
.rapport-hero-datum::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: rgba(184,137,58,0.45);
}
.rapport-hero-datum::before { right: 100%; }
.rapport-hero-datum::after  { left:  100%; }

/* ===== RAPPORT BODY ===== */
.rapport-body {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-4) var(--space-8);
  width: 100%;
}

.r-opening {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--zacht);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--tekst);
}

/* ===== LABEL-SYSTEEM — één consistente stijl voor alle uppercase-gouden labels ===== */
.r-sectie-label,
.r-week-info-kop,
.r-week-opdrachten-kop,
.r-kernzin-label {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--goud-diep);
  display: block;
}

.r-sectie-label     { margin-bottom: var(--space-2); }
.r-week-info-kop    { margin-bottom: 0.3rem; }
.r-week-opdrachten-kop { margin-bottom: var(--space-3); }
.r-kernzin-label    { margin-bottom: var(--space-4); letter-spacing: 0.28em; }

.r-sectie-kop {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--tekst);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.r-tekst {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--tekst);
}

.r-tekst p {
  margin-bottom: var(--space-3);
}

.r-lijn {
  width: 100%;
  height: 1px;
  background: var(--zacht);
  border: none;
  margin: var(--space-6) 0;
}

.r-kernzin {
  border-left: 2px solid var(--goud);
  background: var(--licht);
  padding: 1.2rem 1.5rem;
  border-radius: 0;
  margin: var(--space-5) 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--tekst);
}

.r-inzicht {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.r-inzicht-nr {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--goud);
  flex-shrink: 0;
  min-width: 1.5rem;
}

.r-inzicht-tekst {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--tekst);
}

/* ===== WEEK PLAN ===== */
.r-week-header {
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--zacht);
}

.r-week-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--goud);
  white-space: nowrap;
}

.r-week-thema {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--tekst);
  line-height: 1.3;
}

.r-week-context {
  background: var(--licht);
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--goud);
  margin: var(--space-3) 0;
}

.r-week-context-kop {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--goud);
  margin-bottom: var(--space-2);
}

.r-week-context-tekst {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--tekst);
}

.r-week-dagelijks {
  margin-top: var(--space-3);
  padding-top: 0.8rem;
  border-top: 1px solid var(--zacht);
}

.r-week-dagelijks-kop {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.r-week-dagelijks ul {
  list-style: none;
  padding: 0;
}

.r-week-dagelijks li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--tekst);
  padding-left: 1rem;
  position: relative;
  margin-bottom: var(--space-1);
}

.r-week-dagelijks li::before {
  content: '—';
  color: var(--goud);
  position: absolute;
  left: 0;
}

.r-week-nota {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--accent);
  margin-top: var(--space-2);
  font-style: italic;
}

/* ===== AFSLUITING & DISCLAIMER ===== */
.r-afsluiting {
  margin: var(--space-7) auto var(--space-6);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  max-width: 520px;
  position: relative;
}
.r-afsluiting::before,
.r-afsluiting::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--goud-diep), transparent);
  margin: 0 auto var(--space-4);
}
.r-afsluiting::after {
  margin: var(--space-4) auto 0;
}
.r-afsluiting p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.65;
  color: var(--aarde);
}

.r-disclaimer {
  margin-top: var(--space-5);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--zacht);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ===== LADEN SPINNER ===== */
.laden-scherm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: var(--space-5);
  text-align: center;
  padding: var(--space-4);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--zacht);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1.3s linear infinite;
}

.laden-bericht {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== LANDING PAGE ===== */
.lp-hero {
  padding: var(--space-7) var(--space-4) var(--space-6);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.lp-preheadline {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--goud);
  display: block;
  margin-bottom: var(--space-4);
}

.lp-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--tekst);
  margin-bottom: var(--space-3);
}

.lp-subkop {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.lp-herkenning-lijst {
  list-style: none;
  text-align: left;
  max-width: 480px;
  margin: var(--space-4) auto;
}

.lp-herkenning-item {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--tekst);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--zacht);
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  line-height: 1.6;
}

.lp-herkenning-item:last-child {
  border-bottom: none;
}

.lp-herkenning-item::before {
  content: '·';
  color: var(--goud);
  flex-shrink: 0;
}

.lp-privacy-noot {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: var(--space-3);
}

.lp-sectie {
  padding: var(--space-6) var(--space-4);
  max-width: 640px;
  margin: 0 auto;
}

.lp-sectie-kop {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
  color: var(--tekst);
  margin-bottom: var(--space-4);
}

.lp-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--tekst);
}

.lp-body p {
  margin-bottom: var(--space-3);
}

.lp-checklijst {
  list-style: none;
  margin: var(--space-4) 0;
}

.lp-checklijst li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--tekst);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--zacht);
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  line-height: 1.6;
}

.lp-checklijst li:last-child {
  border-bottom: none;
}

.lp-check-icon {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.85rem;
}

.lp-x-icon {
  color: var(--muted);
  flex-shrink: 0;
  font-size: 0.85rem;
}

.lp-stappen {
  counter-reset: stap;
  list-style: none;
  margin: var(--space-4) 0;
}

.lp-stap {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--zacht);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--tekst);
}

.lp-stap:last-child { border-bottom: none; }

.lp-stap-nr {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--goud);
  min-width: 2rem;
  line-height: 1;
  padding-top: 0.15rem;
}

.lp-citaat {
  border-left: 2px solid var(--goud);
  background: var(--licht);
  padding: 1.2rem 1.5rem;
  margin-bottom: var(--space-4);
  border-radius: 0;
}

.lp-citaat-tekst {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--tekst);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.lp-citaat-naam {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--muted);
}

.lp-prijs-kop {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
  color: var(--tekst);
  margin-bottom: var(--space-4);
}

.lp-prijs-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin: var(--space-4) 0;
}

.lp-faq-item {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--zacht);
}

.lp-faq-vraag {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--tekst);
  margin-bottom: var(--space-2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}

.lp-faq-antwoord {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.lp-sectie-donker {
  background: var(--tekst);
  color: var(--bg);
  padding: var(--space-7) var(--space-4);
  text-align: center;
}

.lp-sectie-donker .lp-sectie-kop {
  color: var(--bg);
}

.lp-sectie-donker .lp-body {
  color: var(--zacht);
}

.lp-afsluit-dikgedrukt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--bg);
  margin: var(--space-4) 0;
}

.lp-garantie-items {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: var(--space-3);
}

/* ===== KEUZE-METHODE BLOK ===== */
.keuze-methode {
  background: var(--licht);
  padding: var(--space-4) var(--space-5);
  border-left: 2px solid var(--goud);
  margin: var(--space-4) 0;
}

.keuze-methode-rij {
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
  padding: 0.4rem 0;
}

.keuze-methode-letter {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--goud);
  min-width: 1.5rem;
}

.keuze-methode-tekst {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--tekst);
}

/* ===== STICKY MOBILE CTA ===== */
.mobiel-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--tekst);
  padding: 0.8rem var(--space-4);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobiel-cta-tekst {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--bg);
  opacity: 0.8;
}

.mobiel-cta .knop-primair {
  font-size: 0.78rem;
  padding: 0.7rem 1.4rem;
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--licht);
  border-top: 1px solid var(--zacht);
  padding: var(--space-5) var(--space-4);
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--tekst);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
  display: block;
}

.footer-links {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: var(--space-3);
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-disclaimer {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto var(--space-3);
}

.footer-copyright {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.73rem;
  color: var(--muted);
}

/* ===== VRAAG SCHERM ===== */
.vraag-wrap {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-5) var(--space-4);
  animation: fadeUp 0.5s ease both;
}

.vraag-dimensie-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--goud);
  display: block;
  margin-bottom: var(--space-3);
}

.vraag-intro-tekst {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--zacht);
}

.vraag-tekst {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  line-height: 1.35;
  color: var(--tekst);
  margin-bottom: var(--space-4);
}

.vraag-navigatie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-5);
  gap: var(--space-3);
}

/* ===== INTROSCHERM ===== */
.intro-wrap {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-7) var(--space-4);
  text-align: center;
  animation: fadeUp 0.5s ease both;
}

.intro-kop {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
  color: var(--tekst);
  margin-bottom: var(--space-4);
}

.intro-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: var(--space-5);
  text-align: left;
}

.intro-body p {
  margin-bottom: var(--space-2);
}

.naam-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--goud);
  display: block;
  margin-bottom: var(--space-2);
  text-align: left;
}

/* ===== WELKOMST SCHERM ===== */
.welkomst-wrap {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-7) var(--space-4);
  text-align: center;
  animation: fadeUp 0.55s ease both;
}

/* Ademmoment scherm */
.adem-sierlijn {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--goud-diep), transparent);
  margin: var(--space-4) auto;
  animation: fadeUp 1s ease both;
}
.adem-zin {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  line-height: 1.5;
  color: var(--inkt);
  margin: var(--space-5) 0;
  animation: fadeUp 1.4s ease 0.3s both;
  opacity: 0;
  animation-fill-mode: forwards;
}
#knop-adem {
  opacity: 0.25;
  transition: opacity 800ms ease;
}
#knop-adem:not(:disabled) {
  opacity: 1;
}

/* ===== ANIMATIES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-up {
  animation: fadeUp 0.55s ease both;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .site-header {
    padding: var(--space-3);
  }

  .logo-tekst {
    font-size: 0.95rem;
  }

  .knop-primair {
    width: 100%;
    text-align: center;
  }

  .lp-hero {
    padding: var(--space-5) var(--space-3) var(--space-5);
  }

  .rapport-hero {
    padding: 3rem 1.2rem 2.5rem;
  }

  .mobiel-cta {
    display: flex;
  }

  .site-header .knop-primair {
    display: none;
  }

  .likert-schaal {
    gap: var(--space-1);
  }

  .likert-knop {
    padding: 0.7rem 0.2rem;
    font-size: 0.88rem;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
