/* ============================================================================================
   DNA v2 — de stijlset uit het goedgekeurde dirigent-voorbeeld (preview/dirigent-voorbeeld.html),
   gedestilleerd tot herbruikbare tokens + componenten.

   BEWUST NOG NIET GEKOPPELD in src/partials/head.html: zolang dat niet gebeurt verandert er
   NIETS aan de live site. Koppelen is stap 1 van de uitrol (zie docs/2026-07-26-dna-v2-migratie.md).

   Naamgeving: alles onder .v2-* zodat het naast de bestaande home.css kan bestaan zonder botsing.
   Bij de uitrol vervangt dit home.css; dan mogen de prefixen eruit.
   ============================================================================================ */

:root {
  /* --- kleur: ingetogen, één accent ------------------------------------------------------- */
  --v2-oranje: #F5821F;          /* identiek aan het bestaande --color-accent */
  --v2-oranje-diep: #E06D00;     /* hover */
  --v2-inkt: #111113;            /* koeler/dieper dan het oude #1D1B19 — Apple-achtig near-black */
  --v2-grijs: #6E6E73;           /* body-grijs (Apple secondary label) */
  --v2-lichtgrijs: #F5F5F7;      /* koele sectieband (het oude #F4F4F2 is warmer) */
  --v2-donker: #0D0D0F;          /* de donkere band */
  --v2-wit: #FFFFFF;
  --v2-lijn: rgba(0, 0, 0, 0.09); /* haarlijn */

  /* --- maten ------------------------------------------------------------------------------ */
  --v2-maat: 1120px;             /* tekstkolommen: smal en rustig */
  --v2-maat-breed: 1400px;       /* beeldsecties: bijna full-bleed */
  --v2-radius: 22px;             /* de grote, zachte hoek van alle beeldvlakken */

  /* --- ritme: secties ADEMEN (dit is de kern van het Apple-gevoel) -------------------------
     Twee maten. Het voorbeeld gebruikte 130/150/160/170px door elkaar; die spreiding is
     visueel incidenteel. Gesystematiseerd tot: standaard (=150) en ruim (=170) voor de twee
     statement-momenten (donkere band + slot), zodat die extra lucht krijgen. */
  --v2-sectie: clamp(88px, 11vw, 150px);
  --v2-sectie-ruim: clamp(104px, 13vw, 170px);

  /* --- typografie: systeemfont eerst (SF op Apple), Inter als val ------------------------- */
  --v2-font: -apple-system, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", system-ui, sans-serif;
  --v2-fs-hero: clamp(52px, 8.6vw, 104px);
  --v2-fs-statement: clamp(30px, 4.4vw, 54px);
  --v2-fs-sectiekop: clamp(32px, 4.4vw, 52px);
  --v2-fs-slot: clamp(38px, 5.6vw, 68px);
  --v2-fs-sub: clamp(17px, 1.6vw, 21px);
  --v2-ease: cubic-bezier(.2, .6, .2, 1);
}

/* ============ basis ============ */
/* Reset, SCOPED op .v2 (het voorbeeld had een globale *-reset; scoped zodat de bestaande
   pagina's niet meeveranderen zolang v2 naast home.css leeft).
   box-sizing is niet cosmetisch: zonder border-box tellen padding+max-width bij elkaar op en
   worden gepadde secties 48px te breed — dat verschoof de craft-kolommen. */
.v2 *, .v2 *::before, .v2 *::after { box-sizing: border-box; }
/* :where() = NUL specificiteit. Zonder dat wint `.v2 p` (0,1,1) van `.v2-sub` (0,1,0) en
   sneuvelen de `margin: auto`-centreringen van de componenten. */
.v2 :where(h1, h2, h3, h4, p, ul, ol, li, blockquote, figure) { margin: 0; padding: 0; }

.v2 {
  font-family: var(--v2-font);
  color: var(--v2-inkt);
  background: var(--v2-wit);
  -webkit-font-smoothing: antialiased;
}
/* Ook hier :where(): anders wint `.v2 a { color: inherit }` van `.v2-pill { color:#fff }` en
   krijg je zwarte tekst op een zwarte pill. */
.v2 :where(img) { max-width: 100%; display: block; }
.v2 :where(a) { text-decoration: none; color: inherit; }
/* base.css zet `h1..h4 { color: var(--color-text) }` direct op het element; dat wint van de
   GEERFDE kleur van een donkere sectie -> grijze kop op zwart. Koppen erven hier hun context. */
.v2 :where(h1, h2, h3, h4) { color: inherit; font-family: inherit; }

/* ============ REVEAL + VANGNET ============
   Het vangnet is niet optioneel: content mag NOOIT onzichtbaar blijven als de IntersectionObserver
   niet vuurt (print, fullpage-capture, throttled tab, oude browser). Zie js/dna-v2.js: failsafe-timer. */
.v2-rv {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--v2-ease), transform .8s var(--v2-ease);
}
.v2-rv.is-zichtbaar { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .v2-rv { opacity: 1; transform: none; transition: none; }
}

/* ============ NAV — glas ============ */
.v2-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.v2-nav__in {
  max-width: var(--v2-maat); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; padding: 14px 24px;
}
.v2-merk { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .14em; font-size: 13px; }
.v2-merk svg { width: 20px; height: 20px; }
.v2-nav__links { display: flex; gap: 34px; font-size: 13.5px; color: #3A3A3C; }
.v2-nav__links a:hover { color: var(--v2-inkt); }
@media (max-width: 820px) { .v2-nav__links { display: none; } }

/* ============ PILL-KNOPPEN ============ */
.v2-pill {
  display: inline-block; background: var(--v2-inkt); color: #fff;
  font-size: 13.5px; font-weight: 600; padding: 10px 22px; border-radius: 999px;
  transition: transform .25s, background .25s;
}
.v2-pill:hover { transform: scale(1.04); background: #000; }
.v2-pill--oranje { background: var(--v2-oranje); }
.v2-pill--oranje:hover { background: var(--v2-oranje-diep); }
.v2-pill--ghost { background: transparent; color: var(--v2-inkt); border: 1px solid rgba(0, 0, 0, .22); }
.v2-pill--ghost:hover { background: rgba(0, 0, 0, .04); }
.v2-cta-rij { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* ============ GEDEELDE TEKSTELEMENTEN ============ */
.v2-kicker { color: var(--v2-oranje); font-weight: 600; font-size: 15px; letter-spacing: .02em; }
.v2-sub { color: var(--v2-grijs); font-size: var(--v2-fs-sub); line-height: 1.5; max-width: 46ch; margin: 22px auto 0; }
.v2-sectiekop { font-size: var(--v2-fs-sectiekop); letter-spacing: -.03em; font-weight: 700; line-height: 1.08; }

/* ============ HERO ============ */
.v2-hero { padding: 168px 24px 84px; text-align: center; }
.v2-hero h1 {
  font-size: var(--v2-fs-hero); line-height: 1.02; letter-spacing: -.035em; font-weight: 700;
  margin: 14px auto 0; max-width: 14ch;
}
.v2-hero h1 em { font-style: normal; color: var(--v2-oranje); }

/* Hero-beeld met trage ken-burns: schaalt 8s lang terug naar 1.0 zodra hij in beeld komt. */
.v2-heldbeeld { max-width: var(--v2-maat-breed); margin: 72px auto 0; padding: 0 24px; }
.v2-heldbeeld__kader { border-radius: var(--v2-radius); overflow: hidden; aspect-ratio: 16/8.5; position: relative; }
.v2-heldbeeld img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 8s ease-out; }
.v2-heldbeeld.is-zichtbaar img { transform: scale(1); }
.v2-heldbeeld__rand { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06); border-radius: var(--v2-radius); }
@media (prefers-reduced-motion: reduce) { .v2-heldbeeld img { transition: none; transform: none; } }

/* ============ STATEMENT — één boodschap, groot, grijze staart ============ */
.v2-statement { padding: var(--v2-sectie) 24px; text-align: center; }
.v2-statement p {
  font-size: var(--v2-fs-statement); letter-spacing: -.03em; font-weight: 700; line-height: 1.12;
  max-width: 22ch; margin: 0 auto;
}
.v2-statement span { color: #B9B9BE; display: block; }

/* ============ BEELDTEGELS met overlay-tekst ============ */
.v2-tegels { max-width: var(--v2-maat-breed); margin: 0 auto; padding: 0 24px 40px; }
.v2-tegels__rij { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.v2-tegel { position: relative; border-radius: var(--v2-radius); overflow: hidden; aspect-ratio: 4/3; display: block; }
.v2-tegel--breed { grid-column: 1 / -1; aspect-ratio: 16/7; }
.v2-tegel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--v2-ease); }
.v2-tegel:hover img { transform: scale(1.045); }
.v2-tegel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 45%);
}
.v2-tegel__tekst { position: absolute; left: 34px; bottom: 30px; z-index: 2; color: #fff; }
.v2-tegel__tekst h3 { font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -.02em; font-weight: 700; }
.v2-tegel__tekst p { font-size: 15px; opacity: .85; margin-top: 4px; }
.v2-tegel__meer {
  display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: #fff;
  border-bottom: 2px solid var(--v2-oranje); padding-bottom: 2px;
}
@media (max-width: 820px) {
  .v2-tegels__rij { grid-template-columns: 1fr; }
  .v2-tegel, .v2-tegel--breed { aspect-ratio: 4/3; }
  .v2-tegel__tekst { left: 22px; bottom: 22px; }
}

/* ============ CIJFERBAND ============ */
.v2-cijfers { padding: var(--v2-sectie) 24px; text-align: center; background: var(--v2-lichtgrijs); }
.v2-cijfers__rij { display: flex; gap: clamp(40px, 8vw, 120px); justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.v2-cijfer b { display: block; font-size: clamp(48px, 6vw, 80px); letter-spacing: -.04em; font-weight: 700; }
.v2-cijfer b i { font-style: normal; color: var(--v2-oranje); }
.v2-cijfer span { color: var(--v2-grijs); font-size: 15px; }

/* ============ CRAFT-SPLIT (beeld + genummerde stappen) ============ */
.v2-craft {
  max-width: var(--v2-maat-breed); margin: 0 auto; padding: var(--v2-sectie) 24px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center;
}
.v2-craft__beeld { border-radius: var(--v2-radius); overflow: hidden; aspect-ratio: 4/4.6; }
.v2-craft__beeld img { width: 100%; height: 100%; object-fit: cover; }
.v2-craft .v2-sub { margin: 18px 0 8px; max-width: 44ch; }
.v2-craft ul { list-style: none; margin-top: 26px; padding: 0; }
.v2-craft li {
  padding: 16px 0; border-top: 1px solid var(--v2-lijn); font-size: 16.5px;
  display: flex; gap: 14px; align-items: baseline;
}
.v2-craft li b { color: var(--v2-oranje); font-weight: 700; min-width: 26px; }
@media (max-width: 820px) { .v2-craft { grid-template-columns: 1fr; } }

/* ============ DONKERE BAND (zakelijk) ============ */
.v2-donkerband { background: var(--v2-donker); color: #fff; text-align: center; padding: var(--v2-sectie-ruim) 24px; }
.v2-donkerband h2 {
  font-size: clamp(34px, 5vw, 60px); letter-spacing: -.033em; font-weight: 700; line-height: 1.06;
  max-width: 18ch; margin: 14px auto 0;
}
.v2-donkerband .v2-sub { color: #A1A1A6; margin: 20px auto 0; }
.v2-donkerband .v2-pill--ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.v2-donkerband .v2-pill--ghost:hover { background: rgba(255, 255, 255, .08); }

/* ============ QUOTE ============ */
.v2-quote { padding: var(--v2-sectie) 24px; text-align: center; }
.v2-quote__teken { font-size: 64px; color: var(--v2-oranje); line-height: .4; font-weight: 700; }
.v2-quote blockquote {
  font-size: clamp(24px, 3.2vw, 38px); letter-spacing: -.025em; font-weight: 600; line-height: 1.25;
  max-width: 26ch; margin: 26px auto 0;
}
.v2-quote cite { display: block; margin-top: 22px; color: var(--v2-grijs); font-style: normal; font-size: 15px; }

/* ============ SLOT-CTA ============ */
.v2-slot { padding: 40px 24px var(--v2-sectie-ruim); text-align: center; }
.v2-slot h2 {
  font-size: var(--v2-fs-slot); letter-spacing: -.035em; font-weight: 700; line-height: 1.04;
  max-width: 16ch; margin: 0 auto;
}
.v2-slot small { display: block; margin-top: 44px; color: #A1A1A6; font-size: 13.5px; line-height: 1.9; }

/* ============ DIENSTEN-INDEX (SEO-breedte in een rustige vorm) ============ */
.v2-index { max-width: var(--v2-maat); margin: 0 auto; padding: var(--v2-sectie) 24px; }
.v2-index h2, .v2-index .v2-sub { text-align: center; }
.v2-index__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px; margin-top: 56px; }
.v2-index__grid a {
  display: flex; justify-content: space-between; align-items: center; padding: 18px 2px;
  border-bottom: 1px solid var(--v2-lijn); font-size: 16.5px; font-weight: 500; transition: color .2s;
}
.v2-index__grid a:hover { color: var(--v2-oranje); }
.v2-index__grid a span { color: #C7C7CC; font-size: 18px; transition: transform .25s; }
.v2-index__grid a:hover span { transform: translateX(4px); color: var(--v2-oranje); }
@media (max-width: 820px) { .v2-index__grid { grid-template-columns: 1fr; } }

/* ============ FAQ (AEO) ============ */
.v2-faq { max-width: 760px; margin: 0 auto; padding: 0 24px var(--v2-sectie); }
.v2-faq h2 { text-align: center; margin-bottom: 44px; }
.v2-faq details { border-bottom: 1px solid var(--v2-lijn); padding: 20px 2px; }
.v2-faq summary {
  cursor: pointer; font-size: 17.5px; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; gap: 16px;
}
.v2-faq summary::-webkit-details-marker { display: none; }
.v2-faq summary::after { content: "+"; color: var(--v2-oranje); font-size: 22px; font-weight: 400; }
.v2-faq details[open] summary::after { content: "−"; }
.v2-faq p { color: var(--v2-grijs); font-size: 15.5px; line-height: 1.6; padding-top: 12px; max-width: 60ch; }

/* ============ MERKWOORD-AFSLUITER ============ */
.v2-merkwoord { overflow: hidden; padding: 70px 0 20px; }
.v2-merkwoord div {
  font-weight: 800; font-size: clamp(48px, 9.4vw, 150px); letter-spacing: -.04em; line-height: .95;
  text-align: center; color: var(--v2-inkt); white-space: nowrap;
}
.v2-merkwoord em { font-style: normal; color: var(--v2-oranje); }
.v2-footer { border-top: 1px solid rgba(0, 0, 0, .08); padding: 34px 24px; color: #A1A1A6; font-size: 12.5px; text-align: center; }

/* Footer-linkrij: praktische links en juridische pagina's, ingetogen. */
.v2-footer__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-bottom: 18px; font-size: 13.5px;
}
.v2-footer__links a { color: #6E6E73; }
.v2-footer__links a:hover { color: var(--v2-inkt); }
.v2-footer p { margin: 4px 0; }
.v2-footer a:hover { color: var(--v2-inkt); }

/* ============ VERTROUWD DOOR — zakelijke referenties, ingetogen ============ */
.v2-trust { max-width: var(--v2-maat); margin: 0 auto; padding: var(--v2-sectie) 24px; text-align: center; }
.v2-trust__rij {
  list-style: none; margin: 46px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 16px;
}
.v2-trust__rij li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 9px; border: 1px solid var(--v2-lijn); border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: #3A3A3C;
}
.v2-trust__mark {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245, 130, 31, 0.12); color: var(--v2-oranje);
  font-size: 10.5px; font-weight: 700; letter-spacing: .02em;
}

/* ============ SIGNATUUR: DE NAAIMACHINE DIE DE PAGINA DICHTNAAIT (v2) ============
   Nazifs signatuur-idee, geport naar het lichte v2-palet: subtieler dan de v1 (dunnere lijnen,
   lichtere stof), oranje draad als enige accent. Rechterlane, buiten de content-safe-zone.
   Eén variabele stuurt alles: --sew-y (0..1) = hoever er genaaid is. Terugscrollen draait terug. */
.v2-sew {
  --sew-y: 0;
  position: fixed; top: 0; right: clamp(4px, 1.6vw, 34px);
  width: 76px; height: 100vh; z-index: 3; pointer-events: none;
  display: none; /* pas tonen als de driver draait: nooit een half effect */
}
.v2-sew.is-actief { display: block; }
/* Onder 1200px is er naast de content geen ruimte meer in de rechterlane -> weglaten. */
@media (max-width: 1200px) { .v2-sew.is-actief { display: none; } }

.v2-sew__lap {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: rgba(17, 17, 19, 0.035);
  border-top: 1px solid rgba(17, 17, 19, 0.08);
  border-bottom: 1px solid rgba(17, 17, 19, 0.08);
}
.v2-sew__lap--l {
  left: 0; border-left: 1px solid rgba(17, 17, 19, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% calc(var(--sew-y) * 100%), 62% 100%, 0 100%);
}
.v2-sew__lap--r {
  right: 0; border-right: 1px solid rgba(17, 17, 19, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 38% 100%, 0 calc(var(--sew-y) * 100%));
}
/* Plooien/spanning: alleen in het nog-losse deel, vervagen als de naad sluit. */
.v2-sew__plooien {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 26px, rgba(17,17,19,0.04) 26px 27px);
  clip-path: inset(calc(var(--sew-y) * 100%) 0 0 0);
  opacity: calc(1 - var(--sew-y));
}

.v2-sew__naden { position: absolute; inset: 0; width: 100%; height: 100%; }
.v2-sew__naden #open-seam {
  stroke: rgba(17, 17, 19, 0.22); stroke-width: 1.5; stroke-dasharray: 1 7;
  stroke-linecap: round; vector-effect: non-scaling-stroke;
}
.v2-sew__naden #stitches {
  stroke: var(--v2-oranje); stroke-width: 2; stroke-dasharray: 7 6;
  stroke-linecap: round; vector-effect: non-scaling-stroke;
}
.v2-sew__naden #seam-highlight {
  stroke: var(--v2-oranje); stroke-width: 8; stroke-linecap: round;
  vector-effect: non-scaling-stroke; opacity: 0; filter: blur(3px);
  transition: opacity 480ms ease;
}
.v2-sew.is-klaar .v2-sew__naden #seam-highlight { opacity: 0.24; }

.v2-sew__kop {
  position: absolute; left: 50%; top: 0; width: 52px; height: 80px; margin-left: -26px;
  transform: translateY(calc(var(--sew-y) * (100vh - 80px)));
}
.v2-sew__kop svg { width: 100%; height: 100%; overflow: visible; }
.v2-sew__kop #machine-housing path { stroke: var(--v2-inkt); stroke-width: 4.5; stroke-linecap: round; }
.v2-sew__kop #machine-bed { fill: var(--v2-inkt); opacity: 0.85; }
.v2-sew__kop #needle-bar-shaft { stroke: var(--v2-inkt); stroke-width: 4.5; stroke-linecap: round; }
.v2-sew__kop #needle { stroke: var(--v2-inkt); stroke-width: 2; stroke-linecap: round; }
.v2-sew__kop #presser-foot path { stroke: var(--v2-inkt); stroke-width: 2.6; stroke-linecap: round; }
.v2-sew__kop #thread path { stroke: var(--v2-oranje); stroke-width: 1.8; stroke-linecap: round; }

@media (prefers-reduced-motion: no-preference) {
  /* De kern: naaldstang + naald gaan ritmisch op en neer. De persvoet blijft staan (die drukt
     de stof vast) — alleen de naaldstang beweegt, anders oogt het onecht. */
  .v2-sew__kop #needle-bar { animation: v2-steek 0.42s cubic-bezier(.45,.05,.55,.95) infinite; }
  @keyframes v2-steek { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(3px); } }
}
/* Reduced motion: naad direct af, geen prikkende naald, geen machinekop. */
@media (prefers-reduced-motion: reduce) {
  .v2-sew.is-actief { --sew-y: 1; }
  .v2-sew.is-actief .v2-sew__kop { display: none; }
}

/* ============ BINNENPAGINA-HERO (dienstpagina's) ============
   Zelfde rust als de homepage-hero, maar iets compacter en met breadcrumb + dienst-icoon. */
.v2-hero--dienst { padding: 148px 24px 64px; }
.v2-hero--dienst h1 { font-size: var(--v2-fs-slot); max-width: 18ch; }
.v2-kruimels { font-size: 13.5px; color: var(--v2-grijs); margin-bottom: 18px; }
.v2-kruimels a:hover { color: var(--v2-inkt); }
.v2-hero__icoon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 18px;
  background: rgba(245, 130, 31, 0.1);
}
.v2-hero__icoon svg { width: 28px; height: 28px; fill: none; stroke: var(--v2-oranje); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Craft-lijst op dienstpagina's: genummerd, met de term vet vóór de uitleg. */
.v2-craft li span { display: block; }
.v2-craft li strong { display: block; font-weight: 700; margin-bottom: 2px; }
.v2-craft li span { color: var(--v2-grijs); }
.v2-craft li strong { color: var(--v2-inkt); }
.v2-craft__meer { margin-top: var(--v2-sectie); margin-top: 26px; font-size: 15px; color: var(--v2-grijs); }
.v2-meer { color: var(--v2-oranje); font-weight: 600; }
.v2-meer:hover { text-decoration: underline; }

/* Quote-sectie: tweede review klein eronder + het échte reviewcijfer. */
.v2-quote__extra { margin: 22px auto 0; max-width: 46ch; font-size: 15.5px; color: var(--v2-grijs); }
.v2-quote__score { margin: 14px auto 0; font-size: 14px; color: #A1A1A6; }

/* ============ PLAATSPAGINA: "wat we doen"-blok in twee kolommen ============ */
.v2-lokaal-doen { max-width: var(--v2-maat); margin: 0 auto; padding: var(--v2-sectie) 24px; text-align: center; }
.v2-lokaal-doen .deed-list {
  list-style: none; margin: 46px 0 0; padding: 0; text-align: left;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--v2-sectie) 48px;
  gap: 30px 48px;
}
.v2-lokaal-doen .deed-list__item { padding-left: 16px; border-left: 2px solid var(--v2-oranje); }
.v2-lokaal-doen .deed-list__item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.v2-lokaal-doen .deed-list__item p { color: var(--v2-grijs); font-size: 15.5px; line-height: 1.55; }
.v2-lokaal-doen .v2-craft__meer { text-align: center; margin-top: 34px; }
@media (max-width: 760px) { .v2-lokaal-doen .deed-list { grid-template-columns: 1fr; } }

/* ============ KENNISARTIKEL: 2-koloms met sticky CTA ============
   Hier is 2-koloms bewust BETER dan gecentreerd: een artikel leest fijner in een vaste
   tekstkolom, en de CTA blijft meescrollen zonder de tekst te onderbreken. */
.v2-hero--artikel { padding: 148px 24px 48px; }
.v2-hero--artikel h1 { font-size: var(--v2-fs-slot); max-width: 20ch; }

.v2-artikel {
  max-width: var(--v2-maat); margin: 0 auto; padding: var(--v2-sectie) 24px;
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 1rem + 3vw, 4.5rem); align-items: start;
}
.v2-artikel__body { max-width: 68ch; font-size: 1.06rem; line-height: 1.65; }
.v2-artikel__body h2 { font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -.02em; margin: var(--v2-sectie) 0 12px; margin-top: 44px; }
.v2-artikel__body h3 { font-size: 1.15rem; margin: 28px 0 8px; }
.v2-artikel__body p { margin-bottom: 16px; color: #3A3A3C; }
.v2-artikel__body ul, .v2-artikel__body ol { margin: 0 0 18px 20px; color: #3A3A3C; }
.v2-artikel__body li { margin-bottom: 7px; }
.v2-artikel__concept { margin-top: 40px; font-size: 13.5px; color: #A1A1A6; font-style: italic; }

/* Antwoord-eerst-blok (AEO): direct citeerbaar, visueel apart van de uitleg. */
.v2-kort-antwoord {
  border-left: 3px solid var(--v2-oranje); padding: 4px 0 4px 20px; margin-bottom: 36px;
}
.v2-kort-antwoord__label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--v2-oranje); margin-bottom: 6px;
}
.v2-kort-antwoord p:last-child { font-size: 1.18rem; line-height: 1.5; color: var(--v2-inkt); margin: 0; }

.v2-artikel__aside { position: sticky; top: calc(64px + 20px); }
.v2-aside-kaart {
  background: var(--v2-lichtgrijs); border: 1px solid var(--v2-lijn);
  border-radius: var(--v2-radius); padding: 24px; display: grid; gap: 10px;
}
.v2-aside-kaart__lead { font-size: 1.05rem; font-weight: 600; margin: 0 0 6px; }
.v2-aside-kaart__link { margin: 6px 0 0; font-size: 14px; color: var(--v2-grijs); }
.v2-pill--vol { display: block; text-align: center; }
@media (max-width: 900px) {
  .v2-artikel { grid-template-columns: 1fr; }
  .v2-artikel__aside { position: static; }
}
