/* ==========================================================================
   APK Wacht, stijlblad
   Richting: lichte kentekenplaat. De pagina is wit plaatmetaal met een koele
   chroomtint, APK-blauw en remlicht rood blijven de accenten, en de voet is
   de ene donkere band asfalt die eronder ligt.
   Opbouw als een kentekenplaat: harde randen, dubbele lijnen, zijband.
   Mobiel eerst. Breekpunten op 640px, 900px en 1200px.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variabelen
   -------------------------------------------------------------------------- */

:root {
  /* Plaatmetaal, de lichte vlakken van licht naar chroom */
  --asfalt-900: #ffffff;
  --asfalt-850: #eff3f8;
  --asfalt-800: #ffffff;
  --asfalt-700: #e4eaf2;
  --asfalt-600: #d5dde7;
  --asfalt-500: #616b77;

  /* Chroom, nu de inktschaal: diepe inkt boven, chroomgrijs onder */
  --chroom-050: #0d1117;
  --chroom-100: #1a212a;
  --chroom-200: #2c343e;
  --chroom-300: #4c5663;
  --chroom-400: #7c8794;
  --chroom-500: #58626e;
  --chroom-600: #46505b;

  /* APK-blauw, dezelfde tinten, ingedikt waar het inkt op wit wordt */
  --blauw-900: #0d2554;
  --blauw-800: #14346f;
  --blauw-700: #1b47a8;
  --blauw-500: #2559d6;
  --blauw-400: #3f72e0;
  --blauw-300: #1c4fbf;
  --blauw-200: #0f3486;

  /* Remlicht */
  --rood-700: #8f1c17;
  --rood-500: #d8322b;
  --rood-400: #f0473d;
  --rood-300: #c62d24;

  /* Wit op accentvlakken: knoppen, vlaggen, de blauwe zijband */
  --op-accent: #ffffff;

  /* De ene donkere band: de voet blijft asfalt */
  --band: #151a20;
  --band-diep: #0a0e12;
  --band-vlak: #1e252e;
  --band-vlak-hoog: #29323d;
  --band-tekst: #f4f7fa;
  --band-zacht: #d3dbe4;
  --band-gedempt: #a2afbd;
  --band-lijn: #333d49;
  --band-link: #9fc2ff;

  /* Rollen */
  --grond: var(--asfalt-850);
  --vlak: var(--asfalt-800);
  --vlak-hoog: var(--asfalt-700);
  --tekst: var(--chroom-100);
  --tekst-zacht: var(--chroom-500);
  --lijn: #dde4ed;
  --lijn-hard: #c3ccd8;
  --accent: var(--blauw-300);
  --accent-vast: var(--blauw-500);
  --alarm: var(--rood-300);

  /* Typografie */
  --font-kop: "Alegreya", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-tekst: "Alegreya Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --schaal-1: 0.78rem;
  --schaal-2: 0.88rem;
  --schaal-3: 1rem;
  --schaal-4: 1.12rem;
  --schaal-5: 1.32rem;
  --schaal-6: 1.62rem;
  --schaal-7: 2.05rem;
  --schaal-8: 2.6rem;
  --regelhoogte: 1.68;

  /* Ruimte */
  --ruimte-1: 0.25rem;
  --ruimte-2: 0.5rem;
  --ruimte-3: 0.75rem;
  --ruimte-4: 1rem;
  --ruimte-5: 1.5rem;
  --ruimte-6: 2rem;
  --ruimte-7: 3rem;
  --ruimte-8: 4.5rem;
  --ruimte-9: 6rem;

  /* Vorm */
  --breedte: 1180px;
  --breedte-smal: 720px;
  --radius: 3px;
  --radius-plaat: 10px;
  --rand: 1px solid var(--lijn);
  --rand-hard: 2px solid var(--lijn-hard);
  --schaduw: 0 10px 26px rgba(19, 27, 38, 0.10);
  --schaduw-diep: 0 18px 44px rgba(19, 27, 38, 0.16);

  /* Motief: asfaltkorrel en remspoor */
  --korrel: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='k'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23k)' opacity='0.05'/%3E%3C/svg%3E");
  --remspoor: repeating-linear-gradient(
    -16deg,
    rgba(21, 29, 41, 0.055) 0px,
    rgba(21, 29, 41, 0.055) 2px,
    transparent 2px,
    transparent 9px
  );
  --chroomrand: linear-gradient(180deg, #e6ecf2 0%, #99a4b0 42%, #5d6773 58%, #cdd6de 100%);
}

/* --------------------------------------------------------------------------
   2. Basis
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background-color: var(--grond);
  background-image: var(--korrel),
    radial-gradient(120% 70% at 50% -10%, rgba(37, 89, 214, 0.09), transparent 60%),
    linear-gradient(180deg, var(--asfalt-900) 0%, var(--asfalt-850) 30%, var(--asfalt-850) 100%);
  background-attachment: fixed, scroll, scroll;
  color: var(--tekst);
  font-family: var(--font-tekst);
  font-size: var(--schaal-3);
  line-height: var(--regelhoogte);
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration-color: rgba(28, 79, 191, 0.42);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blauw-200);
  text-decoration-color: currentColor;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-kop);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0 0 var(--ruimte-4);
  color: var(--chroom-050);
}

p {
  margin: 0 0 var(--ruimte-4);
}

ul,
ol {
  margin: 0 0 var(--ruimte-4);
  padding-left: 1.15rem;
}

li {
  margin-bottom: var(--ruimte-2);
}

strong {
  font-weight: 700;
  color: var(--chroom-050);
}

code,
kbd {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
  background: var(--asfalt-700);
  border: var(--rand);
  border-radius: var(--radius);
  padding: 0.05em 0.35em;
}

hr {
  border: 0;
  height: 2px;
  background: var(--remspoor), var(--lijn);
  margin: var(--ruimte-6) 0;
}

::selection {
  background: var(--blauw-700);
  color: var(--op-accent);
}

:focus-visible {
  outline: 3px solid var(--blauw-300);
  outline-offset: 3px;
  border-radius: 2px;
}

.omhulsel {
  width: 100%;
  max-width: var(--breedte);
  margin-inline: auto;
  padding-inline: var(--ruimte-4);
}

.verborgen {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   3. Skip-link
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: var(--ruimte-4);
  top: -100px;
  z-index: 200;
  display: inline-block;
  padding: 0.7rem 1.1rem;
  background: var(--blauw-500);
  color: var(--op-accent);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--blauw-900);
  border-radius: var(--radius);
  transition: top 0.18s ease-out;
}

.skip-link:focus {
  top: var(--ruimte-3);
}

/* --------------------------------------------------------------------------
   4. Herbruikbare onderdelen: plaatkader, rubrieklabel, knoppen
   -------------------------------------------------------------------------- */

.plaat {
  position: relative;
  background: var(--vlak);
  border: 2px solid var(--chroom-400);
  border-radius: var(--radius-plaat);
  box-shadow: inset 0 0 0 2px var(--asfalt-900), var(--schaduw);
  overflow: hidden;
}

.plaat::before {
  content: "";
  position: absolute;
  inset: 2px auto 2px 2px;
  width: 26px;
  background: linear-gradient(180deg, var(--blauw-700), var(--blauw-900));
  border-right: 2px solid var(--asfalt-900);
}

.plaat > * {
  position: relative;
}

.rubriek {
  display: inline-flex;
  align-items: center;
  gap: var(--ruimte-2);
  font-family: var(--font-tekst);
  font-size: var(--schaal-1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blauw-300);
  margin: 0 0 var(--ruimte-3);
}

.rubriek::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--rood-500);
  display: inline-block;
}

.rubriek--stil {
  color: var(--chroom-500);
}

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ruimte-2);
  min-height: 48px;
  padding: 0.72rem 1.35rem;
  font-family: var(--font-tekst);
  font-size: var(--schaal-3);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.14s ease, background-color 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.knop--primair {
  background: var(--blauw-500);
  border-color: var(--blauw-400);
  color: var(--op-accent);
  box-shadow: 0 6px 0 -1px var(--blauw-900);
}

.knop--primair:hover {
  background: var(--blauw-700);
  color: var(--op-accent);
  transform: translateY(-2px);
}

.knop--primair:active {
  transform: translateY(1px);
  box-shadow: 0 3px 0 -1px var(--blauw-900);
}

.knop--rand {
  background: transparent;
  border-color: var(--chroom-400);
  color: var(--chroom-100);
}

.knop--rand:hover {
  background: var(--asfalt-700);
  border-color: var(--chroom-200);
  color: var(--chroom-050);
  transform: translateY(-2px);
}

.knop--rood {
  background: var(--rood-500);
  border-color: var(--rood-400);
  color: var(--op-accent);
  box-shadow: 0 6px 0 -1px var(--rood-700);
}

.knop--rood:hover {
  background: var(--rood-700);
  color: var(--op-accent);
  transform: translateY(-2px);
}

.knop--breed {
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. Header en navigatie
   -------------------------------------------------------------------------- */

.kop {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 243, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--lijn-hard);
}

.kop::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blauw-700) 0%, var(--blauw-400) 28%, var(--rood-500) 28%, var(--rood-500) 34%, var(--asfalt-600) 34%);
}

.kop__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-4);
  width: 100%;
  max-width: var(--breedte);
  margin-inline: auto;
  padding: var(--ruimte-3) var(--ruimte-4);
}

.merk {
  display: inline-flex;
  align-items: center;
  gap: var(--ruimte-3);
  text-decoration: none;
  color: var(--chroom-050);
}

.merk__plaat {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--chroom-300);
  border-radius: 6px;
  background: var(--asfalt-800);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--asfalt-900);
}

.merk__band {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  background: linear-gradient(180deg, var(--blauw-700), var(--blauw-900));
  color: var(--op-accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.merk__code {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: var(--schaal-4);
  letter-spacing: 0.12em;
  padding: 0.15rem 0.5rem 0.15rem 0.55rem;
  color: var(--chroom-100);
}

.merk__naam {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: var(--schaal-5);
  letter-spacing: -0.01em;
}

.merk:hover .merk__plaat {
  border-color: var(--blauw-300);
}

.nav__schakelaar {
  display: inline-flex;
  align-items: center;
  gap: var(--ruimte-2);
  min-height: 44px;
  padding: 0.4rem 0.85rem;
  background: var(--asfalt-700);
  color: var(--chroom-100);
  border: 2px solid var(--lijn-hard);
  border-radius: var(--radius);
  font-family: var(--font-tekst);
  font-size: var(--schaal-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav__schakelaar:hover {
  border-color: var(--chroom-400);
}

.nav__streep {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--chroom-200);
  box-shadow: 0 5px 0 var(--chroom-200), 0 -5px 0 var(--chroom-200);
}

.nav__schakelaar[aria-expanded="true"] .nav__streep {
  background: var(--rood-300);
  box-shadow: 0 5px 0 var(--rood-300), 0 -5px 0 var(--rood-300);
}

.nav__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__lijst a {
  display: block;
  padding: 0.7rem 0.2rem;
  color: var(--chroom-200);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--lijn);
}

.nav__lijst a:hover {
  color: var(--chroom-050);
}

.nav__cta {
  margin-top: var(--ruimte-3);
  text-align: center;
  background: var(--blauw-500);
  border: 2px solid var(--blauw-400) !important;
  border-radius: var(--radius);
  color: var(--op-accent) !important;
}

.js-nav .nav__lijst {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--asfalt-850);
  border-bottom: 2px solid var(--lijn-hard);
  padding: var(--ruimte-4);
  box-shadow: var(--schaduw);
}

.js-nav .nav__lijst.is-open {
  display: block;
}

/* --------------------------------------------------------------------------
   6. Secties
   -------------------------------------------------------------------------- */

.sectie {
  padding-block: var(--ruimte-7);
  border-top: 1px solid var(--lijn);
}

.sectie--rustig {
  background: linear-gradient(180deg, rgba(228, 234, 242, 0.87), rgba(239, 243, 248, 0.92));
}

.sectie--spoor {
  position: relative;
}

.sectie--spoor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--remspoor);
  opacity: 0.5;
  pointer-events: none;
}

.sectie > .omhulsel {
  position: relative;
}

.sectie__kop {
  max-width: 46rem;
  margin-bottom: var(--ruimte-6);
}

.sectie__titel {
  font-size: var(--schaal-6);
  margin-bottom: var(--ruimte-3);
}

.sectie__inleiding {
  color: var(--chroom-300);
  font-size: var(--schaal-4);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  padding-block: var(--ruimte-7) var(--ruimte-7);
  border-top: 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -14%;
  top: 8%;
  width: 68%;
  height: 74%;
  background: var(--remspoor);
  transform: rotate(-6deg);
  opacity: 0.6;
  pointer-events: none;
}

.hero__raster {
  display: grid;
  gap: var(--ruimte-6);
  position: relative;
  z-index: 1;
}

.hero__kader {
  padding: var(--ruimte-5) var(--ruimte-5) var(--ruimte-5) calc(26px + var(--ruimte-4));
}

.hero__titel {
  font-size: var(--schaal-7);
  margin-bottom: var(--ruimte-4);
}

.hero__titel span {
  color: var(--blauw-300);
}

.hero__belofte {
  font-size: var(--schaal-4);
  color: var(--chroom-300);
  max-width: 34rem;
}

.hero__knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-3);
  margin-top: var(--ruimte-5);
}

.hero__voet {
  margin-top: var(--ruimte-5);
  padding-top: var(--ruimte-4);
  border-top: 1px dashed var(--lijn-hard);
  font-size: var(--schaal-2);
  color: var(--chroom-500);
  margin-bottom: 0;
}

.hero__paneel {
  padding: var(--ruimte-4) var(--ruimte-4) var(--ruimte-4) calc(26px + var(--ruimte-3));
}

.hero__paneelkop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--ruimte-3);
  font-size: var(--schaal-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chroom-500);
  border-bottom: 1px solid var(--lijn);
  padding-bottom: var(--ruimte-2);
  margin-bottom: var(--ruimte-3);
}

.schema {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schema__rij {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: var(--ruimte-3);
  align-items: start;
  padding: var(--ruimte-3) 0;
  border-bottom: 1px solid var(--lijn);
}

.schema__rij:last-child {
  border-bottom: 0;
}

.schema__stip {
  width: 12px;
  height: 12px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--blauw-400);
  box-shadow: 0 0 0 3px rgba(37, 89, 214, 0.22);
}

.schema__rij--alarm .schema__stip {
  background: var(--rood-400);
  box-shadow: 0 0 0 3px rgba(216, 50, 43, 0.25);
  animation: pols 2.6s ease-in-out infinite;
}

.schema__moment {
  display: block;
  font-family: var(--font-kop);
  font-weight: 700;
  color: var(--chroom-050);
}

.schema__tekst {
  display: block;
  font-size: var(--schaal-2);
  color: var(--chroom-500);
}

@keyframes pols {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(216, 50, 43, 0.25);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(216, 50, 43, 0.05);
  }
}

/* --------------------------------------------------------------------------
   8. Probleem, oplossing, functies, voordelen
   -------------------------------------------------------------------------- */

.raster {
  display: grid;
  gap: var(--ruimte-4);
}

.kaart {
  background: var(--vlak);
  border: var(--rand-hard);
  border-radius: var(--radius);
  padding: var(--ruimte-5);
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.kaart:hover {
  border-color: var(--chroom-600);
  transform: translateY(-3px);
}

.kaart__kop {
  font-size: var(--schaal-5);
  margin-bottom: var(--ruimte-3);
}

.kaart__tekst {
  color: var(--chroom-300);
  margin-bottom: 0;
}

.kaart--alarm {
  border-left: 4px solid var(--rood-500);
}

.kaart--blauw {
  border-left: 4px solid var(--blauw-500);
}

.stap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--ruimte-4);
  align-items: start;
  padding: var(--ruimte-5);
  background: var(--vlak);
  border: 1px solid var(--lijn-hard);
  border-radius: var(--radius);
}

.stap__nummer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  height: 2.4rem;
  padding-inline: 0.4rem;
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: var(--schaal-4);
  letter-spacing: 0.08em;
  color: var(--chroom-100);
  background: var(--asfalt-700);
  border: 2px solid var(--chroom-400);
  border-radius: 4px;
  box-shadow: inset 3px 0 0 var(--blauw-700);
}

.stap__titel {
  font-size: var(--schaal-5);
  margin-bottom: var(--ruimte-2);
}

.stap__tekst {
  color: var(--chroom-300);
  margin-bottom: 0;
}

.functie {
  padding: var(--ruimte-5);
  background: linear-gradient(180deg, var(--asfalt-700), var(--asfalt-800));
  border: 1px solid var(--lijn-hard);
  border-top: 3px solid var(--blauw-700);
  border-radius: var(--radius);
}

.functie:nth-child(3n + 2) {
  border-top-color: var(--rood-700);
}

.functie:nth-child(3n) {
  border-top-color: var(--chroom-600);
}

.functie__kop {
  font-size: var(--schaal-4);
  margin-bottom: var(--ruimte-2);
}

.functie__tekst {
  color: var(--chroom-300);
  font-size: var(--schaal-2);
  margin-bottom: 0;
}

.voordelen__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--ruimte-4);
}

.voordeel {
  padding-left: var(--ruimte-6);
  position: relative;
  margin-bottom: 0;
}

.voordeel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 18px;
  height: 10px;
  background: var(--blauw-400);
  clip-path: polygon(0 40%, 62% 40%, 62% 0, 100% 50%, 62% 100%, 62% 60%, 0 60%);
}

.voordeel__kop {
  display: block;
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: var(--schaal-4);
  color: var(--chroom-050);
  margin-bottom: var(--ruimte-1);
}

.voordeel__tekst {
  color: var(--chroom-300);
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. Vertrouwen
   -------------------------------------------------------------------------- */

.vertrouwen__blok {
  background: var(--asfalt-800);
  border: 1px solid var(--lijn-hard);
  border-radius: var(--radius);
  padding: var(--ruimte-5);
}

.vertrouwen__kop {
  font-size: var(--schaal-4);
  margin-bottom: var(--ruimte-3);
  padding-bottom: var(--ruimte-2);
  border-bottom: 1px solid var(--lijn);
}

.vertrouwen__blok p:last-child,
.vertrouwen__blok ul:last-child {
  margin-bottom: 0;
}

.vertrouwen__lijst {
  padding-left: 1.1rem;
  color: var(--chroom-300);
}

.praktijk {
  margin-top: var(--ruimte-6);
  padding: var(--ruimte-5) var(--ruimte-5) var(--ruimte-5) calc(26px + var(--ruimte-4));
}

.praktijk__label {
  display: inline-block;
  font-size: var(--schaal-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--op-accent);
  background: var(--chroom-300);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-bottom: var(--ruimte-3);
}

.praktijk__kop {
  font-size: var(--schaal-5);
  margin-bottom: var(--ruimte-3);
}

.praktijk p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. Tarieven
   -------------------------------------------------------------------------- */

.tarief {
  display: flex;
  flex-direction: column;
  background: var(--vlak);
  border: 2px solid var(--lijn-hard);
  border-radius: var(--radius);
  padding: var(--ruimte-5);
}

.tarief--uitgelicht {
  border-color: var(--blauw-400);
  box-shadow: 0 0 0 1px var(--blauw-900), var(--schaduw);
}

.tarief__vlag {
  display: inline-block;
  align-self: flex-start;
  font-size: var(--schaal-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--op-accent);
  background: var(--blauw-700);
  padding: 0.15rem 0.55rem;
  border-radius: 2px;
  margin-bottom: var(--ruimte-3);
}

.tarief__naam {
  font-size: var(--schaal-5);
  margin-bottom: var(--ruimte-2);
}

.tarief__prijs {
  display: flex;
  align-items: baseline;
  gap: var(--ruimte-2);
  padding-bottom: var(--ruimte-4);
  margin-bottom: var(--ruimte-4);
  border-bottom: 1px dashed var(--lijn-hard);
}

.tarief__bedrag {
  font-family: var(--font-kop);
  font-size: var(--schaal-8);
  font-weight: 800;
  color: var(--chroom-050);
  line-height: 1;
}

.tarief__periode {
  font-size: var(--schaal-2);
  color: var(--chroom-500);
}

.tarief__voor {
  color: var(--chroom-300);
  font-size: var(--schaal-2);
  margin-bottom: var(--ruimte-4);
}

.tarief__lijst {
  list-style: none;
  margin: 0 0 var(--ruimte-5);
  padding: 0;
  flex: 1;
}

.tarief__lijst li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--chroom-200);
  font-size: var(--schaal-2);
}

.tarief__lijst li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 11px;
  height: 3px;
  background: var(--blauw-300);
}

.tarieven__voetnoot {
  margin-top: var(--ruimte-5);
  font-size: var(--schaal-2);
  color: var(--chroom-500);
}

/* --------------------------------------------------------------------------
   11. Veelgestelde vragen
   -------------------------------------------------------------------------- */

.vragen__lijst {
  display: grid;
  gap: var(--ruimte-3);
  max-width: 52rem;
}

.vraag {
  background: var(--vlak);
  border: 1px solid var(--lijn-hard);
  border-left: 3px solid var(--blauw-700);
  border-radius: var(--radius);
}

.vraag[open] {
  border-left-color: var(--rood-500);
}

.vraag__kop {
  cursor: pointer;
  list-style: none;
  padding: var(--ruimte-4) var(--ruimte-5);
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: var(--schaal-4);
  color: var(--chroom-050);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--ruimte-3);
}

.vraag__kop::-webkit-details-marker {
  display: none;
}

.vraag__kop::after {
  content: "+";
  font-size: var(--schaal-5);
  line-height: 1;
  color: var(--blauw-300);
  flex: none;
}

.vraag[open] .vraag__kop::after {
  content: "\2212";
  color: var(--rood-300);
}

.vraag__tekst {
  padding: 0 var(--ruimte-5) var(--ruimte-5);
  color: var(--chroom-300);
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. Artikelkaarten op de home en het blog
   -------------------------------------------------------------------------- */

.artikelkaart {
  display: flex;
  flex-direction: column;
  background: var(--vlak);
  border: 1px solid var(--lijn-hard);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.artikelkaart:hover {
  transform: translateY(-4px);
  border-color: var(--chroom-600);
}

.artikelkaart__lijst {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--asfalt-900);
  border-bottom: 2px solid var(--lijn-hard);
}

.artikelkaart__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.artikelkaart:hover .artikelkaart__foto {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.05);
}

.artikelkaart__inhoud {
  padding: var(--ruimte-4) var(--ruimte-5) var(--ruimte-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.artikelkaart__rubriek {
  font-size: var(--schaal-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blauw-300);
  margin-bottom: var(--ruimte-2);
}

.artikelkaart__titel {
  font-size: clamp(1.1rem, 0.98rem + 0.5vw, var(--schaal-5));
  line-height: 1.24;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
  margin-bottom: var(--ruimte-3);
}

.artikelkaart__titel a {
  color: var(--chroom-050);
  text-decoration: none;
}

.artikelkaart__titel a:hover {
  color: var(--blauw-200);
}

.artikelkaart__tekst {
  color: var(--chroom-300);
  font-size: var(--schaal-2);
  flex: 1;
}

.artikelkaart__meta {
  font-size: var(--schaal-1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chroom-600);
  margin: 0;
}

.blok-meer {
  margin-top: var(--ruimte-6);
}

/* --------------------------------------------------------------------------
   13. Contact en formulier
   -------------------------------------------------------------------------- */

.contact__raster {
  display: grid;
  gap: var(--ruimte-6);
}

.contact__intro p {
  color: var(--chroom-300);
}

.contact__punten {
  list-style: none;
  padding: 0;
  margin: var(--ruimte-5) 0 0;
}

.contact__punten li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--chroom-200);
}

.contact__punten li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 10px;
  height: 10px;
  background: var(--blauw-400);
  transform: rotate(45deg);
}

.contact__alternatief {
  margin-top: var(--ruimte-5);
  padding: var(--ruimte-4);
  background: var(--asfalt-800);
  border: 1px dashed var(--lijn-hard);
  border-radius: var(--radius);
  font-size: var(--schaal-2);
  color: var(--chroom-300);
}

.formulier {
  padding: var(--ruimte-5) var(--ruimte-5) var(--ruimte-5) calc(26px + var(--ruimte-4));
}

.formulier label {
  display: block;
  font-weight: 700;
  font-size: var(--schaal-2);
  letter-spacing: 0.04em;
  color: var(--chroom-200);
  margin-bottom: var(--ruimte-1);
}

.formulier input[type="text"],
.formulier input[type="email"],
.formulier select,
.formulier textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  margin-bottom: var(--ruimte-4);
  background: var(--asfalt-900);
  border: 2px solid var(--lijn-hard);
  border-radius: var(--radius);
  color: var(--chroom-100);
  font-family: var(--font-tekst);
  font-size: var(--schaal-3);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.formulier textarea {
  resize: vertical;
  min-height: 8rem;
}

.formulier input:hover,
.formulier select:hover,
.formulier textarea:hover {
  border-color: var(--chroom-600);
}

.formulier input:focus,
.formulier select:focus,
.formulier textarea:focus {
  outline: none;
  border-color: var(--blauw-400);
  box-shadow: 0 0 0 3px rgba(37, 89, 214, 0.3);
}

.formulier__voet {
  font-size: var(--schaal-1);
  color: var(--chroom-500);
  margin: var(--ruimte-4) 0 0;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */

.voet {
  margin-top: var(--ruimte-8);
  background: linear-gradient(180deg, var(--band), var(--band-diep));
  border-top: 3px solid var(--lijn-hard);
  position: relative;
}

.voet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rood-500) 0%, var(--rood-500) 8%, transparent 8%, transparent 14%, var(--blauw-500) 14%, var(--blauw-500) 30%, transparent 30%);
}

.voet__raster {
  display: grid;
  gap: var(--ruimte-6);
  padding-block: var(--ruimte-7);
}

.voet__kop {
  font-family: var(--font-kop);
  font-size: var(--schaal-2);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--band-gedempt);
  margin-bottom: var(--ruimte-4);
  padding-bottom: var(--ruimte-2);
  border-bottom: 1px solid var(--band-lijn);
}

.voet__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
}

.voet__lijst li {
  margin-bottom: var(--ruimte-3);
}

.voet__lijst a {
  color: var(--band-zacht);
  text-decoration: none;
  font-size: var(--schaal-2);
}

.voet__lijst a:hover {
  color: var(--band-link);
  text-decoration: underline;
}

.voet__over {
  color: var(--band-gedempt);
  font-size: var(--schaal-2);
}

.voet__contact {
  font-size: var(--schaal-2);
  color: var(--band-zacht);
}

.voet__contact a {
  color: var(--band-link);
}

.voet__merkregel {
  display: inline-flex;
  align-items: center;
  gap: var(--ruimte-3);
  margin-bottom: var(--ruimte-4);
  color: var(--band-tekst);
  text-decoration: none;
}

.netwerk {
  list-style: none;
  margin: 0;
  padding: 0;
}

.netwerk li {
  margin-bottom: var(--ruimte-3);
}

.netwerk a {
  display: block;
  padding: var(--ruimte-3) var(--ruimte-3) var(--ruimte-3) var(--ruimte-4);
  background: var(--band-vlak);
  border: 1px solid var(--band-lijn);
  border-left: 3px solid var(--blauw-400);
  border-radius: var(--radius);
  color: var(--band-zacht);
  font-size: var(--schaal-2);
  line-height: 1.45;
  text-decoration: none;
  transition: border-left-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.netwerk a:hover {
  background: var(--band-vlak-hoog);
  border-left-color: var(--rood-400);
  color: var(--band-tekst);
  transform: translateX(3px);
}

.voet__balk {
  border-top: 1px solid var(--band-lijn);
  padding-block: var(--ruimte-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-3);
  font-size: var(--schaal-1);
  color: var(--band-gedempt);
}

.voet__balk a {
  color: var(--band-zacht);
}

/* De focusring van de pagina is donkerblauw, in de donkere band draait hij mee. */
.voet :focus-visible {
  outline-color: var(--band-link);
}

/* --------------------------------------------------------------------------
   15. Klassen van de generator: kruimels, artikel, auteursblok, verder, fout
   -------------------------------------------------------------------------- */

.kruimels {
  padding-block: var(--ruimte-4);
  border-bottom: 1px solid var(--lijn);
}

.kruimels__lijst {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-2);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: var(--breedte);
  margin-inline: auto;
  padding-inline: var(--ruimte-4);
  font-size: var(--schaal-1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chroom-600);
}

.kruimels__item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--ruimte-2);
}

.kruimels__item + .kruimels__item::before {
  content: "/";
  color: var(--asfalt-500);
}

.kruimels__item a {
  color: var(--chroom-300);
  text-decoration: none;
}

.kruimels__item a:hover {
  color: var(--blauw-300);
  text-decoration: underline;
}

.artikel {
  padding-block: var(--ruimte-6) var(--ruimte-7);
}

.artikel__inner {
  width: 100%;
  max-width: var(--breedte-smal);
  margin-inline: auto;
  padding-inline: var(--ruimte-4);
}

.artikel-kop {
  margin-bottom: var(--ruimte-5);
  padding-bottom: var(--ruimte-4);
  border-bottom: 2px solid var(--lijn-hard);
}

.artikel-kop__rubriek {
  display: inline-block;
  font-size: var(--schaal-1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--op-accent);
  background: var(--blauw-700);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: var(--ruimte-4);
}

.artikel-kop__titel {
  font-size: var(--schaal-7);
  margin-bottom: var(--ruimte-4);
}

.artikel-kop__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-2) var(--ruimte-4);
  font-size: var(--schaal-2);
  color: var(--chroom-500);
}

.artikel-kop__auteur a {
  color: var(--chroom-300);
}

.artikel-kop__datum,
.artikel-kop__leestijd {
  position: relative;
}

.artikel-kop__leestijd::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 0.4rem;
  background: var(--rood-500);
  transform: rotate(45deg);
}

.artikel-hero {
  margin-bottom: var(--ruimte-6);
}

.artikel-hero__foto {
  width: 100%;
  border: 2px solid var(--chroom-400);
  border-radius: var(--radius-plaat);
  box-shadow: inset 0 0 0 2px var(--asfalt-900), var(--schaduw);
  filter: saturate(0.9) contrast(1.04);
}

.artikel-hero__credit {
  display: block;
  margin-top: var(--ruimte-2);
  font-size: var(--schaal-1);
  color: var(--chroom-600);
}

.artikel-hero__credit a {
  color: var(--chroom-500);
}

.artikel__body {
  font-size: var(--schaal-4);
  color: var(--chroom-200);
}

.artikel__body .chapo {
  font-family: var(--font-kop);
  font-size: var(--schaal-5);
  line-height: 1.5;
  color: var(--chroom-050);
  padding-left: var(--ruimte-4);
  border-left: 4px solid var(--blauw-500);
  margin-bottom: var(--ruimte-6);
}

.artikel__body h2 {
  font-size: var(--schaal-6);
  margin-top: var(--ruimte-7);
  margin-bottom: var(--ruimte-3);
  padding-top: var(--ruimte-3);
  border-top: 1px solid var(--lijn);
}

.artikel__body h3 {
  font-size: var(--schaal-5);
  margin-top: var(--ruimte-5);
  margin-bottom: var(--ruimte-2);
  color: var(--chroom-100);
}

.artikel__body p {
  margin-bottom: var(--ruimte-4);
}

.artikel__body ul,
.artikel__body ol {
  margin-bottom: var(--ruimte-5);
  padding-left: 1.35rem;
}

.artikel__body li {
  margin-bottom: var(--ruimte-2);
}

.artikel__body ul li::marker {
  color: var(--blauw-300);
}

.artikel__body ol li::marker {
  color: var(--rood-300);
  font-weight: 700;
}

.artikel__body a {
  color: var(--blauw-300);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.artikel__body a:hover {
  color: var(--blauw-200);
  background: rgba(37, 89, 214, 0.14);
}

.artikel__body strong {
  color: var(--chroom-050);
}

.artikel__body blockquote {
  margin: var(--ruimte-6) 0;
  padding: var(--ruimte-4) var(--ruimte-5);
  background: var(--asfalt-800);
  border: 1px solid var(--lijn-hard);
  border-left: 4px solid var(--rood-500);
  border-radius: var(--radius);
  font-family: var(--font-kop);
  font-size: var(--schaal-5);
  color: var(--chroom-100);
}

.artikel__body blockquote p:last-child {
  margin-bottom: 0;
}

.artikel__body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--ruimte-5) 0 var(--ruimte-6);
  font-size: var(--schaal-2);
  display: block;
  overflow-x: auto;
}

.artikel__body table th,
.artikel__body table td {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--lijn-hard);
  text-align: left;
  vertical-align: top;
}

.artikel__body table th {
  background: var(--asfalt-700);
  color: var(--chroom-050);
  font-family: var(--font-kop);
  letter-spacing: 0.03em;
}

.artikel__body table tr:nth-child(even) td {
  background: rgba(30, 34, 40, 0.045);
}

.auteur-blok {
  display: grid;
  gap: var(--ruimte-4);
  margin-top: var(--ruimte-7);
  padding: var(--ruimte-5);
  background: var(--asfalt-800);
  border: 1px solid var(--lijn-hard);
  border-top: 3px solid var(--blauw-700);
  border-radius: var(--radius);
}

.auteur-blok__foto {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--chroom-400);
}

.auteur-blok__naam {
  font-family: var(--font-kop);
  font-size: var(--schaal-5);
  font-weight: 700;
  color: var(--chroom-050);
  margin-bottom: var(--ruimte-2);
}

.auteur-blok__bio {
  color: var(--chroom-300);
  font-size: var(--schaal-2);
  margin-bottom: var(--ruimte-3);
}

.auteur-blok__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-3);
  font-size: var(--schaal-2);
}

.verder {
  padding-block: var(--ruimte-7);
  border-top: 1px solid var(--lijn);
  background: var(--remspoor), var(--asfalt-700);
}

.verder__kop {
  width: 100%;
  max-width: var(--breedte);
  margin-inline: auto;
  padding-inline: var(--ruimte-4);
  font-size: var(--schaal-6);
  margin-bottom: var(--ruimte-5);
}

.verder__lijst {
  list-style: none;
  display: grid;
  gap: var(--ruimte-4);
  width: 100%;
  max-width: var(--breedte);
  margin-inline: auto;
  padding: 0 var(--ruimte-4);
}

.verder__item {
  background: var(--vlak);
  border: 1px solid var(--lijn-hard);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.verder__item:hover {
  transform: translateY(-3px);
  border-color: var(--chroom-600);
}

.verder__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.verder__foto {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 2px solid var(--lijn-hard);
}

.verder__titel {
  display: block;
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: var(--schaal-4);
  color: var(--chroom-050);
  padding: var(--ruimte-4) var(--ruimte-4) var(--ruimte-2);
}

.verder__link:hover .verder__titel {
  color: var(--blauw-200);
}

.verder__meta {
  display: block;
  padding: 0 var(--ruimte-4) var(--ruimte-4);
  font-size: var(--schaal-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chroom-600);
}

.fout {
  padding-block: var(--ruimte-9);
}

.fout__inner {
  width: 100%;
  max-width: var(--breedte-smal);
  margin-inline: auto;
  padding: var(--ruimte-6) var(--ruimte-5) var(--ruimte-6) calc(26px + var(--ruimte-5));
  text-align: left;
}

.fout__code {
  font-family: var(--font-kop);
  font-size: var(--schaal-8);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--chroom-050);
  margin-bottom: var(--ruimte-3);
}

.fout__titel {
  font-size: var(--schaal-6);
  margin-bottom: var(--ruimte-3);
}

.fout__tekst {
  color: var(--chroom-300);
}

.fout__acties {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ruimte-4);
  margin-top: var(--ruimte-5);
}

.fout__knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.35rem;
  background: var(--blauw-500);
  border: 2px solid var(--blauw-400);
  border-radius: var(--radius);
  color: var(--op-accent);
  font-weight: 700;
  text-decoration: none;
}

.fout__knop:hover {
  background: var(--blauw-700);
  color: var(--op-accent);
}

.fout__link {
  color: var(--chroom-300);
}

/* --------------------------------------------------------------------------
   16. Losse hulpklassen voor de overige pagina's
   -------------------------------------------------------------------------- */

.proza {
  max-width: var(--breedte-smal);
  margin-inline: auto;
  padding-inline: var(--ruimte-4);
  color: var(--chroom-200);
}

.proza h2 {
  font-size: var(--schaal-6);
  margin-top: var(--ruimte-7);
  padding-top: var(--ruimte-3);
  border-top: 1px solid var(--lijn);
}

.proza h3 {
  font-size: var(--schaal-5);
  margin-top: var(--ruimte-5);
}

.proza ul,
.proza ol {
  color: var(--chroom-300);
}

.pagina__kop {
  padding-block: var(--ruimte-7) var(--ruimte-5);
}

.pagina__titel {
  font-size: var(--schaal-7);
  max-width: 24ch;
}

.pagina__intro {
  font-size: var(--schaal-4);
  color: var(--chroom-300);
  max-width: 46rem;
}

.lijst-schoon {
  list-style: none;
  padding: 0;
  margin: 0;
}

.datumregel {
  font-size: var(--schaal-2);
  color: var(--chroom-600);
}

/* --------------------------------------------------------------------------
   17. Breekpunten
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  :root {
    --schaal-7: 2.45rem;
    --schaal-8: 3.1rem;
  }

  .sectie {
    padding-block: var(--ruimte-8);
  }

  .raster--twee,
  .raster--drie,
  .raster--vier {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voordelen__lijst {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--ruimte-5);
  }

  .auteur-blok {
    grid-template-columns: 88px 1fr;
    align-items: start;
  }

  .voet__raster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .verder__lijst {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  body {
    font-size: var(--schaal-4);
  }

  .omhulsel {
    padding-inline: var(--ruimte-6);
  }

  .kop__inner {
    padding-inline: var(--ruimte-6);
  }

  .nav__schakelaar {
    display: none;
  }

  .js-nav .nav__lijst,
  .nav__lijst {
    display: flex !important;
    position: static;
    align-items: center;
    gap: var(--ruimte-5);
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  .nav__lijst a {
    border-bottom: 2px solid transparent;
    padding: 0.35rem 0;
    font-size: var(--schaal-2);
    letter-spacing: 0.04em;
  }

  .nav__lijst a:hover {
    border-bottom-color: var(--rood-500);
  }

  .nav__cta {
    margin-top: 0;
    padding: 0.55rem 1rem !important;
  }

  .nav__cta:hover {
    background: var(--blauw-700);
    border-bottom-color: var(--blauw-400) !important;
  }

  .hero {
    padding-block: var(--ruimte-9) var(--ruimte-8);
  }

  .hero__raster {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: var(--ruimte-7);
  }

  .raster--drie {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .raster--vier {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact__raster {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: var(--ruimte-7);
  }

  .voet__raster {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--ruimte-6);
  }

  .voet__netwerk {
    grid-column: 1 / -1;
  }

  .netwerk {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--ruimte-3);
  }

  .netwerk li {
    margin-bottom: 0;
  }

  .verder__lijst {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .artikel-kop__titel {
    font-size: var(--schaal-8);
  }

  .praktijk {
    padding-inline: calc(26px + var(--ruimte-6)) var(--ruimte-6);
  }
}

@media (min-width: 1200px) {
  .raster--vier {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .voordelen__lijst {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--ruimte-6) var(--ruimte-7);
  }

  .voet__raster {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr;
  }

  .voet__netwerk {
    grid-column: auto;
  }

  .netwerk {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__kader {
    padding: var(--ruimte-7) var(--ruimte-7) var(--ruimte-7) calc(26px + var(--ruimte-6));
  }
}

/* --------------------------------------------------------------------------
   18. Bewegingsvoorkeur en afdrukken
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .kaart:hover,
  .artikelkaart:hover,
  .verder__item:hover,
  .knop:hover,
  .netwerk a:hover {
    transform: none;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  .kop,
  .voet,
  .verder,
  .skip-link {
    display: none;
  }

  .artikel__body a {
    color: #000000;
    text-decoration: underline;
  }
}

/* --------------------------------------------------------------------------
   19. Overige pagina's: auteursprofiel, artikelindex, gegevenslijst,
       sitemapgroepen en de bevestigingspagina
   -------------------------------------------------------------------------- */

.profiel {
  display: grid;
  gap: var(--ruimte-5);
  padding: var(--ruimte-5) var(--ruimte-5) var(--ruimte-5) calc(26px + var(--ruimte-5));
}

.profiel__portret {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--ruimte-3);
}

.profiel__foto {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid var(--chroom-400);
  box-shadow: inset 0 0 0 2px var(--asfalt-900), var(--schaduw);
  filter: saturate(0.9) contrast(1.04);
}

.profiel__bijschrift {
  font-size: var(--schaal-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chroom-600);
  margin: 0;
  max-width: 14rem;
}

.profiel__inhoud > p {
  color: var(--chroom-200);
}

.profiel__inhoud > p:first-child {
  margin-top: 0;
}

.profiel__links {
  display: grid;
  gap: var(--ruimte-2);
  margin-top: var(--ruimte-5);
  padding-top: var(--ruimte-4);
  border-top: 1px dashed var(--lijn-hard);
}

.profiel__links a {
  display: inline-flex;
  align-items: center;
  gap: var(--ruimte-2);
  font-size: var(--schaal-2);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.2rem 0;
}

.profiel__links a::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--rood-500);
  flex: none;
  transition: width 0.18s ease-out;
}

.profiel__links a:hover {
  color: var(--blauw-200);
  text-decoration: underline;
}

.profiel__links a:hover::before {
  width: 24px;
}

.artikelindex {
  display: grid;
  gap: var(--ruimte-3);
}

.artikelindex__item {
  position: relative;
  padding: var(--ruimte-4) var(--ruimte-5);
  background: var(--vlak);
  border: 1px solid var(--lijn-hard);
  border-left: 4px solid var(--blauw-700);
  border-radius: var(--radius);
  transition: border-left-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.artikelindex__item:hover {
  border-left-color: var(--rood-500);
  background: var(--vlak-hoog);
  transform: translateX(3px);
}

.artikelindex__rubriek {
  font-size: var(--schaal-1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blauw-300);
  margin: 0 0 var(--ruimte-2);
}

.artikelindex__titel {
  font-size: var(--schaal-4);
  line-height: 1.3;
  text-wrap: balance;
  overflow-wrap: break-word;
  margin: 0 0 var(--ruimte-2);
}

.artikelindex__titel a {
  color: var(--chroom-050);
  text-decoration: none;
}

.artikelindex__titel a:hover {
  color: var(--blauw-200);
  text-decoration: underline;
}

.artikelindex__meta {
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--schaal-1);
}

.gegevens {
  margin: var(--ruimte-5) 0 0;
  padding: 0;
  border-top: 1px solid var(--lijn);
}

.gegevens__rij {
  display: grid;
  gap: var(--ruimte-1);
  padding: var(--ruimte-3) 0;
  border-bottom: 1px solid var(--lijn);
}

.gegevens dt {
  font-family: var(--font-tekst);
  font-size: var(--schaal-1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chroom-600);
}

.gegevens dd {
  margin: 0;
  color: var(--chroom-100);
}

.sitemapgroep {
  display: flex;
  flex-direction: column;
}

.sitemapgroep__kop {
  font-size: var(--schaal-5);
  margin: 0 0 var(--ruimte-3);
  padding-bottom: var(--ruimte-2);
  border-bottom: 1px solid var(--lijn-hard);
}

.sitemapgroep__lijst {
  display: grid;
  gap: var(--ruimte-2);
  font-size: var(--schaal-2);
}

.sitemapgroep__lijst a {
  text-decoration: none;
  color: var(--chroom-200);
}

.sitemapgroep__lijst a:hover {
  color: var(--blauw-200);
  text-decoration: underline;
}

.bevestiging {
  padding: var(--ruimte-6) var(--ruimte-5) var(--ruimte-6) calc(26px + var(--ruimte-5));
}

.bevestiging .pagina__titel {
  margin-bottom: var(--ruimte-4);
}

.bevestiging__tekst {
  color: var(--chroom-300);
  font-size: var(--schaal-2);
  margin-bottom: 0;
  padding-top: var(--ruimte-4);
  border-top: 1px dashed var(--lijn-hard);
}

.bevestiging__stappen {
  display: grid;
  gap: var(--ruimte-4);
  counter-reset: none;
}

.bevestiging__stappen .stap__tekst {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .artikelindex__titel {
    font-size: var(--schaal-5);
  }

  .gegevens__rij {
    grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
    gap: var(--ruimte-4);
    align-items: baseline;
  }
}

@media (min-width: 900px) {
  .profiel {
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--ruimte-6);
    align-items: start;
    padding: var(--ruimte-6) var(--ruimte-6) var(--ruimte-6) calc(26px + var(--ruimte-6));
  }

  .profiel__foto {
    width: 176px;
    height: 176px;
  }

  .profiel__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--ruimte-5);
  }

  .artikelindex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--ruimte-4);
  }

  .bevestiging {
    padding: var(--ruimte-8) var(--ruimte-8) var(--ruimte-8) calc(26px + var(--ruimte-8));
  }
}

@media (prefers-reduced-motion: reduce) {
  .artikelindex__item:hover {
    transform: none;
  }

  .profiel__links a:hover::before {
    width: 14px;
  }
}

@media print {
  .artikelindex__item,
  .sitemapgroep,
  .profiel {
    border-color: #999999;
    box-shadow: none;
  }
}

/* Paginahaken: de hoofdklasse van elk fragment, voor onderlinge afstand. */

.auteurpagina,
.blogpagina,
.juridisch,
.sitemappagina,
.bedanktpagina {
  display: block;
  padding-bottom: var(--ruimte-8);
}

.juridisch .proza > h2:first-of-type {
  margin-top: var(--ruimte-6);
}

.juridisch .proza p,
.auteurpagina .proza p {
  max-width: 62ch;
}

.juridisch .proza li,
.auteurpagina .proza li {
  margin-bottom: var(--ruimte-2);
}
