/* ==========================================================================
   Erexiva — puresona.shop
   Stylesheet | Chroom & Vulkanisch thema
   Structuur:
     01. Tokens
     02. Reset & basis
     03. Typografie
     04. Layoutprimitieven
     05. Navigatie
     06. Knoppen & vormen
     07. Sectie: hero
     08. Sectie: pijlers
     09. Sectie: ritme
     10. Sectie: product
     11. Sectie: samenstelling
     12. Sectie: kwaliteit
     13. Sectie: meningen
     14. Sectie: bestelproces
     15. Sectie: vragen
     16. Sectie: bestelformulier
     17. Sectie: contact
     18. Voettekst
     19. Cookiebalk
     20. Artikelpagina's
     21. Juridische pagina's
     22. Succespagina
     23. Bewegingen
     24. Responsief
     25. Toegankelijkheid
   ========================================================================== */

/* 01. Tokens ------------------------------------------------------------- */

:root {
  /* Vulkanisch / donkerblauw fundament */
  --vlk-900: #080c16;
  --vlk-800: #0d1424;
  --vlk-700: #121c33;
  --vlk-600: #1a2846;
  --vlk-500: #24375e;

  /* Chroom & zilver */
  --chroom-100: #ffffff;
  --chroom-200: #f4f7fb;
  --chroom-300: #e6ecf4;
  --chroom-400: #cdd7e4;
  --chroom-500: #a9b7c9;
  --chroom-600: #7d8da2;

  /* Blauwe accenten (verzadigd) */
  --azuur-400: #5cc8ff;
  --azuur-500: #1fa2f0;
  --azuur-600: #0d7fce;
  --azuur-700: #0a5fa0;

  /* Signaal */
  --signaal-goed: #1f9d76;
  --signaal-fout: #d4453f;

  /* Semantisch */
  --vlak-basis: var(--chroom-200);
  --vlak-kaart: var(--chroom-100);
  --vlak-diep: var(--vlk-800);
  --inkt-sterk: var(--vlk-900);
  --inkt-zacht: #4a5a70;
  --inkt-omgekeerd: var(--chroom-200);
  --lijn: var(--chroom-400);
  --lijn-diep: rgba(169, 183, 201, .18);

  /* Verlopen */
  --verloop-chroom: linear-gradient(
    142deg,
    #ffffff 0%,
    #dfe7f0 22%,
    #b4c1d2 48%,
    #eef3f8 62%,
    #c3cfdd 84%,
    #f7fafc 100%
  );
  --verloop-diep: linear-gradient(160deg, var(--vlk-900) 0%, var(--vlk-700) 58%, var(--vlk-600) 100%);
  --verloop-azuur: linear-gradient(112deg, var(--azuur-600) 0%, var(--azuur-400) 100%);
  --verloop-rand: linear-gradient(120deg, rgba(255,255,255,.9), rgba(92,200,255,.55), rgba(125,141,162,.35));

  /* Typografie */
  --font-titel: "Trebuchet MS", "Segoe UI Semibold", "Lucida Grande", sans-serif;
  --font-tekst: "Segoe UI", Candara, Optima, "Helvetica Neue", Arial, sans-serif;
  --font-data: "Consolas", "SFMono-Regular", "Courier New", monospace;

  --schaal-xs: .78rem;
  --schaal-s: .9rem;
  --schaal-m: 1rem;
  --schaal-l: 1.16rem;
  --schaal-xl: 1.5rem;
  --schaal-2xl: 2rem;
  --schaal-3xl: 2.7rem;
  --schaal-4xl: 3.6rem;

  /* Ruimte */
  --ruimte-1: .35rem;
  --ruimte-2: .7rem;
  --ruimte-3: 1.1rem;
  --ruimte-4: 1.7rem;
  --ruimte-5: 2.6rem;
  --ruimte-6: 3.8rem;
  --ruimte-7: 5.5rem;
  --ruimte-8: 7.5rem;

  /* Vorm */
  --rond-s: 3px;
  --rond-m: 6px;
  --rond-l: 10px;
  --rond-vol: 999px;

  /* Diepte */
  --schaduw-vlak: 0 1px 2px rgba(8, 12, 22, .06);
  --schaduw-kaart: 0 2px 4px rgba(8, 12, 22, .05), 0 14px 32px -18px rgba(8, 12, 22, .30);
  --schaduw-hoog: 0 4px 8px rgba(8, 12, 22, .07), 0 28px 56px -26px rgba(8, 12, 22, .40);
  --schaduw-azuur: 0 12px 30px -14px rgba(13, 127, 206, .55);

  /* Maatvoering */
  --breedte-max: 1220px;
  --breedte-tekst: 68ch;
  --kop-hoogte: 72px;

  --overgang: 260ms cubic-bezier(.2, .7, .3, 1);
}

/* 02. Reset & basis ------------------------------------------------------ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--kop-hoogte) + 16px);
}

body {
  margin: 0;
  background-color: var(--vlak-basis);
  background-image:
    radial-gradient(circle at 12% -5%, rgba(92, 200, 255, .16), transparent 42%),
    radial-gradient(circle at 92% 8%, rgba(26, 40, 70, .12), transparent 38%);
  background-repeat: no-repeat;
  color: var(--inkt-sterk);
  font-family: var(--font-tekst);
  font-size: var(--schaal-m);
  line-height: 1.68;
  min-height: 100vh;
  overflow-x: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

a { color: var(--azuur-700); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--azuur-500); }

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

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lijn), transparent);
  margin: var(--ruimte-5) 0;
}

::selection { background: rgba(31, 162, 240, .24); }

/* 03. Typografie --------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titel);
  line-height: 1.14;
  margin: 0 0 var(--ruimte-3);
  letter-spacing: -.018em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5.2vw, var(--schaal-4xl)); }
h2 { font-size: clamp(1.65rem, 3.6vw, var(--schaal-3xl)); }
h3 { font-size: clamp(1.15rem, 2.1vw, var(--schaal-xl)); }
h4 { font-size: var(--schaal-l); }

p { margin: 0 0 var(--ruimte-3); }
p:last-child { margin-bottom: 0; }

.opschrift {
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--azuur-700);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: var(--ruimte-2);
}

.opschrift::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--verloop-azuur);
  border-radius: var(--rond-vol);
  flex: none;
}

.opschrift--licht { color: var(--azuur-400); }

.leidtekst {
  font-size: var(--schaal-l);
  color: var(--inkt-zacht);
  max-width: 58ch;
}

.tekst-zacht { color: var(--inkt-zacht); }

/* 04. Layoutprimitieven -------------------------------------------------- */

.omhulsel {
  width: min(100% - 2.4rem, var(--breedte-max));
  margin-inline: auto;
}

.omhulsel--smal { width: min(100% - 2.4rem, 880px); }

.blok { padding-block: var(--ruimte-7); }
.blok--ruim { padding-block: var(--ruimte-8); }
.blok--krap { padding-block: var(--ruimte-6); }

.blok--diep {
  background: var(--verloop-diep);
  color: var(--inkt-omgekeerd);
  position: relative;
  overflow: hidden;
}

.blok--diep h2,
.blok--diep h3 { color: var(--chroom-100); }
.blok--diep .tekst-zacht,
.blok--diep .leidtekst { color: var(--chroom-500); }

.blok--diep::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92,200,255,.5), transparent);
}

.blok--zilver {
  background:
    linear-gradient(180deg, var(--chroom-300) 0%, var(--chroom-200) 100%);
}

.sectiekop {
  max-width: var(--breedte-tekst);
  margin-bottom: var(--ruimte-5);
}

.sectiekop--midden {
  margin-inline: auto;
  text-align: center;
}

.sectiekop--midden .opschrift { justify-content: center; }

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

.duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--ruimte-6);
  align-items: center;
}

.duo--breed-links { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.duo--breed-rechts { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }

/* 05. Navigatie ---------------------------------------------------------- */

.kopbalk {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--kop-hoogte);
  display: flex;
  align-items: center;
  background: rgba(244, 247, 251, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lijn);
  transition: box-shadow var(--overgang), background var(--overgang);
}

.kopbalk.is-gedaald {
  box-shadow: var(--schaduw-vlak);
  background: rgba(244, 247, 251, .95);
}

.kopbalk__binnen {
  width: min(100% - 2.4rem, var(--breedte-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-3);
}

.merk {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-titel);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -.02em;
  color: var(--inkt-sterk);
  text-decoration: none;
  flex: none;
}

.merk__zegel {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--verloop-chroom);
  border: 1px solid var(--chroom-400);
  position: relative;
  flex: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.merk__zegel::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--verloop-azuur);
}

.merk__zegel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .75);
  transform: translateX(-50%) rotate(22deg);
}

.merk__woord { white-space: nowrap; }
.merk__punt { color: var(--azuur-600); }

.hoofdmenu { display: flex; align-items: center; gap: var(--ruimte-3); }

.hoofdmenu__lijst {
  display: flex;
  align-items: center;
  gap: .3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hoofdmenu__link {
  display: block;
  padding: .5rem .72rem;
  border-radius: var(--rond-m);
  font-size: var(--schaal-s);
  font-weight: 600;
  color: var(--inkt-zacht);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--overgang), background var(--overgang);
}

.hoofdmenu__link:hover,
.hoofdmenu__link[aria-current="page"] {
  color: var(--vlk-900);
  background: rgba(255, 255, 255, .8);
}

.menuknop {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--lijn);
  border-radius: var(--rond-m);
  background: var(--chroom-100);
  cursor: pointer;
  position: relative;
  flex: none;
}

.menuknop__streep,
.menuknop__streep::before,
.menuknop__streep::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--vlk-800);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform var(--overgang), opacity var(--overgang);
}

.menuknop__streep { top: 50%; margin-top: -1px; }
.menuknop__streep::before { content: ""; top: -6px; left: 50%; }
.menuknop__streep::after { content: ""; top: 6px; left: 50%; }

.menuknop[aria-expanded="true"] .menuknop__streep { background: transparent; }
.menuknop[aria-expanded="true"] .menuknop__streep::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.menuknop[aria-expanded="true"] .menuknop__streep::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* 06. Knoppen & vormen --------------------------------------------------- */

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--rond-m);
  font-family: var(--font-tekst);
  font-size: var(--schaal-s);
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--overgang), box-shadow var(--overgang),
              background var(--overgang), color var(--overgang), border-color var(--overgang);
}

.knop:active { transform: translateY(1px); }

.knop--hoofd {
  background: var(--verloop-azuur);
  color: #fff;
  box-shadow: var(--schaduw-azuur);
}

.knop--hoofd:hover {
  color: #fff;
  box-shadow: 0 16px 34px -12px rgba(13, 127, 206, .68);
  transform: translateY(-2px);
}

.knop--chroom {
  background: var(--verloop-chroom);
  color: var(--vlk-900);
  border-color: var(--chroom-400);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), var(--schaduw-vlak);
}

.knop--chroom:hover {
  color: var(--vlk-900);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), var(--schaduw-kaart);
}

.knop--rand {
  background: transparent;
  border-color: var(--chroom-500);
  color: var(--vlk-800);
}

.knop--rand:hover { border-color: var(--azuur-500); color: var(--azuur-700); }

.knop--rand-licht {
  background: transparent;
  border-color: rgba(169, 183, 201, .45);
  color: var(--chroom-200);
}

.knop--rand-licht:hover {
  border-color: var(--azuur-400);
  color: var(--azuur-400);
}

.knop--vol { width: 100%; }
.knop--groot { padding: 1rem 2rem; font-size: var(--schaal-m); }

.knoprij {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-2);
  align-items: center;
}

/* Kaartbasis */
.kaart {
  background: var(--vlak-kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-l);
  padding: var(--ruimte-4);
  box-shadow: var(--schaduw-kaart);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform var(--overgang), box-shadow var(--overgang), border-color var(--overgang);
}

.kaart--diep {
  background: rgba(255, 255, 255, .04);
  border-color: var(--lijn-diep);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.kaart--diep h3 { color: var(--chroom-100); }
.kaart--diep p { color: var(--chroom-500); }

.kaart:hover { transform: translateY(-3px); box-shadow: var(--schaduw-hoog); }
.kaart--diep:hover { border-color: rgba(92, 200, 255, .38); transform: translateY(-3px); }
.kaart--stil:hover { transform: none; box-shadow: var(--schaduw-kaart); }

/* CSS-iconen */
.icoon {
  width: 46px;
  height: 46px;
  border-radius: var(--rond-m);
  background: var(--verloop-chroom);
  border: 1px solid var(--chroom-400);
  position: relative;
  flex: none;
  margin-bottom: var(--ruimte-3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.kaart--diep .icoon {
  background: linear-gradient(142deg, rgba(255,255,255,.16), rgba(255,255,255,.03));
  border-color: rgba(169,183,201,.28);
  box-shadow: none;
}

.icoon::before,
.icoon::after { content: ""; position: absolute; }

/* Icoon: ritme */
.icoon--ritme::before {
  inset: 14px;
  border: 2px solid var(--azuur-600);
  border-radius: 50%;
  border-top-color: transparent;
}
.icoon--ritme::after {
  left: 50%; top: 13px;
  width: 2px; height: 10px;
  background: var(--azuur-600);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Icoon: beweging */
.icoon--beweging::before {
  left: 13px; bottom: 14px;
  width: 6px; height: 8px;
  background: var(--chroom-600);
  border-radius: 2px;
  box-shadow: 9px -5px 0 var(--azuur-500), 18px -11px 0 var(--vlk-600);
}
.icoon--beweging::after {
  left: 13px; bottom: 12px;
  width: 21px; height: 2px;
  background: var(--chroom-500);
  border-radius: 2px;
}

/* Icoon: rust */
.icoon--rust::before {
  inset: 13px;
  border: 2px solid var(--azuur-600);
  border-radius: 50% 50% 50% 6px;
}
.icoon--rust::after {
  right: 14px; top: 15px;
  width: 4px; height: 4px;
  background: var(--vlk-600);
  border-radius: 50%;
}

/* Icoon: balans */
.icoon--balans::before {
  left: 50%; top: 12px;
  width: 2px; height: 22px;
  background: var(--vlk-600);
  transform: translateX(-50%);
  border-radius: 2px;
}
.icoon--balans::after {
  left: 12px; top: 17px;
  width: 22px; height: 2px;
  background: var(--azuur-600);
  border-radius: 2px;
  transform: rotate(-11deg);
}

/* Icoon: schild */
.icoon--schild::before {
  inset: 12px 14px;
  background: var(--verloop-azuur);
  border-radius: 3px 3px 50% 50%;
}
.icoon--schild::after {
  left: 50%; top: 20px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}

/* Icoon: blad */
.icoon--blad::before {
  inset: 13px;
  background: var(--verloop-azuur);
  border-radius: 0 50% 0 50%;
}
.icoon--blad::after {
  left: 14px; bottom: 14px;
  width: 18px; height: 2px;
  background: rgba(255,255,255,.8);
  transform: rotate(-45deg);
  transform-origin: left center;
}

/* Icoon: doos */
.icoon--doos::before {
  inset: 14px 13px 13px;
  border: 2px solid var(--azuur-600);
  border-radius: 2px;
}
.icoon--doos::after {
  left: 13px; top: 21px;
  width: 20px; height: 2px;
  background: var(--chroom-600);
}

/* Icoon: gesprek */
.icoon--gesprek::before {
  inset: 13px 13px 16px;
  border: 2px solid var(--azuur-600);
  border-radius: 4px;
}
.icoon--gesprek::after {
  left: 17px; bottom: 12px;
  width: 7px; height: 7px;
  background: var(--azuur-600);
  transform: rotate(45deg);
}

/* Icoon: lab */
.icoon--lab::before {
  left: 19px; top: 12px;
  width: 8px; height: 9px;
  border-left: 2px solid var(--chroom-600);
  border-right: 2px solid var(--chroom-600);
}
.icoon--lab::after {
  left: 14px; bottom: 13px;
  width: 18px; height: 13px;
  background: var(--verloop-azuur);
  border-radius: 2px 2px 4px 4px;
  clip-path: polygon(28% 0, 72% 0, 100% 100%, 0 100%);
}

/* 07. Sectie: hero ------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--verloop-diep);
  color: var(--inkt-omgekeerd);
  padding-block: var(--ruimte-8) var(--ruimte-7);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 62vw;
  height: 62vw;
  max-width: 780px;
  max-height: 780px;
  background: radial-gradient(circle, rgba(31, 162, 240, .30) 0%, transparent 62%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(244, 247, 251, .10));
  pointer-events: none;
}

.hero__binnen {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: var(--ruimte-6);
  align-items: center;
}

.hero__titel {
  color: var(--chroom-100);
  margin-bottom: var(--ruimte-3);
}

.hero__titel em {
  font-style: normal;
  background: linear-gradient(100deg, var(--azuur-400), var(--chroom-100));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tekst {
  color: var(--chroom-500);
  font-size: var(--schaal-l);
  max-width: 52ch;
  margin-bottom: var(--ruimte-4);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-4);
  margin-top: var(--ruimte-5);
  padding-top: var(--ruimte-4);
  border-top: 1px solid var(--lijn-diep);
}

.hero__meta-item { min-width: 0; }

.hero__meta-waarde {
  display: block;
  font-family: var(--font-titel);
  font-size: var(--schaal-xl);
  font-weight: 700;
  color: var(--chroom-100);
  line-height: 1.2;
}

.hero__meta-label {
  display: block;
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--chroom-600);
}

/* Beeldframe — vaste verhouding, nooit uitgerekt */
.beeldframe {
  position: relative;
  border-radius: var(--rond-l);
  overflow: hidden;
  border: 1px solid var(--lijn-diep);
  background: var(--vlk-700);
  box-shadow: var(--schaduw-hoog);
}

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

.beeldframe--hero { aspect-ratio: 4 / 5; }
.beeldframe--breed { aspect-ratio: 16 / 10; }
.beeldframe--vierkant { aspect-ratio: 1 / 1; }
.beeldframe--panorama { aspect-ratio: 21 / 9; }
.beeldframe--licht { border-color: var(--lijn); background: var(--chroom-300); }

.beeldframe__glans {
  position: absolute;
  inset: 0;
  background: linear-gradient(196deg, rgba(255,255,255,.16) 0%, transparent 34%, rgba(8,12,22,.32) 100%);
  pointer-events: none;
}

.beeldframe__label {
  position: absolute;
  left: var(--ruimte-3);
  bottom: var(--ruimte-3);
  right: var(--ruimte-3);
  background: rgba(8, 12, 22, .62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(169, 183, 201, .22);
  border-radius: var(--rond-m);
  padding: .6rem .85rem;
  font-size: var(--schaal-xs);
  font-family: var(--font-data);
  letter-spacing: .06em;
  color: var(--chroom-300);
}

/* 08. Sectie: pijlers ---------------------------------------------------- */

.pijler {
  position: relative;
  padding-top: var(--ruimte-5);
}

.pijler__nummer {
  position: absolute;
  top: var(--ruimte-4);
  right: var(--ruimte-4);
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  letter-spacing: .1em;
  color: var(--chroom-500);
}

.pijler h3 { margin-bottom: var(--ruimte-2); }
.pijler p { color: var(--inkt-zacht); font-size: var(--schaal-s); }

/* 09. Sectie: ritme ------------------------------------------------------ */

.ritme {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.ritme__stap {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: var(--ruimte-4);
  padding: var(--ruimte-4) 0;
  border-top: 1px solid var(--lijn-diep);
  align-items: start;
}

.ritme__stap:last-child { border-bottom: 1px solid var(--lijn-diep); }

.ritme__klok {
  font-family: var(--font-data);
  font-size: var(--schaal-s);
  letter-spacing: .08em;
  color: var(--azuur-400);
  padding-top: .18rem;
}

.ritme__titel {
  font-family: var(--font-titel);
  font-size: var(--schaal-l);
  font-weight: 700;
  color: var(--chroom-100);
  margin: 0 0 .3rem;
}

.ritme__tekst {
  color: var(--chroom-500);
  font-size: var(--schaal-s);
  margin: 0;
  max-width: 60ch;
}

/* 10. Sectie: product ---------------------------------------------------- */

.product {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: var(--ruimte-6);
  align-items: center;
}

.productbeeld {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--rond-l);
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.95) 0%, rgba(230,236,244,.9) 46%, rgba(205,215,228,.75) 100%);
  border: 1px solid var(--lijn);
  display: grid;
  place-items: center;
  padding: 12%;
  box-shadow: var(--schaduw-kaart);
  overflow: hidden;
}

.productbeeld::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(31, 162, 240, .22);
}

.productbeeld > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 34px rgba(8, 12, 22, .26));
}

.prijsblok {
  display: flex;
  align-items: baseline;
  gap: var(--ruimte-2);
  margin-block: var(--ruimte-3) var(--ruimte-4);
  flex-wrap: wrap;
}

.prijsblok__bedrag {
  font-family: var(--font-titel);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--vlk-900);
  line-height: 1;
}

.prijsblok__eenheid {
  font-size: var(--schaal-s);
  color: var(--inkt-zacht);
}

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

.speclijst li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  font-size: var(--schaal-s);
  color: var(--inkt-zacht);
}

.speclijst li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: .28rem;
  border-radius: 50%;
  background: var(--verloop-azuur);
  position: relative;
  flex: none;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .85);
}

/* 11. Sectie: samenstelling ---------------------------------------------- */

.stoffen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: var(--ruimte-3);
}

.stof {
  background: var(--vlak-kaart);
  border: 1px solid var(--lijn);
  border-left: 3px solid var(--azuur-500);
  border-radius: var(--rond-s) var(--rond-l) var(--rond-l) var(--rond-s);
  padding: var(--ruimte-3) var(--ruimte-4);
  min-width: 0;
  transition: border-left-color var(--overgang), transform var(--overgang);
}

.stof:hover { border-left-color: var(--vlk-600); transform: translateX(3px); }

.stof__naam {
  font-family: var(--font-titel);
  font-size: var(--schaal-m);
  font-weight: 700;
  margin: 0 0 .3rem;
}

.stof__latijn {
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  color: var(--chroom-600);
  letter-spacing: .04em;
  display: block;
  margin-bottom: .5rem;
}

.stof__tekst { font-size: var(--schaal-s); color: var(--inkt-zacht); margin: 0; }

/* 12. Sectie: kwaliteit -------------------------------------------------- */

.normrij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: var(--ruimte-3);
  margin-top: var(--ruimte-5);
}

.norm {
  border: 1px solid var(--lijn-diep);
  border-radius: var(--rond-m);
  padding: var(--ruimte-3);
  background: rgba(255, 255, 255, .04);
  min-width: 0;
}

.norm__kop {
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azuur-400);
  margin: 0 0 .45rem;
}

.norm p { font-size: var(--schaal-s); color: var(--chroom-500); margin: 0; }

/* 13. Sectie: meningen --------------------------------------------------- */

.meningen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: var(--ruimte-4);
}

.mening {
  background: var(--vlak-kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-l);
  padding: var(--ruimte-4);
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: var(--schaduw-kaart);
}

.mening__citaat {
  font-size: var(--schaal-s);
  color: var(--inkt-zacht);
  margin: 0 0 var(--ruimte-3);
  flex-grow: 1;
}

.mening__voet {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: var(--ruimte-3);
  border-top: 1px solid var(--lijn);
}

.mening__initiaal {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--verloop-chroom);
  border: 1px solid var(--chroom-400);
  display: grid;
  place-items: center;
  font-family: var(--font-titel);
  font-weight: 700;
  font-size: var(--schaal-s);
  color: var(--vlk-700);
  flex: none;
}

.mening__naam { font-weight: 700; font-size: var(--schaal-s); display: block; }
.mening__plaats { font-size: var(--schaal-xs); color: var(--chroom-600); }

.meningnoot {
  margin-top: var(--ruimte-4);
  font-size: var(--schaal-xs);
  color: var(--inkt-zacht);
  max-width: 76ch;
}

/* 14. Sectie: bestelproces ----------------------------------------------- */

.proces {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: var(--ruimte-4);
  counter-reset: stap;
}

.proces__item {
  position: relative;
  padding: var(--ruimte-4) var(--ruimte-3) var(--ruimte-3);
  border-top: 2px solid var(--azuur-500);
  background: linear-gradient(180deg, rgba(31,162,240,.06), transparent 60%);
  border-radius: 0 0 var(--rond-m) var(--rond-m);
  min-width: 0;
  counter-increment: stap;
}

.proces__item::before {
  content: counter(stap, decimal-leading-zero);
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  letter-spacing: .12em;
  color: var(--azuur-700);
  display: block;
  margin-bottom: .5rem;
}

.proces__item h3 { font-size: var(--schaal-m); margin-bottom: .4rem; }
.proces__item p { font-size: var(--schaal-s); color: var(--inkt-zacht); margin: 0; }

/* 15. Sectie: vragen ----------------------------------------------------- */

.vragen { display: grid; gap: var(--ruimte-2); }

.vraag {
  border: 1px solid var(--lijn);
  border-radius: var(--rond-m);
  background: var(--vlak-kaart);
  overflow: hidden;
  transition: border-color var(--overgang), box-shadow var(--overgang);
}

.vraag.is-open { border-color: var(--azuur-500); box-shadow: var(--schaduw-kaart); }

.vraag__knop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-3);
  padding: 1.05rem var(--ruimte-4);
  background: none;
  border: 0;
  font-family: var(--font-titel);
  font-size: var(--schaal-m);
  font-weight: 700;
  color: var(--inkt-sterk);
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
}

.vraag__knop:hover { color: var(--azuur-700); }

.vraag__teken {
  width: 22px;
  height: 22px;
  position: relative;
  flex: none;
}

.vraag__teken::before,
.vraag__teken::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--azuur-600);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--overgang), opacity var(--overgang);
}

.vraag__teken::before { width: 14px; height: 2px; }
.vraag__teken::after { width: 2px; height: 14px; }

.vraag.is-open .vraag__teken::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.vraag__paneel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(.3, .8, .3, 1);
}

.vraag__inhoud {
  padding: 0 var(--ruimte-4) var(--ruimte-4);
  font-size: var(--schaal-s);
  color: var(--inkt-zacht);
  max-width: 74ch;
}

/* 16. Sectie: bestelformulier -------------------------------------------- */

.bestel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: var(--ruimte-6);
  align-items: start;
}

.formulierkaart {
  background: var(--vlak-kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-l);
  padding: var(--ruimte-5);
  box-shadow: var(--schaduw-hoog);
  position: relative;
  overflow: hidden;
}

.formulierkaart::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--verloop-rand);
}

.formulierkaart__kop { margin-bottom: var(--ruimte-4); }
.formulierkaart__kop h3 { margin-bottom: .35rem; }

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

.veld__label {
  display: block;
  font-size: var(--schaal-s);
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--vlk-800);
}

.veld__label span { color: var(--signaal-fout); }

.veld__invoer {
  width: 100%;
  padding: .82rem 1rem;
  font-family: inherit;
  font-size: var(--schaal-m);
  color: var(--inkt-sterk);
  background: var(--chroom-200);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-m);
  transition: border-color var(--overgang), box-shadow var(--overgang), background var(--overgang);
}

.veld__invoer::placeholder { color: var(--chroom-600); }

.veld__invoer:focus {
  outline: none;
  background: var(--chroom-100);
  border-color: var(--azuur-500);
  box-shadow: 0 0 0 3px rgba(31, 162, 240, .18);
}

.veld__invoer[aria-invalid="true"] {
  border-color: var(--signaal-fout);
  background: rgba(212, 69, 63, .04);
}

.veld__melding {
  display: block;
  min-height: 1.1rem;
  margin-top: .32rem;
  font-size: var(--schaal-xs);
  color: var(--signaal-fout);
}

.veld__hulp {
  display: block;
  margin-top: .32rem;
  font-size: var(--schaal-xs);
  color: var(--chroom-600);
}

.instemming {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  margin-bottom: var(--ruimte-3);
  font-size: var(--schaal-xs);
  color: var(--inkt-zacht);
  line-height: 1.55;
}

.instemming input {
  width: 18px;
  height: 18px;
  margin-top: .18rem;
  accent-color: var(--azuur-600);
  cursor: pointer;
}

.formulier__voet {
  margin-top: var(--ruimte-3);
  font-size: var(--schaal-xs);
  color: var(--chroom-600);
  text-align: center;
}

.samenvatting {
  list-style: none;
  margin: 0 0 var(--ruimte-4);
  padding: var(--ruimte-3) 0;
  border-block: 1px solid var(--lijn);
  display: grid;
  gap: .55rem;
}

.samenvatting li {
  display: flex;
  justify-content: space-between;
  gap: var(--ruimte-3);
  font-size: var(--schaal-s);
}

.samenvatting li span:first-child { color: var(--inkt-zacht); }
.samenvatting li span:last-child { font-weight: 700; text-align: right; }

.samenvatting li.is-totaal { font-size: var(--schaal-m); }
.samenvatting li.is-totaal span:last-child { color: var(--azuur-700); }

/* 17. Sectie: contact ---------------------------------------------------- */

.contactraster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--ruimte-4);
}

.contactblok__kop {
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--chroom-600);
  margin: 0 0 .55rem;
}

.contactblok address {
  font-style: normal;
  font-size: var(--schaal-s);
  color: var(--inkt-zacht);
  line-height: 1.75;
}

.contactblok a { font-weight: 600; }

/* 18. Voettekst ---------------------------------------------------------- */

.voet {
  background: var(--vlk-900);
  color: var(--chroom-500);
  padding-block: var(--ruimte-6) var(--ruimte-4);
  border-top: 1px solid var(--lijn-diep);
}

.voet__raster {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: var(--ruimte-5);
  padding-bottom: var(--ruimte-5);
  border-bottom: 1px solid var(--lijn-diep);
}

.voet .merk { color: var(--chroom-100); margin-bottom: var(--ruimte-3); }

.voet__over {
  font-size: var(--schaal-s);
  color: var(--chroom-600);
  max-width: 42ch;
}

.voet__kop {
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--chroom-400);
  margin: 0 0 var(--ruimte-3);
}

.voet__lijst { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }

.voet__lijst a {
  color: var(--chroom-600);
  text-decoration: none;
  font-size: var(--schaal-s);
  transition: color var(--overgang);
}

.voet__lijst a:hover { color: var(--azuur-400); }

.voet__adres {
  font-style: normal;
  font-size: var(--schaal-s);
  color: var(--chroom-600);
  line-height: 1.8;
}

.voet__adres a { color: var(--chroom-400); text-decoration: none; }
.voet__adres a:hover { color: var(--azuur-400); }

.voet__onder {
  padding-top: var(--ruimte-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-2) var(--ruimte-4);
  justify-content: space-between;
  align-items: center;
  font-size: var(--schaal-xs);
  color: var(--chroom-600);
}

.voet__waarschuwing {
  margin-top: var(--ruimte-3);
  padding: var(--ruimte-3);
  border: 1px solid var(--lijn-diep);
  border-radius: var(--rond-m);
  font-size: var(--schaal-xs);
  color: var(--chroom-600);
  line-height: 1.65;
}

/* 19. Cookiebalk --------------------------------------------------------- */

.cookiebalk {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  width: min(100% - 2rem, 900px);
  transform: translate(-50%, calc(100% + 40px));
  background: var(--vlk-800);
  color: var(--chroom-300);
  border: 1px solid rgba(169, 183, 201, .22);
  border-radius: var(--rond-l);
  padding: var(--ruimte-4);
  box-shadow: 0 24px 60px -20px rgba(8, 12, 22, .7);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--ruimte-4);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: transform 420ms cubic-bezier(.2, .8, .3, 1), opacity 320ms ease, visibility 0s linear 420ms;
}

.cookiebalk.is-zichtbaar {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.cookiebalk__titel {
  font-family: var(--font-titel);
  font-size: var(--schaal-m);
  font-weight: 700;
  color: var(--chroom-100);
  margin: 0 0 .35rem;
}

.cookiebalk__tekst {
  font-size: var(--schaal-xs);
  color: var(--chroom-500);
  margin: 0;
  max-width: 68ch;
  line-height: 1.6;
}

.cookiebalk__tekst a { color: var(--azuur-400); }

.cookiebalk__acties {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}

.cookiebalk__acties .knop { padding: .6rem 1.1rem; font-size: var(--schaal-xs); }

/* 20. Artikelpagina's ---------------------------------------------------- */

.paginakop {
  background: var(--verloop-diep);
  color: var(--inkt-omgekeerd);
  padding-block: var(--ruimte-6);
  position: relative;
  overflow: hidden;
}

.paginakop::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -8%;
  width: 46vw;
  height: 46vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle, rgba(31, 162, 240, .22), transparent 62%);
  pointer-events: none;
}

.paginakop__binnen { position: relative; z-index: 1; }
.paginakop h1 { color: var(--chroom-100); margin-bottom: var(--ruimte-2); }
.paginakop p { color: var(--chroom-500); max-width: 62ch; margin: 0; }

.kruimels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 var(--ruimte-3);
  padding: 0;
  font-size: var(--schaal-xs);
  font-family: var(--font-data);
  letter-spacing: .06em;
  color: var(--chroom-600);
}

.kruimels a { color: var(--chroom-400); text-decoration: none; }
.kruimels a:hover { color: var(--azuur-400); }
.kruimels li + li::before { content: "/ "; color: var(--chroom-600); }

.artikel {
  background: var(--vlak-kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-l);
  padding: clamp(1.4rem, 4vw, var(--ruimte-6));
  box-shadow: var(--schaduw-kaart);
}

.artikel > *:first-child { margin-top: 0; }

.artikel h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin-top: var(--ruimte-5);
  padding-top: var(--ruimte-4);
  border-top: 1px solid var(--lijn);
}

.artikel h2:first-of-type { border-top: 0; padding-top: 0; }

.artikel h3 { margin-top: var(--ruimte-4); font-size: var(--schaal-l); }
.artikel p, .artikel li { color: var(--inkt-zacht); max-width: var(--breedte-tekst); }
.artikel ul, .artikel ol { margin-bottom: var(--ruimte-3); display: grid; gap: .45rem; }

.artikel__meta {
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  letter-spacing: .08em;
  color: var(--chroom-600);
  margin-bottom: var(--ruimte-4);
  padding-bottom: var(--ruimte-3);
  border-bottom: 1px solid var(--lijn);
}

.beeldkaart {
  margin: var(--ruimte-5) 0;
  border: 1px solid var(--lijn);
  border-radius: var(--rond-l);
  overflow: hidden;
  background: var(--chroom-200);
  box-shadow: var(--schaduw-kaart);
}

.beeldkaart__beeld { aspect-ratio: 16 / 9; }

.beeldkaart__beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.beeldkaart__onderschrift {
  padding: var(--ruimte-3) var(--ruimte-4);
  font-size: var(--schaal-xs);
  color: var(--inkt-zacht);
  border-top: 1px solid var(--lijn);
  background: var(--chroom-100);
  margin: 0;
}

.uitgelicht {
  margin: var(--ruimte-4) 0;
  padding: var(--ruimte-4);
  background: linear-gradient(140deg, rgba(31, 162, 240, .08), rgba(230, 236, 244, .5));
  border-left: 3px solid var(--azuur-500);
  border-radius: 0 var(--rond-m) var(--rond-m) 0;
}

.uitgelicht p { margin: 0; color: var(--vlk-700); font-size: var(--schaal-s); }

.gewoonteraster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--ruimte-3);
  margin: var(--ruimte-4) 0;
}

.gewoonte {
  border: 1px solid var(--lijn);
  border-radius: var(--rond-m);
  padding: var(--ruimte-3);
  background: var(--chroom-200);
  min-width: 0;
}

.gewoonte h4 { margin: 0 0 .35rem; font-size: var(--schaal-s); }
.gewoonte p { margin: 0; font-size: var(--schaal-xs); }

/* 21. Juridische pagina's ------------------------------------------------ */

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

.juridisch__blok {
  background: var(--vlak-kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-m);
  padding: var(--ruimte-4) clamp(1.2rem, 3vw, var(--ruimte-5));
  box-shadow: var(--schaduw-vlak);
}

.juridisch__blok h2 {
  font-size: var(--schaal-xl);
  margin-bottom: var(--ruimte-2);
  display: flex;
  align-items: baseline;
  gap: .7rem;
}

.juridisch__blok h2::before {
  content: attr(data-nr);
  font-family: var(--font-data);
  font-size: var(--schaal-xs);
  color: var(--azuur-600);
  letter-spacing: .1em;
  flex: none;
}

.juridisch__blok h3 { font-size: var(--schaal-m); margin-top: var(--ruimte-3); }
.juridisch__blok p,
.juridisch__blok li { font-size: var(--schaal-s); color: var(--inkt-zacht); max-width: var(--breedte-tekst); }
.juridisch__blok ul { display: grid; gap: .4rem; margin-bottom: var(--ruimte-3); }

.gegevenstabel {
  width: 100%;
  border-collapse: collapse;
  margin: var(--ruimte-3) 0;
  font-size: var(--schaal-s);
}

.gegevenstabel th,
.gegevenstabel td {
  text-align: left;
  padding: .7rem .85rem;
  border-bottom: 1px solid var(--lijn);
  vertical-align: top;
}

.gegevenstabel th {
  width: 34%;
  font-weight: 700;
  color: var(--vlk-800);
  background: var(--chroom-200);
}

.gegevenstabel td { color: var(--inkt-zacht); }

.tabelomhulsel { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* 22. Succespagina ------------------------------------------------------- */

.succes {
  min-height: calc(100vh - var(--kop-hoogte));
  display: grid;
  place-items: center;
  padding-block: var(--ruimte-6);
}

.succeskaart {
  background: var(--vlak-kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-l);
  padding: clamp(1.6rem, 5vw, var(--ruimte-6));
  box-shadow: var(--schaduw-hoog);
  text-align: center;
  max-width: 620px;
  position: relative;
  overflow: hidden;
}

.succeskaart::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--verloop-rand);
}

.succesmerk {
  width: 74px;
  height: 74px;
  margin: 0 auto var(--ruimte-4);
  border-radius: 50%;
  background: var(--verloop-azuur);
  position: relative;
  box-shadow: var(--schaduw-azuur);
}

.succesmerk::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 26px;
  height: 13px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.succeskaart .leidtekst { margin-inline: auto; }

.vervolg {
  list-style: none;
  margin: var(--ruimte-4) 0;
  padding: var(--ruimte-4) 0;
  border-block: 1px solid var(--lijn);
  display: grid;
  gap: var(--ruimte-2);
  text-align: left;
}

.vervolg li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: .7rem;
  font-size: var(--schaal-s);
  color: var(--inkt-zacht);
  align-items: start;
}

.vervolg li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: .25rem;
  border-radius: 50%;
  border: 2px solid var(--azuur-500);
  background: rgba(31, 162, 240, .12);
}

/* 23. Bewegingen --------------------------------------------------------- */

.onthul {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.2, .7, .3, 1);
  will-change: opacity, transform;
}

.onthul.is-in-beeld { opacity: 1; transform: none; }

.onthul--traag { transition-delay: 110ms; }
.onthul--trager { transition-delay: 220ms; }
.onthul--traagst { transition-delay: 330ms; }

/* 24. Responsief --------------------------------------------------------- */

@media (max-width: 1080px) {
  .voet__raster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .raster--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --ruimte-7: 4rem; --ruimte-8: 5rem; }

  .menuknop { display: block; }

  .hoofdmenu {
    position: fixed;
    inset: var(--kop-hoogte) 0 auto;
    display: block;
    background: var(--chroom-100);
    border-bottom: 1px solid var(--lijn);
    box-shadow: var(--schaduw-hoog);
    padding: var(--ruimte-3) 1.2rem var(--ruimte-4);
    transform: translateY(-118%);
    transition: transform 360ms cubic-bezier(.2, .8, .3, 1);
    max-height: calc(100vh - var(--kop-hoogte));
    overflow-y: auto;
  }

  .hoofdmenu.is-open { transform: translateY(0); }

  .hoofdmenu__lijst { flex-direction: column; align-items: stretch; gap: 0; }

  .hoofdmenu__link {
    padding: .85rem .5rem;
    border-bottom: 1px solid var(--lijn);
    border-radius: 0;
    font-size: var(--schaal-m);
  }

  .hoofdmenu .knop { margin-top: var(--ruimte-3); width: 100%; }

  .hero__binnen,
  .duo,
  .duo--breed-links,
  .duo--breed-rechts,
  .product,
  .bestel { grid-template-columns: minmax(0, 1fr); gap: var(--ruimte-5); }

  .hero { padding-block: var(--ruimte-6); }
  .beeldframe--hero { aspect-ratio: 16 / 11; }
  .productbeeld { max-width: 420px; margin-inline: auto; }

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

  .cookiebalk { grid-template-columns: minmax(0, 1fr); }
  .cookiebalk__acties .knop { flex: 1 1 auto; }
}

@media (max-width: 620px) {
  :root {
    --ruimte-6: 2.6rem;
    --ruimte-7: 3.2rem;
    --ruimte-8: 3.8rem;
  }

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

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

  .ritme__stap { grid-template-columns: minmax(0, 1fr); gap: .35rem; }

  .hero__meta { gap: var(--ruimte-3); }
  .hero__meta-item { flex: 1 1 42%; }

  .beeldframe--hero,
  .beeldframe--panorama { aspect-ratio: 4 / 3; }

  .knoprij .knop { width: 100%; }
  .voet__onder { justify-content: flex-start; }
  .formulierkaart { padding: var(--ruimte-4); }
  .gegevenstabel th { width: 42%; }
}

@media (max-width: 400px) {
  .merk { font-size: 1.1rem; }
  .vraag__knop { padding: .9rem 1rem; font-size: var(--schaal-s); }
  .vraag__inhoud { padding: 0 1rem 1.2rem; }
}

/* 25. Toegankelijkheid --------------------------------------------------- */

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--azuur-500);
  outline-offset: 3px;
  border-radius: var(--rond-s);
}

.overslaan {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: .8rem 1.2rem;
  background: var(--vlk-900);
  color: #fff;
  border-radius: 0 0 var(--rond-m) 0;
  text-decoration: none;
  font-size: var(--schaal-s);
  font-weight: 700;
}

.overslaan:focus { left: 0; color: #fff; }

.enkel-schermlezer {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.is-vergrendeld { overflow: hidden; }

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

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

  .onthul { opacity: 1; transform: none; }
}

@media print {
  .kopbalk, .cookiebalk, .voet, .menuknop { display: none !important; }
  body { background: #fff; }
  .kaart, .artikel, .juridisch__blok { box-shadow: none; border-color: #ccc; }
}
