/* =========================================================
   IOcontrol — merkstijlblad
   Gebaseerd op Brandbook v2.0: Werf Zwart, Hi-Vis, Papier,
   Inter Tight + IBM Plex Mono, schakelaar als merkidee.
   ========================================================= */

:root {
  /* Merkkleuren */
  --zwart: #16191B;
  --hivis: #F7B500;
  --hivis-hover: #FFC72C;
  --papier: #F7F5F0;
  --wit: #FFFFFF;
  --inkt: #1D2224;
  --staal: #5F6B6D;
  --lijn: #E3E1DB;
  --groen: #2E7D4F;
  --rood: #C24634;

  /* Donkere varianten */
  --lijn-dark: rgba(255, 255, 255, 0.16);
  --tekst-dark: rgba(255, 255, 255, 0.72);

  /* Ritme */
  --wrap: 1160px;
  --gutter: 32px;
  --radius: 8px;
  --radius-lg: 12px;
  --sectie: clamp(56px, 8vw, 96px);

  /* Typografie */
  --sans: "Inter", "Inter Tight", Arial, Helvetica, sans-serif;
  --display: "Inter Tight", "Inter", Arial, Helvetica, sans-serif;
  --mono: "IBM Plex Mono", Consolas, "Courier New", monospace;
}

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

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

body {
  margin: 0;
  background: var(--papier);
  color: var(--inkt);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

p { margin: 0; }

a { color: inherit; }

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

.on-dark :focus-visible { outline-color: var(--hivis); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--zwart);
  color: #fff;
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--smal { max-width: 780px; }

.sectie { padding-block: var(--sectie); }
.sectie--kort { padding-block: clamp(40px, 5vw, 64px); }

.sectie--papier { background: var(--papier); }
.sectie--wit { background: var(--wit); }
.sectie--zwart {
  background: var(--zwart);
  color: #fff;
}
.sectie--zwart h1, .sectie--zwart h2, .sectie--zwart h3 { color: #fff; }
.sectie--zwart p { color: var(--tekst-dark); }

.rand-boven { border-top: 1px solid var(--lijn); }

/* ---------- Typografie-schaal ---------- */

.display {
  font-family: var(--display);
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.h1 { font-size: clamp(34px, 4.6vw, 48px); letter-spacing: -0.03em; }
.h2 { font-size: clamp(27px, 3.2vw, 34px); letter-spacing: -0.025em; }
.h3 { font-size: clamp(19px, 1.6vw, 21px); letter-spacing: -0.015em; line-height: 1.25; }

.lead {
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--staal);
  max-width: 62ch;
}
.sectie--zwart .lead { color: var(--tekst-dark); }

.tekst { max-width: 68ch; }
.tekst + .tekst { margin-top: 16px; }

.accent { color: var(--hivis); }

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--staal);
  margin: 0 0 16px;
}
.sectie--zwart .eyebrow { color: rgba(255, 255, 255, 0.6); }

.mono {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.sectie-kop { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.sectie-kop p { margin-top: 16px; }

/* ---------- Merk & schakelaar ---------- */

.mark { width: 30px; height: 30px; flex: none; color: currentColor; }
.mark .bar { color: inherit; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.03em;
  color: inherit;
}
.brand b { font-weight: 700; }
.brand span { font-weight: 400; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lijn);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav a {
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--hivis); }
.nav a[aria-current="page"] { border-bottom-color: var(--zwart); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  background: transparent;
  border: 1.5px solid var(--zwart);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primair { background: var(--hivis); color: var(--zwart); }
.btn--primair:hover { background: var(--hivis-hover); }

.btn--rand { border-color: var(--zwart); color: var(--zwart); }
.btn--rand:hover { background: rgba(22, 25, 27, 0.06); }

.on-dark .btn--rand, .sectie--zwart .btn--rand {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.on-dark .btn--rand:hover, .sectie--zwart .btn--rand:hover { background: rgba(255, 255, 255, 0.1); }

.btn-rij {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.tekstlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--hivis);
  padding-bottom: 2px;
  min-height: 32px;
}
.tekstlink:hover { border-bottom-color: var(--zwart); }
.sectie--zwart .tekstlink:hover { border-bottom-color: #fff; }

/* ---------- Status ---------- */

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--lijn);
  border-radius: 999px;
  background: var(--wit);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--inkt);
  white-space: nowrap;
}
.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--staal);
  flex: none;
}
.status--aan::before { background: var(--groen); }
.status--uit::before { background: var(--rood); }
.status--wacht::before { background: var(--staal); }

.sectie--zwart .status,
.status--donker {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--lijn-dark);
  color: #fff;
}

/* ---------- Hero ---------- */

.hero { padding-block: clamp(48px, 6vw, 88px) clamp(56px, 7vw, 96px); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero p.lead { margin-top: 24px; }

.hero-beeld { position: relative; }
.hero-beeld img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.beeld-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: rgba(22, 25, 27, 0.92);
  border-radius: var(--radius);
  color: #fff;
}
.beeld-badge .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}
.beeld-badge strong { font-size: 15px; font-weight: 600; }

/* ---------- Feitenstrook ---------- */

.strook {
  border-block: 1px solid var(--lijn);
  background: var(--wit);
}
.strook-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-block: 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--staal);
}
.strook-inner span { display: inline-flex; align-items: center; gap: 10px; }
.strook-inner span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--hivis);
  flex: none;
}

/* ---------- Grids & kaarten ---------- */

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }

.kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kaart h3 { margin-top: 4px; }
.kaart p { color: var(--staal); font-size: 16px; }

.kaart--zwart {
  background: var(--zwart);
  border-color: var(--zwart);
  color: #fff;
}
.kaart--zwart p { color: var(--tekst-dark); }

.kaart--dienst { gap: 16px; }
.kaart--dienst .prijs {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--inkt);
  padding-top: 16px;
  border-top: 1px solid var(--lijn);
  margin-top: auto;
}
.kaart--zwart .prijs { color: #fff; border-top-color: var(--lijn-dark); }

.kaart .lijst { margin-top: 4px; }

.icoon {
  width: 44px;
  height: 44px;
  color: var(--zwart);
}
.kaart--zwart .icoon { color: var(--hivis); }

/* ---------- Lijsten ---------- */

.lijst { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.lijst li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--staal);
}
.lijst li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--hivis);
}
.lijst li strong { color: var(--inkt); font-weight: 600; }
.sectie--zwart .lijst li { color: var(--tekst-dark); }
.sectie--zwart .lijst li strong, .kaart--zwart .lijst li strong { color: #fff; }
.kaart--zwart .lijst li { color: var(--tekst-dark); }

.lijst--niet li::before { background: var(--rood); }
.lijst--wel li::before { background: var(--groen); }

/* ---------- Ruis naar regie ---------- */

.schakel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.schakel-paneel {
  border: 1px solid var(--lijn);
  border-radius: var(--radius-lg);
  background: var(--wit);
  padding: 24px;
  min-height: 268px;
}
.schakel-paneel .kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--staal);
}

.ruis-wolk { display: flex; flex-wrap: wrap; gap: 8px; }
.ruis-wolk span {
  display: inline-block;
  padding: 7px 11px;
  border: 1px dashed #C9C5BC;
  border-radius: 6px;
  background: var(--papier);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--staal);
}
.ruis-wolk span:nth-child(3n) { transform: rotate(-1.4deg); }
.ruis-wolk span:nth-child(4n) { transform: rotate(1.2deg); }

.regie-rij {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--lijn);
  font-size: 15px;
}
.regie-rij:last-child { border-bottom: 0; }
.regie-rij .naam { font-weight: 500; }

.schakel-knop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.schakel-knop .cirkel {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--zwart);
  color: var(--hivis);
  display: grid;
  place-items: center;
}
.schakel-knop .cirkel .mark { width: 46px; height: 46px; }
.schakel-knop .tekst {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--staal);
}

/* ---------- Vergelijking ---------- */

.vergelijk { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.vergelijk .kaart { padding: 32px; }
.vergelijk .rol {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--staal);
}
.kaart--zwart .rol { color: var(--hivis); }

/* ---------- Stappen ---------- */

.stappen { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.stap {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.stap::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--lijn);
}
.stap--actief::before { background: var(--hivis); }
.stap .nummer {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--staal);
  display: block;
  margin-bottom: 12px;
}
.stap h3 { margin-bottom: 10px; }
.stap p { color: var(--staal); font-size: 16px; }

/* ---------- Metrieken ---------- */

.metriek {
  border-top: 2px solid var(--zwart);
  padding-top: 16px;
}
.metriek .waarde {
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.metriek .omschrijving {
  margin-top: 8px;
  font-size: 15px;
  color: var(--staal);
}
.sectie--zwart .metriek { border-top-color: var(--hivis); }
.sectie--zwart .metriek .omschrijving { color: var(--tekst-dark); }

/* ---------- Tabel ---------- */

.tabel-wrap {
  overflow-x: auto;
  border: 1px solid var(--lijn);
  border-radius: var(--radius-lg);
  background: var(--wit);
}
table.tabel {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 16px;
}
table.tabel th, table.tabel td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--lijn);
  vertical-align: top;
}
table.tabel thead th {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--staal);
  border-bottom: 2px solid var(--zwart);
}
table.tabel tbody tr:last-child td { border-bottom: 0; }
table.tabel td:first-child { font-weight: 600; }
table.tabel td .sub { display: block; color: var(--staal); font-size: 15px; font-weight: 400; margin-top: 4px; }

/* ---------- Citaat ---------- */

.citaat {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.citaat-bron {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Rapportvoorbeeld ---------- */

.rapport {
  background: var(--papier);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.rapport .rapport-kop {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--zwart);
}
.rapport .metriek-rij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--lijn);
}
.rapport .bevinding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--lijn);
  flex-wrap: wrap;
}
.rapport .bevinding:last-child { border-bottom: 0; }
.rapport .bevinding .titel { font-weight: 600; }
.rapport .bevinding .sub { color: var(--staal); font-size: 15px; }
.rapport .voetnoot { margin-top: 20px; font-size: 14px; color: var(--staal); }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--lijn); }
.faq details {
  border-bottom: 1px solid var(--lijn);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  list-style: none;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--staal);
  flex: none;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 22px; color: var(--staal); max-width: 70ch; }

/* ---------- Formulier ---------- */

.formulier { display: grid; gap: 18px; }
.veld { display: grid; gap: 8px; }
.veld label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--staal);
}
.veld input, .veld select, .veld textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  background: var(--wit);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--inkt);
}
.veld textarea { min-height: 132px; resize: vertical; }
.veld input:focus, .veld select:focus, .veld textarea:focus { border-color: var(--zwart); }
.veld-rij { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.formulier .voet { font-size: 14px; color: var(--staal); }

/* ---------- CTA-blok ---------- */

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.cta-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--zwart);
  color: #fff;
  padding-block: clamp(48px, 6vw, 72px) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lijn-dark);
}
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { text-decoration: none; color: var(--tekst-dark); font-size: 15.5px; }
.footer-grid a:hover { color: #fff; }
.footer-merk p { margin-top: 16px; color: var(--tekst-dark); max-width: 34ch; font-size: 15.5px; }
.footer-tagline {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hivis);
}
.footer-voet {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Beeld ---------- */

.beeld { border-radius: var(--radius-lg); overflow: hidden; }
.beeld img { width: 100%; height: 100%; object-fit: cover; }
.beeld--staand img { aspect-ratio: 4 / 5; }
.beeld--liggend img { aspect-ratio: 3 / 2; }

.paginakop { padding-block: clamp(44px, 5.5vw, 76px) clamp(32px, 4vw, 48px); }
.paginakop .lead { margin-top: 20px; }

/* ---------- Responsief ---------- */

@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .hero-grid, .cta-grid { grid-template-columns: 1fr; }
  .hero-beeld img { aspect-ratio: 3 / 2; }
  .schakel { grid-template-columns: 1fr; }
  .schakel-knop { flex-direction: row; justify-content: center; gap: 16px; }
  .schakel-knop .cirkel { width: 72px; height: 72px; }
  .schakel-knop .cirkel .mark { width: 34px; height: 34px; }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
    background: var(--papier);
    border-bottom: 1px solid var(--lijn);
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--lijn); }
  .nav a[aria-current="page"] { border-bottom-color: var(--zwart); }
  .nav-cta { margin: 16px 0 0; }
  .nav-toggle { display: inline-flex; }
  .site-header { position: relative; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .kaart, .stap { padding: 22px; }
  .beeld-badge { left: 12px; right: 12px; bottom: 12px; padding: 12px; }
}

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

/* ---------- Aanvullingen ---------- */

.mark .bar { stroke: currentColor; }
.sectie--zwart .mark .bar,
.site-footer .mark .bar { stroke: var(--hivis); }
.schakel-knop .cirkel .mark .bar { stroke: var(--hivis); }

.footer-grid li { color: var(--tekst-dark); font-size: 15.5px; }
.site-footer .brand { color: #fff; }

.hero-beeld img { aspect-ratio: 3 / 2; }
.cta-grid img { aspect-ratio: 16 / 10; }
.beeld--staand img { aspect-ratio: 5 / 6; }

.chip-rij { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--lijn);
  border-radius: 999px;
  background: var(--wit);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--inkt);
}
.sectie--zwart .chip { background: rgba(255,255,255,.06); border-color: var(--lijn-dark); color: #fff; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.split--asym { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.split--start { align-items: start; }

@media (max-width: 900px) {
  .split, .split--asym { grid-template-columns: 1fr; }
}

.mini-feiten {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--staal);
}
.mini-feiten span { display: inline-flex; align-items: center; gap: 10px; }
.mini-feiten span::before { content: ""; width: 6px; height: 6px; background: var(--hivis); flex: none; }

.notitie {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--hivis);
  background: var(--wit);
  font-size: 15.5px;
  color: var(--staal);
}
.sectie--zwart .notitie { background: rgba(255,255,255,.05); }

.kaart--vlak { background: transparent; border: 0; padding: 0; }
.kaart--vlak .nummer {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--staal);
  display: block;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--zwart);
  margin-bottom: 18px;
}
.sectie--zwart .kaart--vlak .nummer { border-bottom-color: var(--hivis); color: rgba(255,255,255,.6); }

.dark-scheiding {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--lijn-dark);
}

/* Gelijke hoogte voor de ruis/regie-panelen */
.schakel { align-items: stretch; }
.schakel-paneel { display: flex; flex-direction: column; }

/* Rapportregels: feit en impact onder elkaar */
.rapport .bevinding .titel { display: block; }
.rapport .bevinding .sub { display: block; margin-top: 4px; }

/* Vaste ademruimte tussen kop en leadtekst */
.display + .lead, .h1 + .lead, .h2 + .lead { margin-top: 16px; }

/* ---------- Mobiele correcties ---------- */

/* Eyebrow-label altijd boven de titel, nooit ertegenaan */
.beeld-badge .label { display: block; margin-bottom: 4px; }
.beeld-badge strong { display: block; }

@media (max-width: 520px) {
  /* Badge op de hero: tekstblok en status onder elkaar */
  .beeld-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .beeld-badge strong { font-size: 15.5px; line-height: 1.35; }

  /* Footer: één kolom, geen krappe kolommen van 150px */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-merk p { max-width: none; }
}
