/* Reclaim Health, Arnold Luitjes

   Ronde 5 (2026-09-15, wensen van Arnold): zijn foto meteen in beeld, het logo
   groter, een knop "Plan een eerste gesprek" als eerste in beeld, en de praktijk in
   Bolsward overal weg (nieuwe locatie in voorbereiding).

   Ontwerp-lezing: rustige, trust-first site voor slimme mensen (30-55) die al veel
   hebben geprobeerd en vastlopen met aanhoudende klachten. Lage variance, herkenning
   en uitleg voorop, en beeld dat zijn vak laat zien: verbanden leggen, een plan
   maken, begeleiden. Geen natuursfeer, geen tekst die invloeit.

   Palet uit zijn logo: diep groen #0d2220, zand #d5c0ab, de rode punt #bd252a.
   Letters: Brygada 1918 voor koppen (klassieke romein zoals "RECLAIM", stevig genoeg
   om goed te lezen; Bodoni Moda viel af op leesbaarheid), Jost voor tekst
   (geometrisch zoals "HEALTH"). Beide staan op de eigen server, zie lettertypen.css.

   Contrast (WCAG 2.1):
   tekst #22302b op papier #fcf9f4        13,1:1
   tekst-zacht #56655f op papier          5,8:1
   tekst-zacht #56655f op zand-licht      5,2:1
   rood #bd252a op papier (labels)        5,8:1
   wit op rood (knoppen)                  6,1:1
   op-groen-zacht #b6c1ba op inkt         9,0:1
   zand #d5c0ab op inkt                   9,5:1 */

:root {
  --inkt: #0d2220;
  --inkt-diep: #081916;
  --zand: #d5c0ab;
  --zand-licht: #f3ece2;
  --zand-rand: #e2d6c5;
  --papier: #fcf9f4;
  --draad: #bd252a;
  --draad-zacht: #d4443f;
  --tekst: #22302b;
  --tekst-zacht: #56655f;
  --op-groen: #efe8dd;
  --op-groen-zacht: #b6c1ba;

  --serif: "Brygada 1918", "Iowan Old Style", Georgia, serif;
  --sans: "Jost", "Futura", "Avenir Next", "Segoe UI", sans-serif;

  --breed: 1240px;
  --maat-smal: 65ch;
  --kop-h: 100px;
  --rond: 2px;
  --zacht: cubic-bezier(0.22, 0.61, 0.36, 1);
  --kolomgat: clamp(1.2rem, 2.4vw, 2.2rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-padding-top: var(--kop-h); }

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 6vw, 5.3rem); line-height: 1.04; }
h2 { font-size: clamp(2.05rem, 3.7vw, 3.05rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.62rem); line-height: 1.18; }
p { margin: 0 0 1.15em; max-width: var(--maat-smal); }
p:last-child { margin-bottom: 0; }

.punt { color: var(--draad); }

.label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--draad);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.label::before { content: ""; width: 38px; height: 1.5px; background: currentColor; flex: none; }
.label-licht { color: var(--zand); }
.label-licht::before { background: var(--draad-zacht); }

.omhulsel { width: min(100% - 3rem, var(--breed)); margin-inline: auto; }

section { position: relative; padding: clamp(5rem, 10vw, 8.5rem) 0; }

.sectie-zand { background: var(--zand-licht); }
.sectie-groen { background: var(--inkt); color: var(--op-groen); }
.sectie-groen h2, .sectie-groen h3 { color: #f4eee4; }

.inleiding { font-size: 1.16rem; color: var(--tekst-zacht); }
.sectie-groen .inleiding { color: var(--op-groen-zacht); }

/* fijne korrel over de groene vlakken, zodat het groen diepte krijgt */
.korrel { isolation: isolate; }
.korrel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='k'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23k)'/></svg>");
}
.korrel > * { position: relative; z-index: 1; }

.visueel-verborgen {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skiplink {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--draad);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--rond);
  font-weight: 500;
  text-decoration: none;
}
.skiplink:focus { top: 1rem; }

/* ---------- kop ---------- */

.kop {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: linear-gradient(to bottom, rgba(6, 20, 18, 0.55), rgba(6, 20, 18, 0));
  transition: background-color 0.4s var(--zacht), box-shadow 0.4s var(--zacht);
}
.kop.kop-vast { background: rgba(13, 34, 32, 0.97); box-shadow: 0 1px 0 rgba(213, 192, 171, 0.14); }

.kop-binnen { display: flex; align-items: center; gap: 2rem; padding: 1rem 0; transition: padding 0.4s var(--zacht); }
.kop.kop-vast .kop-binnen { padding: 0.6rem 0; }

.kop-logo { flex: none; display: block; }
.kop-logo img { height: 68px; width: auto; transition: height 0.4s var(--zacht); }
.kop.kop-vast .kop-logo img { height: 52px; }

.hoofdmenu { margin-left: auto; }
.menu { display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.4rem); list-style: none; margin: 0; padding: 0; }
.menu a { position: relative; font-size: 0.98rem; font-weight: 500; color: #f1eae0; text-decoration: none; padding: 0.4rem 0; }
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--draad-zacht);
  transition: right 0.45s var(--zacht);
}
.menu a:hover::after, .menu a:focus-visible::after, .menu a[aria-current="page"]::after { right: 0; }

.kop-bel, .kop-cta {
  flex: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #f4eee4;
  text-decoration: none;
  border: 1px solid rgba(213, 192, 171, 0.55);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  transition: background-color 0.35s var(--zacht), border-color 0.35s var(--zacht);
}
.kop-bel:hover, .kop-bel:focus-visible { background: var(--draad); border-color: var(--draad); }
.kop-cta { background: var(--draad); border-color: var(--draad); color: #fff; }
.kop-cta:hover, .kop-cta:focus-visible { background: #a41f24; border-color: #a41f24; }
.kop-bel:active, .kop-cta:active { transform: translateY(1px); }

.menu-knop { display: none; }

/* ---------- knoppen ---------- */

.knoppen { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }

.knop {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem 1.8rem;
  border-radius: var(--rond);
  border: 1px solid transparent;
  transition: transform 0.35s var(--zacht), background-color 0.35s var(--zacht), border-color 0.35s var(--zacht), color 0.35s var(--zacht);
}
.knop-pijl::after { content: "\2192"; transition: transform 0.35s var(--zacht); }
.knop-pijl:hover::after { transform: translateX(4px); }

.knop-vol { background: var(--draad); color: #fff; }
.knop-vol:hover, .knop-vol:focus-visible { background: #a41f24; transform: translateY(-2px); }

.knop-licht { border-color: rgba(241, 234, 224, 0.5); color: #f4eee4; }
.knop-licht:hover, .knop-licht:focus-visible { border-color: #f4eee4; background: rgba(241, 234, 224, 0.1); transform: translateY(-2px); }

.knop-donker { border-color: rgba(13, 34, 32, 0.3); color: var(--inkt); }
.knop-donker:hover, .knop-donker:focus-visible { border-color: var(--inkt); background: rgba(13, 34, 32, 0.05); transform: translateY(-2px); }

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

/* ---------- splitheld: groen vlak met een illustratie ---------- */

.splitheld { background: var(--inkt); color: var(--op-groen); padding: 0; overflow: hidden; }
.splitheld::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 8%;
  width: 62%;
  height: 86%;
  z-index: 0;
  background: radial-gradient(closest-side, rgba(213, 192, 171, 0.09), rgba(213, 192, 171, 0));
  pointer-events: none;
}
.splitheld-raster {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: max(620px, min(100dvh, 56rem));
  padding: calc(var(--kop-h) + 3rem) 0 clamp(3.5rem, 8vh, 6rem);
}
.splitheld-home .splitheld-raster { padding-bottom: clamp(8.5rem, 17vh, 11.5rem); }
.splitheld-pagina .splitheld-raster { min-height: max(540px, min(80dvh, 46rem)); }
.splitheld h1 { color: #f7f2ea; max-width: 12ch; }
.splitheld-sub { font-size: 1.2rem; line-height: 1.6; color: rgba(241, 234, 224, 0.88); max-width: 31rem; }
.splitheld-beeld { margin: 0; justify-self: center; width: 100%; }
.splitheld-beeld img { width: 100%; max-height: min(74dvh, 44rem); object-fit: contain; }
.splitheld-beeld-doolhof img { max-height: 30rem; }

/* ---------- beeldkop: foto over de volle breedte ---------- */

.beeldkop {
  display: flex;
  align-items: flex-end;
  min-height: max(560px, min(80dvh, 48rem));
  padding: 0;
  overflow: hidden;
  background: var(--inkt);
  color: #f6f1e8;
}
.beeldkop-foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.beeldkop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 25, 22, 0.9) 0%, rgba(8, 25, 22, 0.7) 32%, rgba(8, 25, 22, 0.18) 62%, rgba(8, 25, 22, 0.05) 100%),
    linear-gradient(0deg, rgba(8, 25, 22, 0.7) 0%, rgba(8, 25, 22, 0) 45%);
}
.beeldkop-inhoud {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, var(--breed));
  margin-inline: auto;
  padding: calc(var(--kop-h) + 4rem) 0 clamp(4rem, 9vh, 6.5rem);
}
.beeldkop h1 { color: #f7f2ea; max-width: 14ch; font-size: clamp(2.7rem, 5.4vw, 4.7rem); }

/* ---------- splitkop (Over Arnold) ---------- */

.splitkop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  min-height: max(620px, min(92dvh, 52rem));
  padding: 0;
  background: var(--inkt);
  color: #f6f1e8;
}
.splitkop-tekst {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--kop-h) + 4rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 9vh, 7rem) max(1.5rem, calc((100vw - var(--breed)) / 2));
}
.splitkop-tekst h1 { color: #f7f2ea; font-size: clamp(2.7rem, 4.8vw, 4.5rem); max-width: 12ch; }
.splitkop-tekst p { color: var(--op-groen-zacht); font-size: 1.16rem; max-width: 30rem; }
.splitkop-tekst .label { font-size: 0.74rem; max-width: none; }  /* wint van .splitkop-tekst p */
.splitkop-foto { position: relative; min-height: 460px; }
.splitkop-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 46% 30%; }
.splitkop-foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 34, 32, 0.55) 0%, rgba(13, 34, 32, 0) 30%);
}

/* homepage: zijn foto meteen in beeld, tekst gecentreerd, knop als eerste */
.splitkop-home { grid-template-columns: minmax(0, calc((100vw - var(--breed)) / 2 + var(--breed) * 0.43)) minmax(0, 1fr); min-height: max(600px, min(88dvh, 50rem)); }
.splitkop-home .splitkop-tekst {
  position: relative;
  justify-content: center;
  padding: calc(var(--kop-h) + 2.5rem) clamp(1.5rem, 3.5vw, 3.5rem) clamp(3.5rem, 8vh, 6rem) max(1.5rem, calc((100vw - var(--breed)) / 2));
}
.splitkop-home h1 { font-size: clamp(2.8rem, 4.6vw, 4.4rem); max-width: 11ch; }
.splitkop-home .splitkop-sub { font-size: 1.2rem; line-height: 1.6; color: rgba(241, 234, 224, 0.88); max-width: 28rem; }
.splitkop-home .splitkop-foto img { object-position: 80% 45%; }
.splitkop-home .splitkop-foto::after {
  background:
    linear-gradient(180deg, rgba(8, 25, 22, 0.62) 0%, rgba(8, 25, 22, 0) 32%),
    linear-gradient(90deg, rgba(13, 34, 32, 0.55) 0%, rgba(13, 34, 32, 0) 30%);
}

/* ---------- tekstkop (privacy) ---------- */

.tekstkop { background: var(--inkt); color: var(--op-groen); padding: calc(var(--kop-h) + 3.5rem) 0 clamp(3rem, 6vw, 4.5rem); }
.tekstkop h1 { color: #f7f2ea; font-size: clamp(2.6rem, 5vw, 4rem); }
.tekstinhoud-kolom { max-width: 46rem; }
.tekstinhoud h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin: 2.6rem 0 0.6rem; }
.tekstinhoud h2:first-child { margin-top: 0; }
.tekstinhoud a { color: var(--draad); }

/* ---------- introductie: de lijntekening naast "Herken je dit?" ---------- */

.intro { padding-top: clamp(4rem, 8vw, 6.5rem); }
.intro-raster { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.intro-figuur { margin: 0; }
.intro-figuur img { width: 100%; max-height: 34rem; object-fit: contain; }
.intro-slot { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 1.9vw, 1.55rem); line-height: 1.35; color: var(--inkt); margin-top: 1.4rem; }
.handtekening { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--inkt); margin-top: 2rem; line-height: 1.1; }
.handtekening small {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--draad);
}

/* ---------- herkenning: de zinnen die de bezoeker kent ---------- */

.kopblok { max-width: 46rem; }
.herken-raster { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.herken-maar { font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 1.5rem); line-height: 1.35; color: var(--inkt); margin-top: 1.4rem; }
.herken-foto { margin: 0; }
.herken-foto img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; object-position: 55% 50%; border-radius: var(--rond); }
.stemmenraster {
  list-style: none;
  margin: clamp(2.6rem, 5vw, 3.6rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.6rem, 4vw, 3.6rem);
  border-top: 1px solid var(--zand-rand);
}
.stemmenraster li { padding: 1.7rem 0 1.9rem; border-bottom: 1px solid var(--zand-rand); }
.stem-nr { display: block; font-family: var(--serif); font-size: 1rem; color: var(--draad); margin-bottom: 0.45rem; }
.stem-zin { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.26; color: var(--inkt); }
.stem-uitleg { display: block; margin-top: 0.5rem; font-size: 1rem; color: var(--tekst-zacht); }
.stem-slot { display: flex; align-items: center; }
.slotzin { font-family: var(--serif); font-size: clamp(1.2rem, 1.7vw, 1.42rem); line-height: 1.42; color: var(--inkt); margin: 0; }

/* ---------- systeem: tekst naast de lijntekening ---------- */

.systeem-raster { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.systeem-figuur { margin: 0; }
.systeem-figuur img { width: 100%; max-height: 40rem; object-fit: contain; }
.legenda { margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid var(--zand-rand); }
.legenda-titel { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--draad); margin: 0 0 1.1rem; }
.legenda ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
.legenda li { position: relative; padding-left: 1.5rem; font-size: 0.98rem; line-height: 1.45; color: var(--tekst-zacht); }
.legenda li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 9px; height: 9px; border-radius: 50%; background: var(--draad); }
.legenda strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.15rem; color: var(--inkt); }
.systeem-tekening img { max-height: none; aspect-ratio: 5 / 4; object-fit: cover; object-position: 45% 55%; border-radius: var(--rond); }

.fundament { margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--zand-rand); }
.fundament-titel { font-size: clamp(1.5rem, 2.4vw, 2rem); max-width: 30ch; margin-bottom: 1.4rem; }
.pijlers { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2rem, 5vw, 5rem); }
.pijlers li { display: grid; grid-template-columns: 2.6rem 1fr; gap: 0.6rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--zand-rand); }
.pijlers li:nth-child(-n + 2) { border-top: 1px solid var(--zand-rand); }
.pijler-nr { font-family: var(--serif); font-size: 1rem; color: var(--draad); }
.pijler-naam { font-family: var(--serif); font-size: clamp(1.1rem, 1.5vw, 1.28rem); line-height: 1.3; color: var(--inkt); }
.pijler-naam small { display: block; margin-top: 0.3rem; font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tekst-zacht); }

/* ---------- fotoband: tekstvlak naast een beeld ---------- */

.fotoband {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  min-height: clamp(460px, 72vh, 680px);
  padding: 0;
  background: var(--zand-licht);
}
.fotoband-tekst {
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4.5rem) clamp(3.5rem, 7vw, 6rem) max(1.5rem, calc((100vw - var(--breed)) / 2));
}
.fotoband blockquote { margin: 0; max-width: 17ch; font-family: var(--serif); font-size: clamp(1.9rem, 3.3vw, 2.8rem); line-height: 1.17; color: var(--inkt); }
.fotoband blockquote em { color: var(--tekst-zacht); }
.fotoband cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--draad);
}
.fotoband-foto { margin: 0; position: relative; min-height: 320px; }
.fotoband-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.fotoband-groen { background: var(--inkt); }
.fotoband-groen blockquote { color: #f6f1e8; }
.fotoband-groen blockquote em { color: var(--zand); }
.fotoband-groen cite { color: var(--zand); }
.fotoband-illustratie { display: flex; align-items: center; justify-content: center; padding: clamp(2.5rem, 5vw, 4rem); }
.fotoband-illustratie img { position: static; width: 100%; height: auto; max-height: 30rem; object-fit: contain; }
.fotoband-drie blockquote { max-width: 24ch; font-size: clamp(1.5rem, 2.5vw, 2.15rem); line-height: 1.3; }

/* ---------- kompas ---------- */

.kompas-raster { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.kompas-figuur { margin: 0 auto; width: 100%; max-width: 520px; }
.kompas-figuur img { width: 100%; height: auto; }

.kompaslijst { list-style: none; margin: 2.4rem 0 0; padding: 0; }
.kompaslijst li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid rgba(213, 192, 171, 0.18); }
.kompaslijst li:last-child { border-bottom: 1px solid rgba(213, 192, 171, 0.18); }
.kompas-nr { font-family: var(--serif); font-size: 1rem; color: var(--zand); padding-top: 0.3rem; }
.kompaslijst h3 { margin-bottom: 0.3rem; }
.kompaslijst p { color: var(--op-groen-zacht); font-size: 1.02rem; }
.kompas-kern { margin-top: 2.4rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.36; color: #f4eee4; }

/* ---------- route: drie stappen met beeld, en het einde van de draad ---------- */

.route {
  list-style: none;
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 0.78fr);
  gap: var(--kolomgat);
}
.routestap { display: flex; flex-direction: column; }
.routestap-lijn { position: relative; height: 18px; margin: 0 0 1.2rem; }
.routestap-lijn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: calc(-1 * var(--kolomgat));
  height: 1.5px;
  background: var(--draad);
  transform: translateY(-50%);
}
.routestap-lijn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--draad);
  box-shadow: inset 0 0 0 4px var(--papier), 0 0 0 1.5px var(--draad);
}
.sectie-zand .routestap-lijn::after { box-shadow: inset 0 0 0 4px var(--zand-licht), 0 0 0 1.5px var(--draad); }
.routestap-eind .routestap-lijn::before { right: 30%; background: linear-gradient(to right, var(--draad), rgba(189, 37, 42, 0)); }
.routestap-eind .routestap-lijn::after { width: 26px; height: 26px; top: -4px; box-shadow: none; }
.stap-label { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--draad); margin-bottom: 0.45rem; }
.routestap h3 { margin-bottom: 0.5rem; }
.routestap p { font-size: 1rem; color: var(--tekst-zacht); margin-bottom: 1.5rem; }
.routestap img { margin-top: auto; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--rond); }

/* ---------- stappen: vier stappen onder elkaar, de rode draad loopt erlangs ---------- */

.stappen { list-style: none; margin: clamp(3rem, 6vw, 4.5rem) 0 0; padding: 0; position: relative; }
.stappen::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 2.4rem;
  bottom: 3rem;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--draad) 88%, rgba(189, 37, 42, 0));
}
.stap {
  display: grid;
  grid-template-columns: minmax(8rem, 0.26fr) minmax(0, 1fr) minmax(0, 0.6fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem) 2.6rem;
  border-top: 1px solid var(--zand-rand);
}
.stap:last-child { border-bottom: 1px solid var(--zand-rand); }
.stap-kop { position: relative; display: flex; flex-direction: column; gap: 0.5rem; align-self: start; }
.stap-kop::before {
  content: "";
  position: absolute;
  left: -2.6rem;
  top: 0.55rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--draad);
  box-shadow: inset 0 0 0 4px var(--papier), 0 0 0 1.5px var(--draad);
}
.stap-nr { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--draad); }
.stap-tekst h3 { margin-bottom: 0.5rem; }
.stap-tekst p { color: var(--tekst-zacht); font-size: 1.02rem; }
.stap-beeld { margin: 0; }
.stap-beeld img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--rond); }

/* ---------- rijen: woord, titel en uitleg met haarlijnen ---------- */

.rijen { list-style: none; margin: 2.6rem 0 0; padding: 0; border-top: 1px solid var(--zand-rand); }
.rijen li { display: grid; grid-template-columns: minmax(7rem, 0.3fr) minmax(0, 1fr); gap: clamp(1rem, 3vw, 2.5rem); padding: 1.7rem 0; border-bottom: 1px solid var(--zand-rand); }
.rij-woord { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--draad); padding-top: 0.55rem; }
.rij-titel { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(1.35rem, 2vw, 1.62rem); line-height: 1.2; color: var(--inkt); }
.rij-tekst { display: block; margin-top: 0.4rem; color: var(--tekst-zacht); font-size: 1.02rem; max-width: var(--maat-smal); }
.sectie-groen .rijen, .sectie-groen .rijen li { border-color: rgba(213, 192, 171, 0.18); }
.sectie-groen .rij-woord { color: var(--zand); }
.sectie-groen .rij-titel { color: #f4eee4; }
.sectie-groen .rij-tekst { color: var(--op-groen-zacht); }

/* ---------- duo, omlijste foto, paneel ---------- */

.duo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.duo-boven { align-items: start; }

.omlijst { position: relative; margin: 0; }
.omlijst img { width: 100%; border-radius: var(--rond); position: relative; z-index: 1; }
.omlijst::before { content: ""; position: absolute; inset: -1.8rem 1.8rem 1.8rem -1.8rem; border: 1px solid var(--zand); z-index: 0; }
.omlijst-rechts::before { inset: 1.8rem -1.8rem -1.8rem 1.8rem; }
/* Vierkant kader (Over Arnold, foto buiten): de foto is al vierkant gesneden, dit houdt het zo als het beeld ooit wisselt. */
.omlijst-vierkant img { aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 100%; }

.paneel-groen { margin: 0; background: var(--inkt); border-radius: var(--rond); padding: clamp(1.5rem, 4vw, 3rem); }
.paneel-groen img { width: 100%; max-height: 32rem; object-fit: contain; }

/* ---------- klachten in groepen ---------- */

.groepen { display: grid; gap: 2.2rem; }
.groep h3 { font-size: 1.3rem; margin-bottom: 0.9rem; }
.klachten { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0; padding: 0; list-style: none; }
.klachten li { border: 1px solid var(--zand-rand); background: #fff; border-radius: 999px; padding: 0.5rem 1.15rem; font-size: 0.98rem; }

/* ---------- lijst met streepjes ---------- */

.lijst { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.lijst li { position: relative; padding-left: 1.8rem; margin-bottom: 0.9rem; color: var(--tekst-zacht); max-width: var(--maat-smal); }
.lijst li::before { content: ""; position: absolute; left: 0; top: 0.82em; width: 11px; height: 1.5px; background: var(--draad); }
.sectie-groen .lijst li { color: var(--op-groen-zacht); }
.lijst-groot li { font-size: 1.12rem; color: var(--tekst); margin-bottom: 1rem; }

/* ---------- ervaringen ---------- */

.ervaringen { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: stretch; }
.ervaringen-foto { margin: 0; }
.ervaringen-foto img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; border-radius: var(--rond); }
.sterren { color: var(--draad); font-size: 0.8rem; letter-spacing: 0.34em; margin-bottom: 1.2rem; }
.uitgelicht { margin: 0; }
.uitgelicht p { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.1rem); line-height: 1.32; color: var(--inkt); max-width: 40ch; }
.review-wie { display: block; margin-top: 1.4rem; font-style: normal; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tekst-zacht); }
.klein-reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; padding-top: 2.4rem; border-top: 1px solid var(--zand-rand); }
.klein-review { margin: 0; }
.klein-review p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.45; color: var(--inkt); }
.review-bron { margin-top: 2.2rem; font-size: 0.9rem; color: var(--tekst-zacht); }

/* ---------- afsluiter ---------- */

.afsluiter { background: var(--inkt); color: var(--op-groen); overflow: hidden; }
.afsluiter-raster { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: end; }
.afsluiter h2 { color: #f6f1e8; max-width: 18ch; }
.afsluiter p { color: var(--op-groen-zacht); }

.knoppen-of { margin-top: 1.4rem; font-size: 1rem; color: var(--op-groen-zacht); }
.knoppen-of a { color: #f4eee4; text-decoration: none; border-bottom: 1px solid rgba(213, 192, 171, 0.45); }
.knoppen-of a:hover, .knoppen-of a:focus-visible { border-color: var(--draad); }

.contactregels { list-style: none; margin: 0; padding: 0; font-size: 1.08rem; }
.contactregels li { padding: 1.1rem 0; border-top: 1px solid rgba(213, 192, 171, 0.18); }
.contactregels small { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(213, 192, 171, 0.85); margin-bottom: 0.2rem; }
.contactregels a { color: #f4eee4; text-decoration: none; border-bottom: 1px solid rgba(213, 192, 171, 0.35); }
.contactregels a:hover, .contactregels a:focus-visible { border-color: var(--draad); }

.contactregels-licht { margin-top: 1.6rem; font-family: var(--serif); font-size: 1.45rem; }
.contactregels-licht li { border-top-color: var(--zand-rand); }
.contactregels-licht li:last-child { border-bottom: 1px solid var(--zand-rand); }
.contactregels-licht small { font-family: var(--sans); color: var(--draad); }
.contactregels-licht a { color: var(--inkt); border-bottom-color: rgba(13, 34, 32, 0.25); }

/* ---------- voet ---------- */

.voet { background: var(--inkt-diep); color: var(--op-groen-zacht); padding: 3.6rem 0 2.4rem; font-size: 0.92rem; }
.voet-raster { display: flex; flex-wrap: wrap; gap: 2rem 3rem; justify-content: space-between; align-items: flex-start; }
.voet img { height: 50px; width: auto; }
.voet-payoff { margin-top: 1.2rem; max-width: 22rem; }
.voet a { color: var(--zand); text-decoration: none; }
.voet a:hover, .voet a[aria-current="page"] { text-decoration: underline; }
.voet-menu { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.voet-klein {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.8rem;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(213, 192, 171, 0.12);
  font-size: 0.82rem;
  color: rgba(182, 193, 186, 0.8);
}

/* ---------- bijstellingen na de schermcontrole ---------- */

.splitheld-pagina .splitheld-raster { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
.splitheld-beeld-doolhof { justify-self: end; }
.splitheld-beeld-doolhof img { width: 118%; max-width: none; max-height: none; margin-right: -12%; }
.systeem-foto img { max-height: none; aspect-ratio: 4 / 4.2; object-fit: cover; object-position: 55% 50%; border-radius: var(--rond); }
.fotoband-consult img { object-position: 55% 45%; }

/* ---------- tussenbreedtes ---------- */

/* Het sierkader naast een foto steekt 1,8rem uit; de marge van .omhulsel is daar maar
   1,5rem, dus de pagina liep 5 px horizontaal over (gemeten 2026-09-15 op 1024 en 1280). */
@media (max-width: 1320px) {
  .omlijst::before { inset: -1.8rem 1.8rem 1.8rem -1.1rem; }
  .omlijst-rechts::before { inset: 1.8rem -1.1rem -1.8rem 1.8rem; }
}

/* ---------- klein scherm ---------- */

@media (max-width: 960px) {
  :root { --kop-h: 80px; }
  body { font-size: 17.5px; }

  .kop-binnen { gap: 1rem; padding: 0.9rem 0; }
  .kop-logo img, .kop.kop-vast .kop-logo img { height: 51px; }
  .kop-bel, .kop-cta { display: none; }

  .menu-knop {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    background: none;
    border: 1px solid rgba(213, 192, 171, 0.55);
    border-radius: 999px;
    color: #f4eee4;
    font: 500 0.92rem var(--sans);
    padding: 0.55rem 1.15rem;
    cursor: pointer;
  }
  .hoofdmenu {
    position: fixed;
    inset: 0;
    z-index: -1;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 6rem 1.5rem 3rem;
    background: var(--inkt);
    transform: translateY(-100%);
    transition: transform 0.5s var(--zacht);
  }
  body.menu-open .hoofdmenu { transform: none; }
  body.menu-open { overflow: hidden; }
  .menu { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .menu a { font-family: var(--serif); font-size: 2.3rem; color: #f6f1e8; }
  .menu-extra { display: block; font-size: 1.1rem; color: var(--zand); text-decoration: none; }
  .menu-cta { align-self: flex-start; margin-top: -1rem; }

  .splitheld-raster, .splitheld-pagina .splitheld-raster { grid-template-columns: 1fr; min-height: 0; gap: 2.5rem; padding: calc(var(--kop-h) + 2.5rem) 0 3.5rem; }
  .splitheld-home .splitheld-raster { padding-bottom: 6rem; }
  .splitheld-beeld img { max-height: 22rem; }
  .splitheld-beeld-doolhof img { max-height: 14rem; width: 100%; margin-right: 0; }
  .splitheld-beeld-doolhof { justify-self: center; }
  .systeem-foto img { aspect-ratio: 16 / 11; }

  .beeldkop { min-height: 78svh; }
  .beeldkop::before { background: linear-gradient(0deg, rgba(8, 25, 22, 0.94) 0%, rgba(8, 25, 22, 0.6) 55%, rgba(8, 25, 22, 0.3) 100%); }

  .splitkop, .splitkop-home { grid-template-columns: 1fr; min-height: 0; }
  .splitkop-foto { order: -1; min-height: 58svh; }
  .splitkop-foto::after { background: linear-gradient(0deg, rgba(13, 34, 32, 0.7) 0%, rgba(13, 34, 32, 0) 45%); }
  .splitkop-tekst { padding: 2.5rem 1.5rem 3.5rem; }
  .splitkop-home .splitkop-foto { min-height: 0; height: min(44svh, 24rem); }
  /* Over Arnold: zijn hoofd zit boven in de foto en de foto vult de hoogte, dus verschuiven kan niet.
     De foto begint daarom onder de kopbalk, anders staat het grotere logo over zijn haar. */
  .splitkop:not(.splitkop-home) .splitkop-foto { margin-top: var(--kop-h); min-height: 50svh; }
  .splitkop-home .splitkop-foto img { object-position: 78% 45%; }
  .splitkop-home .splitkop-foto::after {
    background:
      linear-gradient(180deg, rgba(8, 25, 22, 0.7) 0%, rgba(8, 25, 22, 0) 40%),
      linear-gradient(0deg, rgba(13, 34, 32, 0.7) 0%, rgba(13, 34, 32, 0) 45%);
  }
  .label, .splitkop-tekst .label { font-size: 0.7rem; letter-spacing: 0.2em; gap: 0.7rem; }
  .label::before { width: 26px; }
  .splitkop-home .splitkop-tekst { padding: 2.2rem 1.5rem 3rem; }
  .splitkop-home h1 { font-size: clamp(2.5rem, 10.5vw, 3.1rem); }

  .intro-raster, .herken-raster, .systeem-raster, .duo, .kompas-raster, .ervaringen, .afsluiter-raster { grid-template-columns: 1fr; }
  .intro { padding-top: 3rem; }
  .intro-figuur { max-width: 420px; margin-inline: auto; }
  .intro-figuur img { max-height: 19rem; }
  .herken-foto { order: -1; }
  .herken-foto img { aspect-ratio: 16 / 11; }
  .duo-lijst { gap: 0.4rem; }
  .systeem-tekening img { aspect-ratio: 16 / 11; }
  .pijlers { grid-template-columns: 1fr; }
  .pijlers li:nth-child(2) { border-top: 0; }
  .stap { grid-template-columns: 1fr; gap: 1.2rem; padding-left: 2.2rem; }
  .stap-kop { flex-direction: row; align-items: baseline; gap: 1rem; }
  .stap-kop::before { left: -2.2rem; top: 0.45rem; width: 16px; height: 16px; }
  .stap-beeld img { aspect-ratio: 16 / 10; }
  .kompas-figuur { max-width: 320px; }
  .fotoband-drie blockquote { max-width: none; }

  .stemmenraster { grid-template-columns: 1fr; }
  .legenda ul { grid-template-columns: 1fr; }
  .systeem-figuur img { max-height: 26rem; }

  .fotoband { grid-template-columns: 1fr; min-height: 0; }
  .fotoband-foto { order: -1; min-height: 62vw; }
  .fotoband-illustratie { min-height: 0; }
  .fotoband-illustratie img { max-height: 18rem; }
  .fotoband-tekst { padding: 3rem 1.5rem 3.5rem; }

  .route { grid-template-columns: 1fr; gap: 2.8rem; }
  .routestap-lijn::before { right: 0; }
  .routestap img { aspect-ratio: 16 / 10; margin-top: 0; }

  .rijen li { grid-template-columns: 1fr; gap: 0.2rem; }
  .ervaringen-foto img { min-height: 0; aspect-ratio: 16 / 11; height: auto; }
  .klein-reviews { grid-template-columns: 1fr; }
  .omlijst::before, .omlijst-rechts::before { inset: 1rem -1rem -1rem 1rem; }
}

@media (min-width: 961px) {
  .menu-extra, .menu-cta { display: none; }
}

a:focus-visible, .knop:focus-visible, .menu-knop:focus-visible, .kop-bel:focus-visible, .kop-cta:focus-visible {
  outline: 2px solid var(--draad);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 1ms !important; }
}
