/* Erik Boone Kwaliteitsstoffering
   Kleuren komen uit de huisstijl (briefpapier): helder rood, twee grijstinten, wit. */

/* ---------- Lettertypen (lokaal, dus geen verbinding met Google) ---------- */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("../fonts/archivo-latin-wdth-normal.woff2") format("woff2-variations"),
       url("../fonts/archivo-latin-wdth-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("../fonts/archivo-latin-wdth-italic.woff2") format("woff2-variations"),
       url("../fonts/archivo-latin-wdth-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Bitter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/bitter-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/bitter-latin-wght-normal.woff2") format("woff2");
}

/* ---------- Kleuren en maten ---------- */
:root {
  --grond: #F1F1EF;
  --wand: #E5E4E1;
  --wit: #FFFFFF;
  --kaart: #FCFCFB;
  --inkt: #2E2E2E;
  --tekst: #3D3D3D;
  --grijs: #5C5C5C;
  --lijn: #CFCECB;

  --logo-licht: #858585;
  --logo-donker: #4D4D4D;

  --rood: #C8190A;          /* knoppen en links */
  --rood-donker: #9C1206;   /* hover */
  --rood-fel: #E42A04;      /* grote accenten */

  --antraciet: #2E2E2E;
  --antraciet-diep: #232323;
  --metaal: #8F9391;
  --metaal-licht: #BFC3C1;
  --rand-veld: #7E7E7E;

  --breedte: 1280px;
  --zijmarge: clamp(20px, 5.5vw, 80px);
  --sectie: clamp(72px, 9vw, 120px);
  --radius: 6px;

  --font: "Archivo", "Helvetica Neue", Helvetica, sans-serif;
  --font-logo: "Bitter", Georgia, serif;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 16px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--inkt);
  background: var(--grond);
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 960px) { body { font-size: 1.125rem; } }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
a { color: var(--rood); text-underline-offset: 0.2em; }
a:hover { color: var(--rood-donker); }
:focus-visible { outline: 3px solid var(--inkt); outline-offset: 3px; }

h1, h2, h3 { margin: 0; color: inherit; font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 1.2rem + 3.6vw, 4.125rem); font-stretch: 125%; letter-spacing: -0.015em; line-height: 1.02; }
h2 { font-size: clamp(1.75rem, 1.1rem + 2.2vw, 3rem); font-stretch: 120%; }
h3 { font-size: 1.375rem; font-weight: 750; font-stretch: 112%; line-height: 1.2; letter-spacing: 0; }

.binnen {
  width: 100%;
  max-width: calc(var(--breedte) + 2 * var(--zijmarge));
  margin-inline: auto;
  padding-inline: var(--zijmarge);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.naar-inhoud {
  position: absolute; left: 12px; top: -80px; z-index: 100;
  background: var(--inkt); color: #fff; padding: 12px 16px; border-radius: var(--radius); font-weight: 600;
}
.naar-inhoud:focus { top: 12px; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- Knoppen ---------- */
.knop {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 48px; padding: 0 1.3em;
  border: 2px solid transparent; border-radius: var(--radius);
  font: inherit; font-size: 1.0625rem; font-weight: 650; line-height: 1.2;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.knop svg { flex-shrink: 0; }
.knop--rood { background: var(--rood); color: #fff; }
.knop--rood:hover { background: var(--rood-donker); color: #fff; }
.knop--rand { border-color: var(--inkt); color: var(--inkt); background: transparent; }
.knop--rand:hover { background: var(--inkt); color: #fff; }
.knop--groot { min-height: 56px; padding: 0 1.5em; font-size: 1.125rem; }
.knop--breed { width: 100%; }
.knoppen { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 559px) { .knoppen .knop { width: 100%; } }

/* ---------- Kop ---------- */
.kop { background: var(--grond); border-bottom: 1px solid var(--lijn); }
.kop__binnen {
  max-width: calc(var(--breedte) + 2 * var(--zijmarge));
  margin-inline: auto;
  padding: 16px var(--zijmarge);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px 40px;
}
.logo { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.logo__spiraal { width: 54px; }
.logo__tekst { display: flex; flex-direction: column; gap: 4px; }
.logo__naam {
  font-family: var(--font-logo); font-size: 1.625rem; font-weight: 700; line-height: 1;
  color: var(--logo-donker); white-space: nowrap;
}
.logo__erik { font-weight: 400; color: var(--logo-licht); }
.logo__sub {
  font-family: var(--font-logo); font-size: 0.6875rem; font-weight: 500; line-height: 1;
  letter-spacing: 0.24em; text-transform: uppercase; color: #616161;
}
.menu { display: flex; gap: clamp(20px, 3vw, 40px); justify-self: end; }
.menu a {
  color: var(--inkt); text-decoration: none; font-weight: 500; font-size: 1.0625rem;
  padding: 10px 2px; border-bottom: 2px solid transparent;
}
.menu a:hover { color: var(--inkt); border-bottom-color: var(--rood); }
.menu a[aria-current="page"] { border-bottom-color: var(--rood); }

@media (max-width: 899px) {
  .kop__binnen { grid-template-columns: 1fr auto; padding-top: 12px; padding-bottom: 0; }
  .kop__bel { grid-row: 1; grid-column: 2; }
  .logo__spiraal { width: 42px; }
  .logo__naam { font-size: 1.375rem; }
  .logo__sub { font-size: 0.625rem; }
  .menu {
    grid-column: 1 / -1; justify-self: stretch; justify-content: space-between;
    margin-inline: calc(var(--zijmarge) * -1); padding-inline: var(--zijmarge);
    border-top: 1px solid var(--lijn);
  }
  .menu a { font-size: 1rem; padding: 12px 0; }
}
@media (max-width: 559px) {
  .kop__bel { width: 48px; padding: 0; }
  .kop__bel span { display: none; }
}

/* ---------- Held ---------- */
.held {
  display: grid; gap: 40px; align-items: center;
  padding-top: clamp(32px, 5vw, 64px); padding-bottom: var(--sectie);
}
@media (min-width: 960px) {
  .held { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: 80px; }
}
.held__tekst { display: flex; flex-direction: column; gap: 24px; }
.held__intro { font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem); color: var(--tekst); max-width: 34em; }
.held .knoppen { margin-top: 6px; }
.held__mail { font-size: 1rem; color: var(--grijs); }
.held__mail a { font-weight: 600; }
.held__beeld { margin: 0; }
.held__beeld img, .held__vulling {
  width: 100%; height: clamp(280px, 46vw, 620px); object-fit: cover; border-radius: 4px;
}

/* ---------- Sectiekoppen ---------- */
.sectie-kop {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end;
  gap: 16px 40px; margin-bottom: clamp(36px, 5vw, 64px);
}
.sectie-kop p { max-width: 24em; color: var(--tekst); font-size: clamp(1.0625rem, 1rem + 0.2vw, 1.1875rem); }
.sectie-kop--rij { align-items: baseline; margin-bottom: clamp(28px, 3.5vw, 48px); }
.sectie-link { font-weight: 650; }

/* ---------- Materiaaltexturen voor de stalen ---------- */
.textuur--tapijt {
  background-color: #8C8781;
  background-image:
    radial-gradient(rgba(255,255,255,.16) 1px, transparent 1.4px),
    radial-gradient(rgba(20,20,20,.14) 1px, transparent 1.4px);
  background-size: 5px 5px, 7px 7px;
  background-position: 0 0, 3px 2px;
}
.textuur--pvc {
  background-color: #C39668;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 55px, rgba(70,40,12,.32) 55px 56px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 6px, rgba(90,55,20,.08) 6px 7px, transparent 7px 11px);
}
.textuur--vinyl {
  background-color: #A9AEA8;
  background-image:
    linear-gradient(rgba(28,42,46,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,42,46,.18) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.18) 1px, transparent 1.5px);
  background-size: 76px 76px, 76px 76px, 9px 9px;
}
.textuur--trappen {
  background-color: #474D55;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 2px, transparent 2px 5px),
    linear-gradient(0deg, rgba(0,0,0,.30) 0 6px, transparent 6px);
  background-size: auto, 100% 64px;
}
.textuur--laminaat {
  background-color: #B98A5C;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(60,35,10,.35) 44px 45px),
    repeating-linear-gradient(0deg, transparent 0 90px, rgba(60,35,10,.25) 90px 91px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 5px);
}
.textuur--egaliseren {
  background-color: #B4B2AD;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(0,0,0,.08), transparent 45%),
    radial-gradient(rgba(0,0,0,.07) 1px, transparent 1.5px);
  background-size: auto, auto, 6px 6px;
}

/* ---------- Diensten: stalen aan een rek ---------- */
.diensten { background: var(--wand); padding-block: var(--sectie); }
.rek { position: relative; padding-top: 30px; }
.rek__stang {
  position: absolute; top: 8px; left: -24px; right: -24px; height: 8px; border-radius: 4px;
  background: var(--metaal);
  box-shadow: inset 0 1px 0 var(--metaal-licht), 0 2px 3px rgba(0,0,0,.22);
}
.rek__stalen {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 32px;
}
.staal {
  position: relative; display: flex; flex-direction: column;
  transform-origin: 50% 0; transition: transform 0.35s ease;
}
.staal:nth-child(5n+1) { transform: rotate(-1.6deg); }
.staal:nth-child(5n+2) { transform: rotate(1.2deg); }
.staal:nth-child(5n+3) { transform: rotate(-0.6deg); }
.staal:nth-child(5n+4) { transform: rotate(1.7deg); }
.staal:nth-child(5n+5) { transform: rotate(-1.1deg); }
.staal:hover, .staal:focus-within { transform: rotate(0deg); }
.staal__ring {
  position: absolute; top: -30px; left: 50%; margin-left: -10px; z-index: 4;
  width: 20px; height: 46px; border: 3px solid #7C807E; border-radius: 10px;
}
.staal__kaart {
  position: relative; flex-grow: 1; display: flex; flex-direction: column; overflow: hidden;
  background: var(--kaart); border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 14px 26px -14px rgba(0,0,0,.45);
}
.staal__kaart:focus-within { outline: 3px solid var(--inkt); outline-offset: 3px; }
.staal__gat {
  display: block; width: 14px; height: 14px; margin: 12px auto; border-radius: 50%;
  background: var(--wand); box-shadow: inset 0 1px 2px rgba(0,0,0,.35);
}
.staal__materiaal { height: 220px; margin: 0 12px; border-radius: 3px; }
.staal__foto { width: calc(100% - 24px); max-width: none; object-fit: cover; background: var(--wand); }
.staal__label { display: flex; flex-direction: column; gap: 8px; flex-grow: 1; padding: 18px 18px 20px; }
.staal__label p { font-size: 0.9375rem; line-height: 1.45; color: var(--grijs); }
.staal__link { margin-top: auto; padding-top: 6px; font-size: 0.9375rem; font-weight: 650; }
.staal__link:focus-visible { outline: none; }
.staal__link::after { content: ""; position: absolute; inset: 0; z-index: 3; }

@media (max-width: 599px) {
  .rek { padding-top: 0; }
  .rek__stang, .staal__ring, .staal__gat { display: none; }
  .rek__stalen { grid-template-columns: 1fr; gap: 12px; }
  .staal, .staal:nth-child(n) { transform: none; }
  .staal__kaart {
    flex-direction: row; align-items: center; gap: 16px; padding: 12px;
    box-shadow: 0 8px 18px -12px rgba(0,0,0,.4);
  }
  .staal__materiaal { width: 84px; height: 84px; margin: 0; flex-shrink: 0; }
  .staal__label { padding: 0; gap: 4px; }
  .staal__label h3 { font-size: 1.1875rem; }
  .staal__link { padding-top: 2px; }
}

/* ---------- Recent werk ---------- */
.werk { background: var(--wit); padding-block: var(--sectie); }
.mozaiek {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mozaiek li { position: relative; }
.mozaiek a { display: block; height: 100%; overflow: hidden; border-radius: 4px; background: var(--wand); }
.mozaiek img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease; }
.mozaiek a:hover img { transform: scale(1.03); }
.mozaiek__label {
  position: absolute; left: 12px; bottom: 12px; pointer-events: none;
  padding: 5px 10px; border-radius: 4px; background: var(--kaart);
  font-size: 0.875rem; font-weight: 600; color: var(--inkt);
}
.mozaiek--1 li, .mozaiek--3 li:first-child,
.mozaiek--4 li:first-child, .mozaiek--4 li:last-child { grid-column: span 2; }
@media (min-width: 900px) {
  .mozaiek { gap: 16px; }
  .mozaiek--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mozaiek--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mozaiek--3 li:first-child { grid-column: auto; }
  .mozaiek--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(2, clamp(200px, 20vw, 280px)); }
  .mozaiek--4 li:first-child { grid-column: span 2; grid-row: span 2; }
  .mozaiek--4 img { aspect-ratio: auto; }
}

/* ---------- Werkwijze ---------- */
.werkwijze { padding-block: var(--sectie); }
.werkwijze h2 { margin-bottom: clamp(36px, 4.5vw, 56px); }
.stappen {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.stap { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 2px solid var(--inkt); }
.stap__nummer { font-size: 2.75rem; font-weight: 800; font-stretch: 125%; line-height: 1; color: var(--rood-fel); }
.stap h3 { margin-top: 8px; }
.stap p { color: var(--tekst); font-size: 1.0625rem; }

/* ---------- Reviews ---------- */
.reviews { background: var(--wand); padding-block: clamp(64px, 7vw, 96px); }
.reviews__lijst { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.reviews__lijst--1 { max-width: 900px; margin-inline: auto; }
.review { margin: 0; display: flex; flex-direction: column; gap: 18px; }
.review blockquote { margin: 0; font-size: clamp(1.25rem, 1rem + 0.8vw, 1.5rem); line-height: 1.35; font-style: italic; font-weight: 500; }
.reviews__lijst--1 .review blockquote { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.125rem); line-height: 1.3; }
.review figcaption { color: var(--tekst); font-size: 1.0625rem; }

/* ---------- Contact ---------- */
.contact {
  position: relative; overflow: hidden;
  background: var(--antraciet); color: #E6E6E4; padding-block: var(--sectie);
}
.contact :focus-visible { outline-color: #fff; }
.contact__spiraal {
  position: absolute; right: -110px; bottom: -130px; width: 460px; max-width: none;
  opacity: 0.13; pointer-events: none;
}
.contact__binnen { position: relative; display: grid; gap: 56px; align-items: start; }
@media (min-width: 960px) {
  .contact__binnen { grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: 96px; }
}
.contact__tekst { display: flex; flex-direction: column; gap: 24px; }
.contact h2 { color: #fff; font-size: clamp(2rem, 1.2rem + 2.6vw, 3.25rem); font-stretch: 122%; }
.contact__tekst > p { color: #C4C4C2; font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem); max-width: 30em; }
.contactgegevens { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.contactgegevens li { display: flex; align-items: center; gap: 16px; font-size: 1.125rem; line-height: 1.45; }
.contactgegevens li:last-child { align-items: flex-start; }
.contactgegevens svg { flex-shrink: 0; color: #B5B5B3; }
.contactgegevens a { color: #fff; }
.contactgegevens a:hover { color: #fff; text-decoration-thickness: 2px; }
.contactgegevens__tel {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.875rem); font-weight: 750; font-stretch: 115%; text-decoration: none;
}

.formulier-kaart { background: var(--kaart); color: var(--inkt); border-radius: 8px; padding: clamp(24px, 3vw, 40px); }
.formulier-kaart :focus-visible { outline-color: var(--inkt); }
.formulier { display: flex; flex-direction: column; gap: 20px; }
.formulier h3 { font-size: 1.5rem; }
.veld { display: flex; flex-direction: column; gap: 8px; }
.veld label, .bereikbaar legend { font-size: 1rem; font-weight: 600; }
.veld input, .veld textarea {
  width: 100%; min-height: 52px; padding: 0 14px;
  font: inherit; font-size: 1.0625rem; color: var(--inkt);
  background: #fff; border: 1.5px solid var(--rand-veld); border-radius: var(--radius);
}
.veld textarea { min-height: 140px; padding: 12px 14px; line-height: 1.5; resize: vertical; }
.veld input:focus, .veld textarea:focus { border-color: var(--inkt); }
.veld--fout input, .veld--fout textarea { border: 2px solid var(--rood); }
.veld__fout { color: var(--rood); font-size: 0.9375rem; font-weight: 600; }
.veld__hint { color: var(--grijs); font-size: 0.9375rem; }
.bereikbaar { margin: 0; padding: 0; border: 0; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.bereikbaar legend { padding: 0; margin-bottom: 2px; }
.velden-duo { display: grid; gap: 16px; margin-top: 4px; }
@media (min-width: 560px) { .velden-duo { grid-template-columns: 1fr 1fr; } }
.veld--val { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.melding { padding: 14px 16px; border-radius: var(--radius); font-weight: 600; }
.melding--fout { background: #FBE7E4; color: #8A1105; border: 1px solid #F0B8AF; }
.melding--fout a { color: #8A1105; }
.formulier__noot { font-size: 0.875rem; color: var(--grijs); }
.bedankt { display: flex; flex-direction: column; gap: 14px; padding: 8px 0; }
.bedankt svg { color: var(--rood); }
.bedankt h3 { font-size: 1.5rem; }

/* ---------- Voet ---------- */
.voet__balk {
  padding: 16px var(--zijmarge); text-align: center; color: #fff;
  background: linear-gradient(90deg, #B30B00 0%, #D62800 50%, #B30B00 100%);
}
.voet__diensten {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0;
  font-family: var(--font-logo); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0,0,0,.25);
}
.voet__streep { margin-inline: 0.9em; opacity: 0.8; }
.voet__onder { background: var(--antraciet-diep); color: #BDBDBB; font-size: 0.9375rem; padding-block: 24px; }
.voet__rij { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 32px; }
.voet__onder a { color: #E2E2E0; }
.voet :focus-visible { outline-color: #fff; }

/* Vaste belknop onderin op telefoons */
.belbalk { display: none; }
@media (max-width: 699px) {
  body { padding-bottom: 80px; }
  .belbalk {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(35, 35, 35, 0.96);
  }
  .belbalk :focus-visible { outline-color: #fff; }
}

/* ---------- Galerij ---------- */
.pagina-kop { padding-block: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 48px); }
.pagina-kop h1 { font-size: clamp(2.25rem, 1.4rem + 3vw, 3.75rem); }
.pagina-kop > p { margin-top: 18px; max-width: 36em; color: var(--tekst); font-size: clamp(1.0625rem, 1rem + 0.2vw, 1.1875rem); }
.pagina-kop--los { padding-bottom: var(--sectie); }
.kruimelpad { margin-bottom: 14px; font-size: 0.9375rem; color: var(--grijs); }
.kruimelpad a { color: var(--grijs); }
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tabs a {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px;
  border: 1.5px solid var(--lijn); border-radius: 999px; background: var(--kaart);
  color: var(--inkt); font-size: 1rem; font-weight: 600; text-decoration: none;
}
.tabs a:hover { border-color: var(--inkt); color: var(--inkt); }
.tabs a[aria-current="page"] { background: var(--inkt); border-color: var(--inkt); color: #fff; }
.tabs__staal { width: 18px; height: 18px; border-radius: 3px; flex-shrink: 0; }
.tabs__aantal { font-weight: 500; color: var(--grijs); }
.tabs a[aria-current="page"] .tabs__aantal { color: #CFCFCD; }

.galerij-groep { padding-bottom: clamp(48px, 6vw, 80px); }
.galerij-groep h2 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem); }
.fotoraster {
  list-style: none; margin: 0 0 clamp(48px, 6vw, 80px); padding: 0;
  display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}
.galerij-groep .fotoraster { margin-bottom: 0; }
.fotoraster a { display: block; overflow: hidden; border-radius: 4px; background: var(--wand); }
.fotoraster img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease; }
.fotoraster a:hover img { transform: scale(1.03); }
.leeg {
  margin-bottom: clamp(48px, 6vw, 80px); padding: 32px; max-width: 42em;
  border: 1.5px dashed var(--lijn); border-radius: 8px; background: var(--kaart); color: var(--tekst);
}
.cta-band { background: var(--wand); padding-block: clamp(48px, 6vw, 80px); }
.cta-band__binnen { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px 40px; }
.cta-band h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem); max-width: 16em; }

/* ---------- Tekstpagina (privacy) ---------- */
.tekstpagina { max-width: calc(46em + 2 * var(--zijmarge)); padding-block: clamp(40px, 5vw, 72px) var(--sectie); }
.tekstpagina h1 { font-size: clamp(2.25rem, 1.4rem + 3vw, 3.25rem); }
.tekstpagina__datum { margin-top: 12px; color: var(--grijs); font-size: 0.9375rem; }
.tekstpagina h2 { margin-top: 40px; margin-bottom: 10px; font-size: 1.5rem; font-stretch: 110%; }
.tekstpagina p { color: var(--tekst); }

/* ---------- Vergroting (lichtbak) ---------- */
.lichtbak {
  width: min(96vw, 1400px); max-width: none; max-height: 96vh; margin: auto; padding: 0;
  border: 0; background: transparent; color: #eee; overflow: visible;
}
.lichtbak::backdrop { background: rgba(18, 18, 18, 0.93); }
.lichtbak img { max-width: 100%; max-height: calc(96vh - 76px); width: auto; margin-inline: auto; border-radius: 4px; }
.lichtbak__onder { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 12px; }
.lichtbak__tekst { font-size: 1rem; }
.lichtbak__knoppen { display: flex; gap: 8px; flex-shrink: 0; }
.lichtbak button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; cursor: pointer;
}
.lichtbak button:hover { background: rgba(255,255,255,.28); }
.lichtbak button[hidden] { display: none; }
.lichtbak :focus-visible { outline-color: #fff; }
