/* ============================================================
   Welta design-systeem — juli 2026
   Canon: licht/warm crème, roze merkaccent, rood alléén alarm,
   serif-koppen (zoals de app), Satoshi voor UI en lopende tekst.
   Radius-systeem: knoppen/chips = pill, kaarten 20px, klein 14px.
   ============================================================ */

@font-face {
  font-family: "Satoshi";
  src: url("fonts/satoshi-var.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/satoshi-var-italic.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("fonts/source-serif-4-var.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("fonts/source-serif-4-var-italic.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
  font-style: italic;
}

:root {
  --bg: #faf6ef;
  --bg-2: #fffdfa;
  --panel: #fffaf3;
  --ink: #1d1712;
  --body: #544d45;
  --muted: #79705f;
  --faint: #b7ad9f;
  --line: rgba(29, 23, 18, 0.1);
  --line-2: rgba(29, 23, 18, 0.16);

  --pink: #e0577f;
  --pink-deep: #c93a68;
  --pink-ink: #8f244a;
  --pink-pale: #fbe9ef;
  --pink-soft: #f7dbe5;

  --red: #dd3a2a;
  --red-deep: #b62518;
  --red-pale: #fdeae7;

  --sage: #6f9079;
  --sage-ink: #3f5c48;
  --sage-pale: #e7efe7;

  --amber: #e0a24a;

  --night: #171210;
  --night-2: #221b15;
  --night-line: rgba(255, 255, 255, 0.12);
  --night-body: rgba(255, 246, 236, 0.72);

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-card: 20px;
  --r-sm: 14px;

  --shadow: 0 22px 48px -26px rgba(58, 40, 28, 0.42);
  --shadow-soft: 0 12px 32px -20px rgba(58, 40, 28, 0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, blockquote {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
h4, h5 { margin: 0; font-family: var(--sans); }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-ink);
}
.lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--body);
  font-weight: 500;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 60;
}
.skip-link:focus { left: 0; }

/* ---------- knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: none; cursor: pointer;
  font-family: var(--sans); font-weight: 800; font-size: 1rem;
  border-radius: 999px; padding: 15px 28px;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(201, 58, 104, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(201, 58, 104, 0.7); }
.btn-ghost { background: var(--bg-2); color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink-ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); }
.btn-glass {
  background: rgba(255, 255, 255, 0.14); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.24); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 0.93rem; }
.btn[disabled] { opacity: 0.55; cursor: default; transform: none !important; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.stuck { border-color: var(--line); box-shadow: 0 6px 24px -20px rgba(58, 40, 28, 0.55); }
.header-inner {
  display: flex; align-items: center; gap: 18px; height: 68px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 900; font-size: 1.22rem;
  letter-spacing: -0.02em; color: var(--ink);
}
.brand img { width: 28px; height: 30px; }
.brand-mark--light { display: none; }

/* transparante nav over de full-bleed hero, wordt cream op scroll */
.site-header.over-hero {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.site-header.over-hero .brand { color: #fff; }
.site-header.over-hero .brand-mark--dark { display: none; }
.site-header.over-hero .brand-mark--light { display: block; }
.site-header.over-hero .site-nav a { color: rgba(255, 255, 255, 0.92); }
.site-header.over-hero .site-nav a:hover,
.site-header.over-hero .site-nav a[aria-current="page"] { background: rgba(255, 255, 255, 0.16); color: #fff; }
.site-header.over-hero .nav-toggle {
  background: rgba(255, 255, 255, 0.14); color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.site-nav { display: flex; gap: 4px; margin-left: auto; }
.site-nav a {
  text-decoration: none; color: var(--body);
  font-weight: 700; font-size: 0.97rem;
  padding: 9px 14px; border-radius: 999px;
  transition: background 0.16s, color 0.16s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--pink-pale); color: var(--pink-ink); }
.header-cta { margin-left: 8px; }
.nav-toggle {
  display: none; margin-left: auto;
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 9px 16px;
  font-family: var(--sans); font-weight: 800; cursor: pointer;
}
@media (max-width: 940px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-block; }
  .site-nav.open {
    display: flex; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; background: var(--bg-2);
    padding: 12px 20px 20px; border-bottom: 1px solid var(--line); gap: 2px;
  }
  .site-nav.open a { padding: 12px; }
  /* uitklapmenu is altijd cream: donkere links, ook als nav over de hero ligt */
  .site-header.over-hero .site-nav.open a { color: var(--body); }
  .site-header.over-hero .site-nav.open a:hover,
  .site-header.over-hero .site-nav.open a[aria-current="page"] { background: var(--pink-pale); color: var(--pink-ink); }
}

/* ---------- secties ---------- */
.sec { padding: 88px 0; position: relative; }
.sec-tight { padding: 56px 0; }
.sec-head { max-width: 700px; }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.sec-head .lede { margin-top: 16px; }
.center { margin-left: auto; margin-right: auto; text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- full-bleed film-hero (EVA-stijl) ---------- */
.hero-cinema {
  position: relative; width: 100%;
  min-height: 92vh; min-height: 92svh;
  margin-top: -68px; /* nav overlapt de video */
  overflow: hidden; display: flex; align-items: flex-end;
  background: #14100d;
}
.hero-cinema__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 32%; z-index: 0;
}
.hero-cinema__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 11, 9, 0.42) 0%, rgba(15, 11, 9, 0) 26%, rgba(15, 11, 9, 0) 48%, rgba(15, 11, 9, 0.62) 82%, rgba(15, 11, 9, 0.82) 100%),
    linear-gradient(80deg, rgba(15, 11, 9, 0.5) 0%, rgba(15, 11, 9, 0.12) 42%, rgba(15, 11, 9, 0) 66%);
}
.hero-cinema__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px 62px; color: #fff;
}
.hero-cinema__row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.hero-cinema__text { max-width: 640px; }
.hero-cinema .eyebrow { color: #fff; opacity: 0.92; }
.hero-cinema h1 {
  color: #fff; margin-top: 14px;
  font-size: clamp(2.6rem, 6vw, 4.7rem); letter-spacing: -0.02em;
  max-width: 15ch; text-shadow: 0 2px 34px rgba(0, 0, 0, 0.38);
}
.hero-cinema .lede {
  color: rgba(255, 255, 255, 0.94); margin-top: 16px; max-width: 46ch;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}
.hero-cinema__actions { display: flex; flex-wrap: wrap; gap: 12px; padding-bottom: 4px; }
@media (max-width: 860px) {
  .hero-cinema { min-height: 88vh; min-height: 88svh; align-items: flex-end; }
  .hero-cinema__video { object-position: 50% 28%; }
  .hero-cinema__row { flex-direction: column; align-items: flex-start; gap: 22px; }
  .hero-cinema__actions { width: 100%; flex-direction: column; }
  .hero-cinema__actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cinema__video { /* poster blijft staan; JS pauzeert */ }
}

/* telefoonframe met echte screenshot */
.phone {
  width: 288px; max-width: 78vw;
  border-radius: 44px; background: #14100d; padding: 10px;
  box-shadow: 0 40px 80px -32px rgba(40, 20, 14, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.06);
  position: relative;
}
.phone-screen { border-radius: 34px; overflow: hidden; background: var(--bg); position: relative; }
.phone-screen img { width: 100%; height: auto; }
.phone-screen video { width: 100%; height: auto; display: block; background: #14100d; }
/* feiten-strook onder de hero */
.feiten { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.feiten-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; padding: 26px 0;
}
.feit { display: flex; align-items: flex-start; gap: 12px; }
.feit .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); margin-top: 9px; flex: none; }
.feit b { display: block; font-size: 1rem; }
.feit span { color: var(--muted); font-size: 0.92rem; line-height: 1.45; display: block; }
@media (max-width: 760px) { .feiten-row { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- dial ---------- */
.dial { background: linear-gradient(180deg, #fffaf3, #f7f0e6); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dial-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.dial-visual { justify-self: center; text-align: center; }
.dial-visual .phone { width: 300px; max-width: 82vw; }
.dial-visual-caption { margin-top: 14px; color: var(--muted); font-size: 0.88rem; font-weight: 600; }
.app-demo-screen { aspect-ratio: 320 / 693; background: var(--bg); }
.app-demo-frame { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 860px) { .dial-grid { grid-template-columns: 1fr; gap: 36px; } }
.dial h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); max-width: 18ch; }
.dial h2 em { font-style: italic; color: var(--pink-ink); }
.dial .lede { margin-top: 18px; max-width: 58ch; }
.dial-track {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px; max-width: 740px;
}
.dial-end { padding: 14px 22px; border-radius: 999px; font-weight: 800; font-size: 0.98rem; }
.dial-end.soft { background: var(--pink-pale); color: var(--pink-ink); }
.dial-end.hard {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff; text-align: right;
  box-shadow: 0 10px 22px -12px rgba(182, 37, 24, 0.6);
}
.dial-key {
  padding: 0 18px; color: var(--muted);
  font-size: 0.78rem; font-weight: 800; text-align: center;
  text-transform: uppercase; letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .dial-track { grid-template-columns: 1fr; gap: 8px; border-radius: 24px; }
  .dial-end.hard { text-align: left; }
}

/* ---------- vier momenten ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.pillar {
  border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.pillar.p-soft { background: linear-gradient(160deg, var(--pink-pale), var(--panel) 70%); }
.pillar.p-alarm { background: linear-gradient(160deg, var(--red-pale), var(--panel) 70%); }
.pillar.p-route { background: linear-gradient(160deg, var(--sage-pale), var(--panel) 70%); }
.pillar.p-care { background: linear-gradient(160deg, #f1ecf7, var(--panel) 70%); }
.pillar .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.75);
}
.pillar.p-soft .tag { color: var(--pink-ink); }
.pillar.p-alarm .tag { color: var(--red-deep); }
.pillar.p-route .tag { color: var(--sage-ink); }
.pillar.p-care .tag { color: #6b4a86; }
.pillar h3 { font-size: 1.45rem; margin-top: 16px; }
.pillar p { margin-top: 10px; color: var(--body); font-size: 1rem; }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- zo werkt het: verticale rail ---------- */
.alarm-flow { display: grid; grid-template-columns: 1fr 0.85fr; gap: 52px; align-items: start; margin-top: 44px; }
@media (max-width: 860px) { .alarm-flow { grid-template-columns: 1fr; } }
.rail { display: grid; gap: 0; }
.rail-step { position: relative; padding: 0 0 34px 58px; }
.rail-step:last-child { padding-bottom: 0; }
.rail-step::before {
  content: attr(data-n);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 13px;
  background: var(--ink); color: #fff;
  font-weight: 900; font-size: 1.05rem;
  display: grid; place-items: center;
}
.rail-step::after {
  content: ""; position: absolute; left: 19.5px; top: 46px; bottom: 8px;
  width: 1px; background: var(--line-2);
}
.rail-step:last-child::after { display: none; }
.rail-step h3 { font-size: 1.25rem; }
.rail-step p { margin-top: 8px; color: var(--body); font-size: 1rem; max-width: 52ch; }

.claims { display: grid; gap: 14px; }
.claim-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 18px 20px;
}
.claim-card .lab {
  font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-ink); margin-bottom: 7px;
}
.claim-card b { display: block; font-size: 1rem; }
.claim-card span { font-size: 0.92rem; color: var(--body); }

.note-112 {
  margin-top: 40px;
  background: var(--red-pale); border: 1px solid #f3c7be;
  border-radius: var(--r-card); padding: 20px 24px;
  color: var(--red-deep); font-weight: 600;
  display: flex; gap: 14px; align-items: flex-start;
}
.note-112 .pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--red); margin-top: 7px; flex: none;
}
.note-112 b { color: var(--red-deep); }

/* ---------- avondband: lichtjeskaart ---------- */
.avond {
  background: radial-gradient(1400px 800px at 50% -20%, var(--night-2) 0%, var(--night) 60%);
  color: #fff7ed;
}
.avond .sec-head h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.avond .lede { color: var(--night-body); }
.kaart-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 52px); align-items: center; margin-top: 36px;
}
@media (max-width: 820px) { .kaart-layout { grid-template-columns: 1fr; gap: 28px; } }
.kaart-map { display: block; width: 100%; height: auto; max-width: 470px; margin: 0 auto; overflow: visible; }
.kaart-map .province { fill: #262019; stroke: #3d3329; stroke-width: 0.6; stroke-linejoin: round; }
.dot-halo, .dot-core { transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .dot-halo { animation: weltaHaloPulse 3.4s ease-in-out infinite; }
  .dot-core { animation: weltaCorePulse 3.4s ease-in-out infinite; }
}
@keyframes weltaHaloPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.82); }
  50% { opacity: 0.8; transform: scale(1.12); }
}
@keyframes weltaCorePulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}
.kaart-stats { display: grid; gap: 18px; }
.stat-big {
  display: grid; gap: 4px; padding: 20px 22px;
  border: 1px solid var(--night-line); border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
}
.stat-big .num {
  font-size: clamp(40px, 7vw, 58px); font-weight: 900; line-height: 1;
  letter-spacing: -0.03em; color: #fff; font-variant-numeric: tabular-nums;
  font-family: var(--sans);
}
.stat-big .label { color: var(--night-body); font-weight: 700; }
.kaart-note { color: rgba(255, 246, 236, 0.5); font-size: 0.86rem; line-height: 1.5; }
.avond .btn-primary { box-shadow: 0 14px 34px -12px rgba(201, 58, 104, 0.55); }
.kaart-footnote { margin-top: 26px; color: rgba(255, 246, 236, 0.55); font-size: 0.88rem; max-width: 62ch; }
.demo-badge {
  display: none; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(224, 162, 74, 0.16); border: 1px solid rgba(224, 162, 74, 0.4);
  color: #ffe9c4; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.04em;
}

/* ---------- melding ---------- */
.melding-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .melding-grid { grid-template-columns: 1fr; } }
.melding-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
.melding-copy p { margin-top: 14px; color: var(--body); }
.privacy-chip {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sage-pale); color: var(--sage-ink);
  border-radius: 999px; padding: 9px 15px;
  font-size: 0.86rem; font-weight: 700;
}

/* in-het-nieuws-kaart (bij de meldsectie) */
.news-card {
  display: block; text-decoration: none;
  margin-top: 24px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: var(--r-sm); padding: 18px 20px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); border-left-color: var(--pink-deep); }
.news-card:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }
.news-card .label {
  display: block; font-size: 0.72rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.news-card .head {
  display: block; margin-top: 8px;
  font-family: var(--serif); font-weight: 600; font-size: 1.05rem;
  line-height: 1.3; color: var(--ink);
}
.news-card .quote {
  display: block; margin-top: 12px;
  padding: 13px 15px; border-radius: 10px;
  background: var(--pink-pale);
  font-family: var(--serif); font-style: italic;
  font-size: 0.98rem; line-height: 1.5; color: var(--pink-ink);
}
.news-card .note {
  display: block; margin-top: 12px;
  font-size: 0.92rem; color: var(--body); line-height: 1.5;
}
.news-card .note b { color: var(--pink-ink); font-weight: 700; }

.mform {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 30px;
  box-shadow: var(--shadow-soft);
}
.mform .lbl { font-weight: 800; font-size: 0.94rem; margin: 0 0 10px; display: block; }
.mform .lbl.mt { margin-top: 22px; }
.mform .hint { font-weight: 500; color: var(--muted); }
.cats { display: flex; flex-wrap: wrap; gap: 9px; }
.cat {
  border: 1px solid var(--line-2); background: var(--bg-2);
  border-radius: 999px; padding: 10px 16px;
  font-family: var(--sans); font-weight: 700; font-size: 0.94rem;
  cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s;
  color: var(--body);
}
.cat:hover { border-color: var(--pink); }
.cat.on { background: var(--pink); border-color: var(--pink); color: #fff; }
.mform input[type="text"], .mform input[type="email"], .mform input[type="date"], .mform input[type="time"], .mform textarea {
  width: 100%; border: 1px solid var(--line-2); background: var(--bg-2);
  border-radius: var(--r-sm); padding: 14px 15px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
}
.mform .mhint { font-size: 0.88rem; color: var(--muted); margin: 8px 0 0; line-height: 1.45; }
.meld-cta { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-soft); align-self: start; }
.meld-cta h3 { font-size: 1.4rem; }
.meld-cta p { margin-top: 12px; color: var(--body); }
.meld-cta-list { margin: 18px 0 0; padding: 0; list-style: none; }
.meld-cta-list li { position: relative; padding-left: 26px; margin-top: 10px; color: var(--body); font-size: 0.97rem; }
.meld-cta-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--pink-ink); font-weight: 900; }
.meld-cta .btn { margin-top: 24px; }
.meld-cta-note { margin-top: 16px; font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
.when-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .when-grid { grid-template-columns: 1fr; } }
.meld-mode { display: flex; gap: 6px; background: var(--bg); border: 1px solid var(--line-2); border-radius: 999px; padding: 5px; max-width: 360px; }
.modebtn { flex: 1; border: none; background: none; border-radius: 999px; padding: 11px 14px; font-family: var(--sans); font-weight: 800; font-size: 0.95rem; color: var(--body); cursor: pointer; transition: background 0.15s, color 0.15s; }
.modebtn.on { background: var(--pink); color: #fff; }
.modebtn:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }
.mform input::placeholder, .mform textarea::placeholder { color: var(--muted); }
.mform input:focus-visible, .mform textarea:focus-visible, .cat:focus-visible, .btn:focus-visible, a:focus-visible {
  outline: 3px solid var(--pink); outline-offset: 2px;
}
.mform textarea { min-height: 88px; resize: vertical; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 10px; }
.msubmit { margin-top: 24px; width: 100%; }
.mstatus { margin-top: 12px; font-size: 0.92rem; color: var(--body); min-height: 1.2em; }
.mfoot { margin-top: 16px; font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
.mdone { display: none; text-align: center; padding: 24px 0; }
.mdone.on { display: block; }
.mdone .ok {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage-pale); color: var(--sage-ink);
  display: grid; place-items: center; margin: 0 auto 14px;
  font-size: 1.4rem; font-weight: 900;
}
.mdone h3 { font-size: 1.4rem; }
.mdone p { margin-top: 8px; color: var(--body); }

/* ---------- waarom / cijfers ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.stat {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 28px;
}
.stat .n {
  font-family: var(--serif); font-size: 2.7rem; font-weight: 600;
  letter-spacing: -0.03em; color: var(--pink-ink); line-height: 1;
}
.stat p { margin-top: 12px; color: var(--body); font-size: 0.97rem; }
.stat .src { margin-top: 12px; font-size: 0.78rem; color: var(--muted); font-weight: 700; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }
.compare {
  margin-top: 28px;
  background: var(--night); color: #f4ece2;
  border-radius: var(--r-card); padding: 38px 36px;
}
.compare p { font-size: 1.28rem; line-height: 1.5; font-weight: 500; max-width: 44ch; }
.compare p b { color: #fff; font-weight: 800; }
.compare .src { margin-top: 14px; color: rgba(244, 236, 226, 0.55); font-size: 0.85rem; }

/* ---------- quote ---------- */
.quote { padding: 84px 0; }
.quote blockquote {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 600; line-height: 1.3; max-width: 24ch;
}
.quote blockquote em { font-style: italic; color: var(--pink-ink); }
.quote figcaption { margin-top: 18px; color: var(--muted); font-weight: 800; letter-spacing: 0.04em; }

/* ---------- lichtje / join ---------- */
.join { background: linear-gradient(180deg, #f7f0e6, var(--bg)); border-top: 1px solid var(--line); }
.join-panel {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 28px; padding: clamp(30px, 5vw, 52px);
  box-shadow: var(--shadow-soft);
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
}
@media (max-width: 860px) { .join-panel { grid-template-columns: 1fr; gap: 28px; } }
.join-panel h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.join-panel .lede { margin-top: 14px; }
.join-form { display: grid; gap: 12px; }
.join-form input {
  width: 100%; border: 1px solid var(--line-2); background: var(--bg);
  border-radius: var(--r-sm); padding: 15px 16px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
}
.join-form input::placeholder { color: var(--muted); }
.join-form input:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }
.join-status { font-size: 0.92rem; color: var(--body); min-height: 1.2em; }
.join-note { font-size: 0.84rem; color: var(--muted); line-height: 1.5; }

/* ---------- shop (/knop) ---------- */
.shop-hero {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: 40px; align-items: center; margin-top: 40px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 28px; overflow: hidden;
}
.shop-hero-media { aspect-ratio: 4/5; background: #eadfce; overflow: hidden; }

/* Founders — volle-breedte kaart met brede kleurenrij bovenaan (ongesneden) */
.founders { margin-top: 18px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; }
.founders-media { background: #efe7d9; display: block; }
.founders-media img { width: 100%; height: auto; display: block; }
.founders-body { padding: 28px 34px 34px; }
.founders-body h2 { font-size: 1.7rem; margin-top: 10px; }
.founders-body p { margin-top: 12px; color: var(--body); max-width: 70ch; }
@media (max-width: 560px) { .founders-body { padding: 24px 22px 28px; } }
.shop-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.shop-hero-body { padding: 36px 38px 36px 10px; }
.shop-hero-body h2 { font-size: 2rem; margin-top: 12px; }
.shop-hero-body p { margin-top: 12px; color: var(--body); }
@media (max-width: 820px) {
  .shop-hero { grid-template-columns: 1fr; }
  .shop-hero-body { padding: 8px 28px 32px; }
}
.sequence-feature {
  position: relative;
  min-height: 178svh;
  margin-top: 18px;
}
.sequence-feature__pin {
  position: sticky;
  top: 84px;
  min-height: calc(100svh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  background: linear-gradient(145deg, var(--bg-2), #f3eadc);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.sequence-feature__copy h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3.6vw, 2.65rem);
  max-width: 12ch;
}
.sequence-feature__copy p {
  margin-top: 14px;
  color: var(--body);
  max-width: 52ch;
}
.sequence-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.sequence-feature__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.72);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}
.sequence-feature__note {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted) !important;
}
.sequence-feature__visual {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: #eadfce;
  box-shadow: 0 24px 60px -34px rgba(58, 40, 28, 0.48);
  isolation: isolate;
}
.sequence-feature__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}
.sequence-feature__frame.is-active {
  opacity: 1;
  z-index: 1;
}
@media (max-width: 860px) {
  .sequence-feature {
    min-height: auto;
  }
  .sequence-feature__pin {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .sequence-feature__copy h2 {
    max-width: 14ch;
  }
  .sequence-feature__visual {
    justify-self: stretch;
    width: 100%;
    border-radius: var(--r-sm);
  }
}
@media (max-width: 460px) {
  .sequence-feature__pin {
    padding: 20px;
    border-radius: var(--r-card);
  }
  .sequence-feature__tags {
    gap: 7px;
  }
  .sequence-feature__tags span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sequence-feature {
    min-height: auto;
  }
  .sequence-feature__pin {
    position: relative;
    top: auto;
    min-height: auto;
  }
  .sequence-feature__frame {
    transition: none;
  }
}
.price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.price-row .price { font-size: 1.7rem; font-weight: 900; font-family: var(--sans); }
.price-row .was { color: var(--muted); font-size: 0.95rem; }
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: var(--pink-pale); color: var(--pink-ink);
}
.badge.concept { background: #f0ece4; color: var(--body); }
.shop-note { margin-top: 14px; font-size: 0.86rem; color: var(--muted); line-height: 1.5; }
.shop-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }

.shop-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.shop-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;
}
.shop-card .media { aspect-ratio: 16/10; background: #eadfce; overflow: hidden; }
.shop-card .media img { width: 100%; height: 100%; object-fit: cover; }
.shop-card .body { padding: 24px 26px; display: flex; flex-direction: column; flex: 1; }
.shop-card h3 { font-size: 1.3rem; margin-top: 10px; }
.shop-card p { margin-top: 9px; color: var(--body); font-size: 0.96rem; flex: 1; }
.shop-card .foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.shop-card .foot .price { font-weight: 900; font-size: 1.2rem; }
@media (max-width: 720px) { .shop-two { grid-template-columns: 1fr; } }

.family {
  margin-top: 18px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px;
}
.family h3 { font-size: 1.55rem; margin-top: 12px; }
.family-media { border-radius: var(--r-sm); overflow: hidden; margin-top: 18px; aspect-ratio: 16/9; background: #eadfce; }
.family-media img { width: 100%; height: 100%; object-fit: cover; }
.collectie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.collectie-grid figure { margin: 0; }
.collectie-grid img { width: 100%; height: auto; display: block; border-radius: var(--r-sm); background: #efe7d9; }
.collectie-grid figcaption { margin-top: 10px; font-size: 0.92rem; font-weight: 700; color: var(--body); text-align: center; }
@media (max-width: 520px) { .collectie-grid { gap: 9px; } .collectie-grid figcaption { font-size: 0.78rem; margin-top: 6px; } }
.family-forms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 14px;
  font-size: 0.88rem; font-weight: 700; color: var(--body);
}

.pricing-strip { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pricing-strip .p { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 20px 22px; }
.pricing-strip .p .k {
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.pricing-strip .p .v { font-size: 1.35rem; font-weight: 900; margin-top: 6px; font-family: var(--sans); }
.pricing-strip .p.free .v { color: var(--sage-ink); }

/* knop-vector in media-slot + specs-blok */
.shop-hero-media.knop-media { background: linear-gradient(165deg, #efe8db, #e6ddcc); display: grid; place-items: center; padding: 26px; aspect-ratio: 4/5; }
.knop-fig { width: min(190px, 62%); height: auto; display: block; }
.knop-uitleg { margin-top: 40px; }
.knop-uitleg .sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.knop-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.knop-specs .spec { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 20px 22px; }
.knop-specs .spec b { display: block; font-size: 1.05rem; }
.knop-specs .spec span { display: block; margin-top: 6px; color: var(--body); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 640px) { .knop-specs { grid-template-columns: 1fr; } }
.knop-uitleg-note { margin-top: 18px; font-size: 0.84rem; color: var(--muted); line-height: 1.5; max-width: 64ch; }
.knop-infographic { margin: 40px 0 0; }
.knop-infographic img { width: 100%; height: auto; display: block; border-radius: var(--r-card); box-shadow: var(--shadow-soft); }
.knop-infographic figcaption { margin-top: 12px; font-size: 0.84rem; color: var(--muted); line-height: 1.5; max-width: 70ch; }
.knop-kleuren { margin-top: 44px; }
.knop-kleuren .sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.kleuren-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 28px; }
.kleuren-grid figure { margin: 0; }
.kleuren-grid img { width: 100%; height: auto; display: block; border-radius: var(--r-sm); background: #eadfce; }
.kleuren-grid figcaption { margin-top: 10px; font-size: 0.92rem; font-weight: 700; color: var(--body); text-align: center; }
@media (max-width: 760px) { .kleuren-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 420px) { .kleuren-grid { grid-template-columns: repeat(2, 1fr); } }

/* homepage: de knop-blok */
.knop-home { background: linear-gradient(180deg, var(--bg-2), #f7f0e6); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.knop-home-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 44px; align-items: center; }
.knop-home-fig { justify-self: center; background: linear-gradient(165deg, #efe8db, #e6ddcc); border: 1px solid var(--line); border-radius: 24px; padding: 30px 40px; }
.knop-home-fig .knop-fig { width: min(150px, 46vw); }
.knop-home h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.knop-home .lede { margin-top: 16px; }
.knop-home-list { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 20px 0 0; padding: 0; list-style: none; }
.knop-home-list li { position: relative; padding-left: 22px; color: var(--body); font-weight: 600; font-size: 0.97rem; }
.knop-home-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }
.knop-home .btn { margin-top: 24px; }
@media (max-width: 820px) { .knop-home-grid { grid-template-columns: 1fr; gap: 28px; } .knop-home-fig { order: -1; } }
.knop-home-banner { display: block; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.knop-home-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.knop-home-banner img { width: 100%; height: auto; display: block; }
.knop-home-cta { text-align: center; margin-top: 24px; }
.hero-cinema__note { width: 100%; margin-top: 14px; font-size: 0.9rem; color: rgba(255, 247, 237, 0.85); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); }
.foot-founder { margin-top: 10px; color: var(--muted); font-size: 0.88rem; max-width: 40ch; }
.foot-founder a { color: var(--pink-ink); font-weight: 700; }
.missie { padding: clamp(56px, 9vw, 104px) 0; background: linear-gradient(180deg, var(--pink-pale), var(--bg)); border-top: 1px solid var(--line); text-align: center; }
.missie h2 { font-family: var(--serif); font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.08; max-width: 22ch; margin: 12px auto 0; }
.missie-lede { margin: 22px auto 0; max-width: 60ch; font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.62; color: var(--body); }
.missie-lede b { color: var(--pink-ink); font-weight: 800; }
.missie-sub { margin: 16px auto 0; max-width: 52ch; color: var(--muted); font-size: 1rem; }
.pricing-strip .p small { color: var(--muted); font-size: 0.86rem; display: block; margin-top: 4px; line-height: 1.45; }
.pricing-strip .p.featured { border-color: var(--pink); background: var(--pink-pale); box-shadow: 0 8px 28px rgba(201, 58, 104, 0.1); display: flex; flex-direction: column; }
.pricing-strip .p.featured .v { color: var(--pink-ink); }
.pricing-strip .p .btn-sm { align-self: flex-start; margin-top: 16px; }
.tier-soon { display: inline-block; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); background: var(--line); border-radius: 999px; padding: 2px 8px; vertical-align: middle; margin-left: 4px; }
@media (max-width: 720px) { .pricing-strip { grid-template-columns: 1fr; } }

/* ---------- subpagina-hero ---------- */
.page-hero { padding: 64px 0 20px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); max-width: 20ch; }
.page-hero .lede { margin-top: 16px; max-width: 58ch; }

/* ---------- gemeenten / pers blokken ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
.blok {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 28px;
}
.blok h3 { font-size: 1.3rem; }
.blok p { margin-top: 10px; color: var(--body); font-size: 0.98rem; }
.blok ul { margin: 12px 0 0; padding-left: 20px; color: var(--body); font-size: 0.98rem; }
.founder-quote { margin: 14px 0; padding: 4px 0 4px 18px; border-left: 3px solid var(--pink); font-family: var(--serif); font-style: italic; font-size: 1.05rem; line-height: 1.5; color: var(--ink); }
.blok li { margin-top: 6px; }
.steen {
  margin-top: 40px;
  background: linear-gradient(160deg, var(--pink-pale), var(--bg-2) 65%);
  border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(28px, 5vw, 48px);
}
.steen h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); max-width: 22ch; }
.steen p { margin-top: 14px; color: var(--body); max-width: 62ch; }

.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.press-grid a { display: block; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.press-grid img { width: 100%; height: auto; }
@media (max-width: 720px) { .press-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 52px 0 44px; margin-top: 40px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.foot-brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.2rem; }
.foot-brand img { width: 28px; height: 30px; }
.foot-merkregel { margin-top: 12px; color: var(--body); max-width: 34ch; }
.foot-merkregel em { font-family: var(--serif); font-style: italic; color: var(--pink-ink); }
.foot-col h5 {
  font-size: 0.78rem; font-weight: 900; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 12px;
}
.foot-col a { display: block; text-decoration: none; color: var(--body); font-weight: 600; padding: 5px 0; }
.foot-col a:hover { color: var(--pink-ink); }
@media (max-width: 820px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand-wrap { grid-column: 1 / -1; }
}
.veilig-thuis {
  margin-top: 28px;
  background: var(--sage-pale); border: 1px solid #cfe0d3;
  border-radius: var(--r-card); padding: 16px 20px;
  color: var(--sage-ink); font-size: 0.92rem;
}
.veilig-thuis b { color: #2f4838; }
.disclaimer {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.86rem; line-height: 1.6; max-width: 72ch;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
