/* ---------- Self-hosted fonts (latin-subset, variable) ----------
   Voorheen Google Fonts; nu lokaal: geen render-blocking derde partij,
   geen IP naar Google (AVG) en een strakkere CSP (font-src 'self'). */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/fraunces-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/fraunces-italic-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/inter-tight-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =========================================================================
   Kelvantis: homepage styles (neo-brutalist edition)
   Pure CSS. Tokens first, then base, then sections (top → bottom).
   ========================================================================= */

:root {
  --paper: #F7F2E8;
  --paper-soft: #F1EADC;
  --paper-deep: #E8DFCB;
  --cream: #FDFAF3;
  --ink: #1F1814;
  --ink-soft: #5A4F46;
  --ink-faint: #8E8275;
  --rule: #DDD2BC;
  --rule-strong: #C8BCA0;
  --signal: #FF4D2E;
  --signal-warm: #F26A3D;
  --signal-deep: #C8331C;
  --signal-tint: rgba(255, 77, 46, 0.10);
  --signal-glow: rgba(255, 77, 46, 0.18);
  --moss: #6B7355;
  --dark: #1F1814;
  --on-dark: #FDFAF3;
  --on-dark-soft: rgba(253, 250, 243, 0.62);
  --on-dark-rule: rgba(253, 250, 243, 0.10);

  /* ── Neo-brutalist tokens ── */
  --border-ink: 2px solid var(--ink);
  --shadow-hard:    4px 4px 0 var(--ink);
  --shadow-hard-sm: 3px 3px 0 var(--ink);
  --shadow-hard-lg: 6px 6px 0 var(--ink);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter Tight', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Sharper corners */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:  10px;
  --r-pill: 999px;

  --maxw: 1280px;
  --pad:   48px;

  /* ── Entrance-animatielaag ── */
  --ease-soft:  cubic-bezier(0.22, 1, 0.36, 1);   /* rustige, nette uitloop */
  --ease-stamp: cubic-bezier(0.34, 1.4, 0.64, 1); /* lichte overshoot: stickers/pop */
  --reveal-dur:   600ms;
  --reveal-shift: 18px;
  --reveal-step:  80ms;                           /* stagger-stap binnen een groep */
  --shadow-hard-dark: 4px 4px 0 var(--on-dark);   /* cream-variant hard shadow op s-dark */
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}

/* Paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background:
    radial-gradient(120px 120px at 12% 18%, rgba(31,24,20,0.9), transparent 60%),
    radial-gradient(160px 160px at 78% 42%, rgba(31,24,20,0.8), transparent 60%),
    radial-gradient(140px 140px at 38% 82%, rgba(31,24,20,0.7), transparent 60%),
    radial-gradient(180px 180px at 88% 88%, rgba(31,24,20,0.8), transparent 60%);
  background-size: 240px 240px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--signal); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;   /* nette regelafbreking, geen losse weeskindjes */
  hyphens: none;        /* geen lelijke 'hand-werk'-afbrekingen */
  overflow-wrap: normal;
}

.accent { font-style: italic; color: var(--signal); font-weight: 500; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: clamp(80px, 10vw, 140px); }

.s-paper      { background: var(--paper); }
.s-cream      { background: var(--cream); }
.s-paper-soft { background: var(--paper-soft); }
.s-paper-deep { background: var(--paper-deep); }
.s-dark       { background: var(--dark); color: var(--on-dark); }
.s-signal     {
  background: var(--signal);
  color: #fff;
  border-top: var(--border-ink);
  border-bottom: var(--border-ink);
  box-shadow: 0 6px 0 var(--ink);
  position: relative;
}

/* ── Section label: ink sticker with handmade tilt ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 32px;
  /* sticker */
  background: var(--ink);
  color: var(--cream);
  padding: 6px 13px;
  border-radius: 3px;
  --rot: -2deg;
  transform: rotate(var(--rot, -2deg));
  transform-origin: left center;
}
.section-label .sl-num { color: var(--signal); }

/* alternate tilt per section background */
.s-cream .section-label { --rot: 1.5deg; }
.s-dark  .section-label {
  background: var(--cream);
  color: var(--ink);
  --rot: -1.5deg;
}
.s-dark .section-label .sl-num { color: var(--signal-deep); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================================================================
   BUTTONS: neo-brutalist press effect
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 6px;
  border: var(--border-ink);
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-hard);
  transition: transform 120ms ease, box-shadow 120ms ease;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}
/* Press-down is instant, release springs back */
.btn:active { transition-duration: 60ms; }

/* Primary: orange */
.btn--primary {
  background: var(--signal);
  color: var(--on-dark);      /* Bewuste keuze: wit op signal, onder AA, consistent met de koraal-koppen. */
  border-color: var(--ink);
}
.btn--primary:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn--primary:active { transform: translate(4px, 4px); box-shadow: none; }

/* Ghost: cream/transparent */
.btn--ghost {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn--ghost:active { transform: translate(4px, 4px); box-shadow: none; }

/* On-signal: dark button on orange bg */
.btn--on-signal {
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--signal-deep);
}
.btn--on-signal:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--signal-deep); }
.btn--on-signal:active { transform: translate(4px, 4px); box-shadow: none; }

.btn--sm { padding: 10px 16px; font-size: 13px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 16px; top: -64px;
  z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* =========================================================================
   SCROLL-REVEAL (subtiel, één keer): animatie i.p.v. transition,
   zodat de hover-transitions van de kaarten ongemoeid blijven.
   Zonder .js-class (geen JS) blijft alles gewoon zichtbaar.
   ========================================================================= */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.js .reveal,
.js .stagger > * { opacity: 0; }
.js .reveal.in-view,
.js .stagger.in-view > * {
  opacity: 1;
  animation: reveal-up 0.5s ease-out backwards;
}
/* kleine stagger voor opeenvolgende kaarten */
.js .stagger.in-view > *:nth-child(2) { animation-delay: 70ms; }
.js .stagger.in-view > *:nth-child(3) { animation-delay: 140ms; }
.js .stagger.in-view > *:nth-child(4) { animation-delay: 210ms; }
.js .stagger.in-view > *:nth-child(5) { animation-delay: 280ms; }
.js .stagger.in-view > *:nth-child(6) { animation-delay: 350ms; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .stagger > * { opacity: 1 !important; }
  .js .reveal.in-view,
  .js .stagger.in-view > * { animation: none !important; }
}

/* =========================================================================
   ENTRANCE-REVEAL v2 (data-reveal): rijkere laag bovenop de legacy-reveal.
   Varianten via attribuut, group-stagger via JS (--reveal-delay), en een
   reveal-done eindtoestand die de animatie weghaalt zodat transform weer
   vrij is voor de hover/active-mechaniek van kaarten en knoppen.
   Eigen keyframe-namespace (rv-*) zodat de legacy reveal-up onaangeroerd blijft.
   ========================================================================= */

/* Verborgen begintoestand alleen mét JS. Zonder JS: alles meteen zichtbaar. */
.js [data-reveal] { opacity: 0; }

/* Reveal als CSS-animatie (geen transition: botst niet met hover-transitions). */
.js [data-reveal].is-visible {
  animation: rv-up var(--reveal-dur) var(--ease-soft) var(--reveal-delay, 0ms) forwards;
  will-change: transform, opacity;
}
.js [data-reveal="left"].is-visible  { animation-name: rv-left; }
.js [data-reveal="right"].is-visible { animation-name: rv-right; }
.js [data-reveal="stamp"].is-visible {
  animation-name: rv-stamp;
  animation-duration: 420ms;
  animation-timing-function: var(--ease-stamp);
}
.js [data-reveal="pop"].is-visible {
  animation-name: rv-pop;
  animation-timing-function: var(--ease-stamp);
}
/* pop eindigt op de ruststand-schaduw van de kaart (anders flikkert hij bij reveal-done). */
.js .dienst-card[data-reveal="pop"] { --pop-shadow: 4px 4px 0 var(--on-dark); }
.js .lead-post[data-reveal="pop"]   { --pop-shadow: var(--shadow-hard-lg); }

/* Na afloop: eindtoestand statisch, animatie weg, GEEN transform → hover vrij. */
.js [data-reveal].reveal-done { opacity: 1; animation: none; will-change: auto; }

@keyframes rv-up {
  from { opacity: 0; transform: translateY(var(--reveal-shift)); }
  to   { opacity: 1; transform: none; }
}
@keyframes rv-left {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes rv-right {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: none; }
}
/* Sticker stempelt in; tilt (rotatie) blijft behouden via --rot. */
@keyframes rv-stamp {
  from { opacity: 0; transform: rotate(var(--rot, 0deg)) scale(1.14); }
  to   { opacity: 1; transform: rotate(var(--rot, 0deg)) scale(1); }
}
/* Kaart komt plat binnen en drukt de harde schaduw eruit (eindschaduw = ruststand). */
@keyframes rv-pop {
  from { opacity: 0; transform: translate(4px, 4px); box-shadow: 0 0 0 0 transparent; }
  to   { opacity: 1; transform: none;               box-shadow: var(--pop-shadow, var(--shadow-hard)); }
}

/* Signature over-ons: founder-foto valt in (up) en de -lg schaduw drukt eruit. */
.js .founder-photo[data-reveal] img { box-shadow: 0 0 0 0 transparent; }
.js .founder-photo[data-reveal].is-visible img {
  animation: rv-shadow-lg 460ms var(--ease-stamp) 200ms forwards;
}
@keyframes rv-shadow-lg {
  from { box-shadow: 0 0 0 0 transparent; }
  to   { box-shadow: var(--shadow-hard-lg); }
}

/* Signature homepage: hero-dashboard tekent de lijngrafiek wanneer in beeld. */
.js .dash .chart-line { stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.js .dash .chart-area { opacity: 0; }
.js .dash.is-visible .chart-line {
  animation: rv-draw 1100ms var(--ease-soft) 120ms forwards;
}
.js .dash.is-visible .chart-area {
  animation: rv-fade 500ms ease-out 900ms forwards;
}
@keyframes rv-draw { to { stroke-dashoffset: 0; } }
@keyframes rv-fade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; animation: none !important; transform: none !important; }
  .js .dash .chart-line { stroke-dashoffset: 0 !important; animation: none !important; }
  .js .dash .chart-area { opacity: 1 !important; animation: none !important; }
  .js .founder-photo[data-reveal] img { box-shadow: var(--shadow-hard-lg) !important; animation: none !important; }
}

/* =========================================================================
   NAVBAR: floating pill
   ========================================================================= */
.nav {
  position: fixed;            /* uit de flow → spacer reserveert hoogte → CLS = 0 */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;                 /* TOP: flush, full-bleed bar */
  background: transparent;
  transition: padding 280ms ease;
}
/* SCROLLED: alleen horizontale inset */
.nav.scrolled { padding-inline: clamp(16px, 4vw, 32px); }

/* Spacer reserveert exact de top-balk-hoogte; documentflow verschuift nooit */
.nav-spacer { height: 64px; flex: none; }

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;              /* constante hoogte → geen CLS bij staat-wissel */
  gap: 24px;
  width: 100%;
  /* TOP: volle balk, plat, dunne ink-onderrand, geen pill */
  max-width: 2600px;         /* praktisch full-bleed; animeert naar pill-breedte */
  margin-inline: auto;
  padding-inline: var(--pad); /* overschrijft .container's --pad */
  background: var(--cream);
  border: 2px solid transparent;
  border-bottom-color: var(--ink);
  border-radius: 0;
  box-shadow: 0 0 0 0 transparent;
  transition: max-width 300ms ease, padding-inline 300ms ease, border-radius 300ms ease,
              border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
  will-change: max-width, transform;
}

/* SCROLLED: floating pill (gecentreerd, pill-radius, 2px ink-border, harde schaduw) */
.nav.scrolled .nav-inner {
  max-width: 1180px;
  padding-inline: clamp(18px, 3vw, 32px);
  border-color: var(--ink);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-hard);
  transform: translateY(16px); /* ~16px zweef-marge zonder layout-shift */
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand svg { width: 32px; height: 32px; }
.brand-word {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-word .tis { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--signal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin-inline: auto;
}
.nav-links a:not(.btn) { font-size: 15px; color: var(--ink-soft); transition: color 0.18s ease; }
.nav-links a:not(.btn):hover { color: var(--ink); }

.nav-right { display: inline-flex; align-items: center; gap: 14px; }
.nav-item-cta { display: none; }

/* mobile menu toggle */
.nav-toggle-cb { display: none; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: var(--border-ink);
  border-radius: var(--r-sm);
  background: transparent;
  box-shadow: var(--shadow-hard-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.nav-toggle:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle .bars::before { position: absolute; top: -6px; }
.nav-toggle .bars::after  { position: absolute; top:  6px; }

/* Diensten-dropdown (desktop) */
.nav-dd { position: relative; display: flex; align-items: center; }

.nav-dd-trigger {
  font: inherit; font-size: 15px; color: var(--ink-soft);
  background: none; border: 0; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .18s ease;
}
.nav-dd-trigger:hover,
.nav-dd-trigger[aria-expanded="true"] { color: var(--ink); }

.nav-dd-caret { width: 10px; height: 10px; transition: transform .2s ease; }
.nav-dd-trigger[aria-expanded="true"] .nav-dd-caret { transform: rotate(180deg); }

.nav-dd-panel {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 300px; max-width: calc(100vw - 32px);
  background: var(--cream);
  border: var(--border-ink); border-radius: var(--r-md);
  box-shadow: var(--shadow-hard);
  padding: 10px; display: grid; gap: 4px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 120;
}
.nav-dd.open .nav-dd-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px; border-radius: var(--r-sm);
  text-decoration: none; transition: background .15s ease;
}
.nav-dd-item:hover { background: var(--paper-soft); }
.nav-dd-ic { flex: none; width: 24px; height: 24px; color: var(--signal); margin-top: 0; }
.nav-dd-ic svg { width: 100%; height: 100%; display: block; }
.nav-dd-tx { display: flex; flex-direction: column; }
.nav-dd-tt { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.2; transition: color .15s ease; }
.nav-dd-item:hover .nav-dd-tt { color: var(--signal); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero { padding-block: clamp(56px, 7vw, 96px); }

/* Badge: handmade sticker */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 3px;
  margin-bottom: 28px;
  --rot: -1.5deg;
  transform: rotate(var(--rot, -1.5deg));
  transform-origin: left center;
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); }

.hero-title {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-title .accent { display: block; }

.hero-sub { margin-top: 26px; max-width: 520px; font-size: 18px; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-meta { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.dots { display: inline-flex; gap: 6px; }
.dots span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.hero-meta .m-text { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ── Hero dashboard ── */
.dash {
  position: relative;
  background: var(--cream);
  border: var(--border-ink);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-hard-lg);
}
.dash-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  padding-right: 56px;
  border-bottom: 1px solid var(--rule);
}
.win-dots { display: inline-flex; gap: 6px; }
.win-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; background: var(--rule-strong); }
.win-dots i:nth-child(1) { background: var(--signal); }
.win-dots i:nth-child(2) { background: var(--signal-warm); opacity: 0.7; }

.live {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
}
.live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); }
.live-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--signal);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}
.dash-client { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); }   /* leesbaar label: AA */

.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 16px 0; }
.kpi {
  background: var(--paper);
  border: var(--border-ink);
  border-radius: var(--r-md);
  padding: 12px 12px 14px;
  transition: transform 120ms ease, box-shadow 120ms ease;
  box-shadow: var(--shadow-hard-sm);
}
.kpi:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.kpi-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }   /* leesbaar label: AA */
.kpi-value { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink); margin-top: 4px; line-height: 1; }
.kpi-delta { font-family: var(--font-mono); font-size: 11px; color: var(--signal-deep); margin-top: 6px; }   /* AA op licht */

.dash-chart {
  border: var(--border-ink);
  border-radius: var(--r-md);
  background: var(--paper);
  padding: 12px 8px 6px;
}
.dash-chart svg { width: 100%; height: auto; }

/* Burst sticker */
.burst {
  position: absolute;
  top: -34px; right: -30px;
  width: 98px; height: 98px;
  --rot: -12deg;
  transform: rotate(var(--rot, -12deg));
  display: grid;
  place-items: center;
  filter: drop-shadow(3px 3px 0 var(--ink));
}
.burst svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.burst span {
  position: relative;
  font-family: var(--font-mono);
  font-size: 9.5px; font-weight: 500;
  line-height: 1.25; letter-spacing: 0.04em;
  text-transform: uppercase; text-align: center;
  color: #fff; width: 74px;
}

/* =========================================================================
   PROBLEMEN
   ========================================================================= */
.problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.problem {
  border: var(--border-ink);
  border-radius: var(--r-md);
  padding: 28px 24px;
  background: var(--paper);
  box-shadow: var(--shadow-hard);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.problem:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.problem:active { transform: translate(4px, 4px); box-shadow: none; }

.problem .pnum { font-family: var(--font-display); font-size: 46px; font-weight: 500; color: var(--signal); line-height: 1; }
.problem h3 { font-size: 21px; margin: 18px 0 12px; line-height: 1.25; }
.problem p { color: var(--ink-soft); }

/* =========================================================================
   DIENSTEN (dark)
   ========================================================================= */
.dienst-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.dienst-head h2 { font-size: clamp(34px, 4.4vw, 56px); letter-spacing: -0.02em; color: var(--on-dark); }
.dienst-head h2 .accent { display: block; }
.dienst-intro { color: var(--on-dark-soft); font-size: 17px; max-width: 440px; justify-self: end; }

.dienst-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.dienst-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--on-dark);
  border-radius: var(--r-md);
  padding: 26px 22px 22px;
  background: rgba(253,250,243,0.04);
  min-height: 280px;
  /* cream offset → duidelijke sticker-diepte tegen het donkere blok */
  box-shadow: 4px 4px 0 var(--on-dark);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.dienst-card:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--on-dark); }
.dienst-card:active { transform: translate(4px, 4px); box-shadow: none; }

.dienst-icon { color: var(--signal); }
.dienst-icon svg { width: 30px; height: 30px; }

/* dienst number: orange sticker */
.dienst-num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em;
  background: var(--signal); color: #fff;
  border: var(--border-ink);
  border-radius: 4px;
  padding: 3px 8px;
  box-shadow: var(--shadow-hard-sm);
}

.dienst-card h3 { color: var(--on-dark); font-size: 19px; margin: 20px 0 10px; }
.dienst-card p  { color: var(--on-dark-soft); font-size: 15px; flex: 1; }
.dienst-arrow { color: var(--signal); margin-top: 18px; }
.dienst-arrow svg { width: 22px; height: 22px; }

/* =========================================================================
   STATS
   ========================================================================= */
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.stat-value { font-family: var(--font-display); font-size: clamp(44px,5.5vw,68px); font-weight: 500; color: var(--signal); line-height: 1; letter-spacing: -0.02em; }
.stat-label { color: var(--ink); font-size: 17px; margin: 14px 0 10px; max-width: 16em; }
.stat-source { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-soft); }
.stats-foot { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin-top: 44px; }

/* =========================================================================
   AANPAK
   ========================================================================= */
.aanpak-head h2 { font-size: clamp(32px,4.4vw,54px); letter-spacing: -0.02em; margin-bottom: 48px; }
.aanpak-head h2 .accent { display: block; }
.aanpak-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.step-card {
  border: var(--border-ink);
  border-radius: var(--r-md);
  padding: 24px 22px;
  background: var(--paper);
  box-shadow: var(--shadow-hard);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.step-card:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.step-card:active { transform: translate(4px, 4px); box-shadow: none; }

/* Stap pill: orange sticker */
.step-pill {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: var(--signal);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: var(--border-ink);
  box-shadow: var(--shadow-hard-sm);
  margin-bottom: 18px;
}
.step-card h3 { font-size: 19px; margin-bottom: 10px; }
.step-card p  { color: var(--ink-soft); font-size: 15px; }

/* =========================================================================
   TICKER
   ========================================================================= */
.ticker { border-top: var(--border-ink); border-bottom: var(--border-ink); padding-block: 26px; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; gap: 28px; }
.ticker-label { flex-shrink: 0; font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0; color: var(--ink-soft); }
.ticker-track {
  position: relative; overflow: hidden; flex: 1;
  /* zachte fade naar de sectie-achtergrond aan beide randen */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 84px, #000 calc(100% - 84px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 84px, #000 calc(100% - 84px), transparent 100%);
}
.ticker-move { display: inline-flex; align-items: center; white-space: nowrap; animation: marquee 34s linear infinite; }
.ticker-track:hover .ticker-move { animation-play-state: paused; }
.ticker-move .tk { font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.01em; color: var(--ink-soft); padding: 0 22px; display: inline-flex; align-items: center; gap: 22px; }
.ticker-move .tk::after { content: "·"; color: var(--rule-strong); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================================
   ENTITY
   ========================================================================= */
.entity-grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 56px; align-items: center; }
.entity h2 { font-size: clamp(28px,3.6vw,44px); line-height: 1.15; letter-spacing: -0.015em; }
.answer-block {
  margin: 28px 0 22px;
  padding-left: 22px;
  border-left: 3px solid var(--signal);
  font-size: 20px; line-height: 1.5; color: var(--ink);
}
.entity-body { color: var(--ink-soft); max-width: 60ch; }

.portrait { position: relative; }
.portrait img {
  /* height:auto zodat het HTML height-attribuut de hoogte niet op 1000px vastzet; aspect-ratio bepaalt de hoogte */
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg);
  border: var(--border-ink);
  box-shadow: var(--shadow-hard);
}
.portrait figcaption {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(31,24,20,0.88); color: var(--cream);
  padding: 8px 14px; border-radius: var(--r-sm);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em;
}
.portrait--ph {
  display: grid; place-items: center;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  border: var(--border-ink);
  box-shadow: var(--shadow-hard);
  background: radial-gradient(120% 90% at 50% 0%, var(--paper-soft), var(--paper-deep));
  color: var(--ink-faint); text-align: center; padding: 24px;
}
.portrait--ph .ph-mono { font-family: var(--font-display); font-style: italic; font-size: 40px; color: var(--ink); }
.portrait--ph .ph-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 12px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-head h2 { font-size: clamp(32px,4.4vw,54px); letter-spacing: -0.02em; margin-bottom: 36px; }
/* zelfde container-breedte als de rest; ruime tussenruimte */
.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  border: var(--border-ink);
  border-radius: var(--r-sm);          /* scherpe hoeken */
  background: var(--paper);
  box-shadow: var(--shadow-hard);       /* harde offset-schaduw, als de kaarten */
  transition: transform 140ms ease, box-shadow 140ms ease;
}
/* indruk-mechaniek op de hele balk (alleen gesloten) */
.faq-item:not([open]):hover  { transform: translate(2px, 2px); box-shadow: var(--shadow-hard-sm); }
.faq-item:not([open]):active { transform: translate(4px, 4px); box-shadow: none; }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 21px); font-weight: 500; color: var(--ink);
  border-radius: var(--r-sm);
}
.faq-item summary::-webkit-details-marker { display: none; }

/* toggle: ronde ink-knop; + roteert naar − bij open */
.faq-item .pm {
  flex-shrink: 0; position: relative;
  width: 30px; height: 30px;
  border: var(--border-ink); border-radius: var(--r-pill);
  background: var(--cream);
  transition: background-color 220ms ease, transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq-item .pm::before,
.faq-item .pm::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2.5px; border-radius: 2px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), background-color 220ms ease;
}
.faq-item .pm::after { transform: translate(-50%, -50%) rotate(90deg); } /* verticale balk → + */
.faq-item[open] .pm { background: var(--ink); transform: rotate(180deg); } /* spin + invert */
.faq-item[open] .pm::before,
.faq-item[open] .pm::after { background: var(--cream); }
.faq-item[open] .pm::after { transform: translate(-50%, -50%) rotate(0deg); } /* + → − */

.faq-answer { padding: 4px 26px 24px; border-top: 1px solid var(--rule); }
.faq-answer p { color: var(--ink-soft); max-width: 70ch; padding-top: 14px; line-height: 1.6; }

/* =========================================================================
   EIND-CTA (oranje): .s-signal provides the border + shadow
   ========================================================================= */
.cta { text-align: center; }
.cta-label { color: var(--ink); margin-bottom: 22px; }   /* ink op koraal: WCAG AA */
.cta h2 { color: #fff; font-size: clamp(40px,6.4vw,76px); line-height: 0.98; letter-spacing: -0.02em; }
.cta h2 .soft { display: block; font-style: italic; font-weight: 400; color: rgba(255,255,255,0.85); }
.cta-sub { max-width: 640px; margin: 24px auto 0; color: var(--ink); font-size: 18px; }   /* ink op koraal: WCAG AA */
.cta-actions { margin-top: 34px; }
.cta-trust { margin-top: 22px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink); }   /* ink op koraal: WCAG AA */

/* =========================================================================
   FOOTER
   ========================================================================= */
.s-footer { background: var(--dark); color: var(--on-dark-soft); padding-block: 72px 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;  /* brand breder, 3 linkkolommen gelijk */
  gap: 48px;
  align-items: start;                         /* alle koppen op dezelfde baseline */
}
.footer-brand .brand-word { color: var(--on-dark); }
.footer-brand svg { width: 28px; height: 28px; }
.footer-tag { margin-top: 18px; color: var(--on-dark-soft); font-size: 15px; max-width: 30ch; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-soft); font-weight: 500; margin: 2px 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { color: var(--on-dark-soft); font-size: 15px; transition: color 0.18s ease; }
.footer-col a:hover { color: var(--on-dark); }
.footer-socials { display: flex; gap: 12px; margin-top: 22px; }
.footer-socials a {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--on-dark-rule);
  border-radius: var(--r-sm);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.footer-socials a:hover { border-color: var(--signal); color: var(--signal); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--on-dark-rule);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-mono); font-size: 12px; color: var(--on-dark-soft);
}
.footer-bottom .fb-links { display: flex; gap: 22px; }

/* =========================================================================
   CONTACT (/contact/): hergebruikt tokens & mechaniek van de homepage
   ========================================================================= */
/* compacte hero, gecentreerd */
.hero--compact { padding-block: clamp(48px, 6vw, 84px); }
.hero-copy--center { max-width: 720px; margin-inline: auto; text-align: center; }
.hero-copy--center .badge { --rot: -1.5deg; }
.hero-copy--center .hero-sub { margin-inline: auto; }
.hero--compact .hero-title { font-size: clamp(40px, 6vw, 72px); }
.hero--compact .hero-title .accent { display: inline; }

/* twee-koloms layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-left .section-label,
.contact-right .section-label { margin-bottom: 22px; }

/* ── Linkerkolom: directe contact-knoppen (kaart + indruk-mechaniek) ── */
.contact-actions { display: flex; flex-direction: column; gap: 14px; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--paper);
  border: var(--border-ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hard);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.contact-btn:hover  { transform: translate(2px, 2px); box-shadow: var(--shadow-hard-sm); }
.contact-btn:active { transform: translate(4px, 4px); box-shadow: none; }

.contact-btn-ico {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: var(--border-ink);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
}
.contact-btn-ico svg { width: 22px; height: 22px; }
.contact-btn-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.contact-btn-label { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--ink); line-height: 1.1; }
.contact-btn-sub { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
.contact-btn .arr { font-size: 18px; color: var(--ink-faint); transition: color 0.18s ease, transform 0.18s ease; }
.contact-btn:hover .arr { color: var(--signal); transform: translateX(2px); }

/* primaire (WhatsApp) variant: oranje */
.contact-btn--primary { background: var(--signal); }
/* Bewuste keuze: wit op signal, onder AA, consistent met de koraal-koppen. */
.contact-btn--primary .contact-btn-label,
.contact-btn--primary .contact-btn-sub { color: var(--on-dark); }
.contact-btn--primary .contact-btn-ico { background: var(--cream); color: var(--signal); }
.contact-btn--primary .arr { color: var(--on-dark); }
.contact-btn--primary:hover .arr { color: var(--on-dark); }

/* info-blokje onder de knoppen */
.contact-info {
  margin-top: 28px;
  border: var(--border-ink);
  border-radius: var(--r-md);
  background: var(--cream);
  padding: 6px 18px;
}
.contact-info-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-info-row:last-child { border-bottom: 0; }
.contact-info-key { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }   /* leesbare sleutel: AA */
.contact-info-val { font-family: var(--font-mono); font-size: 13px; color: var(--ink); }

/* ── Rechterkolom: formulier ── */
.contact-form {
  border: var(--border-ink);
  border-radius: var(--r-md);
  background: var(--paper);
  box-shadow: var(--shadow-hard);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.contact-form label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.field-opt { color: var(--ink-soft); text-transform: none; letter-spacing: 0; }   /* leesbaar "(optioneel)": AA */
.field-hint { font-family: var(--font-body); font-size: 13px; color: var(--ink-soft); margin-top: -1px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: var(--border-ink);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  width: 100%;
  transition: box-shadow 120ms ease, border-color 120ms ease;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231F1814' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-soft); }   /* leesbare hint: AA (ingevulde tekst is --ink, blijft donkerder) */
/* duidelijke focus-state: oranje outline + harde offset, in stijl */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
  box-shadow: var(--shadow-hard-sm);
}

.contact-submit { align-self: flex-start; margin-top: 4px; }
.contact-privacy { font-size: 13px; color: var(--ink-soft); }
.contact-privacy a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.contact-privacy a:hover { color: var(--signal); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================================
   SERVICE / EDITORIAL PAGE (/website-laten-maken/): bewust rustiger:
   leeskolommen i.p.v. kaartenmuur, meer witruimte, één accent (eind-CTA).
   Hergebruikt alle tokens; voegt alleen kalme editoriale klassen toe.
   ========================================================================= */
/* hero: links uitgelijnd (overschrijft .hero-copy--center niet; we gebruiken die hier niet) */
.hero--compact .hero-copy { max-width: 760px; }

/* direct-antwoord onder H1: rustige lead, géén kader (anders dan .answer-block) */
.lead {
  margin-top: 24px;
  max-width: 62ch;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
}

/* leeskolom */
.prose { max-width: 68ch; color: var(--ink-soft); font-size: 17px; }
.prose p + p { margin-top: 1em; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--rule-strong); transition: text-decoration-color 0.18s ease; }
.prose a:hover { text-decoration-color: var(--signal); }

/* sectiekop: label + h2 + kort direct-antwoord, lichter dan de homepage-koppen */
.sec-head { margin-bottom: 36px; }
.sec-head h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.02em; }
.sec-head h2 .accent { font-style: italic; }
.sec-answer { margin-top: 18px; max-width: 64ch; font-size: 18px; line-height: 1.55; color: var(--ink-soft); }
.s-dark .sec-head h2 { color: var(--on-dark); }
.s-dark .sec-answer { color: var(--on-dark-soft); }

/* "Wat je krijgt": lezende rijen met hairline, géén offset-kaarten */
.feature-list {
  margin-top: 8px;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-strong);
}
.feature-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: var(--border-ink);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-hard-sm);
  background: var(--cream);
  color: var(--signal);
}
.feature-ico svg { width: 26px; height: 26px; }
.feature h3 { font-family: var(--font-body); font-weight: 600; font-size: 19px; color: var(--ink); margin-bottom: 4px; }
.feature p { color: var(--ink-soft); font-size: 16px; max-width: 48ch; }
.feature p a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--rule-strong); }
.feature p a:hover { text-decoration-color: var(--signal); }

/* "Onze aanpak": gecondenseerde genummerde stappen, géén kaart-schaduw */
.steps-lean { margin-top: 8px; max-width: 820px; }
.step-lean {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.step-lean:last-child { border-bottom: 1px solid var(--rule); }
.step-lean .sl-n { font-family: var(--font-display); font-size: 40px; font-weight: 500; color: var(--signal); line-height: 1; }
.step-lean h3 { font-size: 20px; margin-bottom: 8px; }
.step-lean p { color: var(--ink-soft); font-size: 16px; max-width: 60ch; }

/* twee prozakolommen (Webflow vs WordPress) */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 8px; }
.two-col h3 { font-size: 22px; margin-bottom: 12px; }

/* herhaalde, rustige CTA-rij tussen secties */
.cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* iets rustiger eind-CTA dan de homepage */
.cta--lean h2 { font-size: clamp(34px, 4.6vw, 54px); }
.cta--lean .cta-sub { font-size: 17px; }

/* "Waarom": 3 strakke punten met klein mono-nummer (kalmer dan kaarten) */
.reason-list { margin-top: 8px; max-width: 860px; display: grid; gap: 0; }
.reason { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: baseline; padding: 32px 0; border-top: 1px solid var(--rule-strong); }
.reason:last-child { border-bottom: 1px solid var(--rule-strong); }
.reason-n { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; letter-spacing: -0.02em; color: var(--signal); }
.reason h3 { font-family: var(--font-body); font-weight: 600; font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.reason p { color: var(--ink-soft); font-size: 16px; max-width: 60ch; }
.reason-foot { margin-top: 22px; max-width: 64ch; color: var(--ink-soft); font-size: 16px; }
.reason-foot a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--rule-strong); transition: text-decoration-color 0.18s ease; }
.reason-foot a:hover { text-decoration-color: var(--signal); }

/* Pull-quote: het enige grote-schaal-element; rustig eromheen */
.section--quote { padding-block: clamp(72px, 10vw, 132px); }
.pullquote {
  max-width: 16ch;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
@media (min-width: 720px) { .pullquote { max-width: 22ch; } }
.pullquote .accent { font-style: italic; color: var(--signal); }

/* "Wat bepaalt de prijs?": lichte factorenlijst (geen hairline-kaarten) */
.prijs-intro { margin-top: 4px; max-width: 60ch; font-size: 18px; color: var(--ink-soft); }
.factor-list { list-style: none; margin: 22px 0 0; padding: 0; max-width: 640px; display: grid; gap: 14px; }
.factor-list li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: baseline; font-size: 17px; color: var(--ink-soft); }
.factor-n { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--signal-deep); letter-spacing: 0.06em; }   /* AA op licht */
.factor-list strong { color: var(--ink); font-weight: 600; }
.prijs-foot { margin-top: 22px; max-width: 60ch; color: var(--ink-soft); font-size: 16px; }
.prijs-foot a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--rule-strong); transition: text-decoration-color 0.18s ease; }
.prijs-foot a:hover { text-decoration-color: var(--signal); }

/* ── §04 prijs: twee koloms met illustratie rechts ── */
.prijs-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.prijs-art { display: flex; justify-content: center; }
.robot { width: 100%; max-width: 340px; height: auto; overflow: visible; }

/* zwevende vraagtekens: subtiel, pure CSS */
.qmark { transform-box: fill-box; transform-origin: center; animation: qfloat 3s ease-in-out infinite; }
.qmark--2 { animation-delay: 0.5s; animation-duration: 3.4s; }
.qmark--3 { animation-delay: 1s; animation-duration: 2.6s; }
@keyframes qfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ── D6: underline draw-on onder het accentwoord in de H1 (pure CSS) ── */
.hero-title .accent--draw { display: inline-block; position: relative; }
.draw-underline {
  position: absolute;
  left: 0; right: 0;
  bottom: -0.16em;
  width: 100%; height: 0.32em;
  color: var(--signal);
  overflow: visible;
}
.draw-underline path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-underline 0.75s ease 0.2s forwards;
}
@keyframes draw-underline { to { stroke-dashoffset: 0; } }

/* ── D7: scroll-driven voortgangslijn op de aanpak-stappen (pure CSS) ── */
.steps-lean { position: relative; padding-left: 26px; }
.steps-lean::before,
.steps-lean::after {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 2px; border-radius: 2px;
}
.steps-lean::before { bottom: 6px; background: var(--rule); }
.steps-lean::after {
  height: calc(100% - 12px);
  background: var(--signal);
  transform-origin: top;
  transform: scaleY(1); /* fallback: volle lijn als view()-timeline niet wordt ondersteund */
}
@supports (animation-timeline: view()) {
  .steps-lean::after {
    transform: scaleY(0);
    animation: steps-fill linear both;
    animation-timeline: view();
    animation-range: entry 15% cover 70%;
  }
}
@keyframes steps-fill { from { transform: scaleY(0); } to { transform: scaleY(1); } }

@media (prefers-reduced-motion: reduce) {
  .draw-underline path { animation: none; stroke-dashoffset: 0; }
  .steps-lean::after { animation: none; transform: scaleY(1); }
  .qmark { animation: none; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .feature-list { grid-template-columns: 1fr; }
  .step-lean { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-lean .sl-n { font-size: 32px; }
  .steps-lean { padding-left: 20px; }
  /* prijs: gestapeld, illustratie onder de tekst */
  .prijs-grid { grid-template-columns: 1fr; gap: 36px; }
  .robot { max-width: 280px; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .dienst-grid  { grid-template-columns: repeat(2,1fr); }
  .aanpak-grid  { grid-template-columns: repeat(2,1fr); }
  .dienst-head  { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .dienst-intro { justify-self: start; }
}

@media (max-width: 900px) {
  :root { --pad: 28px; }

  /* TOP: full-bleed balk; SCROLLED: pill (zelfde gedrag als desktop, basisregels) */
  .nav-inner   { height: 56px; padding-inline: 20px; }
  .nav-spacer  { height: 56px; }

  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .dash  { order: 2; }
  .burst { top: -18px; right: -6px; width: 84px; height: 84px; }

  .entity-grid { grid-template-columns: 1fr; gap: 36px; }
  .portrait    { max-width: 420px; }

  .footer-grid  { grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }

  /* mobile nav dropdown */
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-cta    { display: none; }
  .nav-links {
    position: absolute;
    left: 0; right: 0;
    top: calc(100% + 8px); /* volgt de balk/pill in beide staten */
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-inline: 0;
    background: var(--paper);
    border: var(--border-ink);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-hard);
    padding: 8px 20px 20px;
    display: none;
  }
  /* links met scheidingslijntjes; de laatste link (FAQ) krijgt er geen,
     zodat de CTA-knop één duidelijke lijn boven zich heeft */
  .nav-links > li:not(.nav-item-cta) > a { padding: 14px 0; border-bottom: 1px solid var(--rule); display: block; }
  .nav-links > li:nth-last-child(2) > a  { border-bottom: 0; }
  /* CTA-knop onderaan: exact de hero-knop (.btn--primary), geen overrides.
     Dunne scheidingslijn boven + ruimte; ondermarge zodat de offset-schaduw vrij staat. */
  .nav-item-cta { display: block; margin-top: 4px; padding-top: 18px; border-top: 1px solid var(--rule); margin-bottom: 6px; }
  .nav-toggle-cb:checked ~ .nav-links { display: flex; }
  .nav-toggle-cb:checked ~ .nav-toggle .bars                { background: transparent; }
  .nav-toggle-cb:checked ~ .nav-toggle .bars::before        { transform: translateY(6px) rotate(45deg); }
  .nav-toggle-cb:checked ~ .nav-toggle .bars::after         { transform: translateY(-6px) rotate(-45deg); }

  /* Diensten-dropdown (mobiel: inline binnen de hamburger) */
  .nav-dd { display: block; }
  .nav-dd-trigger {
    width: 100%; justify-content: space-between;
    padding: 14px 0; font-size: 15px; color: var(--ink-soft);
    border-bottom: 1px solid var(--rule);
  }
  .nav-dd-panel {
    position: static; transform: none; width: auto; max-width: none;
    border: 0; box-shadow: none; background: transparent; padding: 0;
    opacity: 1; visibility: hidden; pointer-events: none;
    height: 0; overflow: hidden; z-index: auto; transition: none;
  }
  .nav-dd.open .nav-dd-panel {
    visibility: visible; pointer-events: auto; height: auto;
    transform: none; padding: 2px 0 6px 12px; /* lichte inspring = subniveau */
  }
  .nav-dd-item { padding: 9px 0; gap: 10px; } /* compacter */
  .nav-dd-ic   { width: 18px; height: 18px; } /* kleinere icons als subniveau */
  .nav-dd-tt   { font-size: 14px; font-weight: 500; } /* kleiner + lichter dan top-level */
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .problems-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid    { grid-template-columns: 1fr; gap: 36px; }
  .dienst-grid   { grid-template-columns: 1fr; }
  .aanpak-grid   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-meta     { flex-wrap: wrap; }
  .ticker-inner  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ticker-track  { width: 100%; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-move       { animation: none; }
  .live-dot::after   { animation: none; }
  .nav-dd-caret, .nav-dd-panel { transition: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration:  0.01ms !important;
  }
}

/* =========================================================================
   OVER-ONS  (/over-ons/)
   ========================================================================= */
/* Hero: accentwoord inline i.p.v. block, zodat "machine" middenin de zin blijft */
.about-hero .hero-title .accent { display: inline; }

/* Hero-robot: subtiele wuif-beweging (uit bij prefers-reduced-motion, zie onder) */
.robot-wave { transform-box: fill-box; transform-origin: 0% 100%; animation: robot-wave 2.4s ease-in-out infinite; }
@keyframes robot-wave { 0%, 100% { transform: rotate(2deg); } 50% { transform: rotate(-14deg); } }

/* Founder: foto links / tekst rechts (mobiel: foto boven) */
.founder-grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: center; }
.founder-grid h2 { font-size: clamp(28px, 3.8vw, 46px); line-height: 1.12; letter-spacing: -0.015em; }
/* Foto: zelfde 4:5-verhouding als het entity-frame op de homepage, maar vaste maat (~360x450) zodat het niet manshoog wordt. CLS-veilig via aspect-ratio (.portrait img) + width/height-attributen. */
.founder-photo { margin: 0; }
/* height:auto laat aspect-ratio:4/5 (van .portrait img) de hoogte bepalen; anders zet het HTML height-attribuut (CLS) de hoogte op 1000px en wordt het frame manshoog */
.founder-photo img { box-shadow: var(--shadow-hard-lg); height: auto; }   /* shadow -lg per opdracht */

/* Sectiekop voor Waarom / Hoe we werken */
.about-head { margin-bottom: 40px; }
.about-head h2 { font-size: clamp(32px, 4.4vw, 54px); line-height: 1.06; letter-spacing: -0.02em; }
.s-dark .about-head h2 { color: var(--on-dark); }
.about-head h2 .accent { display: inline; }
.about-intro { max-width: 62ch; font-size: 18px; line-height: 1.55; color: var(--ink-soft); margin-top: 18px; }
.s-dark .about-intro { color: var(--on-dark-soft); }

/* Beschrijvende interne tekstlinks */
.about-link { color: var(--ink); font-weight: 500; text-decoration: underline;
  text-decoration-color: var(--rule-strong); text-underline-offset: 3px;
  transition: text-decoration-color 0.18s ease; }
.about-link:hover { text-decoration-color: var(--signal); }
.s-dark .about-link { color: var(--on-dark); }

/* Waarom: donkere kaarten met cream-border + indruk-mechaniek (zelfde als .dienst-card) */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  border: 2px solid var(--on-dark);
  border-radius: var(--r-md);
  padding: 28px 24px;
  background: rgba(253, 250, 243, 0.04);
  box-shadow: 4px 4px 0 var(--on-dark);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.why-card:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--on-dark); }
.why-card:active { transform: translate(4px, 4px); box-shadow: none; }
.why-card h3 { color: var(--on-dark); font-size: 19px; margin-bottom: 10px; }
.why-card p  { color: var(--on-dark-soft); font-size: 15px; line-height: 1.55; }

/* CTA: decoratieve cirkel-outlines (binnen het oranje blok) */
.s-signal .cta { position: relative; z-index: 1; }
.cta-circle { position: absolute; z-index: 0; pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.22); border-radius: 50%; }
.cta-circle--1 { width: 180px; height: 180px; top: 28px; left: 32px; }
.cta-circle--2 { width: 120px; height: 120px; right: 44px; bottom: 28px; }
/* Trust-regel: inktkleur voor hoger contrast op het oranje blok */
.cta-trust--ink { color: var(--ink); }

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-photo { width: 100%; max-width: 300px; }   /* gestackt: compact, ~375px hoog */
}
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-circle { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .robot-wave { animation: none; }
}

/* =========================================================================
   FAQ-PAGINA  (/faq/)
   ========================================================================= */
.faq-intro { margin-bottom: 48px; }
.faq-title { font-size: clamp(40px, 6vw, 72px); line-height: 1.0; letter-spacing: -0.02em; }
.faq-lead { margin-top: 20px; max-width: 62ch; font-size: 18px; line-height: 1.55; color: var(--ink-soft); }

/* twee koloms: sticky categorie-nav + vragen */
.faq-layout { display: grid; grid-template-columns: 264px 1fr; gap: 48px; align-items: start; }

/* sticky brutalist-kaart links */
.faq-nav {
  position: sticky; top: 100px;
  background: var(--cream);
  border: var(--border-ink);
  box-shadow: var(--shadow-hard);
  border-radius: var(--r-md);
  padding: 18px 16px;
}
.faq-nav-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 4px 6px 14px; }   /* leesbaar label: AA */
.faq-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.faq-cat-link {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; border-radius: var(--r-sm);
  color: var(--ink); font-weight: 500; font-size: 14px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.faq-cat-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--signal); }
.faq-cat-num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); margin-right: 8px; }   /* leesbaar nummer: AA (actieve variant houdt wit op koraal) */
.faq-cat-link:hover { background: var(--paper-soft); }
.faq-cat-link.active { background: var(--signal); color: #fff; }   /* oranje ink-sticker, cream/wit tekst */
.faq-cat-link.active svg { color: #fff; }
.faq-cat-link.active .faq-cat-num { color: rgba(255, 255, 255, 0.85); }

/* categorie-blokken rechts */
.faq-cat { scroll-margin-top: 100px; }
.faq-cat + .faq-cat { margin-top: 64px; }
.faq-cat-h { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.15; letter-spacing: -0.01em; margin: 6px 0 24px; max-width: 30ch; }
.section-label--alt { --rot: 1.5deg; }   /* afwisselende sticker-tilt */
.faq-more { margin-top: 20px; font-size: 15px; }

/* mono-nummer + vraagtekst in de summary (component zelf blijft ongewijzigd) */
.faq-num { flex-shrink: 0; font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--signal-deep); letter-spacing: 0.04em; }   /* AA op licht */
.faq-q { flex: 1; }

/* CTA-kaart onderaan */
.faq-cta-card {
  margin-top: 56px; text-align: center;
  background: var(--paper-deep);
  border: var(--border-ink);
  box-shadow: var(--shadow-hard);
  border-radius: var(--r-md);
  padding: 38px 32px;
}
.faq-cta-card h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.01em; }
.faq-cta-card p { margin: 12px auto 26px; max-width: 48ch; color: var(--ink-soft); line-height: 1.55; }

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-nav { position: static; }
  .faq-nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px; }
}
@media (max-width: 520px) {
  .faq-nav ul { grid-template-columns: 1fr; }
}

/* =========================================================================
   === BLOG / KRANT-LAAG ===
   Herbruikbare editoriale laag voor losse blogartikelen. Krant-uiterlijk
   (masthead, dropcap, regels, pull-quotes, datatabel) bovenop het bestaande
   neo-brutalist systeem: alle kaders gebruiken --border-ink + --shadow-hard.
   Geen smalle meerkoloms body: krant-vibe via typografie. Alle klassen onder
   de .kr-* prefix zodat het blok geïsoleerd en herbruikbaar blijft.
   ========================================================================= */

/* ── Masthead (terugkerend krant-merkelement op elke post) ── */
.kr-masthead { background: var(--paper); padding-block: clamp(22px, 3vw, 34px) clamp(16px, 2vw, 22px); }
.kr-masthead-inner {
  position: relative;
  border-top: 1px solid var(--rule);          /* dunne krantenregel boven */
  border-bottom: 2px solid var(--ink);        /* dikke ink-regel onder */
  padding-block: clamp(18px, 3vw, 30px) 14px;
  text-align: center;
}
.kr-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: clamp(0.06em, 1.2vw, 0.22em);
  font-size: clamp(26px, 6vw, 58px);
  line-height: 1;
  color: var(--ink);
}
/* mono "krantenkop-balk": editie links, datum rechts, met --rule erboven/onder */
.kr-edition {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: clamp(12px, 1.8vw, 18px);
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: clamp(9.5px, 1.1vw, 11.5px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
/* krant-robot: sticker, licht geroteerd, vast naast de wordmark (rechtsboven) */
.kr-robot {
  position: absolute;
  top: -6px; right: 0;
  width: clamp(58px, 9vw, 92px);
  height: auto;
  transform: rotate(6deg);
  overflow: visible;
}

/* ── Artikelkop ── */
.kr-article { background: var(--paper); }
.kr-head { max-width: 760px; margin-inline: auto; padding-block: clamp(34px, 5vw, 58px) 0; text-align: center; }
.kr-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  padding: 6px 13px; border-radius: 3px;
  --rot: -1.5deg;
  transform: rotate(var(--rot, -1.5deg));
  margin-bottom: 26px;
}
.kr-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.kr-h1 .accent { font-style: italic; color: var(--signal); }
.kr-deck {
  margin: clamp(18px, 2.2vw, 26px) auto 0;
  max-width: 620px;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
}
.kr-dateline {
  margin: clamp(26px, 3vw, 36px) auto 0;
  max-width: 760px;
  padding-block: 12px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);   /* leesbare dateline: AA */
}

/* ── "In het kort" (TL;DR, speakable) ── */
.kr-tldr {
  max-width: 680px;
  margin: clamp(34px, 4vw, 48px) auto 0;
  background: var(--cream);
  border: var(--border-ink);
  box-shadow: var(--shadow-hard);
  border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 30px);
}
.kr-tldr-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--signal-deep); margin-bottom: 12px;   /* AA op licht */
}
.kr-tldr p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }

/* ── Leeskolom ── */
.kr-body { max-width: 680px; margin-inline: auto; padding-block: clamp(40px, 5vw, 64px); }
.kr-body p,
.kr-body ul { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.kr-body p + p { margin-top: 1.1em; }
.kr-body strong { color: var(--ink); font-weight: 600; }
.kr-body a {
  color: var(--ink); text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: var(--rule-strong); transition: text-decoration-color 0.18s ease;
}
.kr-body a:hover { text-decoration-color: var(--signal); }

/* Dropcap op de lead-alinea (klassiek krant-effect) */
.kr-lead::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  float: left;
  font-size: 3.6em;
  line-height: 0.82;
  padding: 0.06em 0.12em 0 0;
  margin-right: 0.02em;
  color: var(--signal);
}

/* H2 als krant-sectiekop met dunne --rule erboven over de volle leeskolom */
.kr-h2 {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: clamp(20px, 2.6vw, 28px);
  border-top: 1px solid var(--rule);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.kr-h2 .accent { font-style: italic; color: var(--signal); }
.kr-body .kr-h2 + p { margin-top: 0.9em; }
.kr-h3 {
  margin-top: clamp(26px, 3vw, 34px);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.2;
  color: var(--ink);
}

/* nette bullet-lijsten in de body */
.kr-body ul { list-style: none; margin-top: 1.1em; display: grid; gap: 12px; }
.kr-body ul li { position: relative; padding-left: 24px; }
.kr-body ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px; background: var(--signal);
  border: 1.5px solid var(--ink);
}

/* ── Pull-quotes (krantstijl) ── */
.kr-quote {
  margin: clamp(34px, 4vw, 48px) 0;
  background: var(--paper-soft);
  border: var(--border-ink);
  border-left-width: 5px;
  box-shadow: var(--shadow-hard);
  border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 30px);
}
.kr-quote-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #BE2E18; margin-bottom: 12px;   /* iets dieper koraal: 4,88:1 op paper-soft (signal-deep haalt daar net 4,45 niet) */
}
.kr-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.32;
  color: var(--ink);
}

/* ── Vergelijkingstabel (krant-datatabel) ── */
.kr-table-wrap {
  margin: clamp(28px, 3.4vw, 40px) 0;
  overflow-x: auto;                 /* mobiel: horizontaal scrollen, niet inklappen */
  -webkit-overflow-scrolling: touch;
  border: var(--border-ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hard);
}
.kr-table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--cream); }
.kr-table th, .kr-table td {
  padding: 12px 14px; text-align: left; vertical-align: top;
  font-size: 14px; line-height: 1.45;
  border-bottom: 1px solid var(--rule);
}
.kr-table thead th {
  background: var(--ink); color: var(--cream);
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
}
.kr-table tbody th {            /* rij-koppen (eerste kolom) */
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-soft); white-space: nowrap;   /* leesbare rij-kop: AA */
  background: var(--paper-soft);
}
.kr-table tbody td { color: var(--ink-soft); }
.kr-table tbody tr:last-child th,
.kr-table tbody tr:last-child td { border-bottom: 0; }

/* ── Inline CTA ("krantenadvertentie") ── */
.kr-ad {
  margin: clamp(34px, 4vw, 48px) 0;
  background: var(--cream);
  border: var(--border-ink);
  box-shadow: var(--shadow-hard);
  border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 30px);
  text-align: center;
}
.kr-ad-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 10px;   /* leesbaar label: AA */
}
.kr-ad p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(19px, 2.2vw, 24px); line-height: 1.2; color: var(--ink);
  margin-bottom: 18px;
}

/* ── GEO-checklist (afvinkbaar, puur visueel) ── */
.kr-checklist {
  margin: clamp(28px, 3.2vw, 38px) 0;
  list-style: none;
  border: var(--border-ink);
  box-shadow: var(--shadow-hard);
  border-radius: var(--r-md);
  background: var(--cream);
  padding: clamp(18px, 2.4vw, 26px);
  display: grid; gap: 14px;
}
.kr-checklist li {
  position: relative; padding-left: 36px;
  font-size: 16px; line-height: 1.5; color: var(--ink-soft);
}
.kr-checklist li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px;
  border: var(--border-ink); border-radius: 4px;
  background: var(--paper);
}
.kr-checklist li::after {          /* vinkje (decoratief) */
  content: ""; position: absolute; left: 6px; top: 4px;
  width: 6px; height: 11px;
  border: solid var(--signal); border-width: 0 2.5px 2.5px 0;
  transform: rotate(40deg);
}

/* ── Artikel-footer ── */
.kr-foot { max-width: 760px; margin-inline: auto; padding-block: 0 clamp(40px, 5vw, 64px); }
.kr-sources {
  max-width: 680px; margin-inline: auto;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.7;
  letter-spacing: 0.02em; color: var(--ink-soft);   /* leesbare bronregels: AA */
  padding-top: 18px; border-top: 1px solid var(--rule);
}

/* Auteursblok (E-E-A-T): klein rond profielfotootje */
.kr-author {
  display: flex; align-items: center; gap: 18px;
  max-width: 680px; margin: clamp(28px, 3.4vw, 40px) auto 0;
  background: var(--paper);
  border: var(--border-ink);
  box-shadow: var(--shadow-hard);
  border-radius: var(--r-md);
  padding: clamp(18px, 2.4vw, 24px);
}
.kr-author-avatar {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: var(--border-ink);
}
.kr-author-name { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--ink); line-height: 1.1; }
.kr-author-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--signal-deep); margin: 4px 0 8px; }   /* AA op licht */
.kr-author-bio { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.kr-author-bio a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--rule-strong); }
.kr-author-bio a:hover { text-decoration-color: var(--signal); }

/* "Lees ook": katern met brutalist-kaarten + indruk-mechaniek */
.kr-readalso { max-width: 760px; margin: clamp(40px, 5vw, 60px) auto 0; }
.kr-readalso-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }   /* leesbaar label: AA */
.kr-readalso-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.kr-readcard {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--paper);
  border: var(--border-ink);
  box-shadow: var(--shadow-hard);
  border-radius: var(--r-md);
  padding: 20px 22px;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.kr-readcard:hover  { transform: translate(2px, 2px); box-shadow: var(--shadow-hard-sm); }
.kr-readcard:active { transform: translate(4px, 4px); box-shadow: none; }
.kr-readcard .rc-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--signal-deep); }   /* AA op licht; pillar-variant houdt --signal (op donker) */
.kr-readcard .rc-title { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--ink); line-height: 1.15; }
.kr-readcard .rc-arrow { margin-top: auto; padding-top: 8px; color: var(--ink-faint); font-size: 18px; transition: color 0.18s ease, transform 0.18s ease; }
.kr-readcard:hover .rc-arrow { color: var(--signal); transform: translateX(2px); }
/* nadruk-kaart naar de pillar */
.kr-readcard--pillar { grid-column: 1 / -1; background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow-hard); flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; }
.kr-readcard--pillar .rc-cat { color: var(--signal); }
.kr-readcard--pillar .rc-title { color: var(--cream); font-size: 21px; }
.kr-readcard--pillar .rc-arrow { color: var(--signal); padding-top: 0; }

@media (max-width: 600px) {
  .kr-readalso-grid { grid-template-columns: 1fr; }
  .kr-readcard--pillar { flex-direction: column; align-items: flex-start; }
  .kr-author { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .kr-robot { transform: rotate(6deg) !important; }   /* sticker-tilt is statisch, geen animatie */
}

/* =========================================================================
   KV: Onze aanpak — sticky-pin; robot stijgt als raket op (signature links),
   schone stappenlijst met opgetilde actieve kaart (rechts)
   -------------------------------------------------------------------------
   BASIS (geen JS / mobiel / reduced motion) = toegankelijke eindstaat:
   robot staat gewoon op de grond (geen raket/vlam/rook), alle stappen
   zichtbaar met open bullets. De launch + fade-beleving is een progressive
   enhancement die JS aanzet via .kv-pinned (alleen op brede viewports zonder
   reduced-motion) en aanstuurt met --kv-p (0→1). Alles kv-geprefixed.
   ========================================================================= */
.kv-pin { height: auto; }

.kv-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* ── Donker launch-paneel: warme bijna-zwart, dikke ink-border + harde offset-
      schaduw, héél subtiele dot-matrix. De cream robot pops hiertegen. ── */
.kv-art {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(16px, 2.4vw, 32px);
  border: 3px solid var(--ink);
  border-radius: 14px;
  background-color: #241a12;        /* warme bijna-zwart, niet puur #000 */
  background-image: radial-gradient(rgba(253, 250, 243, 0.06) 1.1px, transparent 1.1px);
  background-size: 22px 22px;
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;                 /* robot blijft binnen het launch-paneel */
}
.kv-robot { width: 100%; max-width: 320px; height: auto; }

/* Cream-rim rond de robot-huid zodat de ink-borders niet wegvallen tegen donker.
   Gestapelde 0-blur drop-shadows = crisp cream outline (geen zachte glow). */
.kv-bot-skin {
  filter:
    drop-shadow(1.5px 0 0 var(--cream)) drop-shadow(-1.5px 0 0 var(--cream))
    drop-shadow(0 1.5px 0 var(--cream)) drop-shadow(0 -1.5px 0 var(--cream));
}

/* Raketdelen, vlam, glow, rook en twinkles: in BASIS verborgen (robot staat enkel op de grond) */
.kv-rocket-part, .kv-flame, .kv-glow, .kv-smoke, .kv-stars { opacity: 0; }
.kv-glow { filter: blur(13px); }

/* ── Idle-leven (los van de scroll; uit bij reduced-motion) ── */
.kv-bob { transform-box: fill-box; transform-origin: center; animation: kv-bob 3.4s ease-in-out infinite; }
@keyframes kv-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.kv-blink { transform-box: fill-box; transform-origin: center top; animation: kv-blink 5.5s ease-in-out infinite; }
@keyframes kv-blink { 0%, 93%, 100% { transform: scaleY(0); } 96% { transform: scaleY(1); } }

/* ── Expressie per stap: crossfade tussen 4 gezichten. Basis = vriendelijk (face--0). ── */
.kv-face { opacity: 0; transition: opacity 0.35s ease; }
.kv-face--0 { opacity: 1; }
.kv-approach[data-kv-step] .kv-face { opacity: 0; }
.kv-approach[data-kv-step="0"] .kv-face--0,
.kv-approach[data-kv-step="1"] .kv-face--1,
.kv-approach[data-kv-step="2"] .kv-face--2,
.kv-approach[data-kv-step="3"] .kv-face--3 { opacity: 1; }

/* ── Stappenlijst: schone editorial-lijst met doorlopende tijdlijn links.
      De coral balk is het oplichtende segment op de actieve stap. ── */
.kv-steps { position: relative; list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: clamp(8px, 2.2vh, 22px); }
/* doorlopende tijdlijn-lijn in gedimde ink, links van de nummers */
.kv-steps::before {
  content: ""; position: absolute; left: 5px; top: 14px; bottom: 14px;
  width: 3px; border-radius: 3px; background: rgba(31, 24, 20, 0.16);
}
.kv-step {
  position: relative;
  display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 24px; align-items: baseline;
  padding: clamp(12px, 1.8vh, 20px) 0 clamp(12px, 1.8vh, 20px) 30px;
  transition: opacity 0.45s var(--ease-soft), color 0.35s var(--ease-soft);
}
/* oplichtend coral segment op de tijdlijn: alleen de actieve stap (pin-modus) */
.kv-step::before {
  content: ""; position: absolute; left: 4px; top: 8px; bottom: 8px;
  width: 5px; border-radius: 3px;
  background: var(--signal);
  opacity: 0; transform: scaleY(0.25); transform-origin: center;
  transition: opacity 0.35s var(--ease-soft), transform 0.35s var(--ease-stamp);
}
.kv-num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 3.8vw, 52px); line-height: 1;
  color: var(--signal);
  text-align: center;
}
.kv-body h3 { font-family: var(--font-body); font-weight: 600; font-size: clamp(21px, 2.4vw, 27px); line-height: 1.2; }

/* Bullets — schoon coral streepje (geen doosje), meer ademruimte */
.kv-bullets { list-style: none; margin: 14px 0 0; padding: 0; }
.kv-bullets li {
  position: relative; padding-left: 26px;
  color: var(--ink-soft); font-size: clamp(16px, 1.7vw, 18px); line-height: 1.6;
}
.kv-bullets li + li { margin-top: 12px; }
.kv-bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 14px; height: 3px; border-radius: 2px;
  background: var(--signal);
}

/* ── Enhancement-LAYOUT ────────────────────────────────────────────────────
   .kv-pinned = desktop sticky-pin (JS: breed + geen reduced-motion).
   .kv-mobile = mobiele scrollytelling (JS: ≤880px + geen reduced-motion).
   Het GEDRAG van robot+stappen hangt aan de gedeelde .kv-launch (beide modi). */
.js .kv-approach.kv-pinned .kv-pin { height: 360vh; }
.js .kv-approach.kv-pinned .kv-stage {
  position: sticky; top: 0; min-height: 100vh; align-content: center;
}

/* LINKS — robot reist van onderin (stap 01) naar bovenin (stap 04).
   p² = ease-in: blijft laag tijdens het opbouwen, versnelt bij de thrust.
   Desktop: geen transition (1-op-1 met scroll). Mobiel: transition zie .kv-mobile. */
.js .kv-approach.kv-launch .kv-bot {
  transform: translateY(calc(var(--kv-p, 0) * var(--kv-p, 0) * -195px));
}
/* BEAT stap 02: vinnen verschijnen aan het lijf */
.js .kv-approach.kv-launch .kv-fin {
  opacity: clamp(0, calc((var(--kv-p, 0) - 0.25) * 6), 1);
  transform: scale(clamp(0.4, calc((var(--kv-p, 0) - 0.2) * 2.4), 1));
  transform-box: fill-box; transform-origin: center top;
}
/* BEAT stap 03: nozzle ontsteekt */
.js .kv-approach.kv-launch .kv-nozzle {
  opacity: clamp(0, calc((var(--kv-p, 0) - 0.5) * 6), 1);
  transform: scaleY(clamp(0.2, calc((var(--kv-p, 0) - 0.46) * 4), 1));
  transform-box: fill-box; transform-origin: center top;
}
/* BEAT stap 03→04: vlam ontsteekt en groeit naar volle thrust.
   .kv-flame = lengte (p), .kv-flame-flicker = rustige wiebel */
.js .kv-approach.kv-launch .kv-flame {
  opacity: clamp(0, calc((var(--kv-p, 0) - 0.5) * 6), 1);
  transform: scaleY(clamp(0.25, calc((var(--kv-p, 0) - 0.48) * 2.4), 1.3));
  transform-box: fill-box; transform-origin: center top;
}
.js .kv-approach.kv-launch .kv-flame-flicker {
  transform-box: fill-box; transform-origin: center top;
  animation: kv-flicker 0.5s ease-in-out infinite alternate;
}
@keyframes kv-flicker {
  from { transform: scale(1.05, 0.9); }
  to   { transform: scale(0.94, 1.08); }
}
/* zachte coral glow achter de vlam (met de vlam mee) */
.js .kv-approach.kv-launch .kv-glow {
  opacity: clamp(0, calc((var(--kv-p, 0) - 0.5) * 4), 0.6);
}
/* twinkles faden in bij stap 03-04 (sfeer/hoogte) */
.js .kv-approach.kv-launch .kv-stars {
  opacity: clamp(0, calc((var(--kv-p, 0) - 0.5) * 3), 1);
}
/* BEAT stap 04: rookpluim onderaan bij volle thrust */
.js .kv-approach.kv-launch .kv-smoke {
  opacity: clamp(0, calc((var(--kv-p, 0) - 0.7) * 5), 0.85);
}

/* RECHTS — inactief schoon gedimd (ink, lage opacity); actief = coral accentbalk */
.js .kv-approach.kv-launch .kv-step { opacity: 0.38; }
.js .kv-approach.kv-launch .kv-num { color: var(--ink); }              /* gedimd via step-opacity, geen vuil roze */
.js .kv-approach.kv-launch .kv-step.is-active { opacity: 1; }
.js .kv-approach.kv-launch .kv-step.is-active .kv-num { color: var(--signal); }
.js .kv-approach.kv-launch .kv-step.is-active::before { opacity: 1; transform: scaleY(1); }
/* bullets ingeklapt, alleen open onder de actieve stap */
.js .kv-approach.kv-launch .kv-bullets {
  max-height: 0; margin-top: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-soft), opacity 0.4s var(--ease-soft), margin-top 0.5s var(--ease-soft);
}
.js .kv-approach.kv-launch .kv-step.is-active .kv-bullets { max-height: 320px; margin-top: 14px; opacity: 1; }

/* ── MOBIELE SCROLLYTELLING (.kv-mobile; klasse alleen ≤880px gezet) ────────
   Sticky robot-stage bovenaan, stappen scrollen er native onderdoor.
   Active-state via IntersectionObserver; --kv-p discreet per stap → vloeiend
   geanimeerd door onderstaande transitions. svh i.p.v. vh tegen iOS-adresbalk. */
.js .kv-approach.kv-mobile .kv-stage { display: block; }
/* sticky robot-stage NET ONDER de site-navbar (hoogte gemeten in JS → --kv-top) */
.js .kv-approach.kv-mobile .kv-pin { margin-top: 6px; }
.js .kv-approach.kv-mobile .kv-art {
  position: sticky; top: var(--kv-top, 74px); z-index: 2;
  width: 100%; max-width: none;
  height: 40vh; height: 40svh;
  padding: 10px;
  margin: 0;
}
.js .kv-approach.kv-mobile .kv-robot { width: auto; max-width: 100%; height: 100%; }
/* zelf-consistente maatvoering → gelijk verticaal ritme + nette rail-begrenzing */
.js .kv-approach.kv-mobile .kv-steps {
  --kv-sh: 40vh; --kv-pt: 3vh; --kv-pb: 12vh;
  padding-top: var(--kv-pt); padding-bottom: var(--kv-pb); margin-top: 16px;
}
.js .kv-approach.kv-mobile .kv-step { min-height: var(--kv-sh); align-content: center; }
.js .kv-approach.kv-mobile .kv-step.is-active .kv-bullets { margin-top: 18px; }
/* tijdlijn begrensd: midden stap 01 → midden stap 04 */
.js .kv-approach.kv-mobile .kv-steps::before {
  top: calc(var(--kv-pt) + var(--kv-sh) / 2);
  bottom: calc(var(--kv-pb) + var(--kv-sh) / 2);
}
.js .kv-approach.kv-mobile .kv-step::before { top: 28%; bottom: 28%; }
@supports (height: 1svh) {
  .js .kv-approach.kv-mobile .kv-steps { --kv-sh: 40svh; --kv-pt: 3svh; --kv-pb: 12svh; }
}
/* vloeiende overgang tussen de discrete beats bij stapwissel */
.js .kv-approach.kv-mobile .kv-bot,
.js .kv-approach.kv-mobile .kv-fin,
.js .kv-approach.kv-mobile .kv-nozzle,
.js .kv-approach.kv-mobile .kv-flame,
.js .kv-approach.kv-mobile .kv-glow,
.js .kv-approach.kv-mobile .kv-smoke,
.js .kv-approach.kv-mobile .kv-stars {
  transition: transform 0.6s var(--ease-soft), opacity 0.5s var(--ease-soft);
}

/* ── Basis-fallback ≤880px (geen JS / reduced-motion): netjes gestapeld,
      robot zichtbaar, alle stappen leesbaar met open bullets. ── */
@media (max-width: 880px) {
  .kv-stage { grid-template-columns: 1fr; gap: 32px; }
  .kv-art { max-width: 360px; margin-inline: auto; }
  .kv-robot { max-width: 260px; }

  /* smaller nummer-kolom op mobiel → meer tekstbreedte; track mag krimpen */
  .kv-step { grid-template-columns: 52px minmax(0, 1fr); gap: 16px; padding-left: 24px; }
  .kv-num { font-size: 36px; }

  /* meer ruimte tussen titelblok en bullets */
  .kv-bullets { margin-top: 18px; }
  /* hangende inspringing via padding + absolute marker: 2e regel lijnt onder de
     TEKST (padding-left), niet onder de coral marker. Tekst wrapt netjes binnen
     de kolom (geen flex-overflow). Ruimere regelafstand + meer ruimte per bullet. */
  .kv-bullets li {
    padding-left: 26px; line-height: 1.7;
  }
  .kv-bullets li::before {
    top: 0.74em; width: 16px; height: 3px;
  }
  .kv-bullets li + li { margin-top: 14px; }
}
/* reduced-motion: JS zet .kv-launch niet → basisstaat. Extra hard-stop op
   alle idle/launch-animatie voor het geval iets toch zou triggeren. */
@media (prefers-reduced-motion: reduce) {
  .kv-flame-flicker, .kv-bob, .kv-blink { animation: none !important; }
}
