/* ==========================================================================
   Meerwerkbon, stijlblad
   Thema: doorslagbon. Papier in doorslaggeel, bonkaarten met perforatierand,
   inkt in diepzwart, accenten in warm oker, handtekeningen in ballpointblauw.
   Mobiel eerst. Breekpunten op 640px, 900px en 1200px.
   ========================================================================== */

/* 1. Tokens
   ------------------------------------------------------------------------ */
:root {
  /* papier en dragers */
  --papier: #f7f1dc;
  --papier-diep: #efe4c4;
  --doorslag: #fdfaf0;
  --wit: #fffdf7;

  /* inkt en tekst */
  --inkt: #17150f;
  --inkt-zacht: #3a372c;
  --beton: #5d615c;
  --beton-licht: #c9c6b8;
  --lijn: #ddd6c0;
  --lijn-sterk: #bfb69a;

  /* accenten */
  --oker: #b06f06;
  --oker-diep: #7d4d04;
  --oker-fel: #d99a1a;
  --oker-waas: #f2dcae;
  --pen: #1d3f8f;
  --stempel: #9d3520;
  --carbon: #2b2a26;

  /* maatvoering */
  --marge: 1.15rem;
  --breed: 78rem;
  --smal: 44rem;
  --radius: 3px;
  --radius-groot: 6px;

  /* ritme */
  --ruimte-1: 0.35rem;
  --ruimte-2: 0.7rem;
  --ruimte-3: 1.15rem;
  --ruimte-4: 1.8rem;
  --ruimte-5: 2.8rem;
  --ruimte-6: 4.2rem;

  /* typografie */
  --font-kop: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  --font-tekst: "Source Sans 3", system-ui, "Segoe UI", sans-serif;
  --schaal-h1: clamp(2rem, 1.35rem + 3.1vw, 3.6rem);
  --schaal-h2: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --schaal-h3: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);

  /* schaduw en doorslag */
  --schaduw-bon: 0 1px 0 var(--lijn-sterk), 0 10px 22px rgba(23, 21, 15, 0.09);
  --schaduw-diep: 0 2px 0 var(--lijn-sterk), 0 18px 40px rgba(23, 21, 15, 0.16);
  --overgang: 180ms cubic-bezier(0.32, 0.72, 0.28, 1);

  /* motief: perforatie als herhaalbare gradient */
  --perforatie: radial-gradient(circle at 50% 50%, var(--papier) 0 3.2px, transparent 3.4px);
  --bonlijnen: repeating-linear-gradient(to bottom, transparent 0 27px, var(--lijn) 27px 28px);
}

/* 2. Basis
   ------------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

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

body.thema-doorslagbon {
  margin: 0;
  background-color: var(--papier);
  background-image:
    radial-gradient(ellipse 60% 40% at 12% 4%, rgba(43, 42, 38, 0.055), transparent 70%),
    radial-gradient(ellipse 45% 30% at 92% 28%, rgba(176, 111, 6, 0.07), transparent 72%),
    radial-gradient(ellipse 70% 35% at 50% 100%, rgba(43, 42, 38, 0.05), transparent 75%);
  background-attachment: fixed;
  color: var(--inkt);
  font-family: var(--font-tekst);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
  font-feature-settings: "kern" 1;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-kop);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 var(--ruimte-3);
  color: var(--inkt);
  text-wrap: balance;
}

h1 { font-size: var(--schaal-h1); font-weight: 800; }
h2 { font-size: var(--schaal-h2); }
h3 { font-size: var(--schaal-h3); }

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

a {
  color: var(--oker-diep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--overgang), background-color var(--overgang);
}
a:hover { color: var(--inkt); }

strong { font-weight: 700; }

ul, ol { margin: 0 0 var(--ruimte-3); padding-left: 1.25rem; }
li { margin-bottom: var(--ruimte-1); }

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

::selection { background: var(--oker-waas); color: var(--inkt); }

.verborgen { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.skip-link {
  position: absolute;
  left: var(--marge);
  top: -6rem;
  z-index: 999;
  background: var(--inkt);
  color: var(--papier);
  padding: 0.75rem 1.1rem;
  font-family: var(--font-kop);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top var(--overgang);
}
.skip-link:focus { top: 0.6rem; color: var(--papier); }

/* 3. Herbruikbare bouwstenen van de bon
   ------------------------------------------------------------------------ */
.omhulsel {
  width: 100%;
  max-width: var(--breed);
  margin-inline: auto;
  padding-inline: var(--marge);
}

/* strook = afscheurstrook met perforatie boven en onder */
.strook {
  position: relative;
  padding-block: var(--ruimte-5);
}
.strook::before,
.strook::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background-image: var(--perforatie);
  background-size: 16px 16px;
  background-position: center;
  opacity: 0.9;
  pointer-events: none;
}
.strook::before { top: -4px; }
.strook::after { bottom: -4px; }

.strook--gevuld {
  background: linear-gradient(180deg, var(--doorslag), var(--wit));
  border-block: 1px solid var(--lijn);
}
.strook--inkt {
  background-color: var(--inkt);
  background-image:
    radial-gradient(ellipse 50% 60% at 15% 10%, rgba(217, 154, 26, 0.16), transparent 70%),
    radial-gradient(ellipse 40% 50% at 88% 90%, rgba(247, 241, 220, 0.08), transparent 70%);
  color: var(--papier);
  border-block: 1px solid #2c2820;
}
.strook--inkt h2,
.strook--inkt h3 { color: var(--wit); }
.strook--inkt a { color: var(--oker-fel); }
.strook--inkt a:hover { color: var(--wit); }
.strook--inkt::before,
.strook--inkt::after { --papier: var(--inkt); }

.sectiekop { margin-bottom: var(--ruimte-4); max-width: 46rem; }
.sectiekop__label {
  display: inline-block;
  font-family: var(--font-kop);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oker-diep);
  border: 1px solid var(--lijn-sterk);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  margin-bottom: var(--ruimte-2);
  background: var(--wit);
}
.strook--inkt .sectiekop__label {
  color: var(--oker-fel);
  background: transparent;
  border-color: rgba(217, 154, 26, 0.45);
}
.sectiekop__titel { margin-bottom: var(--ruimte-2); }
.lood {
  font-size: 1.12rem;
  color: var(--inkt-zacht);
  max-width: 42rem;
}
.strook--inkt .lood { color: #ded6bd; }

/* de bonkaart: papieren kaart met perforatie aan de bovenkant */
.bon {
  position: relative;
  background: var(--doorslag);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw-bon);
  padding: var(--ruimte-4) var(--ruimte-3);
}
.bon::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 7px;
  background-image: radial-gradient(circle at 50% 0, var(--papier) 0 3.2px, transparent 3.4px);
  background-size: 14px 14px;
  border-radius: var(--radius-groot) var(--radius-groot) 0 0;
}
.bon--carbon {
  background-color: var(--papier-diep);
  background-image: radial-gradient(ellipse 60% 70% at 80% 20%, rgba(43, 42, 38, 0.09), transparent 70%);
}

/* knoppen */
.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-kop);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid var(--inkt);
  cursor: pointer;
  transition: transform var(--overgang), box-shadow var(--overgang), background-color var(--overgang), color var(--overgang);
}
.knop--vol {
  background: var(--oker-fel);
  color: var(--inkt);
  box-shadow: 4px 4px 0 var(--inkt);
}
.knop--vol:hover {
  color: var(--inkt);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--inkt);
}
.knop--vol:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--inkt); }
.knop--rand {
  background: transparent;
  color: var(--inkt);
  box-shadow: 4px 4px 0 var(--lijn-sterk);
}
.knop--rand:hover {
  background: var(--inkt);
  color: var(--papier);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--lijn-sterk);
}
.strook--inkt .knop--rand { color: var(--papier); border-color: var(--papier); box-shadow: 4px 4px 0 rgba(247, 241, 220, 0.25); }
.strook--inkt .knop--rand:hover { background: var(--papier); color: var(--inkt); }

/* 4. Kop en navigatie
   ------------------------------------------------------------------------ */
.kop {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 241, 220, 0.96);
  border-bottom: 1px solid var(--lijn-sterk);
  backdrop-filter: blur(6px);
}
.kop__binnen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-3);
  padding-block: 0.6rem;
}
.kop__merk {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--inkt);
}
.kop__logo {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  background: var(--inkt);
  color: var(--oker-fel);
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
}
.kop__naam {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}
.kop__nr {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beton);
}

.menu { position: relative; }
.menu__knop {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem;
  border: 2px solid var(--inkt);
  border-radius: var(--radius);
  background: var(--wit);
  color: var(--inkt);
  cursor: pointer;
  list-style: none;
}
.menu__knop::-webkit-details-marker { display: none; }
.menu__streep {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--inkt);
  display: inline-block;
}
.menu__streep::before,
.menu__streep::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--inkt);
}
.menu__streep::before { top: -6px; }
.menu__streep::after { top: 6px; }
.menu[open] .menu__streep { background: transparent; }
.menu[open] .menu__streep::before { top: 0; transform: rotate(45deg); }
.menu[open] .menu__streep::after { top: 0; transform: rotate(-45deg); }

.menu__paneel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.7rem);
  min-width: 15rem;
  background: var(--doorslag);
  border: 1px solid var(--lijn-sterk);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw-diep);
  padding: var(--ruimte-2);
  z-index: 70;
}
.menu__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.menu__link {
  display: block;
  padding: 0.6rem 0.7rem;
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 1rem;
  color: var(--inkt);
  text-decoration: none;
  border-radius: var(--radius);
  border-bottom: 1px dotted var(--lijn);
}
.menu__link:hover,
.menu__link:focus-visible { background: var(--oker-waas); color: var(--inkt); }
.menu__cta {
  margin-top: var(--ruimte-2);
  display: block;
  text-align: center;
}

/* 5. Hero, de ingevulde bon
   ------------------------------------------------------------------------ */
.hero { padding-block: var(--ruimte-5) var(--ruimte-6); position: relative; }
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 8px;
  background-image: var(--perforatie);
  background-size: 16px 16px;
}
.hero__raster { display: grid; gap: var(--ruimte-5); align-items: start; }
.hero__stempel {
  display: inline-block;
  font-family: var(--font-kop);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stempel);
  border: 2px solid var(--stempel);
  border-radius: var(--radius);
  padding: 0.25rem 0.65rem;
  transform: rotate(-2.5deg);
  margin-bottom: var(--ruimte-3);
  background: rgba(255, 253, 247, 0.6);
}
.hero__titel { margin-bottom: var(--ruimte-3); }
.hero__titel em {
  font-style: normal;
  color: var(--oker-diep);
  text-decoration: underline;
  text-decoration-color: var(--oker-fel);
  text-decoration-thickness: 5px;
  text-underline-offset: 6px;
}
.hero__belofte { font-size: 1.2rem; color: var(--inkt-zacht); max-width: 34rem; }
.hero__acties {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-2);
  margin-top: var(--ruimte-4);
}
.hero__voetnoot {
  margin-top: var(--ruimte-3);
  font-size: 0.92rem;
  color: var(--beton);
}

/* de bonkaart in de hero */
.bonkaart {
  position: relative;
  background: var(--wit);
  border: 1px solid var(--lijn-sterk);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw-diep);
  padding: var(--ruimte-3);
  max-width: 27rem;
}
.bonkaart::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 8px;
  background-image: radial-gradient(circle at 50% 0, var(--papier) 0 3.4px, transparent 3.6px);
  background-size: 15px 15px;
}
.bonkaart::after {
  content: "";
  position: absolute;
  inset: 6px 6px 6px 6px;
  border: 1px dashed var(--lijn);
  border-radius: var(--radius);
  pointer-events: none;
}
.bonkaart__kop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--ruimte-2);
  padding: 0.4rem 0.3rem var(--ruimte-2);
  border-bottom: 2px solid var(--inkt);
  margin-bottom: var(--ruimte-2);
}
.bonkaart__titel {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: -0.01em;
}
.bonkaart__nummer {
  font-family: var(--font-kop);
  font-size: 0.8rem;
  color: var(--stempel);
  letter-spacing: 0.05em;
}
.bonkaart__regels { list-style: none; margin: 0 0 var(--ruimte-2); padding: 0 0.3rem; }
.bonkaart__regel {
  display: flex;
  justify-content: space-between;
  gap: var(--ruimte-2);
  padding: 0.42rem 0;
  border-bottom: 1px dotted var(--lijn-sterk);
  font-size: 0.97rem;
  margin: 0;
}
.bonkaart__regel span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--inkt-zacht); }
.bonkaart__totaal {
  display: flex;
  justify-content: space-between;
  gap: var(--ruimte-2);
  padding: 0.55rem 0.3rem;
  margin-bottom: var(--ruimte-3);
  font-family: var(--font-kop);
  font-weight: 700;
  border-top: 2px solid var(--inkt);
  border-bottom: 2px solid var(--inkt);
}
.bonkaart__handtekening {
  padding: 0.6rem 0.3rem 0.2rem;
  border-top: 1px dashed var(--lijn-sterk);
}
.bonkaart__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beton);
  margin-bottom: 0.2rem;
}
.bonkaart__krabbel {
  font-family: var(--font-kop);
  font-size: 1.5rem;
  color: var(--pen);
  transform: rotate(-4deg);
  display: inline-block;
  letter-spacing: -0.04em;
}
.bonkaart__tijd { display: block; font-size: 0.82rem; color: var(--beton); margin-top: 0.35rem; }

/* 6. Probleem, oplossing, functies, voordelen
   ------------------------------------------------------------------------ */
.raster { display: grid; gap: var(--ruimte-3); }

.probleem__kaart {
  border-left: 4px solid var(--stempel);
  padding: var(--ruimte-3);
  background: var(--wit);
  border-radius: 0 var(--radius-groot) var(--radius-groot) 0;
  box-shadow: var(--schaduw-bon);
}
.probleem__kaart h3 { margin-bottom: var(--ruimte-1); }
.probleem__kaart p { color: var(--inkt-zacht); }

.stappen { list-style: none; margin: 0; padding: 0; counter-reset: stap; }
.stappen > li {
  counter-increment: stap;
  position: relative;
  padding: var(--ruimte-3) var(--ruimte-3) var(--ruimte-3) 3.6rem;
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  margin-bottom: var(--ruimte-2);
}
.stappen > li::before {
  content: counter(stap, decimal-leading-zero);
  position: absolute;
  left: var(--ruimte-3);
  top: var(--ruimte-3);
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--oker-diep);
  border-bottom: 2px solid var(--oker-fel);
}
.stappen h3 { margin-bottom: var(--ruimte-1); }

.functie {
  padding: var(--ruimte-3);
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  transition: transform var(--overgang), box-shadow var(--overgang);
}
.functie:hover { transform: translateY(-3px); box-shadow: var(--schaduw-bon); }
.functie__nr {
  font-family: var(--font-kop);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--beton);
  display: block;
  margin-bottom: var(--ruimte-1);
}
.functie h3 { margin-bottom: var(--ruimte-1); }
.functie p { color: var(--inkt-zacht); font-size: 0.99rem; }

.voordeel {
  padding: var(--ruimte-3) 0 var(--ruimte-3) var(--ruimte-4);
  border-top: 1px dashed rgba(247, 241, 220, 0.28);
  position: relative;
}
.voordeel::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--ruimte-3) + 0.55rem);
  width: 14px;
  height: 14px;
  background: var(--oker-fel);
  border-radius: 2px;
  transform: rotate(45deg);
}
.voordeel h3 { font-size: 1.15rem; margin-bottom: var(--ruimte-1); }
.voordeel p { color: #ded6bd; }

/* 7. Vertrouwen
   ------------------------------------------------------------------------ */
.vertrouwen__lijst { list-style: none; margin: 0; padding: 0; }
.vertrouwen__punt {
  padding: var(--ruimte-3);
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-left: 4px solid var(--oker-fel);
  border-radius: 0 var(--radius-groot) var(--radius-groot) 0;
  margin-bottom: var(--ruimte-2);
}
.vertrouwen__punt h3 { font-size: 1.1rem; margin-bottom: var(--ruimte-1); }
.vertrouwen__punt p { color: var(--inkt-zacht); font-size: 1rem; }
.voorbeeld {
  margin-top: var(--ruimte-4);
  padding: var(--ruimte-4) var(--ruimte-3);
  background: var(--papier-diep);
  background-image: radial-gradient(ellipse 55% 60% at 85% 15%, rgba(43, 42, 38, 0.1), transparent 70%);
  border: 1px dashed var(--lijn-sterk);
  border-radius: var(--radius-groot);
}
.voorbeeld__merk {
  font-family: var(--font-kop);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stempel);
  display: block;
  margin-bottom: var(--ruimte-1);
}

/* 8. Tarieven
   ------------------------------------------------------------------------ */
.tarief {
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border: 1px solid var(--lijn-sterk);
  border-radius: var(--radius-groot);
  padding: var(--ruimte-4) var(--ruimte-3);
  position: relative;
  box-shadow: var(--schaduw-bon);
}
.tarief::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 7px;
  background-image: radial-gradient(circle at 50% 0, var(--papier) 0 3.2px, transparent 3.4px);
  background-size: 14px 14px;
}
.tarief--uitgelicht {
  border: 2px solid var(--inkt);
  box-shadow: 6px 6px 0 var(--oker-fel);
}
.tarief__vlag {
  position: absolute;
  top: -0.85rem;
  right: var(--ruimte-3);
  background: var(--inkt);
  color: var(--oker-fel);
  font-family: var(--font-kop);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius);
}
.tarief__naam { font-size: 1.4rem; margin-bottom: var(--ruimte-1); }
.tarief__prijs {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--ruimte-1);
}
.tarief__prijs sup { font-size: 1.1rem; vertical-align: super; }
.tarief__per { font-size: 0.9rem; color: var(--beton); display: block; margin-bottom: var(--ruimte-3); }
.tarief__lijst { list-style: none; margin: 0 0 var(--ruimte-4); padding: 0; }
.tarief__lijst li {
  padding: 0.42rem 0 0.42rem 1.5rem;
  border-bottom: 1px dotted var(--lijn);
  position: relative;
  font-size: 0.99rem;
}
.tarief__lijst li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.95rem;
  width: 9px;
  height: 9px;
  background: var(--oker);
  border-radius: 1px;
  transform: rotate(45deg);
}
.tarief .knop { margin-top: auto; }
.tarief__btw { margin-top: var(--ruimte-3); font-size: 0.88rem; color: var(--beton); }

/* 9. Veelgestelde vragen
   ------------------------------------------------------------------------ */
.vraag {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  margin-bottom: var(--ruimte-2);
  overflow: hidden;
}
.vraag[open] { border-color: var(--lijn-sterk); box-shadow: var(--schaduw-bon); }
.vraag__kop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--ruimte-2);
  padding: var(--ruimte-3);
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.vraag__kop::-webkit-details-marker { display: none; }
.vraag__kop::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--oker-diep);
  transition: transform var(--overgang);
  flex: none;
}
.vraag[open] .vraag__kop::after { content: "+"; transform: rotate(45deg); }
.vraag__kop:hover { background: var(--oker-waas); }
.vraag__antwoord {
  padding: 0 var(--ruimte-3) var(--ruimte-3);
  color: var(--inkt-zacht);
  border-top: 1px dashed var(--lijn);
  padding-top: var(--ruimte-3);
}

/* 10. Artikelkaarten op de homepage en het blog
   ------------------------------------------------------------------------ */
.kaartje {
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  overflow: hidden;
  transition: transform var(--overgang), box-shadow var(--overgang);
}
.kaartje:hover { transform: translateY(-4px); box-shadow: var(--schaduw-diep); }
.kaartje__foto {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--lijn);
  filter: saturate(0.9) contrast(1.03);
}
.kaartje__body { padding: var(--ruimte-3); display: flex; flex-direction: column; gap: var(--ruimte-1); flex: 1; }
.kaartje__label {
  font-family: var(--font-kop);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oker-diep);
}
.kaartje__titel {
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}
.kaartje__titel a { color: var(--inkt); text-decoration: none; }
.kaartje__titel a:hover { text-decoration: underline; text-decoration-color: var(--oker-fel); text-decoration-thickness: 3px; }
.kaartje__meta { font-size: 0.86rem; color: var(--beton); margin-top: auto; padding-top: var(--ruimte-2); }
.blokrand { margin-top: var(--ruimte-4); }

/* 11. Contact en formulier
   ------------------------------------------------------------------------ */
.contact__raster { display: grid; gap: var(--ruimte-4); align-items: start; }
.formulier {
  background: var(--wit);
  border: 1px solid var(--lijn-sterk);
  border-radius: var(--radius-groot);
  padding: var(--ruimte-4) var(--ruimte-3);
  box-shadow: var(--schaduw-diep);
  position: relative;
}
.formulier::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 8px;
  background-image: radial-gradient(circle at 50% 0, var(--inkt) 0 3.4px, transparent 3.6px);
  background-size: 15px 15px;
}
.formulier label {
  display: block;
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--inkt);
  margin-bottom: 0.3rem;
  margin-top: var(--ruimte-3);
}
.formulier input,
.formulier select,
.formulier textarea {
  width: 100%;
  font-family: var(--font-tekst);
  font-size: 1rem;
  color: var(--inkt);
  background: var(--doorslag);
  border: 1px solid var(--lijn-sterk);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  transition: border-color var(--overgang), box-shadow var(--overgang), background-color var(--overgang);
}
.formulier textarea {
  background-image: var(--bonlijnen);
  background-position: 0 0.4rem;
  line-height: 28px;
  resize: vertical;
}
.formulier input:hover,
.formulier select:hover,
.formulier textarea:hover { border-color: var(--oker); }
.formulier input:focus,
.formulier select:focus,
.formulier textarea:focus {
  outline: none;
  border-color: var(--pen);
  box-shadow: 0 0 0 3px rgba(29, 63, 143, 0.18);
  background: var(--wit);
}
.formulier button { width: 100%; margin-top: var(--ruimte-4); }
.formulier__klein { font-size: 0.88rem; color: var(--beton); margin-top: var(--ruimte-3); }
.contact__zij p { color: var(--inkt-zacht); }
.contact__mail {
  display: block;
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: var(--ruimte-2);
  word-break: break-word;
}

/* 12. Voet
   ------------------------------------------------------------------------ */
.voet {
  background: var(--inkt);
  color: #d8d1bb;
  margin-top: var(--ruimte-6);
  position: relative;
  padding-top: var(--ruimte-5);
}
.voet::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -6px;
  height: 12px;
  background-image: radial-gradient(circle at 50% 50%, var(--papier) 0 4px, transparent 4.2px);
  background-size: 18px 18px;
}
.voet__raster { display: grid; gap: var(--ruimte-4); padding-bottom: var(--ruimte-5); }
.voet__kop {
  font-family: var(--font-kop);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oker-fel);
  margin-bottom: var(--ruimte-2);
  padding-bottom: var(--ruimte-1);
  border-bottom: 1px solid rgba(217, 154, 26, 0.3);
}
.voet__lijst { list-style: none; margin: 0; padding: 0; }
.voet__lijst li { margin-bottom: 0.4rem; }
.voet a { color: #ece5cf; text-decoration: none; border-bottom: 1px solid transparent; }
.voet a:hover { color: var(--oker-fel); border-bottom-color: var(--oker-fel); }
.voet__merknaam { font-family: var(--font-kop); font-weight: 800; font-size: 1.4rem; color: var(--wit); margin-bottom: var(--ruimte-2); }
.voet__tekst { font-size: 0.97rem; color: #b9b2a0; max-width: 24rem; }
.voet__mail { display: inline-block; margin-top: var(--ruimte-2); font-weight: 600; }

/* netwerkkolom in doorslagstijl */
.voet__net { background: rgba(247, 241, 220, 0.05); border: 1px dashed rgba(217, 154, 26, 0.35); border-radius: var(--radius-groot); padding: var(--ruimte-3); }
.voet__net .voet__kop { border-bottom-color: rgba(217, 154, 26, 0.45); }
.voet__netlijst { list-style: none; margin: 0; padding: 0; }
.voet__netlijst li { margin-bottom: 0.3rem; }
.voet__netlink {
  display: block;
  padding: 0.5rem 0.5rem 0.5rem 1.4rem;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border-bottom: 1px dotted rgba(236, 229, 207, 0.2);
  position: relative;
  transition: background-color var(--overgang), padding-left var(--overgang);
}
.voet__netlink::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  background: var(--oker-fel);
  transform: rotate(45deg);
}
.voet__netlink:hover { background: rgba(217, 154, 26, 0.12); padding-left: 1.7rem; }
.voet__balk {
  border-top: 1px solid rgba(236, 229, 207, 0.18);
  padding-block: var(--ruimte-3);
  font-size: 0.88rem;
  color: #b0a996;
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-2);
  justify-content: space-between;
}

/* 13. Klassen van de generator: kruimels
   ------------------------------------------------------------------------ */
.kruimels { padding-block: var(--ruimte-3) 0; font-size: 0.87rem; }
.kruimels__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: var(--breed);
  margin-inline: auto;
  padding-inline: var(--marge);
  color: var(--beton);
}
.kruimels__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.kruimels__item + .kruimels__item::before { content: "/"; color: var(--lijn-sterk); }
.kruimels__item a { color: var(--beton); text-decoration: none; }
.kruimels__item a:hover { color: var(--oker-diep); text-decoration: underline; }

/* 14. Artikelopmaak
   ------------------------------------------------------------------------ */
.artikel { padding-block: var(--ruimte-4) var(--ruimte-6); }
.artikel__inner {
  max-width: var(--breed);
  margin-inline: auto;
  padding-inline: var(--marge);
}
.artikel-kop { max-width: var(--smal); margin-inline: auto; margin-bottom: var(--ruimte-4); }
.artikel-kop__rubriek {
  display: inline-block;
  font-family: var(--font-kop);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oker-diep);
  border: 1px solid var(--lijn-sterk);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  margin-bottom: var(--ruimte-2);
  background: var(--wit);
}
.artikel-kop__titel { font-size: var(--schaal-h1); margin-bottom: var(--ruimte-3); }
.artikel-kop__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--beton);
  border-top: 1px solid var(--lijn);
  border-bottom: 1px solid var(--lijn);
  padding-block: 0.6rem;
}
.artikel-kop__auteur { font-weight: 600; color: var(--inkt-zacht); }
.artikel-kop__auteur a { color: var(--inkt-zacht); }
.artikel-kop__datum,
.artikel-kop__leestijd { position: relative; }

.artikel-hero { max-width: 60rem; margin: 0 auto var(--ruimte-5); }
.artikel-hero__foto {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--lijn-sterk);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw-bon);
}
.artikel-hero__credit { font-size: 0.8rem; color: var(--beton); margin-top: var(--ruimte-1); text-align: right; }
.artikel-hero__credit a { color: var(--beton); }

.artikel__body { max-width: var(--smal); margin-inline: auto; font-size: 1.09rem; }
.artikel__body .chapo {
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--inkt);
  font-weight: 600;
  padding: var(--ruimte-3);
  background: var(--doorslag);
  border-left: 4px solid var(--oker-fel);
  border-radius: 0 var(--radius-groot) var(--radius-groot) 0;
  margin-bottom: var(--ruimte-4);
}
.artikel__body h2 {
  margin-top: var(--ruimte-5);
  padding-top: var(--ruimte-3);
  border-top: 2px solid var(--inkt);
}
.artikel__body h3 { margin-top: var(--ruimte-4); color: var(--inkt-zacht); }
.artikel__body p { margin-bottom: var(--ruimte-3); }
.artikel__body ul,
.artikel__body ol { margin-bottom: var(--ruimte-3); padding-left: 1.35rem; }
.artikel__body ul { list-style: none; padding-left: 1.5rem; }
.artikel__body ul li { position: relative; }
.artikel__body ul li::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--oker);
  transform: rotate(45deg);
}
.artikel__body ol li::marker { font-family: var(--font-kop); font-weight: 700; color: var(--oker-diep); }
.artikel__body li { margin-bottom: 0.45rem; }
.artikel__body a { color: var(--oker-diep); text-decoration-color: var(--oker-fel); }
.artikel__body a:hover { background: var(--oker-waas); }
.artikel__body strong { color: var(--inkt); }
.artikel__body blockquote {
  margin: var(--ruimte-4) 0;
  padding: var(--ruimte-3) var(--ruimte-3) var(--ruimte-3) var(--ruimte-4);
  background: var(--papier-diep);
  background-image: radial-gradient(ellipse 50% 60% at 88% 12%, rgba(43, 42, 38, 0.1), transparent 70%);
  border: 1px dashed var(--lijn-sterk);
  border-radius: var(--radius-groot);
  font-size: 1.08rem;
  font-style: normal;
  color: var(--inkt-zacht);
}
.artikel__body blockquote p:last-child { margin-bottom: 0; }
.artikel__body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--ruimte-4) 0;
  font-size: 0.98rem;
  background: var(--wit);
  border: 1px solid var(--lijn-sterk);
  display: block;
  overflow-x: auto;
}
.artikel__body th,
.artikel__body td { padding: 0.65rem 0.8rem; text-align: left; border-bottom: 1px solid var(--lijn); vertical-align: top; }
.artikel__body thead th {
  font-family: var(--font-kop);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--inkt);
  color: var(--papier);
  border-bottom: none;
}
.artikel__body tbody tr:nth-child(even) { background: rgba(239, 228, 196, 0.45); }
.artikel__body tbody tr:last-child td { border-bottom: none; }

/* auteursblok */
.auteur-blok {
  max-width: var(--smal);
  margin: var(--ruimte-6) auto 0;
  display: flex;
  gap: var(--ruimte-3);
  align-items: flex-start;
  flex-wrap: wrap;
  padding: var(--ruimte-4) var(--ruimte-3);
  background: var(--doorslag);
  border: 1px solid var(--lijn-sterk);
  border-radius: var(--radius-groot);
  position: relative;
}
.auteur-blok::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 7px;
  background-image: radial-gradient(circle at 50% 0, var(--papier) 0 3.2px, transparent 3.4px);
  background-size: 14px 14px;
}
.auteur-blok__foto {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--inkt);
  flex: none;
}
.auteur-blok__tekst { flex: 1 1 16rem; }
.auteur-blok__naam { font-family: var(--font-kop); font-weight: 800; font-size: 1.2rem; margin-bottom: var(--ruimte-1); }
.auteur-blok__bio { font-size: 0.99rem; color: var(--inkt-zacht); margin-bottom: var(--ruimte-2); }
.auteur-blok__links { display: flex; flex-wrap: wrap; gap: var(--ruimte-2); font-size: 0.92rem; }

/* verder lezen */
.verder { max-width: var(--breed); margin: var(--ruimte-6) auto 0; padding-inline: var(--marge); }
.verder__kop {
  font-size: var(--schaal-h2);
  padding-top: var(--ruimte-3);
  border-top: 2px solid var(--inkt);
  margin-bottom: var(--ruimte-4);
}
.verder__lijst { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--ruimte-3); }
.verder__item {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  overflow: hidden;
  transition: transform var(--overgang), box-shadow var(--overgang);
  margin: 0;
}
.verder__item:hover { transform: translateY(-3px); box-shadow: var(--schaduw-bon); }
.verder__link { display: block; color: var(--inkt); text-decoration: none; height: 100%; }
.verder__foto { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 1px solid var(--lijn); }
.verder__titel {
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.2;
  padding: var(--ruimte-3) var(--ruimte-3) var(--ruimte-1);
  margin: 0;
}
.verder__link:hover .verder__titel { color: var(--oker-diep); }
.verder__meta { font-size: 0.85rem; color: var(--beton); padding: 0 var(--ruimte-3) var(--ruimte-3); display: block; }

/* foutpagina */
.fout { min-height: 60vh; display: grid; place-items: center; padding-block: var(--ruimte-6); }
.fout__inner {
  max-width: 36rem;
  text-align: center;
  padding: var(--ruimte-5) var(--ruimte-3);
  background: var(--wit);
  border: 1px solid var(--lijn-sterk);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw-bon);
  position: relative;
}
.fout__inner::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 8px;
  background-image: radial-gradient(circle at 50% 0, var(--papier) 0 3.4px, transparent 3.6px);
  background-size: 15px 15px;
}
.fout__code {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: clamp(3.4rem, 12vw, 6rem);
  line-height: 1;
  color: var(--oker-fel);
  display: block;
  letter-spacing: -0.04em;
}
.fout__titel { margin-top: var(--ruimte-2); }
.fout__tekst { color: var(--inkt-zacht); }
.fout__acties { display: flex; flex-wrap: wrap; gap: var(--ruimte-2); justify-content: center; margin-top: var(--ruimte-4); }
.fout__knop { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-kop); font-weight: 700; text-decoration: none; padding: 0.8rem 1.3rem; border: 2px solid var(--inkt); border-radius: var(--radius); background: var(--oker-fel); color: var(--inkt); box-shadow: 4px 4px 0 var(--inkt); }
.fout__knop:hover { color: var(--inkt); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--inkt); }
.fout__link { align-self: center; color: var(--oker-diep); font-weight: 600; }

/* 15. Interne pagina's, algemene tekstopmaak
   ------------------------------------------------------------------------ */
.tekstpagina { padding-block: var(--ruimte-5) var(--ruimte-6); }
.tekstpagina__inner { max-width: var(--smal); margin-inline: auto; padding-inline: var(--marge); }
.tekstpagina h2 { margin-top: var(--ruimte-5); padding-top: var(--ruimte-3); border-top: 2px solid var(--inkt); }
.tekstpagina h3 { margin-top: var(--ruimte-4); }
.tekstpagina ul li::marker { color: var(--oker); }
.tekstpagina dl { margin: 0 0 var(--ruimte-3); }
.tekstpagina dt { font-family: var(--font-kop); font-weight: 700; margin-top: var(--ruimte-2); }
.tekstpagina dd { margin: 0 0 var(--ruimte-1); color: var(--inkt-zacht); }

/* 16. Animatie
   ------------------------------------------------------------------------ */
@keyframes bon-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes krabbel {
  from { opacity: 0; transform: rotate(-4deg) translateX(-6px); }
  to { opacity: 1; transform: rotate(-4deg) translateX(0); }
}
.bonkaart { animation: bon-in 520ms var(--overgang) both; }
.bonkaart__krabbel { animation: krabbel 900ms 320ms var(--overgang) both; }

/* 17. Breekpunten
   ------------------------------------------------------------------------ */
@media (min-width: 640px) {
  :root { --marge: 1.6rem; }
  body.thema-doorslagbon { font-size: 1.09rem; }
  .raster--twee { grid-template-columns: repeat(2, 1fr); }
  .raster--drie { grid-template-columns: repeat(2, 1fr); }
  .verder__lijst { grid-template-columns: repeat(2, 1fr); }
  .bon { padding: var(--ruimte-4); }
  .bonkaart { padding: var(--ruimte-4); }
  .formulier { padding: var(--ruimte-5) var(--ruimte-4); }
  .formulier button { width: auto; min-width: 16rem; }
  .voet__raster { grid-template-columns: repeat(2, 1fr); }
  .strook { padding-block: var(--ruimte-6); }
}

@media (min-width: 900px) {
  :root { --marge: 2.2rem; }
  .menu__knop { display: none; }
  .menu__paneel {
    display: block !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }
  .menu__lijst { flex-direction: row; align-items: center; gap: var(--ruimte-3); }
  .menu__link { border-bottom: 2px solid transparent; padding: 0.35rem 0.1rem; font-size: 0.98rem; }
  .menu__link:hover,
  .menu__link:focus-visible { background: transparent; border-bottom-color: var(--oker-fel); }
  .menu__cta { margin-top: 0; margin-left: var(--ruimte-2); }
  .menu__cta .knop { padding: 0.6rem 1.05rem; font-size: 0.95rem; }
  .hero__raster { grid-template-columns: 1.15fr 0.85fr; gap: var(--ruimte-6); align-items: center; }
  .bonkaart { max-width: none; margin-left: auto; transform: rotate(1.2deg); }
  .bonkaart:hover { transform: rotate(0deg); }
  .raster--drie { grid-template-columns: repeat(3, 1fr); }
  .raster--vier { grid-template-columns: repeat(2, 1fr); }
  .contact__raster { grid-template-columns: 0.85fr 1.15fr; gap: var(--ruimte-5); }
  .verder__lijst { grid-template-columns: repeat(3, 1fr); }
  .voet__raster { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .voet__net { grid-column: span 4; }
  .artikel__body { font-size: 1.13rem; }
  .artikel-kop__titel { font-size: clamp(2.4rem, 3.4vw, 3.4rem); }
}

@media (min-width: 1200px) {
  .raster--vier { grid-template-columns: repeat(4, 1fr); }
  .voet__raster { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr; }
  .voet__net { grid-column: auto; }
  .artikel__inner { display: block; }
  .strook { padding-block: 5rem; }
  .hero { padding-block: 4.5rem 6rem; }
}

/* 18. Voorkeuren van de bezoeker
   ------------------------------------------------------------------------ */
@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;
  }
  .kaartje:hover,
  .functie:hover,
  .verder__item:hover,
  .knop--vol:hover,
  .knop--rand:hover,
  .bonkaart:hover { transform: none; }
}

@media print {
  body.thema-doorslagbon { background: #ffffff; color: #000000; }
  .kop, .voet, .hero__acties, .formulier, .menu { display: none; }
  .artikel__body { max-width: none; font-size: 11pt; }
  a { text-decoration: underline; color: #000000; }
}

/* 19. Binnenpagina's: kop van de pagina
   ------------------------------------------------------------------------ */
.pagina { padding-bottom: var(--ruimte-6); }

.paginakop {
  position: relative;
  background: linear-gradient(180deg, var(--papier-diep), var(--doorslag));
  border-bottom: 2px solid var(--inkt);
  padding-block: var(--ruimte-5) var(--ruimte-4);
  margin-bottom: var(--ruimte-5);
}
.paginakop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 8px;
  background-image: var(--perforatie);
  background-size: 16px 16px;
  background-position: center;
  pointer-events: none;
}
.paginakop__binnen { max-width: 52rem; }
.paginakop__label {
  display: inline-block;
  font-family: var(--font-kop);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oker-diep);
  border: 1px solid var(--lijn-sterk);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  margin-bottom: var(--ruimte-2);
  background: var(--wit);
}
.paginakop__titel { margin-bottom: var(--ruimte-2); }
.paginakop__lood {
  font-size: 1.12rem;
  color: var(--inkt-zacht);
  max-width: 44rem;
}
.paginakop__datum {
  margin-top: var(--ruimte-3);
  font-family: var(--font-kop);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beton);
}

/* 20. Auteurspagina
   ------------------------------------------------------------------------ */
.auteurkaart {
  display: grid;
  gap: var(--ruimte-4);
  margin-bottom: var(--ruimte-5);
  align-items: start;
}
.auteurkaart__portret {
  position: relative;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw-bon);
  padding: 0.6rem 0.6rem 0.9rem;
  max-width: 20rem;
}
.auteurkaart__foto {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.9) contrast(1.03);
}
.auteurkaart__onderschrift {
  margin: var(--ruimte-2) 0 0;
  font-size: 0.85rem;
  color: var(--beton);
  text-align: center;
}
.auteurkaart__tekst p { color: var(--inkt-zacht); }
.auteurkaart__rol {
  display: inline-block;
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stempel);
  border: 2px solid var(--stempel);
  border-radius: var(--radius);
  padding: 0.25rem 0.6rem;
  margin-bottom: var(--ruimte-3);
  transform: rotate(-1.5deg);
}

.profiel__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--ruimte-2);
}
.profiel__link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.6rem;
  background: var(--doorslag);
  border: 1px solid var(--lijn);
  border-left: 4px solid var(--oker-fel);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  text-decoration: none;
  color: var(--inkt);
  transition: transform var(--overgang), box-shadow var(--overgang), background-color var(--overgang);
}
.profiel__link:hover {
  background: var(--wit);
  transform: translateX(3px);
  box-shadow: var(--schaduw-bon);
  color: var(--inkt);
}
.profiel__dienst { font-family: var(--font-kop); font-weight: 700; }
.profiel__adres { font-size: 0.9rem; color: var(--beton); word-break: break-word; }

.artikellijst { list-style: none; margin: 0; padding: 0; counter-reset: stuk; }
.artikellijst__item {
  position: relative;
  border-bottom: 1px dashed var(--lijn-sterk);
  padding: var(--ruimte-3) 0 var(--ruimte-3) 2.6rem;
  margin: 0;
}
.artikellijst__item::before {
  counter-increment: stuk;
  content: counter(stuk, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--ruimte-3);
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--oker-diep);
  background: var(--oker-waas);
  border-radius: var(--radius);
  padding: 0.1rem 0.35rem;
}
.artikellijst__item:last-child { border-bottom: none; }
.artikellijst__link {
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--inkt);
  text-decoration: none;
  display: inline-block;
}
.artikellijst__link:hover {
  color: var(--oker-diep);
  text-decoration: underline;
  text-decoration-color: var(--oker-fel);
  text-decoration-thickness: 3px;
}
.artikellijst__meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: var(--beton);
}

/* 21. Blogoverzicht
   ------------------------------------------------------------------------ */
.blograster { display: grid; gap: var(--ruimte-4); }
.kaartje__chapo {
  font-size: 0.97rem;
  color: var(--inkt-zacht);
  margin-bottom: var(--ruimte-2);
}
.blogintro { margin-bottom: var(--ruimte-5); }
.blogintro__bon { margin-top: var(--ruimte-4); }
.blogintro__bon h2 { font-size: var(--schaal-h3); margin-bottom: var(--ruimte-2); }
.blogintro__bon ul { margin-bottom: 0; }

/* 22. Sitemap
   ------------------------------------------------------------------------ */
.sitemapraster { display: grid; gap: var(--ruimte-4); }
.sitemapgroep { padding: var(--ruimte-4) var(--ruimte-3); }
.sitemapgroep__kop {
  font-size: var(--schaal-h3);
  margin-bottom: var(--ruimte-2);
  padding-bottom: var(--ruimte-1);
  border-bottom: 2px solid var(--inkt);
}
.sitemapgroep__uitleg { font-size: 0.95rem; color: var(--beton); margin-bottom: var(--ruimte-3); }
.sitemapgroep__lijst { list-style: none; margin: 0; padding: 0; }
.sitemapgroep__lijst li {
  margin-bottom: 0.45rem;
  padding-left: 1.2rem;
  position: relative;
}
.sitemapgroep__lijst li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background: var(--oker-fel);
}
.sitemapgroep__lijst a { color: var(--inkt); text-decoration: none; }
.sitemapgroep__lijst a:hover {
  color: var(--oker-diep);
  text-decoration: underline;
  text-decoration-color: var(--oker-fel);
  text-decoration-thickness: 2px;
}

/* 23. Bedankpagina
   ------------------------------------------------------------------------ */
.bedankt__bon { max-width: 40rem; margin-bottom: var(--ruimte-5); }
.bedankt__stempel {
  display: inline-block;
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stempel);
  border: 2px solid var(--stempel);
  border-radius: var(--radius);
  padding: 0.3rem 0.75rem;
  transform: rotate(-2deg);
  margin-bottom: var(--ruimte-3);
}
.bedankt__stappen { list-style: none; margin: 0; padding: 0; counter-reset: bedank; }
.bedankt__stappen li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: var(--ruimte-2);
}
.bedankt__stappen li::before {
  counter-increment: bedank;
  content: counter(bedank);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--inkt);
  background: var(--oker-fel);
  border: 1px solid var(--inkt);
  border-radius: 50%;
}

/* 24. Juridische pagina's
   ------------------------------------------------------------------------ */
.tekstpagina__lood {
  font-size: 1.1rem;
  color: var(--inkt-zacht);
  margin-bottom: var(--ruimte-4);
}
.tekstpagina h2:first-of-type { margin-top: var(--ruimte-4); }
.inhoud { margin-bottom: var(--ruimte-5); }
.inhoud__kop {
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oker-diep);
  margin-bottom: var(--ruimte-2);
}
.inhoud__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem 1.2rem;
}
.inhoud__lijst a { color: var(--inkt-zacht); text-decoration: none; border-bottom: 1px solid var(--lijn-sterk); }
.inhoud__lijst a:hover { color: var(--oker-diep); border-bottom-color: var(--oker-fel); }

.gegevens {
  margin: 0;
  display: grid;
  gap: 0.1rem 1rem;
}
.gegevens dt {
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--beton);
  margin-top: var(--ruimte-2);
}
.gegevens dd {
  margin: 0;
  color: var(--inkt);
  border-bottom: 1px dashed var(--lijn);
  padding-bottom: 0.4rem;
}
.gegevens dd:last-child { border-bottom: none; }

.kader {
  margin: var(--ruimte-4) 0;
  padding: var(--ruimte-3);
  background: var(--oker-waas);
  border-left: 4px solid var(--oker);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.kader p:last-child { margin-bottom: 0; }
.kader h3 { margin-top: 0; font-size: 1.05rem; }

.slotregel {
  margin-top: var(--ruimte-5);
  padding-top: var(--ruimte-3);
  border-top: 2px solid var(--inkt);
  font-size: 0.92rem;
  color: var(--beton);
}

/* 25. Breekpunten voor de binnenpagina's
   ------------------------------------------------------------------------ */
@media (min-width: 640px) {
  .profiel__lijst { grid-template-columns: repeat(2, 1fr); }
  .gegevens { grid-template-columns: 12rem 1fr; }
  .gegevens dt { margin-top: 0; padding-bottom: 0.4rem; border-bottom: 1px dashed var(--lijn); }
  .inhoud__lijst { grid-template-columns: repeat(2, 1fr); }
  .sitemapraster { grid-template-columns: repeat(2, 1fr); }
  .blograster { grid-template-columns: repeat(2, 1fr); }
  .sitemapgroep { padding: var(--ruimte-4); }
  .paginakop { padding-block: var(--ruimte-6) var(--ruimte-5); }
}

@media (min-width: 900px) {
  .auteurkaart { grid-template-columns: 20rem 1fr; gap: var(--ruimte-5); }
  .blograster { grid-template-columns: repeat(3, 1fr); }
  .sitemapraster { grid-template-columns: repeat(3, 1fr); }
  .artikellijst__link { font-size: 1.12rem; }
}

@media (min-width: 1200px) {
  .paginakop__binnen { max-width: 58rem; }
}

@media (prefers-reduced-motion: reduce) {
  .profiel__link:hover { transform: none; }
  .auteurkaart__rol,
  .bedankt__stempel { transform: none; }
}

/* 26. Kleine paginaspecifieke accenten
   ------------------------------------------------------------------------ */
.auteur .artikellijst { max-width: 52rem; }
.auteur .stappen { max-width: 52rem; }
.blog .blogintro { max-width: 52rem; }
.blog .blogintro__bon ul { padding-left: 1.25rem; }
