/* ===========================================================
   Inzicht Studio — gereconstrueerde homepage-stijl
   Editorial-wit canvas, blauw merkaccent, Playfair + Inter
   =========================================================== */

:root {
  --color-page:      #f7f6f2;   /* warm near-white canvas */
  --color-raised:    #efece4;
  --color-ink:       #18181b;   /* near-black text */
  --color-ink-mute:  #6b6862;
  --color-line:      #ddd8cc;

  --brand-blue:  #1f3da6;
  --brand-blue-2:#173089;
  --brand-red:   #d8241b;
  --brand-ink:   #16161a;
  --brand-grey:  #b9bcc4;

  --dark:        #16161a;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --t-display-xl: clamp(2.6rem, 6vw, 5.2rem);
  --t-display-l:  clamp(2rem, 4vw, 3.4rem);
  --t-display-m:  clamp(1.6rem, 2.6vw, 2.4rem);

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, sans-serif;

  --s-1: 6px; --s-2: 12px; --s-3: 18px; --s-4: 28px;
  --s-5: 40px; --s-6: 56px; --s-7: 80px; --s-8: 112px; --s-9: 152px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--color-ink);
  background: var(--color-page);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--dark); color: #fff; padding: 12px 18px; z-index: 2000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Headings ------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
/* Sleutelwoord in elke kop krijgt het merk-accent → scanners lezen het
   verhaal langs de gekleurde woorden (web-design: kleur als hiërarchie-tool,
   één accent, spaarzaam). Op donkere secties overschrijven we naar wit. */
em.italic-display, .italic-display { font-style: italic; font-weight: 500; color: var(--brand-blue); }
h2 em { font-style: italic; font-weight: 500; }

/* Masthead -------------------------------------------------- */
.masthead {
  border-bottom: 1px solid var(--color-line);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--color-ink-mute);
  background: var(--color-page);
}
.masthead__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 9px;
  text-transform: uppercase;
}
.masthead__meta { display: flex; gap: 22px; }
@media (max-width: 760px) { .masthead__meta { display: none; } }

/* Nav ------------------------------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: color-mix(in srgb, var(--color-page) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-nav.is-stuck { border-bottom-color: var(--color-line); }
.site-nav__inner {
  display: flex; align-items: center; gap: 28px;
  padding-block: 16px;
}
.wordmark--img img { height: 42px; width: auto; }
.site-nav__links {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
  margin-inline-start: auto;
}
.site-nav__link {
  text-decoration: none; font-size: 15px; font-weight: 500;
  color: var(--color-ink); padding-block: 6px; position: relative;
}
.site-nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--brand-blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .28s cubic-bezier(.3,.7,.2,1);
  pointer-events: none;
}
.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  text-decoration: none; border-radius: 2px; cursor: pointer;
  padding: 11px 20px; border: 1px solid transparent; transition: .2s;
}
.btn .arrow, .btn .case-card__more { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--brand-blue); color: #fff; }
.btn--primary:hover { background: var(--brand-blue-2); }
.btn--outline { border-color: var(--color-ink); color: var(--color-ink); background: transparent; }
.btn--outline:hover { background: var(--color-ink); color: var(--color-page); }
.btn--accent { background: var(--brand-red); color: #fff; }
.btn--accent:hover { background: #b51c14; }
.btn--link { padding: 0; color: var(--brand-blue); background: none; }
.site-nav__cta { padding: 9px 16px; font-size: 14px; }
/* Voorbij de hero (nav "stuck") wordt de meescrollende CTA solide blauw → de
   enige altijd-zichtbare actie vangt dan het oog, zonder in de hero te
   concurreren met de blauwe hoofd-CTA (oogsturing: geen ghost-hoofdactie). */
.site-nav.is-stuck .site-nav__cta {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
.site-nav.is-stuck .site-nav__cta:hover {
  background: var(--brand-blue-2);
  border-color: var(--brand-blue-2);
  color: #fff;
}
.mobile-menu-toggle { display: none; background: none; border: 0; color: var(--color-ink); cursor: pointer; }
.mobile-menu-toggle svg { width: 26px; height: 26px; }
@media (max-width: 860px) {
  .site-nav__links, .site-nav__cta { display: none; }
  .mobile-menu-toggle { display: block; margin-inline-start: auto; }
}

/* Hero ------------------------------------------------------ */
.hero { position: relative; padding-block: clamp(64px, 12vh, 150px) clamp(48px, 8vh, 96px); }
.hero__inner { max-width: 880px; }
.hero__headline { font-size: var(--t-display-xl); margin-bottom: 28px; max-width: 14ch; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.4rem); color: var(--color-ink-mute); max-width: 54ch; margin: 0 0 36px; line-height: 1.5; }

/* Trust bar ------------------------------------------------- */
.trust-bar { background: var(--dark); color: var(--color-page); position: relative; z-index: 4; }
.trust-bar__inner { display: flex; justify-content: space-between; gap: 40px; padding-block: 48px; flex-wrap: wrap; }
/* Elke stat krijgt een korte blauwe accentstreep als ankerpunt → het oog
   pikt de drie cijfers los op in plaats van eroverheen te glijden. */
.trust-stat { display: flex; flex-direction: column; gap: 8px; padding-top: 20px; position: relative; }
.trust-stat::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 44px; height: 4px; border-radius: 2px;
  background: var(--brand-blue);
}
.trust-stat__num { font-family: var(--serif); font-size: clamp(2.8rem, 4.6vw, 4rem); line-height: 1; font-variant-numeric: tabular-nums; }
.trust-stat__num .plus, .trust-stat__num .unit { color: var(--brand-blue); }
.trust-stat__num .unit { font-size: .42em; font-style: italic; margin-left: 6px; }
.trust-stat__label { font-size: 15.5px; color: #dcd9d1; letter-spacing: .01em; max-width: 20ch; }

/* Logo carousel -------------------------------------------- */
.logo-carousel { overflow: hidden; border-bottom: 1px solid var(--color-line); padding-block: 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  display: flex; flex-direction: column; gap: 20px;
}
.logo-row { overflow: hidden; }
.logo-row__track { display: flex; gap: 56px; width: max-content; align-items: center; will-change: transform; }
.logo-row--top .logo-row__track { animation: marquee-left 95s linear infinite; }
.logo-row--bottom .logo-row__track { animation: marquee-right 55s linear infinite; }
.logo-row:hover .logo-row__track { animation-play-state: paused; }
.logo-item { display: flex; align-items: center; justify-content: center; height: 56px; flex: 0 0 auto; }
.logo-item img { height: 100%; width: auto; max-width: 180px; object-fit: contain; filter: grayscale(1) contrast(.92); opacity: .72; transition: filter .25s, opacity .25s; }
.logo-row:hover .logo-item img { filter: grayscale(0); opacity: 1; }
@keyframes marquee-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .logo-row__track { animation: none; }
}

/* Video block ---------------------------------------------- */
.video-block { padding-block: var(--s-8); }
.video-block__frame { display: block; width: 100%; border: 0; padding: 0; cursor: pointer; background: none; }
.video-block__poster {
  aspect-ratio: 16/7; background: var(--color-raised);
  border: 1px solid var(--color-line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  position: relative; overflow: hidden;
}
.video-block__poster::before {
  content: "videostill volgt"; position: absolute; top: 16px; left: 18px;
  font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .08em;
  color: var(--color-ink-mute); text-transform: uppercase;
}
.video-block__play {
  width: 74px; height: 74px; border-radius: 50%; background: var(--brand-blue); color: #fff;
  display: grid; place-items: center; transition: transform .25s;
}
.video-block__frame:hover .video-block__play { transform: scale(1.08); }
.video-block__caption { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.8rem); max-width: 30ch; text-align: center; color: var(--color-ink); margin: 0; }
.video-block__note { text-align: center; font-size: 13px; color: var(--color-ink-mute); margin-top: 16px; letter-spacing: .03em; }

/* Section scaffolding -------------------------------------- */
.section { padding-block: var(--s-8); }
.section-num { font-family: ui-monospace, monospace; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-blue); display: block; margin-bottom: 18px; }
/* Rode penseelboog die het §01-kopje omarmt: de bracket-vorm gespiegeld
   naar een '(' links van de tekst, holle kant naar rechts, hoog genoeg om
   beide kopregels te cradelen. Steekt licht de kantlijn in. */
.split__lead { position: relative; }
.split__lead::before {
  content: ""; position: absolute;
  left: clamp(-76px, -4.5vw, -42px);
  top: 50%;
  width: clamp(96px, 11vw, 148px);
  height: 142%;
  transform: translateY(-50%) scaleX(-1);
  background-color: var(--brand-red);
  -webkit-mask: var(--streep-bracket) no-repeat center / 100% 100%;
          mask: var(--streep-bracket) no-repeat center / 100% 100%;
  pointer-events: none;
  z-index: 0;
}
.split__lead > * { position: relative; z-index: 1; }
.section-head { max-width: 760px; margin-bottom: var(--s-6); }
.section-head h2, .split__lead h2 { font-size: var(--t-display-l); }
.section-head--row { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 24px; flex-wrap: wrap; }

.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.split__lead h2 { font-size: var(--t-display-l); }
.split__body p { margin: 0 0 18px; color: #34322e; }
/* Openingszin = de scanbare kernboodschap: groter, vol-zwart, iets zwaarder.
   De rest blijft ondersteunende tekst. */
.split__body p:first-child {
  font-size: clamp(1.18rem, 1.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--color-ink);
  font-weight: 500;
  margin-bottom: 22px;
}
.split__body strong { font-weight: 600; color: var(--color-ink); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* Divider (host for editor strokes, but keeps spacing) ------ */
.stroke-divider { height: 120px; margin-block: var(--s-5); position: relative; }
.stroke-divider--wide { height: 150px; }

/* Segments scroll-reveal (SRR) ------------------------------ */
.srr-root { padding-block: var(--s-8); }
.srr-section-heading { font-size: var(--t-display-l); max-width: 18ch; margin-bottom: 16px; letter-spacing: -0.025em; line-height: 1.15; }
.srr-section-lede { font-size: 1.15rem; color: var(--color-ink-mute); max-width: 56ch; margin: 0 0 var(--s-6); }

.srr-track { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 80px; align-items: start; }
.srr-chapters { display: flex; flex-direction: column; }
.srr-chapter {
  min-height: 96vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: 24px;
  max-width: 48ch;
}
.srr-chapter__eyebrow { display: block; font-family: ui-monospace, monospace; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--color-ink); }
/* Zwarte golf-lijn boven elke segment-kop: de voorbewerkte wave-vorm als
   mask (inkt = alpha, dus rendert betrouwbaar), zo breed als de alinea
   (de chapter is max 48ch), verfijnd dun. */
.srr-chapter__eyebrow::before {
  content: ""; display: block;
  width: 100%;
  height: 30px;
  margin-bottom: 16px;
  background-color: var(--color-ink);
  -webkit-mask: var(--streep-wave-thin) no-repeat left center / 100% 100%;
          mask: var(--streep-wave-thin) no-repeat left center / 100% 100%;
}
.srr-chapter-heading { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 16px 0 16px; letter-spacing: -0.025em; line-height: 1.15; }
.srr-chapter-body { color: #34322e; font-size: 16px; margin: 0 0 20px; line-height: 1.6; opacity: .88; }
.srr-chapter-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.srr-chapter-tag { font-size: 12.5px; border: 1px solid var(--color-line); border-radius: 999px; padding: 4px 12px; color: var(--color-ink-mute); }
.srr-chapter-link { align-self: flex-start; margin-top: 20px; font-weight: 600; }
.srr-chapter-assets[hidden] { display: none !important; }

/* Sticky stage on the right — neat grid of the active segment's covers */
.srr-stage {
  position: sticky; top: 12vh; height: 76vh;
  display: flex; align-items: center; justify-content: center;
}
.srr-stage__layer {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .55s ease;
}
.srr-stage__layer.is-active { opacity: 1; pointer-events: auto; }
.srr-spread {
  display: grid;
  grid-template-columns: repeat(var(--srr-cols, 2), minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-height: 100%;
  align-content: center;
  justify-items: center;
  overflow-y: auto;
  padding: 4px;
}
.srr-spread__item {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-page);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
  transform-origin: center center;
  transition: transform .35s cubic-bezier(.3,.7,.2,1);
}
.srr-spread__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.srr-spread__item:hover { transform: scale(1.04); z-index: 60; }
.srr-stage__seg {
  position: absolute; top: 8px; left: 12px; z-index: 70;
  font-family: ui-monospace, monospace; font-size: 11.5px; letter-spacing: .07em;
  font-weight: 600; text-transform: uppercase; color: var(--brand-blue);
  background: color-mix(in srgb, var(--color-page) 88%, transparent);
  padding: 4px 11px; border-radius: 999px; border: 1px solid var(--color-line);
}
.srr-stage__count {
  position: absolute; bottom: 8px; right: 12px;
  font-family: ui-monospace, monospace; font-size: 11.5px; letter-spacing: .08em;
  color: var(--color-ink-mute); text-transform: uppercase;
  background: color-mix(in srgb, var(--color-page) 80%, transparent);
  padding: 4px 10px; border-radius: 999px; border: 1px solid var(--color-line);
}

/* Fallback (geen GSAP / reduced-motion): toon alle covers gestapeld */
.srr-stage--static { position: relative; top: auto; height: auto; display: block; }
.srr-stage--static .srr-stage__layer {
  position: relative; inset: auto; opacity: 1; pointer-events: auto;
  display: flex; margin-bottom: 24px;
}
.srr-stage--static .srr-spread { max-height: none; overflow-y: visible; }

/* Tussenmaat: houd de scroll-reveal sticky bij smallere (niet-fullscreen)
   vensters; alleen de kolom-gap krimpt zodat tekst + visual blijven passen. */
@media (max-width: 1100px) { .srr-track { gap: 48px; } }
@media (max-width: 900px)  { .srr-track { gap: 32px; } }

@media (max-width: 760px) {
  .srr-track { grid-template-columns: 1fr; gap: 24px; }
  .srr-chapter { min-height: 0; padding-block: 36px; }
  .srr-stage { position: relative; top: auto; height: auto; min-height: 320px; margin-bottom: 24px; }
  .srr-stage__layer { position: relative; opacity: 1; inset: auto; display: none; }
  .srr-stage__layer.is-active { display: flex; height: auto; }
  .srr-spread { max-height: none; overflow-y: visible; }
}
@media (prefers-reduced-motion: reduce) {
  .srr-stage__layer { transition: none; }
  .srr-spread__item { transition: none; }
}

/* Steps ----------------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: s; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { padding-top: 20px; }
/* Blauwe golfstreep boven elk stap-cijfer */
.step::before {
  content: ""; display: block;
  width: clamp(120px, 12vw, 168px);
  height: 30px;
  margin-bottom: 12px;
  background-color: var(--brand-blue);
  -webkit-mask: var(--streep-wave-thin) no-repeat left center / 100% 100%;
          mask: var(--streep-wave-thin) no-repeat left center / 100% 100%;
}
.step__num { font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--brand-blue); display: block; line-height: 1; margin-bottom: 12px; }
.step__title { font-size: 1.3rem; margin-bottom: 10px; }
.step__body { font-size: 15px; color: #34322e; margin: 0; }

/* Case grid ------------------------------------------------- */
.case-grid, .case-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: var(--s-2); }
@media (max-width: 760px) { .case-grid, .case-list { grid-template-columns: 1fr; } }
.case-card { text-decoration: none; color: inherit; border: 1px solid var(--color-line); background: var(--color-page); display: flex; flex-direction: column; transition: .25s; }
.case-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -28px rgba(0,0,0,.5); border-color: var(--color-ink-mute); }
.case-card__visual { aspect-ratio: 16/9; background: var(--color-raised); display: grid; place-items: center; padding: 0; border-bottom: 1px solid var(--color-line); overflow: hidden; position: relative; }
.case-card__visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.3,.7,.2,1); }
.case-card:hover .case-card__visual img { transform: scale(1.04); }
.case-card__placeholder { font-family: var(--serif); font-size: 1.25rem; line-height: 1.35; text-align: center; color: var(--color-ink-mute); margin: 0; padding: 28px; }
.case-card__placeholder em { color: var(--color-ink); font-style: italic; }
.case-card__body { padding: 24px 26px 28px; }
.case-card__segment { font-family: ui-monospace, monospace; font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 12px; }
.case-card__title { font-size: 1.35rem; margin-bottom: 12px; line-height: 1.2; }
.case-card__excerpt { font-size: 15px; color: #34322e; margin: 0 0 16px; }
.case-card__more { font-size: 14px; font-weight: 500; color: var(--brand-blue); display: inline-block; }
.case-card:hover .case-card__more { transform: translateX(4px); }

/* §04 Recent werk — één featured held + drie ondersteunend.
   De blik landt op de grote kaart bovenaan, leest dan de rij eronder
   (oogsturing: één duidelijke held i.p.v. vier gelijke gewichten). */
.case-grid--featured { display: flex; flex-direction: column; gap: 28px; margin-top: var(--s-2); }
.case-card--featured { display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
.case-card--featured .case-card__visual { aspect-ratio: auto; min-height: 248px; height: 100%; border-bottom: 0; border-right: 1px solid var(--color-line); }
.case-card--featured .case-card__body { align-self: center; padding: clamp(24px, 3.2vw, 44px); }
.case-card--featured .case-card__title { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 16px; }
.case-card--featured .case-card__excerpt { font-size: 16.5px; max-width: 46ch; margin-bottom: 20px; }
.case-grid__rest { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) {
  .case-card--featured { grid-template-columns: 1fr; }
  .case-card--featured .case-card__visual { aspect-ratio: 16/9; min-height: 0; height: auto; border-right: 0; border-bottom: 1px solid var(--color-line); }
}
@media (max-width: 760px) { .case-grid__rest { grid-template-columns: 1fr; } }

/* Trainings promo ------------------------------------------ */
.trainings-promo { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
@media (max-width: 820px) { .trainings-promo { grid-template-columns: 1fr; } }
.trainings-promo h2 { font-size: var(--t-display-l); margin-bottom: 18px; }
.trainings-promo p { color: #34322e; margin: 0 0 28px; }
.trainings-promo__list { list-style: none; margin: 0; padding: 0; }
.trainings-promo__list li { padding: 16px 0; border-top: 1px solid var(--color-line); font-family: var(--serif); font-size: 1.15rem; }
.trainings-promo__list li:last-child { border-bottom: 1px solid var(--color-line); }

/* About promo ---------------------------------------------- */
.about-promo { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 820px) { .about-promo { grid-template-columns: 1fr; } }
.about-promo__portrait { aspect-ratio: 3/4; background: var(--color-raised); border: 1px solid var(--color-line); display: grid; place-items: center; position: relative; color: var(--brand-grey); overflow: hidden; }
.about-promo__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-promo__portrait-mark { width: 50%; opacity: .5; }
.about-promo__portrait-caption { position: absolute; bottom: 16px; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--color-ink-mute); }
.about-promo h2 { font-size: var(--t-display-l); margin-bottom: 20px; }
.lede--spaced { color: #34322e; margin: 0 0 24px; }
.pullquote--inline { font-family: var(--serif); font-style: italic; font-size: 1.4rem; line-height: 1.3; border-left: 3px solid var(--brand-blue); padding-left: 22px; margin: 0 0 28px; display: block; }
.pullquote__attribution { display: block; font-family: var(--sans); font-style: normal; font-size: 13px; color: var(--color-ink-mute); margin-top: 12px; letter-spacing: .03em; }

/* Final CTA ------------------------------------------------- */
.final-cta { background: var(--dark); color: var(--color-page); padding-block: var(--s-9); position: relative; z-index: 4; overflow: hidden; }
.final-cta__head { max-width: 720px; text-align: center; margin-inline: auto; position: relative; z-index: 2; }
.eyebrow--on-dark { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-grey); display: block; margin-bottom: 20px; }
.final-cta h2 { font-size: var(--t-display-l); margin-bottom: 22px; }
.final-cta h2 em { color: #fff; }
.final-cta p { color: #c9c6bf; margin: 0 0 32px; font-size: 1.1rem; }

/* Footer ---------------------------------------------------- */
.site-footer { background: var(--dark); color: #c9c6bf; padding-block: var(--s-7) var(--s-5); border-top: 1px solid rgba(255,255,255,.08); position: relative; z-index: 4; }
.site-footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
.site-footer__brand img { height: 46px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.site-footer__tag { font-size: 14px; margin-top: 18px; max-width: 30ch; }
.site-footer h4 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 16px; }
.site-footer__links { list-style: none; margin: 0; padding: 0; font-size: 14px; }
.site-footer__links li { margin-bottom: 10px; }
.site-footer__links a { color: #c9c6bf; text-decoration: none; }
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: var(--s-6); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12.5px; color: #8d8a83; }

/* ===========================================================
   Binnenpagina's — werk / over / contact / trainingen
   =========================================================== */
.page-hero { padding-block: clamp(56px, 9vh, 110px) clamp(28px, 4vh, 52px); }
.page-hero__title { font-size: var(--t-display-xl); max-width: 17ch; margin-bottom: 24px; }
.page-hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--color-ink-mute); max-width: 58ch; line-height: 1.5; margin: 0; }

.eyebrow { font-family: ui-monospace, monospace; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-blue); display: block; margin-bottom: 18px; }
.eyebrow--spaced { margin-bottom: 20px; }
.eyebrow--on-dark { color: var(--brand-grey); }

.section--tight { padding-block: var(--s-6); }
.section--raised { background: var(--color-raised); }
.container--narrow { max-width: 760px; }

.lede { font-size: 1.15rem; color: var(--color-ink-mute); }
.lede--note { margin-top: var(--s-6); }
.lede--bottom-6 { margin-bottom: var(--s-5); color: #34322e; }
.lede--spaced { color: #34322e; }
.inline-link, .inline-link:visited { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 3px; }

.prose-body p, .prose-body { color: #34322e; }
.h2--small { font-size: var(--t-display-m); }

/* Case filter (werk) */
.case-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: var(--s-6); }
.case-filter button { border: 1px solid var(--color-line); background: transparent; border-radius: 999px; padding: 9px 18px; cursor: pointer; font: 500 14px/1 var(--sans); color: var(--color-ink-mute); transition: .18s; }
.case-filter button[aria-pressed="true"] { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.case-filter button:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.case-filter button[aria-pressed="true"]:hover { color: #fff; }
.case-card[hidden] { display: none; }

/* Cases als uitklapbare accordion (werk.html) ------------------ */
.case-accordion { margin-top: var(--s-4); border-top: 1px solid var(--color-line); }
.case-item { border-bottom: 1px solid var(--color-line); }
.case-item[hidden] { display: none; }

.case-item__head {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: grid; grid-template-columns: clamp(170px, 17vw, 220px) 1fr auto; gap: 28px; align-items: center;
  padding: 24px 8px; font: inherit; color: inherit; transition: background .2s;
}
.case-item__head:hover { background: color-mix(in srgb, var(--color-raised) 55%, transparent); }
.case-item__head:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: -2px; }
.case-item__thumb { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--color-raised); border: 1px solid var(--color-line); }
.case-item__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.3,.7,.2,1); }
.case-item__head:hover .case-item__thumb img { transform: scale(1.05); }
.case-item__thumb--text { display: grid; place-items: center; padding: 10px; }
.case-item__thumb--text span { font-family: var(--serif); font-style: italic; font-size: .9rem; line-height: 1.25; color: var(--color-ink-mute); text-align: center; }
.case-item__head-text { min-width: 0; }
.case-item__seg { font-family: ui-monospace, monospace; font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--brand-blue); display: block; margin-bottom: 7px; }
.case-item__title { display: block; font-family: var(--serif); font-size: clamp(1.2rem, 2.1vw, 1.6rem); line-height: 1.18; margin: 0 0 7px; }
.case-item__excerpt { display: block; font-size: 15px; color: var(--color-ink-mute); margin: 0; max-width: 62ch; }
.case-item__chevron { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--color-line); display: grid; place-items: center; color: var(--brand-blue); flex: 0 0 auto; transition: transform .35s cubic-bezier(.3,.7,.2,1), background .2s, color .2s, border-color .2s; }
.case-item__chevron svg { width: 18px; height: 18px; }
.case-item__head:hover .case-item__chevron { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.case-item.is-open .case-item__chevron { transform: rotate(180deg); }

.case-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s cubic-bezier(.3,.7,.2,1); }
.case-item__panel > .case-item__panel-inner { overflow: hidden; min-height: 0; }
.case-item.is-open .case-item__panel { grid-template-rows: 1fr; }

.case-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 56px); padding: 6px 8px 40px; }
@media (max-width: 760px) {
  .case-detail { grid-template-columns: 1fr; }
  .case-item__head { grid-template-columns: 132px 1fr auto; gap: 16px; }
  .case-item__thumb { width: 100%; }
}
.case-gallery { display: flex; flex-wrap: wrap; gap: 12px; align-content: flex-start; }
.case-gallery img { width: calc(50% - 6px); aspect-ratio: 3/4; object-fit: cover; border: 1px solid var(--color-line); background: var(--color-raised); }
.case-gallery--single img { width: 100%; aspect-ratio: 4/3; }
.case-gallery--placeholder { font-family: var(--serif); font-style: italic; color: var(--color-ink-mute); border: 1px dashed var(--color-line); border-radius: 4px; padding: 28px; text-align: center; background: var(--color-raised); }
.case-detail__text { font-size: 15.5px; }
.case-detail__partners { font-size: 13.5px; color: var(--color-ink-mute); margin: 0 0 14px; }
.case-detail__text h4 { font-family: ui-monospace, monospace; font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--brand-blue); margin: 18px 0 6px; }
.case-detail__text h4:first-of-type { margin-top: 0; }
.case-detail__text p { line-height: 1.6; color: #34322e; margin: 0; }
@media (prefers-reduced-motion: reduce) { .case-item__panel { transition: none; } .case-item__chevron { transition: none; } }

/* Pullquote (over) */
.pullquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.3; border-left: 3px solid var(--brand-blue); padding-left: 26px; margin: 0; }
.pullquote__attribution { display: block; font-family: var(--sans); font-style: normal; font-size: 14px; color: var(--color-ink-mute); margin-top: 16px; letter-spacing: .03em; }

/* Bio facts (over) */
.bio-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 0; }
@media (max-width: 820px) { .bio-facts { grid-template-columns: repeat(2, 1fr); } }
.bio-fact dt { font-family: ui-monospace, monospace; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 10px; }
.bio-fact dd { margin: 0; font-family: var(--serif); font-size: 1.25rem; line-height: 1.25; }
.bio-fact__note { display: block; font-family: var(--sans); font-size: 13px; color: var(--color-ink-mute); margin-top: 6px; }

/* Timeline (over) */
.timeline { list-style: none; margin: var(--s-2) 0 0; padding: 0; }
.timeline__item { display: grid; grid-template-columns: 170px 1fr; gap: 32px; padding-block: 26px; border-top: 1px solid var(--color-line); }
.timeline__item:last-child { border-bottom: 1px solid var(--color-line); }
@media (max-width: 680px) { .timeline__item { grid-template-columns: 1fr; gap: 8px; } }
.timeline__year { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--brand-blue); }
.timeline__content h3 { font-size: 1.3rem; margin-bottom: 10px; }
.timeline__content p { margin: 0; color: #34322e; font-size: 15.5px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.field input, .field select, .field textarea { font: inherit; font-size: 15px; padding: 12px 14px; border: 1px solid var(--color-line); border-radius: 3px; background: #fff; color: var(--color-ink); }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand-blue); outline-offset: 1px; border-color: var(--brand-blue); }
.field__hint { font-size: 12.5px; color: var(--color-ink-mute); }
.contact-meta h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 20px; }
.contact-meta dl { margin: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-meta dt { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--color-ink-mute); margin-bottom: 4px; }
.contact-meta dd { margin: 0; font-size: 15px; }
.contact-meta a { color: var(--brand-blue); }
.rule { border: 0; border-top: 1px solid var(--color-line); margin: 0; max-width: var(--maxw); margin-inline: auto; }

/* Evidence row (home §01 — waarom beeldverhaal werkt) */
.evidence-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); margin-top: var(--s-6); }
@media (max-width: 720px) { .evidence-row { grid-template-columns: 1fr; gap: var(--s-3); } }

.evidence {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  padding: clamp(24px, 2.4vw, 36px);
  box-shadow: 0 1px 2px rgba(22,22,26,.04);
  transition: transform .3s cubic-bezier(.3,.7,.2,1), box-shadow .3s, border-color .3s;
}
.evidence::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 2.4vw, 36px);
  width: 46px; height: 3px;
  background: var(--brand-blue);
  border-radius: 0 0 3px 3px;
}
.evidence:hover { transform: translateY(-4px); box-shadow: 0 18px 44px -28px rgba(22,22,26,.45); border-color: var(--color-ink-mute); }

.evidence__num { font-family: var(--serif); font-style: italic; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--brand-blue); display: block; margin-top: 6px; }
.evidence__label { display: block; margin-top: 14px; font-size: 15px; line-height: 1.5; color: #34322e; }
.evidence__source { display: block; margin-top: auto; padding-top: 18px; font-size: 12px; line-height: 1.4; color: var(--color-ink-mute); }

/* ===========================================================
   BEELDENMUUR (.bm, .bm__*, .bm-lb) + stille MARQUEE (.bm-marquee, .bm-mq__*)
   Markup in index.html; opbouw + data in js/beeldenmuur.js + js/beeldenmuur-data.js.
   Leunt op de tokens hierboven en op @keyframes marquee-left/right (carrousel).
   =========================================================== */
.bm-marquee {
  overflow: hidden;
  background: var(--color-page);
  border-block: 1px solid var(--color-line);   /* tussen §01 en §02: omkaderd als eigen band */
  padding-block: clamp(16px, 2.6vw, 28px);
  display: flex; flex-direction: column; gap: clamp(10px, 1.5vw, 16px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.bm-mq__row { overflow: hidden; }
.bm-mq__track {
  display: flex; gap: clamp(10px, 1.4vw, 16px);
  width: max-content; align-items: stretch; will-change: transform;
}
.bm-mq__row--top .bm-mq__track    { animation: marquee-left  72s linear infinite; }
.bm-mq__row--bottom .bm-mq__track { animation: marquee-right 72s linear infinite; }
.bm-mq__row:hover .bm-mq__track   { animation-play-state: paused; }
.bm-mq__tile {
  flex: 0 0 auto;
  height: 140px;
  margin: 0; padding: 8px;
  border: none; background: var(--color-raised);
  border-radius: 5px;
  cursor: zoom-in; position: relative;
  -webkit-tap-highlight-color: transparent;
  display: block;
}
.bm-mq__tile img {
  height: 100%; width: auto; max-width: 240px;
  object-fit: contain; display: block; border-radius: 3px;
}

/* ---- Beeldenmuur — sticky-scroll galerij ---- */
.bm {
  --bm-gap: 16px;            /* gap tussen tegels — lucht */
  --bm-rows-sticky: 4;       /* rijen in het vaste midden (rustiger, grotere tegels) */
  --bm-radius: 5px;
  position: relative;
  background: var(--color-page);
  border-top: 1px solid var(--color-line);   /* nette scheiding van §05 (beide cream) */
  padding-block: clamp(40px, 7vw, 96px);
}
.bm__head { margin-bottom: clamp(28px, 4.5vw, 52px); }
.bm::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; z-index: 3;
  pointer-events: none;
  background: linear-gradient(to top, var(--color-page), rgba(247,246,242,0));
}
.bm__walls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--bm-gap) * 2);
  padding-inline: var(--bm-gap);
}
.bm__gallery {
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  gap: var(--bm-gap);
  align-items: start;
}
.bm__col { display: grid; gap: var(--bm-gap); align-content: start; }
.bm__col--sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: repeat(var(--bm-rows-sticky), 1fr);
  gap: var(--bm-gap);
}
.bm__tile {
  position: relative;
  margin: 0; padding: 0;
  border: none; background: var(--color-raised);
  border-radius: var(--bm-radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;                 /* vierkante tegels in de scrollkolommen */
  -webkit-tap-highlight-color: transparent;
}
.bm__col--sticky .bm__tile {
  aspect-ratio: auto; height: 100%;
  box-shadow: 0 16px 38px -18px rgba(24,24,27,.42);
  z-index: 1;
}
.bm__tile img {
  width: 100%; height: 100%;
  object-fit: contain;               /* hele tekening zichtbaar, cream eromheen = passe-partout */
  display: block;
  filter: saturate(.84) sepia(.05) brightness(1.03);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .5s ease;
  will-change: transform;
}
.bm__col--sticky .bm__tile img { filter: none; }
.bm__tile::after {                   /* subtiele rand voor diepte op cream */
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(24,24,27,.06);
  pointer-events: none;
}
@media (hover: hover) {
  .bm__tile:hover img { transform: scale(1.06); filter: none; }
  .bm__tile:hover { box-shadow: 0 8px 24px -10px rgba(24,24,27,.28); z-index: 2; }
}
.bm__tile:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 2px; }
@media (max-width: 760px) {
  .bm__walls { grid-template-columns: 1fr 1fr; gap: var(--bm-gap); }
  .bm__gallery { display: contents; }
  .bm__col { display: contents; }
  .bm__col--sticky { position: static; height: auto; display: contents; }
  .bm__col--sticky .bm__tile { aspect-ratio: 1 / 1; height: auto; }
}

/* ---- Beeldenmuur — vergroting (lightbox, zweeft als kaart) ---- */
.bm-lb {
  position: fixed; inset: 0; z-index: 9999;
  display: none; place-items: center;
  background: rgba(24,24,27,.55);     /* zachte dim, niet pikzwart */
  backdrop-filter: blur(2px);
  padding: clamp(16px, 4vw, 48px);
}
.bm-lb.is-open { display: grid; }
.bm-lb__frame {
  position: relative; margin: 0;
  background: #fff; padding: 14px; border-radius: 10px;
  box-shadow: 0 30px 80px -24px rgba(0,0,0,.5);
  max-width: min(72vw, 860px);         /* duidelijk begrensd */
  display: flex; flex-direction: column; gap: 10px;
  animation: bm-pop .22s cubic-bezier(.2,.8,.2,1);
}
.bm-lb__img {
  display: block;
  max-width: 100%; max-height: 70vh;   /* hooguit 70% schermhoogte */
  width: auto; height: auto;
  object-fit: contain;                /* hele tekening, ongesneden */
  border-radius: 4px;
  background: var(--color-raised);
}
.bm-lb__close {
  position: absolute; top: -14px; right: -14px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 20px; line-height: 1;
  background: #fff; color: var(--color-ink);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,.4);
  display: grid; place-content: center;
}
.bm-lb__close:hover { background: var(--color-page); }
.bm-lb__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: none; cursor: pointer; z-index: 1;
  background: rgba(255,255,255,.92); color: var(--color-ink);
  font-size: 22px; line-height: 1; display: grid; place-content: center;
  transition: background .2s ease, transform .2s ease;
}
.bm-lb__btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.bm-lb__btn--prev { left: clamp(8px, 2vw, 20px); }
.bm-lb__btn--next { right: clamp(8px, 2vw, 20px); }
.bm-lb__count {
  text-align: center;
  color: var(--color-ink-mute); font-size: .82rem; letter-spacing: .03em;
  font-variant-numeric: tabular-nums;
}
@keyframes bm-pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 560px) {
  .bm-lb__frame { max-width: 88vw; padding: 10px; }
  .bm-lb__btn { width: 40px; height: 40px; }
  .bm-lb__img { max-height: 64vh; }
}
@media (prefers-reduced-motion: reduce) {
  .bm__tile img { transition: none; }
}

/* ─── FAQ component (centrale /faq + blokken onderaan pagina's) ─── */
.faq__head { margin-bottom: var(--s-4); }
.faq__head h2 { margin-top: var(--s-1); }
.faq__lead { color: var(--color-ink-mute); max-width: 60ch; margin: var(--s-2) 0 0; line-height: 1.6; }
.faq-list { list-style: none; margin: var(--s-2) 0 0; padding: 0; border-top: 1px solid var(--color-line); }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 24px 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.2;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--brand-blue); }
.faq-item__sign { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--color-line); display: grid; place-items: center; color: var(--brand-blue); font-size: 20px; line-height: 1; transition: transform .3s; }
.faq-item[open] .faq-item__sign { transform: rotate(45deg); }
.faq-item__body { padding: 0 8px 26px; max-width: 70ch; }
.faq-item__body p { color: #34322e; margin: 0 0 12px; line-height: 1.6; }
.faq-item__body p:last-child { margin-bottom: 0; }
.faq-item__body a { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 3px; }
.faq__more { margin-top: var(--s-4); }
.faq__more a { color: var(--brand-blue); font-weight: 500; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.faq__more a:hover { color: var(--brand-blue-2); }
@media (prefers-reduced-motion: reduce) { .faq-item__sign { transition: none; } }

/* ===========================================================
   Moneypage-beeld — tekeningen op de conversiepagina's
   Proef: beeldverhaal-zorg. Tekst blijft de held; beeld is
   ondersteuning (niveau 2). Zie skill visueel-leidend.
   =========================================================== */

/* Hero: kop = held (links, breder), tekening rechts en kleiner */
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.page-hero__figure { margin: 0; }
.page-hero__figure img {
  display: block; width: 100%; max-width: 330px; height: auto;
  margin-inline: auto;
  border: 1px solid var(--color-line);
  box-shadow: 0 22px 60px -38px rgba(0,0,0,.5);
}
@media (max-width: 820px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__figure { order: 2; }
  .page-hero__figure img { max-width: 240px; margin-inline: 0; }
}

/* Echte projectomslag naast de §-tekst — bewijs, niet decoratie */
.split__lead { display: flex; flex-direction: column; }
/* Rode penseelboog (142% hoog) uit op cover-secties: anders rekt-ie mee
   met de langere kolom en valt-ie over de kop/tekst. §01 houdt 'm wel. */
.split--proof .split__lead::before { display: none; }
/* ...en hetzelfde rode accent terug ACHTER de kop (groot + donker = leesbaar),
   net als §01. Spiegelt .split__lead::before exact. */
.section-head--accent { position: relative; }
.section-head--accent::before {
  content: ""; position: absolute;
  left: clamp(-76px, -4.5vw, -42px);
  top: 50%;
  width: clamp(96px, 11vw, 148px);
  height: 142%;
  transform: translateY(-50%) scaleX(-1);
  background-color: var(--brand-red);
  -webkit-mask: var(--streep-bracket) no-repeat center / 100% 100%;
          mask: var(--streep-bracket) no-repeat center / 100% 100%;
  pointer-events: none;
  z-index: 0;
}
.section-head--accent > * { position: relative; z-index: 1; }
.proof-figure { margin: 26px 0 0; }
.proof-figure img {
  display: block; width: 100%; max-width: 290px; height: auto;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px -34px rgba(0,0,0,.5);
}
.proof-figure figcaption {
  margin-top: 10px; font-family: ui-monospace, monospace;
  font-size: 12px; letter-spacing: .04em; color: var(--color-ink-mute);
}

/* Processtap: klein, ontkleurd portret bij het nummer.
   Klein + grijswaarden zodat het de stapnummers niet beconcurreert. */
.step__spot {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  filter: grayscale(1); opacity: .8;
  display: block; margin-bottom: 14px;
  border: 1px solid var(--color-line);
}

/* Final-CTA: warme tekening als ambient warmte op het donker */
.final-cta__art {
  position: absolute; right: -1%; bottom: 0;
  width: clamp(180px, 24vw, 320px); height: auto;
  opacity: .15; pointer-events: none; z-index: 1;
}
@media (max-width: 720px) { .final-cta__art { display: none; } }

/* Twee CTA's onderaan: primair (contact) + secundair naar de cases */
.final-cta__actions { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn--ghost-light { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--dark); border-color: #fff; }

/* Vol-brede beeldverhaal-strip (laaggeletterdheid): toont meteen 'een traject
   dat je in beeld volgt' — een liggend beeld dat niet in de hero-kolom past. */
.feature-strip { margin: 0; }
.feature-strip img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--color-line);
  box-shadow: 0 22px 60px -38px rgba(0,0,0,.5);
}
.feature-strip figcaption {
  margin-top: 12px; text-align: center;
  font-family: ui-monospace, monospace;
  font-size: 12px; letter-spacing: .04em; color: var(--color-ink-mute);
}

/* Inline projectomslag in een redactioneel artikel (pillar gevoelig-onderwerp):
   echte cover als bewijs. Klein + links uitgelijnd met omlopende tekst, zodat de
   TEKST de held blijft: het oog houdt een doorlopende leesrand en de cover steunt
   op niveau-2 i.p.v. de leesvolgorde over te nemen (oogsturing: witruimte + positie). */
.article-figure {
  float: left;
  width: 190px;
  max-width: 42%;
  margin: 6px 28px 16px 0;
}
.article-figure--tall { width: 168px; }
/* Elke subkop start onder de voorgaande float, zodat een cover nooit in de
   volgende sectie uitloopt. */
.prose-body h2 { clear: both; }
.article-figure img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px -34px rgba(0,0,0,.5);
}
.article-figure figcaption {
  margin-top: 10px; text-align: left; font-family: ui-monospace, monospace;
  font-size: 12px; letter-spacing: .04em; color: var(--color-ink-mute);
}
@media (max-width: 640px) {
  .article-figure, .article-figure--tall {
    float: none; width: auto; max-width: 220px; margin: 24px auto;
  }
  .article-figure figcaption { text-align: center; }
}

/* Liggende strip ALS hero-figuur (laaggeletterdheid): de strip is breed, dus
   geef de figuurkolom meer ruimte en haal de 330px-cap eraf zodat hij leesbaar
   blijft naast de kop. */
.page-hero__grid--strip { grid-template-columns: 1fr 1.05fr; align-items: center; }
.page-hero__figure--strip img {
  max-width: none;
  border: 1px solid var(--color-line);
  box-shadow: 0 22px 60px -38px rgba(0,0,0,.5);
}
.page-hero__figure--strip figcaption {
  margin-top: 12px; text-align: center;
  font-family: ui-monospace, monospace;
  font-size: 12px; letter-spacing: .04em; color: var(--color-ink-mute);
}
@media (max-width: 820px) {
  .page-hero__grid--strip { grid-template-columns: 1fr; }
  .page-hero__figure--strip img { max-width: none; }
}
