/* ==========================================================
   ONSBREIN.NL — stylesheet
   Ontwerp: rustig, voorspelbaar, leesbaar. Gemaakt vóór een
   publiek dat vaak overprikkeld raakt door drukke interfaces.
   ========================================================== */

:root {
  /* --- Kleuren --- */
  --inkt:        #1F2A44;   /* hoofdtekst / navigatie */
  --inkt-zacht:  #47536B;
  --mist:        #EEF1EE;   /* pagina-achtergrond */
  --mist-donker: #E1E6E1;
  --wit:         #FFFFFF;
  --zee:         #3E7C7C;   /* primaire accentkleur */
  --zee-donker:  #2C5C5C;
  --zee-licht:   #DDEBEA;
  --zand:        #D9A441;   /* secundaire accent / highlights */
  --zand-licht:  #F6E8C9;
  --koraal:      #E8735C;   /* call-to-action / belangrijk */
  --koraal-donker: #C85A44;
  --lijn:        #D7DBD4;

  /* --- Typografie --- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Atkinson Hyperlegible', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --stap-1: 0.875rem;
  --stap-2: 1rem;
  --stap-3: 1.15rem;
  --stap-4: 1.4rem;
  --stap-5: 1.9rem;
  --stap-6: 2.6rem;
  --stap-7: 3.4rem;

  /* --- Ruimte & vorm --- */
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --schaduw: 0 8px 24px rgba(31, 42, 68, 0.08);
  --duur: 220ms;

  /* --- Sensoriemodus schaalfactoren (standaard uit) --- */
  --tekst-schaal: 1;
  --beweging: 1;
}

/* ---------- Sensoriemodus: grote tekst ---------- */
html.groter-tekst { --tekst-schaal: 1.22; }

/* ---------- Sensoriemodus: rustig (minder beweging) ---------- */
html.rustige-modus * {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

/* ---------- Sensoriemodus: hoog contrast ---------- */
html.hoog-contrast {
  --inkt: #000000;
  --inkt-zacht: #000000;
  --mist: #FFFFFF;
  --mist-donker: #F0F0F0;
  --zee: #005555;
  --zee-donker: #003838;
  --zee-licht: #D6EDEC;
  --zand: #8A5A00;
  --koraal: #B23A22;
  --lijn: #000000;
}

/* ---------- Sensoriemodus: dyslexievriendelijk lettertype ---------- */
html.dyslexie-lettertype body,
html.dyslexie-lettertype input,
html.dyslexie-lettertype textarea,
html.dyslexie-lettertype select {
  font-family: 'OpenDyslexic', var(--font-body);
  letter-spacing: 0.02em;
  line-height: 1.7;
}
html.dyslexie-lettertype h1,
html.dyslexie-lettertype h2,
html.dyslexie-lettertype h3,
html.dyslexie-lettertype .titel-lettertype {
  font-family: 'OpenDyslexic', var(--font-body);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--mist);
  color: var(--inkt);
  font-family: var(--font-body);
  font-size: calc(var(--stap-3) * var(--tekst-schaal));
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--zee-donker); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--koraal); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--inkt);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: calc(var(--stap-7) * var(--tekst-schaal)); }
h2 { font-size: calc(var(--stap-6) * var(--tekst-schaal)); }
h3 { font-size: calc(var(--stap-5) * var(--tekst-schaal)); }
h4 { font-size: calc(var(--stap-4) * var(--tekst-schaal)); }

p { margin: 0 0 1.1em; max-width: 68ch; }

:focus-visible {
  outline: 3px solid var(--koraal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--inkt);
  color: var(--wit);
  padding: 0.8em 1.2em;
  border-radius: 0 0 var(--radius-s) 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Topbalk (crisis-info) ---------- */
.topbalk {
  background: var(--inkt);
  color: var(--wit);
  font-size: calc(var(--stap-1) * var(--tekst-schaal));
  text-align: center;
  padding: 0.5em 1em;
}
.topbalk a { color: var(--zand-licht); font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  background: var(--wit);
  border-bottom: 1px solid var(--lijn);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: calc(var(--stap-4) * var(--tekst-schaal));
  color: var(--inkt);
  text-decoration: none;
}
.logo:hover { color: var(--inkt); }
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--zee), var(--zand), var(--koraal), var(--zee));
  flex-shrink: 0;
}

nav.hoofdnav { display: flex; gap: 1.6rem; align-items: center; }
nav.hoofdnav a {
  color: var(--inkt-zacht);
  text-decoration: none;
  font-weight: 600;
  font-size: calc(var(--stap-2) * var(--tekst-schaal));
  padding: 0.4em 0.1em;
  border-bottom: 2px solid transparent;
}
nav.hoofdnav a:hover,
nav.hoofdnav a.actief { color: var(--zee-donker); border-bottom-color: var(--koraal); }

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--inkt);
  border-radius: var(--radius-s);
  padding: 0.4em 0.6em;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  nav.hoofdnav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--wit);
    position: absolute;
    top: 100%; left: 0; right: 0;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--lijn);
    gap: 0.9rem;
  }
  nav.hoofdnav.open { display: flex; }
  .menu-toggle { display: inline-block; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--zee-licht);
  color: var(--zee-donker);
  font-weight: 700;
  font-size: calc(var(--stap-1) * var(--tekst-schaal));
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-bottom: 1.2em;
}

.hero h1 { margin-bottom: 0.4em; }
.hero .lead {
  font-size: calc(var(--stap-4) * var(--tekst-schaal));
  color: var(--inkt-zacht);
  max-width: 46ch;
}

.knop {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.5em;
  border-radius: var(--radius-m);
  font-weight: 700;
  font-size: calc(var(--stap-2) * var(--tekst-schaal));
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--duur) ease, box-shadow var(--duur) ease;
}
.knop:hover { transform: translateY(-2px); }
.knop-primair { background: var(--koraal); color: var(--wit); }
.knop-primair:hover { background: var(--koraal-donker); color: var(--wit); box-shadow: var(--schaduw); }
.knop-secundair { background: var(--wit); color: var(--zee-donker); border-color: var(--zee); }
.knop-secundair:hover { background: var(--zee-licht); color: var(--zee-donker); }
.knop-rij { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6em; }

.hero-illustratie {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-l);
  background:
    radial-gradient(circle at 30% 30%, var(--zand-licht), transparent 55%),
    radial-gradient(circle at 70% 65%, var(--zee-licht), transparent 60%),
    var(--wit);
  border: 1px solid var(--lijn);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illustratie svg { width: 70%; height: 70%; }

/* ---------- Secties ---------- */
.sectie { padding: 4rem 0; }
.sectie-alt { background: var(--wit); border-top: 1px solid var(--lijn); border-bottom: 1px solid var(--lijn); }
.sectie-kop { max-width: 62ch; margin-bottom: 2.4rem; }
.sectie-kop .eyebrow { margin-bottom: 0.8em; }

/* ---------- Kaarten: neurodivergentie-overzicht ---------- */
.kaarten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-m);
  padding: 1.8rem;
  text-decoration: none;
  color: var(--inkt);
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  transition: box-shadow var(--duur) ease, border-color var(--duur) ease, transform var(--duur) ease;
}
.kaart:hover {
  box-shadow: var(--schaduw);
  border-color: var(--zee);
  transform: translateY(-3px);
  color: var(--inkt);
}
.kaart-icoon {
  width: 46px; height: 46px;
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}
.kaart-icoon.adhd { background: var(--zand-licht); }
.kaart-icoon.autisme { background: var(--zee-licht); }
.kaart-icoon.hsp { background: #F3DCE3; }
.kaart-icoon.dyslexie { background: #DDE6F5; }

.kaart h3 { font-size: calc(var(--stap-4) * var(--tekst-schaal)); margin-bottom: 0.2em; }
.kaart p { font-size: calc(var(--stap-2) * var(--tekst-schaal)); color: var(--inkt-zacht); margin-bottom: 0.4em; }
.kaart .lees-meer { font-weight: 700; color: var(--zee-donker); margin-top: auto; }

/* ---------- Info-pagina layout ---------- */
.info-header {
  padding: 3.2rem 0 2.4rem;
  border-bottom: 1px solid var(--lijn);
}
.info-header .eyebrow { margin-bottom: 0.8em; }
.info-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 3rem 0 4rem;
  align-items: start;
}
@media (max-width: 860px) { .info-layout { grid-template-columns: 1fr; } }

.info-inhoud h2 { margin-top: 1.6em; }
.info-inhoud ul, .info-inhoud ol { padding-left: 1.3em; }
.info-inhoud li { margin-bottom: 0.5em; max-width: 62ch; }

.zijbalk {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-m);
  padding: 1.6rem;
  position: sticky;
  top: 6rem;
}
.zijbalk h4 { font-size: calc(var(--stap-3) * var(--tekst-schaal)); margin-bottom: 0.7em; }
.zijbalk ul { list-style: none; padding: 0; margin: 0; }
.zijbalk li { margin-bottom: 0.6em; }
.zijbalk a { font-weight: 600; }

.kader {
  background: var(--zee-licht);
  border-left: 4px solid var(--zee);
  border-radius: var(--radius-s);
  padding: 1.3rem 1.5rem;
  margin: 1.8em 0;
}
.kader.koraal { background: #FBE6E1; border-left-color: var(--koraal); }
.kader.zand { background: var(--zand-licht); border-left-color: var(--zand); }
.kader h4 { margin-bottom: 0.4em; font-size: calc(var(--stap-3) * var(--tekst-schaal)); }
.kader p:last-child { margin-bottom: 0; }

/* ---------- Hulpbronnen ---------- */
.filter-balk {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.filter-knop {
  border: 1px solid var(--lijn);
  background: var(--wit);
  color: var(--inkt-zacht);
  padding: 0.5em 1.1em;
  border-radius: 999px;
  font-weight: 600;
  font-size: calc(var(--stap-1) * var(--tekst-schaal));
  cursor: pointer;
}
.filter-knop:hover { border-color: var(--zee); }
.filter-knop.actief { background: var(--zee); border-color: var(--zee); color: var(--wit); }

.bron-lijst { display: grid; gap: 1rem; }
.bron {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-m);
  padding: 1.4rem 1.6rem;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 1.2rem;
  align-items: start;
}
@media (max-width: 640px) { .bron { grid-template-columns: 1fr; } }
.bron-type {
  font-size: calc(var(--stap-1) * var(--tekst-schaal));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zee-donker);
  background: var(--zee-licht);
  padding: 0.3em 0.7em;
  border-radius: var(--radius-s);
  white-space: nowrap;
  height: fit-content;
}
.bron h3 { font-size: calc(var(--stap-3) * var(--tekst-schaal)); margin-bottom: 0.2em; }
.bron p { font-size: calc(var(--stap-2) * var(--tekst-schaal)); color: var(--inkt-zacht); margin-bottom: 0.3em; }
.bron-acties { display: flex; flex-direction: column; gap: 0.4em; font-weight: 700; font-size: calc(var(--stap-1) * var(--tekst-schaal)); }

/* ---------- Zelftest ---------- */
.test-kader {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-l);
  padding: 2.4rem;
  max-width: 720px;
  margin: 0 auto;
}
.voortgangsbalk {
  height: 8px;
  background: var(--mist-donker);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.voortgangsbalk-vulling {
  height: 100%;
  background: var(--zee);
  width: 0%;
  transition: width var(--duur) ease;
}
.vraag-nummer { font-weight: 700; color: var(--zee-donker); font-size: calc(var(--stap-1) * var(--tekst-schaal)); margin-bottom: 0.7em; }
.vraag-dimensie-badge { display: inline-block; margin-left: 0.6em; font-size: calc(var(--stap-1) * var(--tekst-schaal)); font-weight: 700; background: var(--zand-licht); color: #7A5200; padding: 0.15em 0.6em; border-radius: 999px; vertical-align: middle; }
.scenario-tekst { font-family: var(--font-body); font-size: calc(var(--stap-4) * var(--tekst-schaal)); line-height: 1.55; margin-bottom: 1em; }
.scenario-uitleg {
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
  background: var(--zee-licht);
  border-radius: var(--radius-s);
  padding: 0.9em 1.1em;
  margin-bottom: 1.6em;
  font-size: calc(var(--stap-2) * var(--tekst-schaal));
  color: var(--inkt-zacht);
}
.scenario-uitleg .icoon { flex-shrink: 0; font-size: 1.1em; }
.antwoord-opties { display: grid; gap: 0.8rem; }
.antwoord-knop {
  text-align: left;
  padding: 0.9em 1.2em;
  border: 2px solid var(--lijn);
  background: var(--wit);
  border-radius: var(--radius-m);
  font-size: calc(var(--stap-2) * var(--tekst-schaal));
  font-family: var(--font-body);
  cursor: pointer;
  color: var(--inkt);
}
.antwoord-knop:hover { border-color: var(--zee); background: var(--zee-licht); }
.antwoord-knop.gekozen { border-color: var(--koraal); background: #FBE6E1; }
.test-navigatie { display: flex; justify-content: space-between; margin-top: 2rem; }
.test-resultaat { display: none; text-align: center; }
.test-resultaat.zichtbaar { display: block; }
.resultaat-score { font-family: var(--font-display); font-size: calc(var(--stap-7) * var(--tekst-schaal)); color: var(--zee-donker); margin: 0.2em 0; }

/* ---------- Verhalen ---------- */
.verhaal-kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-m);
  padding: 1.8rem;
  margin-bottom: 1.2rem;
}
.verhaal-meta { display: flex; gap: 0.8em; align-items: center; margin-bottom: 0.6em; }
.badge {
  font-size: calc(var(--stap-1) * var(--tekst-schaal));
  font-weight: 700;
  background: var(--zand-licht);
  color: #7A5200;
  padding: 0.25em 0.7em;
  border-radius: 999px;
}
.verhaal-auteur { font-weight: 700; color: var(--inkt-zacht); font-size: calc(var(--stap-1) * var(--tekst-schaal)); }

.verhaal-voet { margin-top: 1.1em; padding-top: 0.9em; border-top: 1px solid var(--lijn); }
.hartje-knop {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  background: var(--mist);
  border: 1px solid var(--lijn);
  border-radius: 999px;
  padding: 0.4em 0.95em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: calc(var(--stap-1) * var(--tekst-schaal));
  color: var(--inkt-zacht);
  cursor: pointer;
  transition: border-color var(--duur) ease, color var(--duur) ease, background var(--duur) ease;
}
.hartje-knop:hover { border-color: var(--koraal); color: var(--koraal-donker); }
.hartje-knop .hartje-icoon { color: var(--inkt-zacht); font-size: 1.05em; display: inline-block; transition: color var(--duur) ease; }
.hartje-knop.geliked { background: #FBE6E1; border-color: var(--koraal); color: var(--koraal-donker); }
.hartje-knop.geliked .hartje-icoon { color: var(--koraal); }
.hartje-knop.animeer .hartje-icoon { animation: hartje-bounce 380ms ease; }
@keyframes hartje-bounce {
  0% { transform: scale(1); }
  35% { transform: scale(1.4); }
  65% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
html.rustige-modus .hartje-knop.animeer .hartje-icoon { animation: none; }

/* ---------- Formulieren ---------- */
.formulier { display: grid; gap: 1.3rem; max-width: 560px; }
.formulier label { font-weight: 700; margin-bottom: 0.4em; display: block; }
.formulier input,
.formulier select,
.formulier textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 2px solid var(--lijn);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: calc(var(--stap-2) * var(--tekst-schaal));
  background: var(--wit);
  color: var(--inkt);
}
.formulier input:focus, .formulier select:focus, .formulier textarea:focus {
  border-color: var(--zee);
  outline: none;
}
.formulier textarea { min-height: 140px; resize: vertical; }
.veld-hulp { font-size: calc(var(--stap-1) * var(--tekst-schaal)); color: var(--inkt-zacht); margin-top: 0.3em; }
.melding {
  padding: 1em 1.3em;
  border-radius: var(--radius-s);
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.melding.succes { background: #DFF1DF; color: #235B23; border: 1px solid #B3D9B3; }
.melding.fout { background: #FBE1DD; color: #7A2C1D; border: 1px solid #F0BBAF; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--inkt);
  color: #C9D2E0;
  padding: 3.5rem 0 2rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-grid-3 { grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { color: var(--wit); font-size: calc(var(--stap-2) * var(--tekst-schaal)); margin-bottom: 0.8em; font-family: var(--font-body); }
.site-footer a { color: #C9D2E0; text-decoration: none; }
.site-footer a:hover { color: var(--zand); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55em; }
.footer-onder {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1em;
  font-size: calc(var(--stap-1) * var(--tekst-schaal));
  color: #9AA6BC;
}

/* ---------- Sensoriemodus-paneel (signature element) ---------- */
.sensorie-toggle {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--inkt);
  color: var(--wit);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--schaduw);
  display: flex; align-items: center; justify-content: center;
}
.sensorie-toggle:hover { background: var(--zee-donker); }

.sensorie-paneel {
  position: fixed;
  bottom: 5.2rem;
  right: 1.4rem;
  z-index: 200;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-l);
  box-shadow: var(--schaduw);
  padding: 1.4rem;
  width: 300px;
  display: none;
}
.sensorie-paneel.open { display: block; }
.sensorie-paneel h4 { font-size: calc(var(--stap-3) * var(--tekst-schaal)); margin-bottom: 0.3em; }
.sensorie-paneel .uitleg { font-size: calc(var(--stap-1) * var(--tekst-schaal)); color: var(--inkt-zacht); margin-bottom: 1em; }
.sensorie-optie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6em 0;
  border-top: 1px solid var(--lijn);
  font-size: calc(var(--stap-2) * var(--tekst-schaal));
  font-weight: 600;
}
.sensorie-optie:first-of-type { border-top: none; }

.wisselknop { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.wisselknop input { opacity: 0; width: 0; height: 0; }
.wisselknop .schuif {
  position: absolute; inset: 0;
  background: var(--mist-donker);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--duur) ease;
}
.wisselknop .schuif::before {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--wit);
  border-radius: 50%;
  transition: transform var(--duur) ease;
}
.wisselknop input:checked + .schuif { background: var(--zee); }
.wisselknop input:checked + .schuif::before { transform: translateX(18px); }

/* ---------- Cookiemelding ---------- */
.cookiebalk { display: none; background: var(--inkt); padding: 0.9rem 0; }
.cookiebalk.zichtbaar { display: block; }
.cookiebalk-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookiebalk p { margin: 0; max-width: 62ch; color: #E5E9F0; font-size: calc(var(--stap-1) * var(--tekst-schaal)); }
.cookiebalk a { color: var(--zand); font-weight: 700; }
.cookiebalk .knop { padding: 0.55em 1.3em; font-size: calc(var(--stap-1) * var(--tekst-schaal)); white-space: nowrap; }

/* ---------- Overig ---------- */
.breadcrumb { font-size: calc(var(--stap-1) * var(--tekst-schaal)); color: var(--inkt-zacht); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--inkt-zacht); font-weight: 600; }
.tabel-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 0.8em 1em; border-bottom: 1px solid var(--lijn); font-size: calc(var(--stap-2) * var(--tekst-schaal)); }
th { font-family: var(--font-display); }

.admin-body { background: var(--mist); }
.admin-header .header-inner { flex-wrap: nowrap; }
.admin-header-rechts { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.admin-account { display: flex; align-items: center; gap: 1rem; white-space: nowrap; flex-shrink: 0; }
.admin-account-naam { color: var(--inkt-zacht); font-weight: 600; }
.admin-nav-rij { background: var(--wit); border-top: 1px solid var(--lijn); }
.admin-nav { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; padding: 0.85rem 0; }
.admin-nav a:not(.knop) { color: var(--inkt-zacht); font-weight: 600; text-decoration: none; padding: 0.3em 0.1em; border-bottom: 2px solid transparent; }
.admin-nav a:not(.knop):hover, .admin-nav a.actief:not(.knop) { color: var(--zee-donker); border-bottom-color: var(--koraal); }
@media (max-width: 860px) {
  .admin-nav-rij { display: none; }
  .admin-nav-rij.open { display: block; }
  .admin-nav { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .admin-account-naam { display: none; }
}
.admin-kaart { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius-m); padding: 2rem; max-width: 420px; margin: 6rem auto; }
.admin-tabel-actie { display: flex; gap: 0.6em; }
.admin-tabel-actie button { border: 1px solid var(--lijn); background: var(--wit); border-radius: var(--radius-s); padding: 0.4em 0.8em; cursor: pointer; font-weight: 700; }
.admin-tabel-actie button.goedkeuren { border-color: var(--zee); color: var(--zee-donker); }
.admin-tabel-actie button.verwijderen { border-color: var(--koraal); color: var(--koraal-donker); }
