/* ══════════════════════════════════════════════════════════════════════════
   Arnout Timmerman — Portfolio (statisch)
   Styleguide v1.0 · Syne + DM Sans · April 2026
   ══════════════════════════════════════════════════════════════════════════ */


/* ── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Basiskleuren */
  --kleur-donker:       #1A1A1A;
  --kleur-achtergrond:  #F4F3F0;
  --kleur-zilver:       #B8B8B8;
  --kleur-grijs:        #6B6B6B;
  --kleur-border:       #E0DFDC;

  /* Themakleuren */
  --kleur-rood:         #C0392B;
  --kleur-blauw:        #2C5F8A;
  --kleur-geel:         #E8C53A;
  --kleur-groen:        #4A7C59;
  --kleur-grijs:        #8898A4;

  /* Lichte themakleuren (achtergronden) */
  --kleur-rood-licht:   #FAF0EF;
  --kleur-blauw-licht:  #EEF3F8;
  --kleur-geel-licht:   #FBF8E8;
  --kleur-groen-licht:  #EEF5F1;
  --kleur-grijs-licht:  #EEF1F4;

  /* Typografie */
  --font-kop:    'Playfair Display', serif;
  --font-body:   'Switzer', sans-serif;

  /* Lay-out */
  --nav-hoogte:         60px;
  --sidebar-breedte:    280px;
  --max-breedte:        1280px;
  --uitloop:            40px;

  /* Radii */
  --radius-knop:  2px;
  --radius-kaart: 4px;
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--kleur-donker);
  background: var(--kleur-achtergrond);
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; height: auto; }
input, textarea, select { font: inherit; }

/* ── TYPOGRAFIE ─────────────────────────────────────────────────────────── */
h1 {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h2 {
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h3 {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.25;
}

h4 {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}

.lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  max-width: 680px;
}

.label-klein {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kleur-zilver);
}

/* ── NAVIGATIE ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--kleur-border);
}

.nav__binnenkant {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 var(--uitloop);
  height: var(--nav-hoogte);
}

.nav__merk {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.nav__naam {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--kleur-donker);
}

.nav__portfolio-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kleur-grijs);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--kleur-grijs);
  transition: color 0.15s;
}

.nav__links a:hover,
.nav__links a.is-actief {
  color: var(--kleur-donker);
}

.nav__links a.is-actief {
  font-weight: 500;
}

/* 4-kleurige streep onder nav */
.nav__kleurstreep {
  display: flex;
  height: 4px;
}

.nav__kleurstreep-deel {
  flex: 1;
}

.nav__kleurstreep-deel--rood  { background: var(--kleur-rood); }
.nav__kleurstreep-deel--blauw { background: var(--kleur-blauw); }
.nav__kleurstreep-deel--geel  { background: var(--kleur-geel); }
.nav__kleurstreep-deel--groen { background: var(--kleur-groen); }
.nav__kleurstreep-deel--grijs { background: var(--kleur-grijs); }

/* Archief-header zoekbalk alleen op mobiel/tablet */
@media (min-width: 961px) {
  .archief-zoek {
    display: none;
  }
}

/* ── ARCHIEF LAYOUT ─────────────────────────────────────────────────────── */
.archief-wrapper {
  width: 100%;
  padding: 0 var(--uitloop) 0 0;
}

.archief-layout {
  display: grid;
  grid-template-columns: var(--sidebar-breedte) 1fr;
  min-height: calc(100vh - var(--nav-hoogte) - 4px);
  align-items: start;
}

/* ── SIDEBAR ────────────────────────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: calc(var(--nav-hoogte) + 4px);
  height: calc(100vh - var(--nav-hoogte) - 4px);
  overflow-y: auto;
  border-right: 1px solid var(--kleur-border);
  background: #fff;
  padding: 32px 24px;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
}

.sidebar__spacer {
  flex: 1;
  min-height: 24px;
}

.sidebar__credits {
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: -32px;
  padding: 12px 24px;
  background: #636363;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 300;
  color: #d0d0d0;
  text-align: left;
}

.sidebar__credits a {
  color: #ccc;
  text-decoration: none;
}

.sidebar__credits strong {
  font-weight: 600;
  color: #ddd;
}

.sidebar__credits a:hover {
  color: #fff;
}

/* Scrollbar sidebar */
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: var(--kleur-border); border-radius: 2px; }

.sidebar__hoofd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.sidebar__sluit {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--kleur-zilver);
  padding: 4px;
  line-height: 0;
}

.sidebar__sluit:hover {
  color: var(--kleur-donker);
}

.sidebar__titel {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kleur-grijs);
  margin-bottom: 0;
}

/* ── FILTER GROEPEN ─────────────────────────────────────────────────────── */
.filter-groep {
  margin-bottom: 32px;
}

.filter-groep__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kleur-grijs);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--kleur-border);
}

/* THEMA — radio buttons */
.filter-thema {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: var(--radius-kaart);
  cursor: pointer;
  transition: background 0.12s;
  position: relative;
}

.filter-thema input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-thema:hover {
  background: var(--kleur-border);
}

.filter-thema.is-actief {
  background: var(--kleur-border);
}

.filter-thema__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.filter-thema__dot--alle   { background: var(--kleur-donker); }
.filter-thema__dot--rood   { background: var(--kleur-rood); }
.filter-thema__dot--blauw  { background: var(--kleur-blauw); }
.filter-thema__dot--geel   { background: var(--kleur-geel); }
.filter-thema__dot--groen  { background: var(--kleur-groen); }
.filter-thema__dot--grijs  { background: var(--kleur-grijs); }

.filter-thema__naam {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--kleur-donker);
  flex: 1;
}

.filter-thema.is-actief .filter-thema__naam {
  font-weight: 500;
}

.filter-thema__count {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--kleur-grijs);
}

/* TYPE — checkboxes */
.filter-type {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  margin: 0 -10px;
  border-radius: var(--radius-kaart);
  cursor: pointer;
  transition: background 0.12s;
}

.filter-type input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-type:hover {
  background: var(--kleur-border);
}

.filter-type__vakje {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--kleur-zilver);
  border-radius: 2px;
  flex-shrink: 0;
  transition: border-color 0.12s, background 0.12s;
}

.filter-type.is-actief .filter-type__vakje {
  background: var(--kleur-donker);
  border-color: var(--kleur-donker);
}

.filter-type__vinkje {
  display: none;
  width: 9px;
  height: 6px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.filter-type.is-actief .filter-type__vinkje {
  display: block;
}

.filter-type__naam {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--kleur-donker);
  flex: 1;
}

.filter-type__count {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--kleur-grijs);
}

/* JAAR — range slider */
.filter-jaar__slider {
  position: relative;
  margin-top: 8px;
}

.filter-jaar__track {
  position: relative;
  height: 3px;
  background: var(--kleur-border);
  border-radius: 2px;
  margin: 12px 0 6px;
}

.filter-jaar__fill {
  position: absolute;
  height: 100%;
  background: var(--kleur-donker);
  border-radius: 2px;
  left: 0%;
  right: 0%;
}

.filter-jaar__inputs {
  position: relative;
  height: 0;
}

.filter-jaar__input {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  height: 20px;
}

.filter-jaar__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--kleur-donker);
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 1.5px var(--kleur-donker);
  cursor: pointer;
  pointer-events: all;
}

.filter-jaar__input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--kleur-donker);
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 1.5px var(--kleur-donker);
  cursor: pointer;
  pointer-events: all;
}

.filter-jaar__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.filter-jaar__labels span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--kleur-grijs);
}

/* ── ARCHIEF MAIN ───────────────────────────────────────────────────────── */
.archief-main {
  padding: 40px 0 80px 48px;
  min-width: 0;
}

/* ── ARCHIEF HEADER ─────────────────────────────────────────────────────── */
.archief-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--kleur-border);
}

.archief-hero { flex: 1; }

.archief-groep-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-zilver);
  margin-bottom: 14px;
}

.archief-titel {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--kleur-donker);
  white-space: nowrap;
}

.archief-intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--kleur-grijs);
  white-space: nowrap;
}

/* ── ZOEKBALK ───────────────────────────────────────────────────────────── */
.archief-zoek {
  flex-shrink: 0;
  width: 280px;
}

.zoekbalk {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-kaart);
  padding: 10px 14px;
  transition: border-color 0.15s;
}

.zoekbalk:focus-within {
  border-color: var(--kleur-donker);
}

.zoekbalk__icoon {
  color: var(--kleur-zilver);
  flex-shrink: 0;
  font-size: 15px;
}

.zoekbalk__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--kleur-donker);
  outline: none;
}

.zoekbalk__input:focus-visible {
  outline: none;
}

.zoekbalk__input::placeholder {
  color: var(--kleur-zilver);
}

.zoekbalk__kbdtip {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  color: var(--kleur-zilver);
  background: var(--kleur-achtergrond);
  border: 1px solid var(--kleur-border);
  border-radius: 2px;
  padding: 1px 5px;
  flex-shrink: 0;
}

.zoekbalk__wis {
  display: none;
  color: var(--kleur-grijs);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  cursor: pointer;
}

.zoekbalk__wis:hover { color: var(--kleur-donker); }

/* ── UITGELICHT SECTIE ──────────────────────────────────────────────────── */
.uitgelicht-sectie {
  margin-bottom: 48px;
}

.uitgelicht-sectie__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.uitgelicht-sectie__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-grijs);
}

.uitgelicht-sectie__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--kleur-grijs);
}

/* ── UITGELICHT KAART ───────────────────────────────────────────────────── */
.uitgelicht-kaart {
  display: grid;
  grid-template-columns: 42% 58%;
  background: #fff;
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-kaart);
  overflow: hidden;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}

.uitgelicht-kaart:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.uitgelicht-kaart__cover {
  position: relative;
  background: var(--kleur-achtergrond);
  overflow: hidden;
}

.uitgelicht-kaart__cover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Placeholder pattern als geen afbeelding */
.uitgelicht-kaart__cover-img--leeg {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--kleur-border) 0,
    var(--kleur-border) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 12px 12px;
  background-color: var(--kleur-achtergrond);
}

.uitgelicht-kaart__type-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.uitgelicht-kaart__type-badge {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kleur-donker);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-knop);
  padding: 3px 8px;
  backdrop-filter: blur(4px);
}

.uitgelicht-kaart__ster-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kleur-donker);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-knop);
  padding: 3px 8px;
  backdrop-filter: blur(4px);
}

.uitgelicht-kaart__content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Accent-streep (3px × 32px in themakleur) */
.uitgelicht-kaart__accent {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.uitgelicht-kaart--rood  .uitgelicht-kaart__accent { background: var(--kleur-rood); }
.uitgelicht-kaart--blauw .uitgelicht-kaart__accent { background: var(--kleur-blauw); }
.uitgelicht-kaart--geel  .uitgelicht-kaart__accent { background: var(--kleur-geel); }
.uitgelicht-kaart--groen .uitgelicht-kaart__accent { background: var(--kleur-groen); }
.uitgelicht-kaart--grijs .uitgelicht-kaart__accent { background: var(--kleur-grijs); }

.uitgelicht-kaart__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.uitgelicht-kaart__jaar {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--kleur-grijs);
}

.uitgelicht-kaart__titel {
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--kleur-donker);
  margin-bottom: 14px;
}

.uitgelicht-kaart__beschrijving {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--kleur-grijs);
  margin-bottom: 20px;
  max-width: 400px;
}

.uitgelicht-kaart__citaat {
  position: relative;
  padding-left: 16px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--kleur-donker);
}

.uitgelicht-kaart__citaat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
}

.uitgelicht-kaart--rood  .uitgelicht-kaart__citaat::before { background: var(--kleur-rood); }
.uitgelicht-kaart--blauw .uitgelicht-kaart__citaat::before { background: var(--kleur-blauw); }
.uitgelicht-kaart--geel  .uitgelicht-kaart__citaat::before { background: var(--kleur-geel); }
.uitgelicht-kaart--groen .uitgelicht-kaart__citaat::before { background: var(--kleur-groen); }
.uitgelicht-kaart--grijs .uitgelicht-kaart__citaat::before { background: var(--kleur-grijs); }

/* ── ITEM GRID ──────────────────────────────────────────────────────────── */
.grid-sectie__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.grid-sectie__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-zilver);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── ITEM KAART ─────────────────────────────────────────────────────────── */
.item-kaart {
  background: #fff;
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-kaart);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.item-kaart__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.item-kaart:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.item-kaart__cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--kleur-achtergrond);
  overflow: hidden;
}

.item-kaart__cover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}

.item-kaart:hover .item-kaart__cover-img {
  transform: scale(1.03);
}

/* Placeholder patroon */
.item-kaart__cover-img--leeg {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--kleur-border) 0,
    var(--kleur-border) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 10px 10px;
  background-color: var(--kleur-achtergrond);
}

/* Thema-kleur overlay strip (bodem van cover) */
.item-kaart__cover-streep {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.item-kaart--rood  .item-kaart__cover-streep { background: var(--kleur-rood); }
.item-kaart--blauw .item-kaart__cover-streep { background: var(--kleur-blauw); }
.item-kaart--geel  .item-kaart__cover-streep { background: var(--kleur-geel); }
.item-kaart--groen .item-kaart__cover-streep { background: var(--kleur-groen); }
.item-kaart--grijs .item-kaart__cover-streep { background: var(--kleur-grijs); }

.item-kaart__ster-badge {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kleur-donker);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-knop);
  padding: 3px 8px;
  backdrop-filter: blur(4px);
}

.item-kaart__type-badges {
  position: absolute;
  bottom: 10px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.item-kaart__type-badge {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kleur-donker);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-knop);
  padding: 2px 7px;
  backdrop-filter: blur(4px);
}

.item-kaart__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.item-kaart__bovenrij {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.item-kaart__jaar {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--kleur-grijs);
}

.item-kaart__titel {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--kleur-donker);
  letter-spacing: -0.01em;
}

.item-kaart__meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--kleur-grijs);
  line-height: 1.4;
}

/* Zoekterm highlight */
.item-kaart__titel mark,
.item-kaart__meta mark {
  background: #FFF3AC;
  color: var(--kleur-donker);
  border-radius: 1px;
  padding: 0 1px;
}

.item-kaart__footer {
  margin-top: auto;
  padding-top: 12px;
}

/* ── THEMA TAGS ─────────────────────────────────────────────────────────── */
.thema-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-knop);
  padding: 3px 8px;
  line-height: 1.4;
}

.thema-tag--rood  { background: var(--kleur-rood);  color: #fff; }
.thema-tag--blauw { background: var(--kleur-blauw); color: #fff; }
.thema-tag--geel  { background: var(--kleur-geel);  color: var(--kleur-donker); }
.thema-tag--groen { background: var(--kleur-groen); color: #fff; }
.thema-tag--grijs { background: var(--kleur-grijs); color: #fff; }

/* ── KNOPPEN ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-knop);
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-donker {
  background: var(--kleur-donker);
  color: var(--kleur-achtergrond);
  border-color: var(--kleur-donker);
}

.btn-donker:hover {
  background: #333;
  border-color: #333;
}

.btn-outline {
  background: transparent;
  color: var(--kleur-donker);
  border-color: var(--kleur-donker);
}

.btn-outline:hover {
  background: var(--kleur-donker);
  color: var(--kleur-achtergrond);
}

.btn-ghost {
  background: transparent;
  color: var(--kleur-grijs);
  border-color: var(--kleur-zilver);
}

.btn-ghost:hover {
  border-color: var(--kleur-grijs);
  color: var(--kleur-donker);
}

.btn-rood  { background: var(--kleur-rood);  color: #fff; border-color: var(--kleur-rood); }
.btn-blauw { background: var(--kleur-blauw); color: #fff; border-color: var(--kleur-blauw); }
.btn-geel  { background: var(--kleur-geel);  color: var(--kleur-donker); border-color: var(--kleur-geel); }
.btn-groen { background: var(--kleur-groen); color: #fff; border-color: var(--kleur-groen); }
.btn-grijs { background: var(--kleur-grijs); color: #fff; border-color: var(--kleur-grijs); }

/* ── LEGE STATE ─────────────────────────────────────────────────────────── */
.leeg-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  gap: 16px;
}

.leeg-state__illustratie {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.04em;
  color: var(--kleur-border);
  line-height: 1;
  margin-bottom: 8px;
}

.leeg-state__tekst {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--kleur-grijs);
}

.leeg-state__acties {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── ZOEKRESULTAAT STATE ────────────────────────────────────────────────── */
.archief-titel--zoek {
  font-size: clamp(22px, 3vw, 38px);
}

.zoek-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--kleur-donker);
  color: var(--kleur-achtergrond);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-kaart);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.zoek-chip__wis {
  font-size: 16px;
  line-height: 1;
  opacity: 0.7;
  cursor: pointer;
}

.zoek-chip__wis:hover { opacity: 1; }

/* ── THEMA FILTER CHIP (active state in header) ─────────────────────────── */
.thema-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-kaart);
  padding: 4px 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.thema-filter-chip--rood  { background: var(--kleur-rood-licht);  color: var(--kleur-rood); }
.thema-filter-chip--blauw { background: var(--kleur-blauw-licht); color: var(--kleur-blauw); }
.thema-filter-chip--geel  { background: var(--kleur-geel-licht);  color: #8a6e00; }
.thema-filter-chip--groen { background: var(--kleur-groen-licht); color: var(--kleur-groen); }
.thema-filter-chip--grijs { background: var(--kleur-grijs-licht); color: var(--kleur-grijs); }

.thema-filter-chip__wis {
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
}
.thema-filter-chip__wis:hover { opacity: 1; }

/* Archief-titel in themakleur */
.archief-titel--rood  { color: var(--kleur-rood); }
.archief-titel--blauw { color: var(--kleur-blauw); }
.archief-titel--geel  { color: #8a6e00; }
.archief-titel--groen { color: var(--kleur-groen); }
.archief-titel--grijs { color: var(--kleur-grijs); }

/* ── NAV ZOEKBALK ───────────────────────────────────────────────────────── */
.nav__zoek {
  width: 220px;
  flex-shrink: 0;
}

.nav__zoek .zoekbalk {
  padding: 7px 12px;
}

/* ── NAV HAMBURGER ──────────────────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 7px;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--kleur-donker);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBIEL FILTER FAB ──────────────────────────────────────────────────── */
.filter-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  background: var(--kleur-donker);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: 24px;
  padding: 12px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  align-items: center;
  gap: 8px;
}

.filter-fab__badge {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kleur-rood);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.sidebar-overlay.is-actief {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

/* ── ANIMATIES ──────────────────────────────────────────────────────────── */
@keyframes kaartBinnenkomen {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.item-kaart,
.uitgelicht-kaart {
  animation: kaartBinnenkomen 0.3s ease both;
}

/* Stagger */
.item-kaart:nth-child(2) { animation-delay: 0.04s; }
.item-kaart:nth-child(3) { animation-delay: 0.08s; }
.item-kaart:nth-child(4) { animation-delay: 0.12s; }
.item-kaart:nth-child(5) { animation-delay: 0.16s; }
.item-kaart:nth-child(6) { animation-delay: 0.20s; }

/* ── RESPONSIVE — TABLET (~900px) ───────────────────────────────────────── */
@media (max-width: 960px) {
  .archief-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
    height: auto;
    max-height: calc(100vh - var(--nav-hoogte) - 4px);
    max-height: calc(100dvh - var(--nav-hoogte) - 4px);
    border-right: none;
    border-bottom: none;
    border-top: 1px solid var(--kleur-border);
    display: block;
    padding: 24px var(--uitloop);
    flex-direction: initial;
    overflow-y: auto;
    background: #fff;
    z-index: 190;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
    transform: translateY(110%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0.35s;
  }

  .sidebar.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0s;
  }

  .sidebar__sluit {
    display: block;
  }

  .sidebar__credits {
    display: none;
  }

  .archief-wrapper {
    padding: 0;
  }

  .archief-main {
    padding: 32px var(--uitloop) 80px;
  }

  .uitgelicht-kaart__content {
    padding: 24px;
  }

  .uitgelicht-sectie__label {
    font-size: 17px;
    font-weight: 700;
  }

  .filter-fab {
    display: flex;
  }

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

  .uitgelicht-kaart {
    grid-template-columns: 1fr;
  }

  .uitgelicht-kaart__cover {
    aspect-ratio: 16 / 9;
  }

  .uitgelicht-kaart__meta {
    justify-content: space-between;
  }

  .uitgelicht-kaart__accent {
    display: none;
  }

  .uitgelicht-kaart__cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
  }
  .uitgelicht-kaart--rood  .uitgelicht-kaart__cover::after { background: var(--kleur-rood); }
  .uitgelicht-kaart--blauw .uitgelicht-kaart__cover::after { background: var(--kleur-blauw); }
  .uitgelicht-kaart--geel  .uitgelicht-kaart__cover::after { background: var(--kleur-geel); }
  .uitgelicht-kaart--groen .uitgelicht-kaart__cover::after { background: var(--kleur-groen); }
  .uitgelicht-kaart--grijs .uitgelicht-kaart__cover::after { background: var(--kleur-grijs); }

.archief-header {
    flex-direction: column;
    gap: 16px;
  }

  .archief-titel {
    white-space: normal;
    font-size: clamp(22px, 4vw, 34px);
  }

  .archief-intro {
    white-space: normal;
  }

  .archief-zoek {
    width: 100%;
  }

  /* Op tablet: zoekbalk nav verbergen, archief-header zoekbalk tonen */
  .nav__zoek {
    display: none;
  }

  /* Hamburger zichtbaar */
  .nav__hamburger {
    display: flex;
  }

  /* Fullscreen menu */
  .nav__links {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 150;
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nav__links::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right,
      var(--kleur-rood) 20%, var(--kleur-blauw) 20% 40%,
      var(--kleur-geel) 40% 60%, var(--kleur-groen) 60% 80%, var(--kleur-grijs) 80%);
  }

  .nav__links.is-open {
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav__links li {
    border-bottom: none;
  }

  .nav__links a {
    display: block;
    padding: 0;
    font-size: 26px;
    letter-spacing: 0.1em;
    color: var(--kleur-grijs);
  }

  .nav__links a:hover,
  .nav__links a.is-actief {
    color: var(--kleur-donker);
  }
}

/* ── RESPONSIVE — MOBIEL (375px) ────────────────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --uitloop: 20px;
  }

  .item-grid {
    grid-template-columns: 1fr;
  }


}

/* ── FOCUS / TOEGANKELIJKHEID ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--kleur-donker);
  outline-offset: 2px;
}

.filter-thema:focus-within .filter-thema__naam {
  text-decoration: underline;
}

/* ── DETAIL PAGINA (item.html) — basis stijlen ──────────────────────────── */
.item-detail-wrapper {
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: 0 var(--uitloop);
}

.item-detail-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
  padding: 40px 0 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--kleur-grijs);
  padding-top: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--kleur-grijs);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--kleur-donker); }

.breadcrumb__sep {
  color: var(--kleur-border);
}

.item-detail__bovenrij {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.item-detail__meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--kleur-grijs);
}

.item-detail__titel {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 20px;
}

/* ── DEELKNOPPEN ─────────────────────────────────────────────────────────── */
.item-deel {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.item-deel__knop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-knop);
  padding: 7px 13px;
  cursor: pointer;
  border: 1.5px solid var(--kleur-border);
  background: transparent;
  color: var(--kleur-grijs);
  transition: border-color 0.15s, color 0.15s;
  line-height: 1;
}

.item-deel__knop:hover {
  border-color: var(--kleur-donker);
  color: var(--kleur-donker);
}

.item-deel__knop--linkedin:hover {
  border-color: #0A66C2;
  color: #0A66C2;
}

.item-deel__knop--whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
}

/* Mobiel: alleen Deel-knop; desktop: LinkedIn + WhatsApp + Kopieer link */
@media (max-width: 960px) {
  .item-deel__knop--linkedin,
  .item-deel__knop--whatsapp { display: none; }
}
@media (min-width: 961px) {
  .item-deel__knop--mobiel { display: none; }
}

/* Verder lezen rail */
.verder-lezen {
  position: sticky;
  top: calc(var(--nav-hoogte) + 4px + 40px);
}

.verder-lezen__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-zilver);
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--kleur-border);
}

.verder-lezen--rood  .verder-lezen__label { border-color: var(--kleur-rood); }
.verder-lezen--blauw .verder-lezen__label { border-color: var(--kleur-blauw); }
.verder-lezen--geel  .verder-lezen__label { border-color: var(--kleur-geel); }
.verder-lezen--groen .verder-lezen__label { border-color: var(--kleur-groen); }

.verder-lezen__item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--kleur-border);
  text-decoration: none;
  color: inherit;
}

.verder-lezen__item:hover .verder-lezen__item-titel {
  color: var(--kleur-donker);
  text-decoration: underline;
}

.verder-lezen__item-types {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.verder-lezen__item-type {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kleur-grijs);
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-knop);
  padding: 2px 6px;
}

.verder-lezen__item-titel {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--kleur-donker);
  transition: color 0.15s;
}

.verder-lezen__item-meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--kleur-grijs);
  margin-top: 2px;
}

/* ── OVER PAGINA — basis ────────────────────────────────────────────────── */
.over-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px var(--uitloop) 100px;
}

.over-main {
  /* geen max-width: header, foto en tekst gebruiken volle kolombreedte */
}

/* ── OVER HERO FOTO ─────────────────────────────────────────────────────── */
.over-hero-foto {
  display: block;
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  object-position: center 15%;
  margin-bottom: 40px;
  border-radius: 4px;
}

/* Sidebar thema-navigatie links */
.over-thema-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.over-thema-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: var(--radius-knop);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--kleur-donker);
  text-decoration: none;
  transition: background 0.15s;
}

.over-thema-nav__link:hover {
  background: var(--kleur-border);
}

.over-thema-nav__link--terug {
  color: var(--kleur-grijs);
  font-size: 13px;
}

.over-thema-nav__archief-label {
  margin-top: 32px;
}

.over-titel {
  font-family: var(--font-kop);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 8px;
}

.over-ondertitel {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  color: var(--kleur-grijs);
  margin-bottom: 48px;
}

.over-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  color: var(--kleur-donker);
  margin-bottom: 22px;
}

.over-bio-rij {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.over-bio-tekst {
  flex: 1;
  min-width: 0;
}

.over-portret-wrapper {
  flex-shrink: 0;
  width: 220px;
}

.over-portret {
  width: 100%;
  border-radius: var(--radius-kaart);
  display: block;
}

.over-sectie {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--kleur-border);
}

.over-sectie-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-zilver);
  margin-bottom: 24px;
}

/* Vier thema-blokken (2×2 grid) */
.over-themas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.over-thema-blok {
  background: #fff;
  padding: 28px 28px 32px;
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
}

.over-thema-blok:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.over-thema-blok__streep {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.over-thema-blok--rood  .over-thema-blok__streep { background: var(--kleur-rood); }
.over-thema-blok--blauw .over-thema-blok__streep { background: var(--kleur-blauw); }
.over-thema-blok--geel  .over-thema-blok__streep { background: var(--kleur-geel); }
.over-thema-blok--groen .over-thema-blok__streep { background: var(--kleur-groen); }
.over-thema-blok--grijs .over-thema-blok__streep { background: var(--kleur-grijs); }

.over-thema-blok__naam {
  font-family: var(--font-kop);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--kleur-donker);
}

.over-thema-blok__tekst {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--kleur-grijs);
}

/* Contact */
.over-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.over-contact__tekst {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--kleur-grijs);
  max-width: 520px;
}

/* ── CONTACTFORMULIER ───────────────────────────────────────────────────── */
.contact-formulier {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}

.contact-formulier__veld {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-formulier__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-grijs);
}

.contact-formulier__input,
.contact-formulier__textarea {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--kleur-donker);
  background: #fff;
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-knop);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.contact-formulier__input:focus,
.contact-formulier__textarea:focus {
  border-color: var(--kleur-donker);
}

.contact-formulier__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-formulier__melding {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-knop);
  border: 1px solid;
}

.contact-formulier__melding--verzonden {
  color: var(--kleur-groen);
  background: var(--kleur-groen-licht);
  border-color: var(--kleur-groen);
}

.contact-formulier__melding--fout {
  color: var(--kleur-rood);
  background: var(--kleur-rood-licht);
  border-color: var(--kleur-rood);
}

@media (max-width: 600px) {
  .over-themas {
    grid-template-columns: 1fr;
  }

  .over-wrapper {
    padding-top: 40px;
  }

  .over-bio-rij {
    flex-direction: column-reverse;
  }

  .over-portret-wrapper {
    width: 100%;
  }

  .over-portret {
    max-height: 320px;
    width: auto;
    max-width: 100%;
  }

  .over-hero-foto {
    max-height: none;
    aspect-ratio: 4/3;
    margin-bottom: 36px;
  }
}

/* ── DETAIL PAGINA — TYPE-INHOUD ─────────────────────────────────────────── */

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

.item-detail__beschrijving {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--kleur-grijs);
  margin-bottom: 32px;
  white-space: pre-line;
}

.item-detail__beschrijving a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.item-detail__beschrijving a:hover {
  opacity: 0.7;
}

.item-detail__beschrijving-rij {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.item-detail__beschrijving-rij .item-detail__beschrijving {
  flex: 1;
  margin-bottom: 0;
}

.item-detail__cover-naast {
  flex: 0 0 260px;
}

.item-detail__cover-naast img {
  width: 100%;
  border-radius: var(--radius-kaart);
  display: block;
  object-fit: cover;
}

.item-detail__sectie-titel {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-zilver);
  margin-bottom: 16px;
  margin-top: 40px;
}

.item-detail__acties {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.item-detail__type-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--kleur-achtergrond);
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-knop);
  padding: 3px 8px;
}

.item-detail__duur {
  margin-bottom: 20px;
}

/* Cover hero — voor pdf, video, podcast */
.item-detail__cover-hero {
  width: 100%;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: var(--radius-kaart);
}

.item-detail__cover-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  border-bottom: 3px solid var(--kleur-border);
}

.item-detail__cover-hero--rood  .item-detail__cover-hero-img { border-color: var(--kleur-rood); }
.item-detail__cover-hero--blauw .item-detail__cover-hero-img { border-color: var(--kleur-blauw); }
.item-detail__cover-hero--geel  .item-detail__cover-hero-img { border-color: var(--kleur-geel); }
.item-detail__cover-hero--groen .item-detail__cover-hero-img { border-color: var(--kleur-groen); }

/* PDF cover */
.item-detail__cover-pdf {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-kaart);
  margin-bottom: 40px;
}

.item-detail__cover-pdf--leeg {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--kleur-border) 0,
    var(--kleur-border) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 10px 10px;
  background-color: var(--kleur-achtergrond);
}

/* PDF highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-kaart {
  background: #fff;
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-kaart);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.highlight-kaart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
}

.highlight-kaart--rood::before  { background: var(--kleur-rood); }
.highlight-kaart--blauw::before { background: var(--kleur-blauw); }
.highlight-kaart--geel::before  { background: var(--kleur-geel); }
.highlight-kaart--groen::before { background: var(--kleur-groen); }

.highlight-kaart__citaat {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: var(--kleur-donker);
  margin-bottom: 10px;
}

.highlight-kaart__pagina {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kleur-grijs);
}

/* Embed (Podcast / Video) */
.item-detail__embed-wrapper {
  width: 100%;
  margin-bottom: 32px;
  border-radius: var(--radius-kaart);
  overflow: hidden;
  border: 1px solid var(--kleur-border);
}

.item-detail__embed-wrapper--video {
  aspect-ratio: 16 / 9;
  border: none;
}

.item-detail__embed-wrapper--video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hoofdstukken */
.item-detail__hoofdstukken {
  margin-bottom: 32px;
}

.hoofdstuk-rij {
  display: grid;
  grid-template-columns: 28px 64px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--kleur-border);
}

.hoofdstuk-rij:first-of-type {
  border-top: 1px solid var(--kleur-border);
}

.hoofdstuk-rij__nr {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--kleur-grijs);
}

.hoofdstuk-rij__tijd {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--kleur-grijs);
  font-variant-numeric: tabular-nums;
}

.hoofdstuk-rij__titel {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--kleur-donker);
}

/* Platform links (Podcast) */
.item-detail__platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-knop);
  padding: 9px 16px;
  text-decoration: none;
  border: 1.5px solid;
  transition: background 0.15s, color 0.15s;
}

.platform-link--spotify { border-color: #1DB954; color: #1DB954; }
.platform-link--spotify:hover { background: #1DB954; color: #fff; }

.platform-link--apple { border-color: #fc3c44; color: #fc3c44; }
.platform-link--apple:hover { background: #fc3c44; color: #fff; }

.platform-link--soundcloud { border-color: #ff5500; color: #ff5500; }
.platform-link--soundcloud:hover { background: #ff5500; color: #fff; }

/* Fotogalerij */
.foto-galerij {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.foto-galerij__item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-kaart);
  border: 1px solid var(--kleur-border);
}

.foto-galerij__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}

.foto-galerij__item:hover .foto-galerij__img {
  transform: scale(1.04);
}

/* Arnout over dit werk */
.item-detail__context {
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--kleur-border);
  border-radius: var(--radius-kaart);
  border-left: 4px solid var(--kleur-donker);
}

.item-detail__context--rood  { border-left-color: var(--kleur-rood); }
.item-detail__context--blauw { border-left-color: var(--kleur-blauw); }
.item-detail__context--geel  { border-left-color: var(--kleur-geel); }
.item-detail__context--groen { border-left-color: var(--kleur-groen); }

.item-detail__context-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kleur-zilver);
  margin-bottom: 12px;
}

.item-detail__context-tekst {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--kleur-donker);
  white-space: pre-line;
}

/* ── DETAIL PAGINA — RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .item-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .verder-lezen {
    position: static;
    border-top: 1px solid var(--kleur-border);
    padding-top: 32px;
  }

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

@media (max-width: 600px) {
  .item-detail__cover-pdf {
    max-width: 100%;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .item-detail-layout {
    padding: 24px 0 60px;
  }

  .item-detail__context {
    padding: 20px;
  }
}

/* ── UTILS ──────────────────────────────────────────────────────────────── */
[hidden] { display: none !important; }

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

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  display: none;
}

@media (max-width: 960px) {
  .site-footer {
    display: block;
    padding: 32px var(--uitloop) 88px; /* 88px zodat de filterknop er niet overheen valt */
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: #999;
    text-align: center;
  }

  .site-footer a { color: #777; text-decoration: none; }
  .site-footer a:hover { color: var(--kleur-donker); }
}

/* ── LIGHTBOX ────────────────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox__img-wrapper {
  position: relative;
  z-index: 1;
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.lightbox__sluit {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__sluit:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav--vorig  { left: 20px; }
.lightbox__nav--volgend { right: 20px; }

.lightbox__bijschrift {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  max-width: calc(100vw - 160px);
  white-space: pre-wrap;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 20px;
}

.lightbox__bijschrift:empty { display: none; }

.lightbox__teller {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
}

/* Galerij-thumbnails zijn nu buttons */
.foto-galerij__item {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

@media (max-width: 600px) {
  .lightbox__img-wrapper {
    max-width: calc(100vw - 32px);
  }

  .lightbox__nav--vorig  { left: 8px; }
  .lightbox__nav--volgend { right: 8px; }
}

/* ── Multi-entry sectietitel (item-pagina) ──────────────────── */
.multi-sectie-titel {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--kleur-grijs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 24px 0 8px;
}

