/* ===========================================================
   THE NEXT PLAN — "De Editie" design-laag
   Gebundelde richting (2026-07-04): De Editie als basis +
   boog-beelden, plan/realisatie-elementen, meetlat-timeline.
   Gebruikt NAAST tnp-tokens.css en IN PLAATS VAN tnp-site.css,
   enkel op pagina's die al omgezet zijn (body.editie).
   Branding: titels Harmony-caps, script-accenten Retro Signature,
   body Montserrat. Palet uit de brand kit (Canva).
   Alle fonts zijn self-hosted (geen Google Fonts CDN meer): identiek op
   Mac/Windows en geen bezoekers-IP naar Google. Cinzel/Allura blijven enkel
   als benoemde fallback in de font-stack, maar worden niet meer geladen. */

/* Echte merk-fonts (zelf gehost). LET OP: geleverde bestanden zijn
   personal-use-versies — commerciële licentie regelen vóór go-live. */
@font-face {
  font-family: 'Harmony';
  src: url('../fonts/harmony.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Retro Signature';
  src: url('../fonts/retro-signature.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  /* Brand-palet (Canva brand kit, 2026-07-04) */
  --e-cream:  #F8F0DE;
  --e-greige: #E3DCD4;
  --e-ink:    #3D3835;
  --e-mocha:  #9F7866;
  --e-rose:   #C8A696;
  --e-brown:  #5A463C;      /* Harmony-titels: donkerbruin i.p.v. zwart */
  --e-ink-soft: #6B625B;      /* ink 70% richting mocha, leesbaar op cream */
  --e-hair:   rgba(61, 56, 53, .16);
  --e-hair-inv: rgba(248, 240, 222, .18);
  --e-grid:   rgba(61, 56, 53, .05);

  --e-disp:   'Harmony', 'Cinzel', 'Didot', Georgia, serif;
  --e-script: 'Retro Signature', 'Allura', 'Snell Roundhand', cursive;
  --e-body:   'Montserrat', system-ui, sans-serif;

  --e-pad-x:  clamp(18px, 4vw, 56px);
}

/* ---------- basis ---------- */
body.editie {
  margin: 0;
  background: var(--e-cream);
  color: var(--e-ink);
  font-family: var(--e-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.editie * { box-sizing: border-box; }
body.editie img { max-width: 100%; display: block; }
body.editie ::selection { background: var(--e-rose); color: var(--e-ink); }

/* papier-grain */
body.editie::after {
  content: ""; position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 90; opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

.editie .skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--e-ink); color: var(--e-cream);
  padding: 10px 16px; z-index: 200; font-size: 13px;
}
.editie .skip:focus { left: 12px; top: 12px; }

.editie .tnp-container { max-width: 1320px; margin: 0 auto; padding: 0 var(--e-pad-x); }

/* ---------- typografische rollen ---------- */
.editie .h-disp {
  font-family: var(--e-disp); font-weight: 400;
  text-transform: uppercase; letter-spacing: .04em; line-height: 1.14;
  color: var(--e-brown); display: block;
}
.editie .spread .spread-h2 .h-disp, .editie .section--ink .h-disp { color: inherit; }
.editie .h-script {
  font-family: var(--e-script); font-weight: 400;
  text-transform: none; letter-spacing: 0; word-spacing: -.14em; line-height: 1.18;
  -webkit-text-stroke: .5px currentColor;
  padding-left: .16em; margin-left: -.05em;
  color: var(--e-mocha); display: block;
}
.editie h1, .editie h2, .editie h3 { margin: 0; font-weight: 400; color: inherit; }
.editie p { margin: 0; }

.editie .tnp-eyebrow {
  font-size: 12px; letter-spacing: .24em; font-weight: 600;
  text-transform: uppercase; color: var(--e-mocha);
  display: inline-flex; align-items: center; gap: 12px;
}
.editie .tnp-eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--e-rose);
}
.editie .section--ink .tnp-eyebrow { color: var(--e-rose); }
.editie .section--ink .tnp-eyebrow::before { background: var(--e-rose); }

.editie .lede {
  color: var(--e-ink-soft); font-size: clamp(17px, 1.15vw, 19px); max-width: 58ch;
}

/* ---------- knoppen ---------- */
.editie .tnp-btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--e-body); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border-radius: 999px; padding: 13px 24px;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.editie .tnp-btn--primary { background: var(--e-mocha); color: #FCF7EA; border: 1px solid var(--e-mocha); }
.editie .tnp-btn--primary:hover { background: var(--e-ink); border-color: var(--e-ink); transform: translateY(-1px); }
.editie .tnp-btn--ghost { background: transparent; color: var(--e-ink); border: 1px solid var(--e-ink); }
.editie .tnp-btn--ghost:hover { background: var(--e-ink); color: var(--e-cream); }
.editie .tnp-btn--quiet {
  background: none; border: none; border-radius: 0; padding: 8px 2px;
  color: var(--e-ink); border-bottom: 1px solid var(--e-hair);
}
.editie .tnp-btn--quiet:hover { border-color: var(--e-mocha); transform: none; }
.editie a:focus-visible, .editie button:focus-visible {
  outline: 2px solid var(--e-mocha); outline-offset: 3px;
}

/* ---------- nav ---------- */
.editie .nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248, 240, 222, .9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--e-hair);
}
.editie .nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--e-pad-x);
}
.editie .tnp-logo img { height: 52px; width: auto; }
.editie .nav-right { display: flex; align-items: center; gap: 26px; }
.editie .nav-links { display: flex; gap: 24px; }
.editie .nav-links a {
  font-size: 11.5px; letter-spacing: .18em; font-weight: 500;
  text-transform: uppercase; text-decoration: none; color: var(--e-ink);
  position: relative; padding: 4px 0;
}
.editie .nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--e-mocha); transition: width .45s cubic-bezier(.22,1,.36,1);
}
.editie .nav-links a:hover::after, .editie .nav-links a[aria-current]::after { width: 100%; }
.editie .nav-cta { padding: 11px 20px; }
.editie .nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 34px; padding: 8px 6px;
  flex-direction: column; justify-content: space-between;
}
.editie .nav-toggle .bar { display: block; height: 1.5px; width: 100%; background: var(--e-ink); transition: transform .3s ease, opacity .3s ease; }
.editie .nav[data-open="true"] .nav-toggle .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.editie .nav[data-open="true"] .nav-toggle .bar:nth-child(2) { opacity: 0; }
.editie .nav[data-open="true"] .nav-toggle .bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
.editie .nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 18px var(--e-pad-x) 26px;
  background: var(--e-cream); border-bottom: 1px solid var(--e-hair);
}
.editie .nav[data-open="true"] .nav-mobile { display: flex; }
.editie .nav-mobile a {
  text-decoration: none; color: var(--e-ink);
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  padding: 10px 0; border-bottom: 1px solid var(--e-hair);
}
.editie .nav-mobile a:last-child { border-bottom: 0; }
.editie .nav-mobile .nav-mobile-cta { color: var(--e-mocha); font-weight: 600; }

/* ---------- hero (magazine-cover) ---------- */
.editie .hero { padding: clamp(96px, 13vh, 140px) 0 24px; min-height: 100svh; display: flex; }
.editie .hero .tnp-container { display: flex; width: 100%; max-width: 1500px; }
.editie .hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(24px, 4vw, 64px); align-items: center; width: 100%;
}
.editie .hero-h1 { margin: 24px 0 26px; }
.editie .hero-h1 .h-disp { font-size: clamp(2rem, 3.9vw, 3.9rem); text-wrap: balance; }
.editie .hero-h1 .h-script { font-size: clamp(3.4rem, 8.2vw, 7.6rem); margin-top: -.08em; padding-bottom: .22em; margin-bottom: -.16em; }
.editie .hero-sub { max-width: 48ch; color: var(--e-ink-soft); font-size: clamp(17px, 1.15vw, 19.5px); }
.editie .hero-ctas { display: flex; gap: 24px; align-items: center; margin-top: 32px; flex-wrap: wrap; }
.editie .hero-meta {
  display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap;
  font-size: 11.5px; letter-spacing: .18em; font-weight: 600;
  text-transform: uppercase; color: var(--e-ink-soft);
}
.editie .hero-meta span { display: inline-flex; align-items: center; gap: 8px; font-variant-numeric: tabular-nums; }
.editie .hero-meta span::before { content: ""; width: 18px; height: 1px; background: var(--e-rose); }

.editie .hero { position: relative; overflow: hidden; }
.editie .hero-grid { position: relative; grid-template-columns: minmax(0, 1fr); grid-template-rows: minmax(0, 1fr) auto; }
.editie .hero-text { align-self: center; }
.editie .hero-text { position: relative; z-index: 1; max-width: 660px; }
.editie .hero-photo {
  margin: 0; position: absolute; z-index: 0;
  top: 50%; transform: translateY(-50%);
  right: calc(var(--e-pad-x) * -1.5); width: 60%;
  height: min(86vh, 860px);
}
.editie .hero-photo .frame {
  overflow: hidden; height: 100%;
  /* zijkanten faden radiaal; verticale fade zit op de img zelf (maskers vermenigvuldigen) */
  -webkit-mask-image: radial-gradient(56% 85% at 47% 50%, #000 55%, rgba(0,0,0,.5) 75%, transparent 92%);
  mask-image: radial-gradient(56% 85% at 47% 50%, #000 55%, rgba(0,0,0,.5) 75%, transparent 92%);
}
/* boven kort uitfaden (boven Freya's gezicht), onder pas laag en zacht zodat de benen blijven */
.editie .hero-photo img {
  -webkit-mask-image: linear-gradient(180deg, transparent 1%, #000 13%, #000 80%, rgba(0,0,0,.18) 100%);
  mask-image: linear-gradient(180deg, transparent 1%, #000 13%, #000 80%, rgba(0,0,0,.18) 100%);
}
.editie .hero-photo--sharp .frame { -webkit-mask-image: none; mask-image: none; }
.editie .hero-photo--sharp img { -webkit-mask-image: none !important; mask-image: none !important; }
.editie .hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.07); opacity: 0;
  transition: transform 2.6s cubic-bezier(.22,1,.36,1), opacity 1.2s ease;
}
.editie.loaded .hero-photo img { transform: scale(1); opacity: 1; }
.editie .hero-photo figcaption {
  position: absolute; left: auto; right: 10%; bottom: 16px; max-width: 74%;
  background: rgba(248, 240, 222, .82);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 9px 18px; border-radius: 999px;
  display: flex; justify-content: space-between; gap: 18px; margin-top: 12px;
  font-size: 11.5px; letter-spacing: .16em; font-weight: 500;
  text-transform: uppercase; color: var(--e-mocha);
}
.editie .hero-photo .fol { font-family: var(--e-script); font-size: 17px; color: var(--e-rose); letter-spacing: 0; text-transform: none; }

.editie .hero-toc {
  position: relative; z-index: 1; align-self: end;
  border-top: 1px solid var(--e-hair); padding-top: 16px; margin-top: clamp(20px, 4vh, 40px);
  display: flex; gap: clamp(14px, 3vw, 40px); flex-wrap: wrap; align-items: baseline;
}
.editie .hero-toc .lbl { font-size: 11.5px; letter-spacing: .24em; font-weight: 600; text-transform: uppercase; color: var(--e-mocha); }
.editie .hero-toc a {
  text-decoration: none; font-size: 12px; letter-spacing: .16em; font-weight: 500;
  text-transform: uppercase; color: var(--e-ink-soft);
  display: inline-flex; gap: 8px; align-items: baseline; transition: color .3s;
}
.editie .hero-toc a:hover { color: var(--e-ink); }
.editie .hero-toc a em { font-family: var(--e-script); font-style: normal; color: var(--e-rose); font-size: 15px; text-transform: none; letter-spacing: 0; }

/* entree-animaties */
.editie .fade { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1); }
.editie.loaded .fade { opacity: 1; transform: none; }
.editie .d1 { transition-delay: .15s; } .editie .d2 { transition-delay: .3s; }
.editie .d3 { transition-delay: .45s; } .editie .d4 { transition-delay: .6s; }
.editie .line { display: block; overflow: hidden; }
.editie .hero-h1 .line + .line { margin-top: -.12em; }
.editie .line > span { display: block; transform: translateY(112%); transition: transform 1.1s cubic-bezier(.19,1,.22,1); }
.editie.loaded .line > span { transform: translateY(0); }
.editie .line:nth-child(2) > span { transition-delay: .12s; }
.editie .line:nth-child(3) > span { transition-delay: .24s; }

/* ---------- secties ---------- */
.editie .section { padding: clamp(80px, 12vh, 140px) 0; }
.editie .section--warm { background: var(--e-greige); }
.editie .section--ink { background: var(--e-ink); color: #F3EBDB; }
.editie .section-eyebrow { margin-bottom: 20px; }
.editie .section-head {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 72px); align-items: end; margin-bottom: clamp(36px, 6vh, 64px);
}
.editie .section-head--centered { display: block; text-align: center; }
.editie .section-head--centered .section-eyebrow { display: flex; justify-content: center; }
.editie .section-head--centered .lede { margin-inline: auto; }
.editie .section-head h2 .h-disp { font-size: clamp(1.75rem, 3.2vw, 3rem); text-wrap: balance; }
.editie .section-head h2 .h-script { font-size: clamp(3rem, 5.8vw, 5.3rem); margin-top: .04em; }
.editie .section--ink .lede { color: #CBB9A6; }

.editie .intro {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(24px, 4vw, 72px); align-items: center;
}
.editie .intro-text p { color: var(--e-ink-soft); max-width: 58ch; }
.editie .intro-text p + p { margin-top: 1.2em; }
.editie .intro-pull {
  font-family: var(--e-script); font-size: clamp(2.4rem, 4.4vw, 3.6rem); word-spacing: -.14em; -webkit-text-stroke: .5px currentColor; padding-left: .14em;
  color: var(--e-mocha); line-height: 1.15;
  border-left: 1px solid var(--e-rose); padding-left: 28px;
}

/* ---------- spread (sticky sfeerbeeld) ---------- */
.editie .spread { position: relative; height: 180vh; }
.editie .spread .stick { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.editie .spread .ph { position: absolute; inset: 0; margin: 0; }
.editie .spread .ph img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.editie .spread .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,56,53,.22), rgba(61,56,53,0) 36%, rgba(61,56,53,.5) 88%);
}
.editie .spread .folio {
  position: absolute; top: calc(20px + clamp(70px, 10vh, 100px)); left: var(--e-pad-x);
  color: #F9F3E4; font-size: 10.5px; letter-spacing: .24em; font-weight: 500;
  text-transform: uppercase; display: flex; gap: 12px; align-items: center;
}
.editie .spread .folio::before { content: ""; width: 34px; height: 1px; background: #F9F3E4; opacity: .7; }

.editie .spread .spread-h2 { position: absolute; left: var(--e-pad-x); right: var(--e-pad-x); bottom: clamp(120px, 22vh, 200px); color: #FCF7EA; text-shadow: 0 2px 40px rgba(61,56,53,.4); }
.editie .spread .spread-h2 .h-disp { font-size: clamp(1.8rem, 4.4vw, 3.9rem); }
.editie .spread .spread-h2 .h-script { font-size: clamp(3.3rem, 8vw, 7rem); color: #F3DFC4; margin-top: .05em; }
.editie .spread .cap-card {
  position: absolute; right: var(--e-pad-x); bottom: clamp(24px, 6vh, 54px);
  max-width: 460px; margin: 0;
  background: rgba(248, 240, 222, .95);
  padding: 22px 24px; font-size: 15.5px; line-height: 1.7;
  color: var(--e-ink-soft); border-top: 2px solid var(--e-mocha);
}
.editie .spread .cap-card b {
  display: block; font-size: 12px; letter-spacing: .24em; font-weight: 600;
  text-transform: uppercase; color: var(--e-mocha); margin-bottom: 8px;
}

/* ---------- plan wordt project ---------- */
.editie .plansec {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.editie .plansec .txt h2 .h-disp { font-size: clamp(1.6rem, 3vw, 2.75rem); }
.editie .plansec .txt h2 .h-script { font-size: clamp(2.8rem, 5.6vw, 5rem); margin-top: .04em; }
.editie .plansec .txt p { margin-top: 20px; max-width: 48ch; color: var(--e-ink-soft); font-size: 17px; }
.editie .plancard {
  position: relative; border: 1px solid var(--e-hair); background: var(--e-cream);
  aspect-ratio: 5 / 4; overflow: hidden; box-shadow: 0 30px 70px rgba(61,56,53,.14);
}
.editie .plancard::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, var(--e-grid) 0 1px, transparent 1px 56px),
              repeating-linear-gradient(90deg, var(--e-grid) 0 1px, transparent 1px 56px);
}
.editie .plancard .photo { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.6s ease; }
.editie .plancard .photo img { width: 100%; height: 100%; object-fit: cover; }
.editie .plancard.dev .photo { opacity: 1; }
.editie .plancard svg { position: absolute; inset: 0; width: 100%; height: 100%; transition: opacity 1.4s ease; }
.editie .plancard.dev svg { opacity: .26; }
.editie .plancard svg * { stroke: var(--e-ink); fill: none; stroke-width: 1.4; vector-effect: non-scaling-stroke; }
.editie .plancard svg .thin { stroke-width: .8; stroke: var(--e-mocha); }
.editie .plancard svg text { stroke: none; fill: var(--e-mocha); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; letter-spacing: .08em; }
.editie .plancard.play svg .draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: e-draw 1.1s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes e-draw { to { stroke-dashoffset: 0; } }
.editie .plancard.play svg .s1 { animation-delay: .1s; }
.editie .plancard.play svg .s2 { animation-delay: .5s; }
.editie .plancard.play svg .s3 { animation-delay: .9s; }
.editie .plancard.play svg .s4 { animation-delay: 1.3s; }
.editie .plancard.play svg .s5 { animation-delay: 1.7s; }
.editie .plancard.play svg .lbl { opacity: 0; animation: e-lblin .6s ease forwards; animation-delay: 2s; }
@keyframes e-lblin { to { opacity: 1; } }
.editie .plancard.svg-static svg .draw { stroke-dashoffset: 0 !important; animation: none; }
.editie .plancard.svg-static svg .lbl { opacity: 1 !important; animation: none; }
.editie .plancard .tag {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-size: 11px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase;
  color: var(--e-ink); background: rgba(248, 240, 222, .92);
  border: 1px solid var(--e-hair); padding: 7px 10px;
  opacity: 0; transition: opacity .8s ease .4s;
}
.editie .plancard.dev .tag { opacity: 1; }
.editie .plancard .replay {
  position: absolute; right: 14px; bottom: 12px; z-index: 2;
  font-family: var(--e-body); font-size: 11px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase;
  background: none; border: none; border-bottom: 1px solid var(--e-hair);
  color: var(--e-ink-soft); cursor: pointer; padding: 2px 0;
  opacity: 0; transition: opacity .8s ease .6s;
}
.editie .plancard.dev .replay { opacity: 1; }
.editie .plancard .replay:hover { color: var(--e-ink); border-color: var(--e-mocha); }

/* interieurontwerp: hero met schets->foto ernaast + ontzorging-foto */
.editie .hero--split { min-height: auto; padding: clamp(120px, 16vh, 180px) 0 clamp(50px, 7vh, 80px); }
.editie .hero--split .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); grid-template-rows: auto; gap: clamp(32px, 5vw, 72px); align-items: center; }
.editie .hero--split .hero-text { max-width: 640px; align-self: center; }
.editie .ontzorg-foto { margin: clamp(30px, 5vh, 48px) 0 0; overflow: hidden; }
.editie .ontzorg-foto img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; object-position: center 60%; display: block; }
/* ondernemers: werkplek-gallery met boog-frames */
.editie .werkplek-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 26px); }
.editie .werkplek-grid figure { margin: 0; overflow: hidden; border-radius: 999px 999px 0 0; }
.editie .werkplek-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; transition: transform 1.4s cubic-bezier(.22,1,.36,1); }
.editie .werkplek-grid figure:hover img { transform: scale(1.045); }
@media (max-width: 780px) { .editie .werkplek-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* homepage: muur van Google-reviews */
.editie .reviewwall { columns: 3 280px; column-gap: clamp(16px, 2vw, 26px); margin-top: clamp(30px, 5vh, 48px); }
.editie .reviewcard { break-inside: avoid; margin: 0 0 clamp(16px, 2vw, 26px); background: var(--e-cream); border: 1px solid var(--e-hair); padding: 22px 22px 20px; }
.editie .reviewcard .stars { color: #C79A3A; letter-spacing: 2px; font-size: 13px; }
.editie .reviewcard .rv-src { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--e-ink-soft); margin-left: 8px; }
.editie .reviewcard p { font-size: 15px; line-height: 1.65; color: var(--e-ink); margin: 12px 0 14px; }
.editie .reviewcard .rv-name { font-family: var(--e-body); font-weight: 600; font-size: 14px; color: var(--e-ink); }
.editie .reviewcard .rv-when { font-size: 11px; color: var(--e-ink-soft); margin-left: 6px; }
@media (max-width: 640px) { .editie .reviewwall { columns: 1; } }
@media (max-width: 860px) {
  .editie .hero--split .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .editie .ontzorg-foto img { aspect-ratio: 3 / 2; }
}


/* ---------- projectenstrook met boogjes ---------- */
.editie .stripwrap { padding: clamp(80px, 12vh, 140px) 0 clamp(30px, 5vh, 60px); overflow: hidden; }
.editie .striphead {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 18px; flex-wrap: wrap;
  padding: 0 var(--e-pad-x); max-width: 1200px; margin: 0 auto 44px; box-sizing: content-box;
}
.editie .striphead h2 .h-disp { font-size: clamp(1.6rem, 3vw, 2.75rem); display: inline; }
.editie .striphead h2 .h-script { font-size: clamp(2.7rem, 5.2vw, 4.5rem); display: inline; margin-left: .25em; }
.editie .striphead .lbl { font-size: 12px; letter-spacing: .24em; font-weight: 600; text-transform: uppercase; color: var(--e-mocha); padding-bottom: 12px; }
.editie .strip {
  display: flex; gap: clamp(14px, 2vw, 28px); width: 100%;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab; overscroll-behavior-x: contain;
}
.editie .strip::-webkit-scrollbar { display: none; }
.editie .strip.dragging, .editie .strip.dragging a { cursor: grabbing; }
.editie .strip figure { width: clamp(220px, 26vw, 340px); flex: none; margin: 0; }
.editie .strip a { display: block; text-decoration: none; color: inherit; }
.editie .strip a:focus-visible { outline: 2px solid var(--e-mocha); outline-offset: 4px; }
.editie .strip .frame { overflow: hidden; border-radius: 999px 999px 0 0; }
.editie .strip img { aspect-ratio: 4 / 5.4; object-fit: cover; width: 100%; transition: transform 1.4s cubic-bezier(.22,1,.36,1); }
.editie .strip figure:hover img { transform: scale(1.045); }
.editie .strip figcaption {
  margin-top: 10px; font-size: 11.5px; letter-spacing: .16em; font-weight: 600;
  text-transform: uppercase; color: var(--e-mocha);
  display: flex; justify-content: space-between;
}
.editie .strip figcaption em { font-family: var(--e-script); font-style: normal; color: var(--e-rose); letter-spacing: 0; font-size: 15px; text-transform: none; }

/* ---------- slider: van lijn naar leven ---------- */
.editie .vergelijk { padding: clamp(40px, 6vh, 80px) var(--e-pad-x) clamp(90px, 13vh, 150px); }
.editie .verghead {
  max-width: 960px; margin: 0 auto 36px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 18px; flex-wrap: wrap;
}
.editie .verghead h2 .h-disp { font-size: clamp(1.5rem, 2.8vw, 2.4rem); display: inline; }
.editie .verghead h2 .h-script { font-size: clamp(2.5rem, 4.8vw, 4.2rem); display: inline; margin-left: .25em; }
.editie .verghead .lbl { font-size: 12px; letter-spacing: .24em; font-weight: 600; text-transform: uppercase; color: var(--e-mocha); padding-bottom: 10px; }
.editie .compare {
  position: relative; max-width: 960px; margin: 0 auto; aspect-ratio: 4 / 3.2;
  overflow: hidden; border: 1px solid var(--e-hair);
  box-shadow: 0 30px 70px rgba(61,56,53,.14); background: var(--e-cream);
}
.editie .compare .real { position: absolute; inset: 0; margin: 0; }
.editie .compare .real img { width: 100%; height: 100%; object-fit: cover; }
.editie .compare .plan { position: absolute; inset: 0; width: 46%; overflow: hidden; border-right: 1px solid var(--e-mocha); }
.editie .compare .plan .inner { position: absolute; top: 0; left: 0; height: 100%; background: var(--e-cream); }
.editie .compare .plan .inner img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(1.14) contrast(.8); opacity: .32; }
.editie .compare .plan .inner::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, var(--e-grid) 0 1px, transparent 1px 42px),
              repeating-linear-gradient(90deg, var(--e-grid) 0 1px, transparent 1px 42px);
}
.editie .compare .chip {
  position: absolute; top: 12px; z-index: 3;
  font-size: 11px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid var(--e-hair); background: rgba(248, 240, 222, .92);
}
.editie .compare .chip.l { left: 12px; }
.editie .compare .chip.r { right: 12px; }
.editie .compare .knob {
  position: absolute; top: 50%; left: 46%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--e-cream);
  border: 1px solid var(--e-mocha); display: flex; align-items: center; justify-content: center; gap: 5px;
  z-index: 3; box-shadow: 0 6px 24px rgba(61,56,53,.28); pointer-events: none;
}
.editie .compare .knob i { border: solid var(--e-ink); border-width: 0 1.5px 1.5px 0; padding: 3.5px; display: block; }
.editie .compare .knob i.w { transform: rotate(135deg); }
.editie .compare .knob i.o { transform: rotate(-45deg); }
.editie .compare input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; margin: 0; }
.editie .compare input[type="range"]:focus-visible ~ .knob { outline: 2px solid var(--e-mocha); outline-offset: 3px; }
.editie .vergnote {
  max-width: 960px; margin: 12px auto 0;
  font-size: 11px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase;
  color: var(--e-mocha); display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}

/* ---------- compare-variant: ontwerp (render) versus realisatie ---------- */
.editie .compare--rf { aspect-ratio: 4 / 3; }
.editie .compare--rf .plan .inner img { filter: none; opacity: 1; }
.editie .compare--rf .plan .inner::after { content: none; }
.editie .vergnote--mini { font-size: 10px; }

/* ---------- plancard-variant: echt grondplan i.p.v. getekende SVG ---------- */
.editie .plancard--img .planfig {
  position: absolute; inset: 0; margin: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fdfcfa; padding: 4%;
  transition: opacity 1.4s ease;
}
.editie .plancard--img .planfig img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- diensten-cards (dossiers) ---------- */
.editie .cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 32px); }
.editie .cards.drie { grid-template-columns: repeat(3, 1fr); }
.editie .cards.drie .card h3 { font-size: clamp(1.1rem, 1.5vw, 1.55rem); white-space: nowrap; }
.editie .card {
  position: relative; background: var(--e-cream);
  border: 1px solid var(--e-hair); padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
}
.editie .card.is-feature { border-color: var(--e-mocha); }
.editie .card-tag {
  position: absolute; top: -13px; left: clamp(24px, 3vw, 40px);
  background: var(--e-mocha); color: #FCF7EA;
  font-size: 10.5px; letter-spacing: .2em; font-weight: 600; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.editie .card-num {
  font-family: var(--e-disp); font-size: 15px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--e-rose); margin-bottom: 14px;
}
.editie .card h3 { font-family: var(--e-disp); text-transform: uppercase; letter-spacing: .05em; font-size: clamp(1.35rem, 2.2vw, 1.8rem); color: var(--e-brown); }
.editie .card-sub {
  font-size: 11px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase;
  color: var(--e-mocha); margin-top: 8px;
}
.editie .card-time { font-family: var(--e-body); font-style: italic; font-size: 16px; line-height: 1.5; color: var(--e-brown); margin-top: 12px; }
.editie .card ul { list-style: none; margin: 18px 0 26px; padding: 0; width: 100%; }
.editie .card li {
  padding: 11px 0 11px 24px; position: relative;
  font-size: 15.5px; color: var(--e-ink-soft);
  border-bottom: 1px solid var(--e-hair);
}
.editie .card li:last-child { border-bottom: 0; }
.editie .card li::before { content: "+"; position: absolute; left: 2px; color: var(--e-mocha); }
.editie .card .tnp-btn { margin-top: auto; }

/* ---------- bouwstenen (waarom) ---------- */
.editie .bouwstenen {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 44px);
  border-top: 1px solid var(--e-hair); padding-top: clamp(28px, 4vh, 44px);
}
.editie .bouwsteen-num { font-family: var(--e-disp); font-size: 19px; color: var(--e-rose); letter-spacing: .1em; }
.editie .bouwsteen h3 { font-size: 18px; font-weight: 600; margin: 10px 0 10px; font-family: var(--e-body); }
.editie .bouwsteen p { font-size: 15.5px; color: var(--e-ink-soft); line-height: 1.7; }

/* ---------- carousel (stemmen) ---------- */
.editie .carousel { max-width: 1020px; margin: 0 auto; }
.editie .carousel-viewport { overflow: hidden; }
.editie .carousel-track { display: flex; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.editie .carousel-slide {
  flex: 0 0 100%; min-width: 100%; padding: 0 8px;
  display: grid; grid-template-columns: minmax(0, .38fr) minmax(0, .62fr);
  gap: clamp(22px, 3.5vw, 52px); align-items: center; text-align: left;
}
.editie .carousel-slide .slide-foto { margin: 0; overflow: hidden; border-radius: 999px 999px 0 0; }
.editie .carousel-slide .slide-foto img { aspect-ratio: 3 / 3.4; object-fit: cover; width: 100%; }
.editie .carousel-slide .slide-tekst::before {
  content: "\201C"; display: block;
  font-family: var(--e-script); font-size: 58px; line-height: .4;
  color: var(--e-rose); margin: 14px 0 22px;
}
.editie .carousel-slide blockquote {
  margin: 0; font-size: clamp(16px, 1.7vw, 18.5px); line-height: 1.85; color: var(--e-ink);
}
.editie .carousel-slide cite {
  display: block; margin-top: 22px; font-style: normal;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--e-mocha);
  line-height: 1.9;
}
.editie .carousel-slide cite strong { font-weight: 600; color: var(--e-ink); }
.editie .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 34px; }
.editie .carousel-btn {
  background: none; border: 1px solid var(--e-hair); color: var(--e-ink);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  font-size: 18px; line-height: 1; transition: border-color .3s, background .3s, color .3s;
}
.editie .carousel-btn:hover { border-color: var(--e-mocha); background: var(--e-mocha); color: #FCF7EA; }
.editie .carousel-dots {
  display: flex; gap: 10px; flex-wrap: nowrap;
  max-width: 216px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.editie .carousel-dots::-webkit-scrollbar { display: none; }
.editie .carousel-dots .carousel-dot { flex: none; }
.editie .carousel-dots.dots-scroll {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
}
.editie .carousel-dot {
  width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--e-rose); opacity: .45; transition: opacity .3s, transform .3s;
}
.editie .carousel-dot[aria-current="true"] { opacity: 1; transform: scale(1.35); background: var(--e-mocha); }

/* ---------- werkwijze: meetlat-timeline ---------- */
.editie .rail { position: relative; height: 1px; background: var(--e-hair); margin: 0 6px 34px; }
.editie .rail .fill {
  position: absolute; inset: 0; background: var(--e-mocha);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.8s cubic-bezier(.22,1,.36,1);
}
.editie .latwrap.in .rail .fill { transform: scaleX(1); }
.editie .steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1.6vw, 22px); }
.editie .stap {
  position: relative; padding-top: 22px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.editie .stap::before {
  content: ""; position: absolute; top: -34px; left: 1px; width: 1px; height: 14px;
  background: var(--e-mocha); transform: scaleY(0); transform-origin: top;
  transition: transform .5s ease;
}
.editie .latwrap.in .stap { opacity: 1; transform: none; }
.editie .latwrap.in .stap::before { transform: scaleY(1); }
.editie .latwrap.in .stap:nth-child(1) { transition-delay: .25s; } .editie .latwrap.in .stap:nth-child(1)::before { transition-delay: .25s; }
.editie .latwrap.in .stap:nth-child(2) { transition-delay: .55s; } .editie .latwrap.in .stap:nth-child(2)::before { transition-delay: .55s; }
.editie .latwrap.in .stap:nth-child(3) { transition-delay: .85s; } .editie .latwrap.in .stap:nth-child(3)::before { transition-delay: .85s; }
.editie .latwrap.in .stap:nth-child(4) { transition-delay: 1.15s; } .editie .latwrap.in .stap:nth-child(4)::before { transition-delay: 1.15s; }
.editie .latwrap.in .stap:nth-child(5) { transition-delay: 1.45s; } .editie .latwrap.in .stap:nth-child(5)::before { transition-delay: 1.45s; }
.editie .stap-num { font-family: var(--e-disp); font-size: 17px; color: var(--e-rose); letter-spacing: .1em; }
.editie .stap h3 { font-size: 17px; font-weight: 600; margin: 6px 0 2px; font-family: var(--e-body); }
.editie .stap-time {
  display: block; font-size: 10.5px; letter-spacing: .16em; font-weight: 600;
  text-transform: uppercase; color: var(--e-mocha); margin-bottom: 8px;
}
.editie .stap p { font-size: 14.5px; color: var(--e-ink-soft); line-height: 1.65; }

/* ---------- twocol (voor wie) ---------- */
.editie .twocol { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
.editie .twocol h3 {
  font-size: 13.5px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase;
  font-family: var(--e-body); display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--e-hair);
}
.editie .twocol h3 .num {
  font-size: 9px; letter-spacing: .16em; padding: 4px 11px; border-radius: 999px;
  background: var(--e-mocha); color: #FCF7EA;
}
.editie .twocol .niet h3 .num { background: transparent; color: var(--e-ink-soft); border: 1px solid var(--e-hair); }
.editie .twocol ul { list-style: none; margin: 0; padding: 0; }
.editie .twocol li {
  padding: 12px 0 12px 24px; position: relative;
  font-size: 16px; color: var(--e-ink-soft);
  border-bottom: 1px solid var(--e-hair);
}
.editie .twocol li:last-child { border-bottom: 0; }
.editie .twocol li::before { content: "+"; position: absolute; left: 2px; color: var(--e-mocha); }
.editie .twocol .niet li::before { content: "\2013"; color: var(--e-ink-soft); }

/* ---------- probleem-tabel (donkere sectie) ---------- */
.editie .probleem-table { width: 100%; border-collapse: collapse; font-size: 16.5px; }
.editie .probleem-table thead th {
  font-size: 11.5px; letter-spacing: .2em; font-weight: 600; text-transform: uppercase;
  color: var(--e-rose); padding: 0 24px 18px 0; text-align: left;
  border-bottom: 1px solid var(--e-hair-inv);
}
.editie .probleem-table tbody td {
  padding: 26px 24px 26px 0; vertical-align: top; line-height: 1.6;
  border-bottom: 1px solid rgba(248, 240, 222, .1);
}
.editie .probleem-table tbody tr:last-child td { border-bottom: 0; }
.editie .probleem-table .col-situatie { width: 38%; font-weight: 500; color: #FCF7EA; }
.editie .probleem-table .col-gevolg { width: 30%; color: #CBB9A6; }
.editie .probleem-table .col-fix { width: 32%; color: #EFE5D2; }
.editie .probleem-table .col-fix em {
  font-family: var(--e-body); font-style: normal; color: var(--e-rose);
  font-size: 11px; letter-spacing: .2em; font-weight: 600; text-transform: uppercase;
  display: block; margin-top: 8px;
}

/* ---------- proof (getuigenis + cijfers) ---------- */
.editie .proof { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.editie .proof-photo { margin: 0; overflow: hidden; border-radius: 999px 999px 0 0; }
.editie .proof-photo img { aspect-ratio: 3 / 4.2; object-fit: cover; width: 100%; transition: transform 1.6s cubic-bezier(.22,1,.36,1); }
.editie .proof-photo:hover img { transform: scale(1.04); }
.editie .proof-quote {
  font-size: clamp(18px, 2.1vw, 22px); line-height: 1.75; color: var(--e-ink);
  margin: 22px 0 18px; max-width: 54ch;
}
.editie .proof-quote::before { content: "\201C"; font-family: var(--e-script); color: var(--e-rose); font-size: 40px; line-height: 0; vertical-align: -12px; margin-right: 6px; }
.editie .proof-attrib { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--e-mocha); line-height: 1.9; }
.editie .proof-attrib strong { color: var(--e-ink); font-weight: 600; }
.editie .stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 30px; border-top: 1px solid var(--e-hair); padding-top: 26px;
}
.editie .stat-num { font-family: var(--e-disp); font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--e-mocha); }
.editie .stat-lab { font-size: 13.5px; color: var(--e-ink-soft); margin-top: 4px; line-height: 1.5; }
.editie .proof-disclaimer {
  font-size: 9px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase;
  color: var(--e-ink-soft); margin-top: 30px; padding-top: 12px;
  border-top: 1px dashed var(--e-hair);
}

/* ---------- eind-cta ---------- */
.editie .eindcta {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  background: var(--e-greige); align-items: center;
}
.editie .eindcta-photo { margin: 0; overflow: hidden; height: 100%; max-height: 720px; }
.editie .eindcta-photo img { width: 100%; height: 100%; object-fit: cover; }
.editie .eindcta-text { padding: clamp(48px, 8vh, 100px) clamp(28px, 5vw, 90px); }
.editie .eindcta-text h2 { margin: 18px 0 20px; }
.editie .eindcta-text h2 .h-disp { font-size: clamp(1.7rem, 3.1vw, 2.8rem); }
.editie .eindcta-text h2 .h-script { font-size: clamp(2.8rem, 5.4vw, 4.8rem); margin-top: .04em; }
.editie .eindcta-text > p { color: var(--e-ink-soft); max-width: 48ch; margin-bottom: 28px; }
.editie .eindcta-contact { margin-top: 26px; display: flex; gap: 26px; flex-wrap: wrap; font-size: 13px; color: var(--e-ink-soft); }
.editie .eindcta-contact a { color: var(--e-ink); text-decoration: none; border-bottom: 1px solid var(--e-hair); }
.editie .eindcta-contact a:hover { border-color: var(--e-mocha); }

/* ---------- footer ---------- */
.editie .footer { background: var(--e-ink); color: #CBB9A6; padding: clamp(48px, 7vh, 80px) 0 30px; }
.editie .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 56px); padding-bottom: 40px;
  border-bottom: 1px solid var(--e-hair-inv);
}
.editie .footer-brand p { font-size: 14.5px; margin-top: 16px; line-height: 1.7; }
.editie .footer h4, .editie .footer .footer-kop {
  font-size: 11.5px; letter-spacing: .24em; font-weight: 600; text-transform: uppercase;
  color: var(--e-rose); margin: 0 0 16px;
}
.editie .footer ul { list-style: none; margin: 0; padding: 0; }
.editie .footer li { font-size: 15px; padding: 5px 0; }
.editie .footer a { color: #EFE5D2; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.editie .footer a:hover { border-color: var(--e-rose); }
.editie .footer-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 24px; font-size: 12.5px; letter-spacing: .06em;
}
.editie .footer-bottom .motion-toggle {
  font: inherit; letter-spacing: .14em; text-transform: uppercase; font-size: 9.5px; font-weight: 600;
  color: #CBB9A6; background: none; border: none; border-bottom: 1px solid var(--e-hair-inv);
  cursor: pointer; padding: 2px 0;
}
.editie .footer-bottom .motion-toggle:hover { color: #EFE5D2; }

/* ---------- twee paar ogen (over-pagina, tweeluik) ---------- */
.editie .ogen { display: flex; gap: 4px; height: min(74vh, 760px); }
.editie .oog {
  position: relative; flex: 1; overflow: hidden; display: block;
  transition: flex .9s cubic-bezier(.22,1,.36,1);
}
.editie .ogen:hover .oog { flex: .72; }
.editie .ogen .oog:hover, .editie .ogen .oog:focus-visible { flex: 1.9; outline: none; }
.editie .oog img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s cubic-bezier(.22,1,.36,1); }
.editie .oog:hover img { transform: scale(1.04); }
.editie .oog::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,56,53,0) 60%, rgba(61,56,53,.3));
}
.editie .oog .naam {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: 11.5px; letter-spacing: .2em; font-weight: 600; text-transform: uppercase;
  color: #FCF7EA; background: rgba(61,56,53,.35); padding: 6px 12px; border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.editie .oog .zin {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  max-width: min(480px, calc(100% - 36px));
  background: #FCF7EA;
  border-top: 2px solid var(--e-mocha);
  box-shadow: 0 10px 30px rgba(61, 56, 53, .18);
  padding: 18px 20px 14px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease .15s, transform .6s cubic-bezier(.22,1,.36,1) .15s;
}
.editie .oog:hover .zin, .editie .oog:focus-visible .zin { opacity: 1; transform: none; }
.editie .oog .zin .q {
  font-family: var(--e-body); font-size: 16.5px; line-height: 1.6;
  color: var(--e-ink); display: block;
}
.editie .oog .zin .x {
  display: block; margin-top: 10px;
  font-family: var(--e-script); font-size: 48px; word-spacing: -.1em;
  -webkit-text-stroke: .4px currentColor; color: var(--e-mocha);
}

/* ---------- polaroid-wand (over-pagina) ---------- */
.editie .polaroids { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(14px, 2.5vw, 34px); }
.editie .polaroid {
  background: #FCF7EA; border: 1px solid var(--e-hair); padding: 10px 10px 14px;
  box-shadow: 0 14px 40px rgba(61,56,53,.16);
  width: clamp(170px, 17vw, 240px);
  transition: transform .7s cubic-bezier(.22,1,.36,1), box-shadow .7s ease;
}
.editie .polaroid img { aspect-ratio: 1 / 1.08; object-fit: cover; width: 100%; }
.editie .polaroid figcaption { font-family: var(--e-script); font-size: 32px; color: var(--e-brown); text-align: center; margin-top: 10px; word-spacing: -.1em; -webkit-text-stroke: .4px currentColor; }
.editie .polaroid:nth-child(odd) { transform: rotate(-2.4deg) translateY(6px); }
.editie .polaroid:nth-child(even) { transform: rotate(2deg) translateY(-4px); }
.editie .polaroid:nth-child(3n) { transform: rotate(-1deg) translateY(10px); }
.editie .polaroid:hover { transform: rotate(0deg) translateY(-8px) scale(1.03); box-shadow: 0 26px 60px rgba(61,56,53,.24); z-index: 2; position: relative; }

/* ---------- bio (over-pagina) ---------- */
.editie .bio { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.editie .bio.spiegel { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
.editie .bio h2 { margin-bottom: 22px; }
.editie .bio h2 .h-disp { font-size: clamp(1.6rem, 3vw, 2.75rem); }
.editie .bio h2 .h-script { font-size: clamp(2.8rem, 5.6vw, 5rem); margin-top: .04em; }
.editie .bio p { color: var(--e-ink-soft); max-width: 58ch; }
.editie .bio p + p { margin-top: 1.2em; }
.editie .bio .zin { font-family: var(--e-body); font-style: italic; font-size: clamp(19px, 1.6vw, 23px); color: var(--e-brown); line-height: 1.5; margin-top: 30px; }
.editie .bio .x { font-family: var(--e-script); font-size: 52px; word-spacing: -.1em; -webkit-text-stroke: .4px currentColor; color: var(--e-mocha); margin-top: 10px; }
.editie .bio .biofoto { overflow: hidden; border-radius: 999px 999px 0 0; }
.editie .bio .biofoto img { aspect-ratio: 3 / 3.8; object-fit: cover; width: 100%; transition: transform 1.6s cubic-bezier(.22,1,.36,1); }
.editie .bio .biofoto:hover img { transform: scale(1.045); }

/* ---------- projecten: editoriale werkgalerij ---------- */
.editie .werkgrid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(14px, 2vw, 28px); }
.editie .werkgrid + .werkgrid { margin-top: clamp(14px, 2vw, 28px); }
.editie .werk { position: relative; overflow: hidden; margin: 0; grid-column: span 4; }
.editie .werk.w6 { grid-column: span 6; }
.editie .werk.w8 { grid-column: span 8; }
.editie .werk img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 1.4s cubic-bezier(.22,1,.36,1); }
.editie .werk.hoog img { aspect-ratio: 3 / 3.8; }
.editie .werk.w8 img, .editie .werk.w6 img { aspect-ratio: auto; height: 100%; }
.editie .werk:hover img { transform: scale(1.04); }
.editie .werk figcaption {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-size: 11px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase;
  color: var(--e-ink); background: rgba(248, 240, 222, .92);
  border: 1px solid var(--e-hair); padding: 6px 10px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
.editie .werk:hover figcaption { opacity: 1; transform: none; }

/* ---------- visualisaties: schetsboek-kaders ---------- */
.editie .vis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 30px); }
.editie .vis {
  background: var(--e-cream); border: 1px solid var(--e-hair);
  padding: 10px 10px 8px; margin: 0; position: relative;
  box-shadow: 0 12px 34px rgba(61,56,53,.08);
}
.editie .vis::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, var(--e-grid) 0 1px, transparent 1px 34px),
              repeating-linear-gradient(90deg, var(--e-grid) 0 1px, transparent 1px 34px);
}
.editie .vis .ph { overflow: hidden; position: relative; }
.editie .vis img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform 1.4s cubic-bezier(.22,1,.36,1); }
.editie .vis:hover img { transform: scale(1.035); }
.editie .vis .lbl {
  display: flex; justify-content: space-between; gap: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: .12em; color: var(--e-mocha);
  padding: 8px 2px 2px; position: relative;
}

/* ---------- visualisaties per project (klikbare kaart + lightbox) ---------- */
.editie .visproj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 30px); }
.editie .visproj {
  -webkit-appearance: none; appearance: none; font: inherit; color: inherit; text-align: left;
  background: var(--e-cream); border: 1px solid var(--e-hair);
  padding: 10px 10px 10px; margin: 0; position: relative; cursor: pointer; width: 100%; display: block;
  box-shadow: 0 12px 34px rgba(61,56,53,.08);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s;
}
.editie .visproj:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(61,56,53,.14); }
.editie .visproj:focus-visible { outline: 2px solid var(--e-mocha); outline-offset: 4px; }
.editie .visproj .ph { overflow: hidden; position: relative; }
.editie .visproj .ph img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; display: block; transition: transform 1.4s cubic-bezier(.22,1,.36,1); }
.editie .visproj:hover .ph img { transform: scale(1.045); }
.editie .visproj .ph::before {
  content: "Bekijk de reeks"; position: absolute; z-index: 1; inset: auto 0 0 0;
  padding: 34px 12px 10px; font-size: 11px; letter-spacing: .18em; font-weight: 600;
  text-transform: uppercase; color: #FCF7EA;
  background: linear-gradient(0deg, rgba(61,56,53,.72), transparent);
  opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s;
}
.editie .visproj:hover .ph::before, .editie .visproj:focus-visible .ph::before { opacity: 1; transform: none; }
.editie .visproj .lbl { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; padding: 11px 2px 2px; position: relative; }
.editie .visproj .lbl .nm { font-family: var(--e-body); font-size: 14px; font-weight: 600; color: var(--e-ink); letter-spacing: .01em; }
.editie .visproj .lbl .cnt { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10.5px; letter-spacing: .1em; color: var(--e-rose); text-transform: uppercase; white-space: nowrap; }

.editie .vis-lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column;
  background: rgba(40,36,33,.95); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
}
.editie .vis-lightbox.open { opacity: 1; visibility: visible; }
.editie .vlb-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px clamp(16px, 4vw, 48px); color: #F3EBDB; }
.editie .vlb-top > div { display: flex; align-items: baseline; gap: 14px; min-width: 0; }
.editie .vlb-title { font-family: var(--e-disp); text-transform: uppercase; letter-spacing: .06em; font-size: clamp(1rem, 2.2vw, 1.4rem); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.editie .vlb-counter { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .12em; color: #C9B9A6; white-space: nowrap; }
.editie .vlb-close { -webkit-appearance: none; appearance: none; background: none; border: 1px solid rgba(243,235,219,.4); color: #F3EBDB; width: 42px; height: 42px; border-radius: 999px; font-size: 17px; cursor: pointer; flex: none; transition: background .3s, border-color .3s; }
.editie .vlb-close:hover { background: rgba(243,235,219,.14); border-color: #F3EBDB; }
.editie .vlb-stage { flex: 1; position: relative; margin: 0; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 0 clamp(8px, 6vw, 88px); }
.editie .vlb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.editie .vlb-nav { position: absolute; top: 50%; transform: translateY(-50%); -webkit-appearance: none; appearance: none; background: rgba(20,18,16,.4); border: 1px solid rgba(243,235,219,.3); color: #F3EBDB; width: 52px; height: 52px; border-radius: 999px; font-size: 26px; line-height: 1; cursor: pointer; transition: background .3s; }
.editie .vlb-nav:hover { background: rgba(20,18,16,.78); }
.editie .vlb-prev { left: clamp(8px, 3vw, 28px); }
.editie .vlb-next { right: clamp(8px, 3vw, 28px); }
.editie .vlb-thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 14px clamp(16px, 4vw, 48px); }
.editie .vlb-thumbs button { -webkit-appearance: none; appearance: none; flex: none; width: 84px; height: 58px; padding: 0; border: 2px solid transparent; background: none; cursor: pointer; opacity: .5; transition: opacity .3s, border-color .3s; }
.editie .vlb-thumbs button.active { opacity: 1; border-color: var(--e-rose); }
.editie .vlb-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.vlb-lock { overflow: hidden; }
@media (min-width: 721px) and (max-width: 1000px) { .editie .visproj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .editie .visproj-grid { grid-template-columns: 1fr; }
  .editie .vlb-nav { width: 44px; height: 44px; font-size: 22px; }
  .editie .vlb-thumbs button { width: 64px; height: 44px; }
}

/* ---------- pagina-kop (subpagina's zonder of met kleine hero) ---------- */
.editie .page-header { padding: clamp(140px, 19vh, 210px) 0 clamp(36px, 6vh, 64px); }
.editie .page-header h1 { margin: 20px 0 18px; }
.editie .page-header h1 .h-disp { font-size: clamp(2rem, 3.9vw, 3.6rem); text-wrap: balance; }
.editie .page-header h1 .h-script { font-size: clamp(3rem, 7vw, 5.8rem); }
.editie .page-header p { max-width: 60ch; color: var(--e-ink-soft); }
/* foto naast de pagina-kop (let's meet + contact) */
.editie .lm-header, .editie .ct-header { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(30px, 5vw, 72px); align-items: center; }
.editie .lm-header-photo { margin: 0; overflow: hidden; border-radius: 999px 999px 0 0; max-width: 420px; justify-self: end; }
.editie .lm-header-photo img { width: 100%; aspect-ratio: 3 / 3.9; object-fit: cover; display: block; }
.editie .ct-duo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: start; justify-self: end; max-width: 460px; }
.editie .ct-duo figure { margin: 0; overflow: hidden; }
.editie .ct-duo figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.editie .ct-duo-a { border-radius: 999px 999px 0 0; }
.editie .ct-duo-b { margin-top: 46px; border-radius: 0 0 999px 999px; }
.editie .contact-photo { margin: 0 0 22px; overflow: hidden; border-radius: 4px; }
.editie .contact-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .editie .lm-header, .editie .ct-header { grid-template-columns: minmax(0, 1fr); }
  .editie .lm-header-photo { max-width: 320px; justify-self: center; }
  .editie .ct-duo { max-width: 100%; justify-self: stretch; gap: 12px; margin-top: 8px; }
  .editie .ct-duo-b { margin-top: 32px; }
}

/* ---------- juridische tekstpagina's ---------- */
.editie .legal { max-width: 860px; }
.editie .legal h2 {
  font-family: var(--e-disp); text-transform: uppercase; letter-spacing: .04em;
  color: var(--e-brown); font-size: 1.5rem; margin: 2.4em 0 .7em;
}
.editie .legal h2:first-child { margin-top: 0; }
.editie .legal h3 { font-size: 15px; font-weight: 600; margin: 1.8em 0 .5em; }
.editie .legal p, .editie .legal li { color: var(--e-ink-soft); font-size: 16px; }
.editie .legal ul, .editie .legal ol { margin: 0 0 1.2em; padding-left: 22px; }
.editie .legal p { margin-bottom: 1.1em; }
.editie .legal table { width: 100%; border-collapse: collapse; font-size: 14px; }
.editie .legal th, .editie .legal td { text-align: left; padding: 10px 14px 10px 0; border-bottom: 1px solid var(--e-hair); vertical-align: top; }
.editie .legal th { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--e-mocha); }

/* ---------- scroll-reveals ---------- */
.editie .reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s ease, transform 1s cubic-bezier(.22,1,.36,1); }
.editie .reveal.in { opacity: 1; transform: none; }
.editie .latwrap.reveal { opacity: 1; transform: none; }

/* ---------- dynamische laag ---------- */
/* nav verbergt zich bij scrollen naar beneden, komt terug bij omhoog */
.editie .nav { transition: transform .5s cubic-bezier(.22,1,.36,1), background .3s ease; }
.editie .nav.nav-hidden { transform: translateY(-101%); }

/* titelregels binnen een reveal stromen gestaffeld binnen */
.editie .reveal h2 .h-disp, .editie .reveal h2 .h-script {
  opacity: 0; transform: translateY(26px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1);
}
.editie .reveal.in h2 .h-disp { opacity: 1; transform: none; transition-delay: .08s; }
.editie .reveal.in h2 .h-script { opacity: 1; transform: none; transition-delay: .26s; }

/* parallax-beelden: overmaat zodat er bewegingsruimte is */
.editie img[data-parallax] { will-change: transform; transform: translateY(0) scale(1.14); }

/* eigen cursor (enkel fijne pointers) */
html.has-cursor .editie, html.has-cursor .editie a, html.has-cursor .editie button { cursor: none; }
html.has-cursor .editie input[type="range"] { cursor: ew-resize; }
.editie .cursor-dot, .editie .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 300;
  border-radius: 50%; opacity: 0;
}
.editie .cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--e-mocha); }
.editie .cursor-ring {
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1px solid var(--e-mocha);
  transition: width .35s ease, height .35s ease, margin .35s ease, background .35s ease, opacity .3s ease;
}
.editie .cursor-ring.grow { width: 62px; height: 62px; margin: -31px 0 0 -31px; background: rgba(159, 120, 102, .12); }
html.noanim .cursor-dot, html.noanim .cursor-ring { display: none; }
html.noanim.has-cursor .editie, html.noanim.has-cursor .editie a, html.noanim.has-cursor .editie button { cursor: auto; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .editie .nav-links, .editie .nav-cta { display: none; }
  .editie .nav-toggle { display: flex; }
}
@media (max-width: 900px) {
  .editie .hero { min-height: auto; }
  .editie .hero-grid { grid-template-columns: 1fr; gap: 34px; align-items: start; }
  .editie .hero-text { max-width: none; }
  .editie .hero-photo { position: static; transform: none; width: auto; height: auto; max-width: 440px; }
  .editie .hero-photo .frame {
    height: auto; aspect-ratio: 4 / 5;
    -webkit-mask-image: radial-gradient(56% 68% at 50% 46%, #000 50%, rgba(0,0,0,.5) 72%, transparent 92%);
    mask-image: radial-gradient(56% 68% at 50% 46%, #000 50%, rgba(0,0,0,.5) 72%, transparent 92%);
  }
  .editie .hero-photo figcaption { position: static; }
  .editie .hero-toc { gap: 12px 20px; }
  .editie .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .editie .intro { grid-template-columns: 1fr; gap: 30px; }
  .editie .intro-pull { padding-left: 22px; }
  .editie .spread { height: 150vh; }
  .editie .cards, .editie .cards.drie { grid-template-columns: 1fr; }
  .editie .bouwstenen { grid-template-columns: 1fr; gap: 30px; }
  .editie .rail { display: none; }
  .editie .steps { grid-template-columns: 1fr; gap: 0; }
  .editie .stap { padding: 16px 0 16px 22px; border-left: 1px solid var(--e-hair); }
  .editie .stap::before { top: 22px; left: -1px; width: 14px; height: 1px; transform: scaleX(0); transform-origin: left; }
  .editie .latwrap.in .stap::before { transform: scaleX(1); }
  .editie .spread .spread-h2 { bottom: auto; top: 22vh; }
  .editie .spread .spread-h2 .h-disp { font-size: clamp(1.4rem, 6vw, 2rem); }
  .editie .spread .spread-h2 .h-script { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .editie .spread .cap-card { left: 18px; right: 18px; bottom: 20px; max-width: none; padding: 18px; font-size: 13px; }
  .editie .plansec { grid-template-columns: 1fr; gap: 34px; }
  .editie .strip figure { width: min(64vw, 260px); }
  .editie .compare { aspect-ratio: 3 / 4; }
  .editie .carousel-slide { grid-template-columns: 1fr; gap: 20px; }
  .editie .carousel-slide .slide-foto { max-width: 280px; }
  .editie .werk, .editie .werk.w6, .editie .werk.w8 { grid-column: span 12; }
  .editie .werk figcaption { opacity: 1; transform: none; }
  .editie .vis-grid { grid-template-columns: 1fr; }
  .editie .ogen { flex-direction: column; height: auto; gap: 10px; }
  .editie .oog { height: 62vw; flex: none !important; }
  .editie .oog .zin { opacity: 1; transform: none; }
  .editie .bio, .editie .bio.spiegel { grid-template-columns: 1fr; }
  .editie .bio .biofoto { max-width: 380px; }
  .editie .twocol { grid-template-columns: 1fr; }
  .editie .proof { grid-template-columns: 1fr; }
  .editie .proof-photo { max-width: 380px; }
  .editie .eindcta { grid-template-columns: minmax(0, 1fr); }
  .editie .eindcta-photo { max-height: 420px; }
  .editie .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .editie .stats { grid-template-columns: 1fr; gap: 14px; }
  .editie .footer-grid { grid-template-columns: 1fr; }
  /* pijn-tabel stapelt met inline-labels — geen horizontaal scrollen */
  .editie .probleem-table thead { display: none; }
  .editie .probleem-table, .editie .probleem-table tbody,
  .editie .probleem-table tr, .editie .probleem-table td { display: block; width: auto !important; }
  .editie .probleem-table tr { padding: 20px 0; border-bottom: 1px solid rgba(248,240,222,.12); }
  .editie .probleem-table tr:last-child { border-bottom: 0; }
  .editie .probleem-table td { padding: 3px 0; border: 0; }
  .editie .probleem-table td::before {
    display: block; font-size: 9px; letter-spacing: .2em; font-weight: 600;
    text-transform: uppercase; color: var(--e-rose); margin-bottom: 2px;
  }
  .editie .probleem-table .col-situatie::before { content: "Situatie"; }
  .editie .probleem-table .col-gevolg::before { content: "Gevolg"; margin-top: 10px; }
  .editie .probleem-table .col-fix::before { content: "Wat je nodig hebt"; margin-top: 10px; }
}

/* ---------- beweging uit ---------- */
@media (prefers-reduced-motion: reduce) {
  .editie *, .editie *::before, .editie *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .editie .fade, .editie .line > span, .editie .hero-photo img,
  .editie .reveal, .editie .stap { opacity: 1 !important; transform: none !important; }
  .editie .rail .fill { transform: scaleX(1) !important; }
  .editie .strip { animation: none !important; }
  html { scroll-behavior: auto; }
}
html.noanim .editie .strip { animation-play-state: paused !important; }
html.noanim .editie *, html.noanim .editie *::before, html.noanim .editie *::after {
  animation-play-state: paused !important; transition: none !important;
}
html.noanim .editie .fade, html.noanim .editie .line > span, html.noanim .editie .hero-photo img,
html.noanim .editie .reveal, html.noanim .editie .stap { opacity: 1 !important; transform: none !important; }
html.noanim .editie .rail .fill { transform: scaleX(1) !important; }

/* ---------- compare--rf: ook op mobiel landschap houden ---------- */
@media (max-width: 960px) {
  .editie .compare--rf { aspect-ratio: 4 / 3; }
}

/* ---------- plancard met echt grondplan: blueprint-onthulling + scanlijn ---------- */
.editie .plancard--img .planfig img { clip-path: none; }
.editie .plancard--img.play .planfig img { animation: e-planwipe 2.4s cubic-bezier(.45, 0, .2, 1) both; }
@keyframes e-planwipe {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
.editie .plancard--img .planfig::after {
  content: ""; position: absolute; top: 4%; bottom: 4%; left: 4%;
  width: 2px; background: var(--e-mocha); opacity: 0;
  box-shadow: 0 0 14px rgba(159, 120, 102, .55);
}
.editie .plancard--img.play .planfig::after { animation: e-planscan 2.4s cubic-bezier(.45, 0, .2, 1) both; }
@keyframes e-planscan {
  0% { left: 4%; opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(96% - 2px); opacity: 0; }
}
.editie .plancard.svg-static .planfig img { animation: none !important; clip-path: none !important; }
html.noanim .editie .plancard--img .planfig img { animation: none !important; clip-path: none !important; }
html.noanim .editie .plancard--img .planfig::after { display: none !important; }

/* ---------- mobiel: hero op de homepage toont eerst beeld, dan pas de knoppen ---------- */
@media (max-width: 900px) {
  .editie .hero--visualfirst .hero-eyebrow { display: none; }
  .editie .hero--visualfirst .hero-text { display: contents; }
  .editie .hero--visualfirst .hero-h1 { order: 1; margin-top: 0; }
  .editie .hero--visualfirst .hero-sub { order: 2; margin-top: -14px; }
  .editie .hero--visualfirst .hero-photo { order: 3; }
  .editie .hero--visualfirst .hero-ctas { order: 4; margin-top: 0; }
  .editie .hero--visualfirst .hero-meta { order: 5; margin-top: 0; }

  /* plancard: replay-knop uit de hoek van de tag houden */
  .editie .plancard .replay { right: auto; bottom: auto; top: 12px; right: 14px; }
}

/* ---------- mobiel: over-tweeluik — quote onder de foto i.p.v. eroverheen ---------- */
.editie .oog { text-decoration: none; }
@media (max-width: 900px) {
  .editie .ogen { gap: 26px; }
  .editie .oog { height: auto; }
  .editie .oog img { height: 78vw; }
  .editie .oog::after { content: none; }
  .editie .oog .zin {
    display: block; position: static; opacity: 1; transform: none;
    max-width: none; margin: 0; box-shadow: none;
    border: 1px solid var(--e-hair); border-top: 2px solid var(--e-mocha);
  }
}

/* ---------- touch: direct tap-gevoel, geen tap-delay, grotere raakvlakken ---------- */
.editie a, .editie button { touch-action: manipulation; -webkit-tap-highlight-color: rgba(159, 120, 102, .22); }
.editie .footer li a { display: inline-block; padding: 8px 0; margin: -8px 0; }
.editie .footer a:active { color: #FFFFFF; border-color: var(--e-rose); }
.editie .footer-bottom .motion-toggle:active { color: #EFE5D2; }

/* ---------- mobiel: testimonial-foto compacter zodat foto + quote samen in beeld staan ---------- */
@media (max-width: 900px) {
  .editie .carousel-slide { gap: 14px; }
  .editie .carousel-slide .slide-foto { max-width: none; }
  .editie .carousel-slide .slide-foto img { aspect-ratio: 16 / 10; }
  .editie .carousel-slide .slide-tekst::before { font-size: 44px; margin: 6px 0 14px; }
  .editie .carousel-slide blockquote { font-size: 15.5px; line-height: 1.75; }
  .editie .carousel-slide cite { margin-top: 14px; }
}

/* ---------- plancard--draw: lijnen tekenen het echte grondplan, dan pas tekening + foto ---------- */
.editie .plancard--draw svg { padding: 4%; box-sizing: border-box; }
.editie .plancard--draw svg text { font-size: 22px; }
.editie .plancard--draw svg.svg-bad text { font-size: 34px; } /* portret-viewBox schaalt kleiner */
.editie .plancard--draw .planfig { opacity: 0; transition-duration: .8s; }
.editie .plancard--draw.play .planfig { opacity: 1; transition-delay: 2.1s; }
.editie .plancard--draw.dev .planfig, .editie .plancard--draw.svg-static .planfig { opacity: 1; transition-delay: 0s; }
.editie .plancard--draw .planfig img { animation: none !important; clip-path: none !important; }
.editie .plancard--draw .planfig::after { content: none; }

/* replay: alles in één klap terug naar start, zonder overgangen */
.editie .plancard.rewind .planfig,
.editie .plancard.rewind .photo { transition: none !important; }

/* ---------- video (Flow & Tides) ---------- */
.editie .carousel-slide .slide-foto video { display: block; width: 100%; aspect-ratio: 3 / 3.4; object-fit: cover; }
@media (max-width: 900px) {
  .editie .carousel-slide .slide-foto video { aspect-ratio: 16 / 10; }
}
.editie .werk--video { grid-column: span 12; }
.editie .werk--video video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* ============ KENNISMAKING: booking-embed (desktop) vs directe knop (mobiel) ============
   Desktop: Teamleader-agenda als iframe, meteen boekbaar zonder de site te verlaten.
   ≤921px (zelfde breakpoint als de gestapelde lm-header): geen iframe (scroll-trap,
   trage LCP, third-party-cookies in iOS-Safari) maar de hero-knop + kaart met
   directe link naar de volwaardige Teamleader-pagina. */
.editie .lm-hero-book { display: none; }
.editie .booking-embed { max-width: 880px; margin: 0 auto; }
.editie .booking-embed iframe {
  display: block; width: 100%; height: min(78vh, 760px);
  border: 1px solid var(--e-hair); background: #fff;
}
.editie .booking-fallback {
  margin-top: 14px; text-align: center;
  font-size: .9rem; color: var(--e-ink-soft);
}
.editie .booking-fallback a { color: var(--e-mocha); }
.editie .booking-direct { display: none; }
.editie .booking-meta { justify-content: center; max-width: 880px; margin: 32px auto 0; }

@media (max-width: 921px) {
  .editie .lm-hero-book { display: inline-flex; }
  .editie .booking-embed { display: none; }
  .editie .booking-direct {
    display: flex; max-width: 480px; margin: 0 auto;
    text-align: center; align-items: center;
  }
  .editie .booking-direct .lede { margin: 16px 0 24px; max-width: none; }
  .editie .booking-direct-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    object-fit: cover; object-position: 50% 20%;
    border: 1px solid var(--e-hair);
  }
  .editie .booking-direct-sub { color: var(--e-ink-soft); font-size: 1rem; }
  .editie .booking-direct-mail { margin-top: 24px; font-size: .9rem; color: var(--e-ink-soft); }
  .editie .booking-direct-mail a { color: var(--e-mocha); }
}
