:root {
  --paper: #f6f8f5;
  --raised: #ffffff;
  --band: #eef2ee;
  --ink: #16201a;
  --soft: #4a5a50;
  --faint: #7d8b83;
  --rule: #d8e0d9;
  --accent: #6b4a2f;
  --accent-ink: #ffffff;
  --accent-soft: #efe7df;
  --radius-small: 7px;
  --radius-large: 14px;
  --shadow-soft: 0 1rem 3rem rgba(22, 32, 26, 0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #10160f;
    --raised: #18211a;
    --band: #141c15;
    --ink: #e7ece7;
    --soft: #a6b4aa;
    --faint: #7b8a80;
    --rule: #2a352d;
    --accent: #c79a72;
    --accent-ink: #14100b;
    --accent-soft: #2a2018;
  }
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.66;
  font-size: 1.02rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand, .button, .cta-note, ol.steps strong {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wrap { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap.narrow { max-width: 36rem; }

section { padding: 3.2rem 0; }
section.band {
  background: var(--band);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.hero { padding: 4.5rem 0 3.4rem; border-bottom: 1px solid var(--rule); }

.herotop { display: flex; align-items: center; gap: 1.8rem; margin-bottom: 0.8rem; }
.herobrand { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.herotop h1 { margin: 0; }

.mark { display: block; border-radius: 14px; margin-bottom: 0.6rem; }

.brand {
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

@media (max-width: 40rem) {
  .herotop { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .herobrand { flex-direction: row; align-items: center; gap: 0.6rem; }
  .mark { margin-bottom: 0; }
}

h1 {
  font-size: clamp(2rem, 6vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
  margin: 0 0 0.8rem;
  max-width: 16em;
}

h2 {
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: -0.022em;
  font-weight: 700;
  text-wrap: balance;
  margin: 0 0 0.8rem;
}

h3 {
  font-size: 1rem;
  letter-spacing: -0.008em;
  font-weight: 650;
  margin: 0 0 0.3rem;
}

p { margin: 0 0 1.05rem; max-width: 34rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.14rem; color: var(--soft); max-width: 32rem; }
.small { font-size: 0.92rem; color: var(--soft); }

a { color: var(--accent); text-underline-offset: 2px; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

main:focus { outline: none; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-small);
  background: var(--ink);
  color: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 650;
  text-decoration: none;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.1rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 620;
  font-size: 0.98rem;
  padding: 0.78rem 1.5rem;
  border-radius: var(--radius-small);
}
.button:hover { filter: brightness(1.08); }

.cta-note { font-size: 0.86rem; color: var(--faint); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.card {
  background: var(--raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius-small);
  padding: 1.1rem 1.2rem;
}
.card p { font-size: 0.93rem; color: var(--soft); margin: 0; }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem 2rem;
  margin-top: 1.6rem;
}
.split p { margin: 0; }

ul.plain { list-style: none; padding: 0; margin: 1.2rem 0; max-width: 34rem; }
ul.plain li { padding: 0.6rem 0; border-bottom: 1px solid var(--rule); color: var(--soft); }
ul.plain li strong { color: var(--ink); font-weight: 650; }
ul.plain li:last-child { border-bottom: 0; }

ol.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
ol.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.15rem 0.9rem;
}
ol.steps li::before {
  content: counter(step);
  grid-row: span 2;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
ol.steps strong { display: block; font-weight: 620; }
ol.steps span { color: var(--soft); font-size: 0.94rem; }

footer {
  border-top: 1px solid var(--rule);
  padding: 2rem 0 3.4rem;
  color: var(--faint);
  font-size: 0.9rem;
}
footer p { margin: 0 0 0.4rem; }

/* Steunpagina's gebruiken dezelfde tokens met een smallere kolom. */
.doc { max-width: 38rem; margin: 0 auto; padding: 3.5rem 1.5rem 4rem; }
.doc h2 { margin-top: 2.2rem; }
.doc ul { padding-left: 1.1rem; margin-bottom: 1rem; max-width: 34rem; }
.doc li { margin-bottom: 0.35rem; }

/* Taalkeuze rechtsboven. Echte vlaggen als svg, geen emoji, zodat elk
   apparaat hetzelfde toont. Het tekstlabel staat erbij omdat een vlag een
   land aanduidt en geen taal, en dat is voor schermlezers onbruikbaar. */
.langbar {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.1rem 1.5rem;
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}
.langbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.6rem;
  border-radius: 5px;
  border: 1px solid transparent;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--faint);
}
.langbar a:hover { color: var(--ink); }
.langbar a[aria-current="true"] {
  color: var(--ink);
  background: var(--raised);
  border-color: var(--rule);
}
.langbar svg { display: block; border-radius: 2px; flex: none; }
.langbar a:not([aria-current="true"]) svg { opacity: 0.55; }
.langbar a:hover svg { opacity: 1; }

.hero, .doc { position: relative; }

@media (max-width: 30rem) {
  .langbar { padding: 0.8rem 1rem; }
  .langbar a { padding: 0.28rem 0.45rem; }
}

/* ===== Sitekop met menu ===== */
header.site {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}
.bar {
  max-width: 62rem;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.825rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.53rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark img { border-radius: 0; display: block; }
.wordmark img.logo-dark { display: none; }
@media (prefers-color-scheme: dark) {
  .wordmark img.logo-light { display: none; }
  .wordmark img.logo-dark { display: block; }
}

.menu { display: flex; gap: 0.2rem; margin-left: auto; }
.menu a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--soft);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
}
.menu a:hover { color: var(--ink); background: var(--band); }
.menu a[aria-current="page"] { color: var(--accent); font-weight: 650; }

header.site .langbar { position: static; padding: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: 7px;
  background: var(--raised);
  cursor: pointer;
  padding: 0 9px;
}
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 1px; }

.mobilemenu {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  padding: 0.5rem 1rem 0.9rem;
  background: var(--paper);
}
.mobilemenu[hidden] { display: none; }
.mobilemenu a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 550;
  color: var(--ink);
  text-decoration: none;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--rule);
}
.mobilemenu a:last-child { border-bottom: 0; }
.mobilemenu a[aria-current="page"] { color: var(--accent); }

@media (max-width: 46rem) {
  .menu { display: none; }
  .burger { display: flex; margin-left: auto; }
  header.site .langbar { margin-left: 0; }
  .bar { gap: 0.65rem; padding: 0.55rem 1rem; }
  .wordmark { font-size: 1.35rem; gap: 0.6rem; }
  .wordmark img { width: 35px; height: 35px; }
}

/* De vaste kop maakt de oude absolute taalkeuze op de hero overbodig. */
.hero { padding-top: 3.2rem; }

/* ===== Filmische stalintro ===== */
.cinematic {
  --site-header-height: 61px;
  --scene-scale: 1.14;
  --scene-y: 2%;
  --door-left: 0%;
  --door-right: 0%;
  position: relative;
  height: auto;
  min-height: calc(100svh - var(--site-header-height));
  padding: 0;
  background: #090a08;
  color: #fff;
}

.has-cinematic-js .cinematic { height: 430svh; }

.cinematic-stage {
  position: relative;
  height: calc(100svh - var(--site-header-height));
  min-height: 35rem;
  overflow: hidden;
  isolation: isolate;
  background: #090a08;
}

.has-cinematic-js .cinematic-stage {
  position: sticky;
  top: var(--site-header-height);
}

.cinematic-picture {
  position: absolute;
  inset: -3%;
  z-index: 1;
  display: block;
  transform: translate3d(0, var(--scene-y), 0) scale(var(--scene-scale));
  transform-origin: 50% 52%;
  will-change: transform;
}

.cinematic-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cinematic-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(4, 5, 4, 0.7) 0%, rgba(4, 5, 4, 0.08) 44%, rgba(4, 5, 4, 0.1) 65%, rgba(4, 5, 4, 0.52) 100%), linear-gradient(0deg, rgba(4, 5, 4, 0.8) 0%, transparent 48%, rgba(4, 5, 4, 0.22) 100%);
  pointer-events: none;
}

.cinematic-door {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 48.5%;
  background-color: #211a12;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.35)), repeating-linear-gradient(90deg, #1d1710 0, #2e2418 7%, #221a12 14%, #36291b 21%);
  box-shadow: 0 0 3.5rem rgba(0, 0, 0, 0.72);
  will-change: transform;
}

.cinematic-door::before,
.cinematic-door::after {
  content: "";
  position: absolute;
  background: rgba(9, 8, 6, 0.72);
}

.cinematic-door::before {
  inset: 8% 0 auto;
  height: 0.45rem;
  box-shadow: 0 17rem 0 rgba(9, 8, 6, 0.62), 0 34rem 0 rgba(9, 8, 6, 0.62);
}

.cinematic-door::after {
  top: 0;
  bottom: 0;
  width: 0.55rem;
}

.cinematic-door-left {
  left: 0;
  transform: translate3d(var(--door-left), 0, 0);
  border-right: 2px solid rgba(206, 170, 112, 0.34);
}

.cinematic-door-left::after { right: 8%; }

.cinematic-door-right {
  right: 0;
  transform: translate3d(var(--door-right), 0, 0);
  border-left: 2px solid rgba(206, 170, 112, 0.34);
}

.cinematic-door-right::after { left: 8%; }

.cinematic-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.cinematic-copy {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: min(100%, 62rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  pointer-events: none;
}

.cinematic-beat {
  position: absolute;
  left: clamp(1.5rem, 5vw, 3rem);
  bottom: clamp(3.5rem, 10vh, 7rem);
  width: min(35rem, calc(100% - 3rem));
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  transition: opacity 600ms ease, transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cinematic-beat.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.cinematic-beat h1,
.cinematic-beat h2 {
  margin: 0 0 0.85rem;
  max-width: 12em;
  color: #fff;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 0.12rem 1.2rem rgba(0, 0, 0, 0.62);
}

.cinematic-beat p:not(.cinematic-eyebrow) {
  max-width: 29rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.5;
  text-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.75);
}

.cinematic-eyebrow {
  margin: 0 0 0.8rem;
  color: #d8b473;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, 0.7);
}

.cinematic-button {
  display: inline-flex;
  align-items: center;
  margin-top: 1.45rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(20, 28, 21, 0.68);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  backdrop-filter: blur(0.7rem);
  transition: background 180ms ease, border-color 180ms ease;
}

.cinematic-button:hover {
  border-color: #fff;
  background: rgba(20, 28, 21, 0.88);
}

.cinematic-skip {
  position: absolute;
  top: 1.15rem;
  right: clamp(1rem, 3vw, 2rem);
  z-index: 6;
  padding: 0.35rem 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 0.1rem 0.6rem #000;
}

.cinematic-skip:hover { color: #fff; }

.cinematic-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  height: 0.18rem;
  background: rgba(255, 255, 255, 0.16);
  transform: translateZ(0);
}

.cinematic-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #d8b473;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.cinematic-arrival {
  scroll-margin-top: calc(var(--site-header-height, 61px) + 1rem);
  background: var(--paper);
}

.cinematic-arrival .herotop h2 {
  margin: 0;
  max-width: 15em;
  font-size: clamp(2rem, 6vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

@media (max-width: 46rem) {
  .cinematic { --site-header-height: 61px; }
  .has-cinematic-js .cinematic { height: 390svh; }
  .cinematic-stage { min-height: 31rem; }
  .cinematic-picture { inset: -2%; transform-origin: 50% 46%; }
  .cinematic-picture img { object-position: center 46%; }
  .cinematic-vignette { background: linear-gradient(0deg, rgba(4, 5, 4, 0.88) 0%, rgba(4, 5, 4, 0.08) 58%, rgba(4, 5, 4, 0.28) 100%); }
  .cinematic-door { width: 48.8%; }
  .cinematic-beat { bottom: clamp(3rem, 8vh, 5rem); width: calc(100% - 3rem); }
  .cinematic-beat h1, .cinematic-beat h2 { max-width: 9.5em; font-size: clamp(2.45rem, 12vw, 4.2rem); }
  .cinematic-skip { top: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .has-cinematic-js .cinematic { height: auto; }
  .has-cinematic-js .cinematic-stage { position: relative; top: auto; }
  .cinematic-picture { transform: none !important; }
  .cinematic-door { display: none; }
  .cinematic-beat { transition: none; }
  .cinematic-progress { display: none; }
}

/* ===== Voettekst ===== */
footer.site { border-top: 1px solid var(--rule); background: var(--band); padding: 0; margin-top: 0; }
.footwrap {
  max-width: 62rem;
  margin: 0 auto;
  padding: 2.6rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(14rem, 1.2fr) 2fr;
  gap: 2rem;
}
.footbrand p { font-size: 0.9rem; color: var(--soft); margin-top: 0.8rem; max-width: 18rem; }
.footcols { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); gap: 1.4rem; }
.footcols h2 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 650;
  margin: 0 0 0.6rem;
}
.footcols ul { list-style: none; padding: 0; margin: 0; }
.footcols li { margin-bottom: 0.35rem; }
.footcols a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: var(--soft);
  text-decoration: none;
}
.footcols a:hover { color: var(--accent); text-decoration: underline; }
.footnote { border-top: 1px solid var(--rule); }
.footnote p {
  max-width: 62rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  color: var(--faint);
}
@media (max-width: 46rem) { .footwrap { grid-template-columns: 1fr; } }

/* ===== Artikelen ===== */
.article { max-width: 42rem; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.article .eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--accent);
  margin: 0 0 0.8rem;
}
.article h1 { max-width: 15em; }
.article .standfirst { font-size: 1.12rem; color: var(--soft); margin: 0.6rem 0 2rem; max-width: 32rem; }
.article h2 { margin-top: 2.4rem; }
.article h3 { margin-top: 1.6rem; }
.article p, .article ul, .article ol { margin-bottom: 1.05rem; }
.article ul, .article ol { padding-left: 1.15rem; }

.callout {
  background: var(--raised);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: 7px;
  padding: 1rem 1.2rem;
  margin: 1.4rem 0;
}
.callout p { margin: 0; font-size: 0.95rem; }
.callout .calloutlabel {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.callout.warn { border-left-color: #9d4526; }
.callout.warn .calloutlabel { color: #9d4526; }

.appnote {
  background: var(--band);
  border: 1px solid var(--rule);
  border-radius: 7px;
  padding: 1rem 1.2rem;
  margin: 2rem 0 0;
  font-size: 0.92rem;
  color: var(--soft);
}

.sources { margin-top: 2.4rem; border-top: 1px solid var(--rule); padding-top: 1.2rem; }
.sources h2 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.sources ul { list-style: none; padding: 0; }
.sources li { font-size: 0.85rem; color: var(--soft); margin-bottom: 0.4rem; overflow-wrap: anywhere; }

/* ===== Artikeloverzicht en kaartrijen ===== */
.cardsection { max-width: 62rem; margin: 0 auto; padding: 3rem 1.5rem; }
.cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1rem; margin-top: 1.6rem; }
a.teaser {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--raised);
  border: 1px solid var(--rule);
  border-radius: 9px;
  padding: 1.2rem 1.3rem;
  text-decoration: none;
  color: var(--ink);
}
a.teaser:hover { border-color: var(--accent); }
a.teaser h3 { margin: 0; }
a.teaser p { margin: 0; font-size: 0.92rem; color: var(--soft); }
a.teaser .more {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 620;
  color: var(--accent);
  margin-top: 0.3rem;
}

/* Functieblokken met afwisselende richting */
.featurerow {
  max-width: 62rem;
  margin: 0 auto;
  padding: 2.6rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.featurerow.flip > .featuretext { order: 2; }
.featuretext h2 { margin-bottom: 0.6rem; }
.featuretext p { color: var(--soft); }
.featureshot {
  background: var(--band);
  border: 1px solid var(--rule);
  border-radius: 12px;
  min-height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faint);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.featureshot img {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(30rem, 68vw);
  object-fit: contain;
}
@media (max-width: 46rem) {
  .featurerow { grid-template-columns: 1fr; gap: 1.2rem; }
  .featurerow.flip > .featuretext { order: 0; }
}

/* ===== Veelgestelde vragen ===== */
.faq-list { margin-top: 1.5rem; border-top: 1px solid var(--rule); }
.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list summary {
  min-height: 48px;
  padding: 0.9rem 2rem 0.9rem 0;
  cursor: pointer;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 650;
}
.faq-list details p { padding: 0 0 1rem; color: var(--soft); }

.plan-grid .card { display: flex; flex-direction: column; }
.plan-grid .plan-capacity {
  margin: 0.2rem 0 0.7rem;
  color: var(--accent);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.error-page { min-height: 58vh; display: flex; flex-direction: column; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
