/* =========================================================================
   Nu en Morgen - Design System
   Huisstijl uit het logo: stromende blauwe ampersand + rood hart met ECG-lijn.
   Manrope (body) + Fraunces (serif display). Performance-first, WCAG-toegankelijk.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Fonts */
  --font-sans:    "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  /* Kleuren - blauw + warm rood hart (vertrouwen + menselijkheid) */
  --cream:        #FBF6F0;  /* warm neutraal */
  --surface:      #FFFFFF;
  --surface-2:    #EEF4FB;  /* zacht blauwgrijs */
  --ink:          #0C2740;  /* diepste tekst / donkere secties */
  --muted:        #4C627B;  /* rustige blauwgrijze tekst */
  --line:         #E2EAF2;

  --brand:        #2F73B2;  /* primair blauw (de ampersand) */
  --brand-dark:   #13395F;  /* navy */
  --brand-darker: #0C2740;  /* ink navy: donkere secties */
  --brand-soft:   #EAF3FB;  /* licht blauw sectie-bg */
  --brand-soft-2: #CFE2F5;  /* iets dieper blauw voor randen/hover */
  --brand-light:  #5AA0DD;  /* lichter blauw accent op donker */

  --accent:       #E23B30;  /* het hart-rood */
  --accent-dark:  #B42D24;  /* dieper rood voor hover/focus */
  --accent-soft:  #FDE8E6;  /* zachte rode tint */
  --coral:        #F3796B;

  --success:      #1F9D6B;
  --star:         #E4A400;

  /* Elevatie (navy-getint, zoals in het template) */
  --e1: 0 1px 2px rgba(12,39,64,.04), 0 10px 30px -14px rgba(12,39,64,.14);
  --e2: 0 2px 6px rgba(12,39,64,.06), 0 16px 40px -18px rgba(12,39,64,.20);
  --e3: 0 24px 60px -24px rgba(12,39,64,.30);
  --glow: 0 30px 80px -30px rgba(47,115,178,.55);

  /* Radius (rounded-2xl / 3xl gevoel) */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* Fluid typografie */
  --fs-xs:   clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  --fs-sm:   clamp(0.88rem, 0.84rem + 0.2vw, 0.98rem);
  --fs-base: clamp(1rem, 0.95rem + 0.3vw, 1.14rem);
  --fs-lg:   clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --fs-xl:   clamp(1.4rem, 1.2rem + 1vw, 2rem);
  --fs-2xl:  clamp(1.9rem, 1.5rem + 2vw, 3rem);
  --fs-3xl:  clamp(2.4rem, 1.8rem + 3.2vw, 4rem);

  /* Ruimte */
  --sp-1: clamp(.5rem, .4rem + .3vw, .75rem);
  --sp-2: clamp(.85rem, .7rem + .5vw, 1.15rem);
  --sp-3: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  --sp-4: clamp(2rem, 1.5rem + 2vw, 3rem);
  --sp-5: clamp(3rem, 2.2rem + 3.5vw, 5rem);
  --sp-6: clamp(4rem, 3rem + 5vw, 7rem);

  --maxw: 1160px;
  --maxw-narrow: 760px;

  --dur: 250ms;
  --ease: cubic-bezier(.23, 1, .32, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .64, 1);

  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-dark); text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.015em; font-weight: 600; color: var(--brand-dark); }
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
p { max-width: 68ch; }
::selection { background: rgba(226,59,48,.15); color: var(--ink); }

/* ---------- Utilities ---------- */
/* Ankerlinks (#aanvragen etc.) niet onder de sticky header laten vallen */
[id] { scroll-margin-top: 110px; }
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.section { padding-block: var(--sp-6); }
.section--tight { padding-block: var(--sp-5); }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--sp-1);
}
.lede { font-size: var(--fs-lg); color: var(--muted); }
.center .lede, .center p { margin-inline: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-dark); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.6rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: var(--fs-base); text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px -12px rgba(226,59,48,.6); }
.btn--primary:hover { background: var(--accent-dark); box-shadow: 0 16px 40px -14px rgba(226,59,48,.7); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 10px 30px -12px rgba(226,59,48,.6); }
.btn--accent:hover { background: var(--accent-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--brand-dark); border-color: var(--brand-soft-2); }
.btn--ghost:hover { background: var(--brand-soft); border-color: var(--brand); }
.btn--lg { min-height: 54px; padding: 1rem 2rem; font-size: var(--fs-lg); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--e1); }
.nav {
  display: flex; align-items: center; gap: var(--sp-3);
  min-height: 96px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand__logo { height: 74px; width: auto; }
.brand--footer { background: #fff; border-radius: var(--r-md); padding: .55rem 1rem; box-shadow: var(--e1); }
.brand--footer .brand__logo { height: 88px; }
@media (max-width: 560px) { .brand__logo { height: 60px; } }
.nav__links { display: flex; align-items: center; gap: .35rem; margin-left: auto; list-style: none; padding: 0; }
.nav__links a, .nav__toggle-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .55rem .8rem; border-radius: var(--r-sm); text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: var(--fs-sm);
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.nav__links a:hover, .nav__toggle-btn:hover { background: var(--brand-soft); color: var(--brand-dark); }
.nav__links a[aria-current="page"] { color: var(--brand-dark); background: var(--brand-soft); }
.nav__cta { margin-left: .4rem; }

/* Dropdown */
.has-menu { position: relative; }
.nav__panel {
  position: absolute; top: calc(100% + .4rem); left: 0; min-width: 280px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--e3); padding: .5rem; list-style: none; margin: 0;
  display: none;
}
.has-menu.is-open .nav__panel { display: block; }
.nav__panel a { display: block; padding: .6rem .75rem; border-radius: var(--r-sm); font-weight: 600; font-size: var(--fs-sm); }
.nav__panel a:hover { background: var(--brand-soft); }
.caret { transition: transform var(--dur) var(--ease); }
.has-menu.is-open .caret { transform: rotate(180deg); }

/* Hamburger */
.nav__burger { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: var(--r-sm); width: 46px; height: 46px; cursor: pointer; align-items: center; justify-content: center; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.nav__burger span::before { transform: translateY(-7px); }
.nav__burger span::after  { transform: translateY(5px); }

@media (max-width: 900px) {
  .nav__burger { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 96px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--e3);
    padding: var(--sp-2); gap: .15rem; margin: 0;
    max-height: calc(100dvh - 96px); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity var(--dur), transform var(--dur);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a, .nav__toggle-btn { padding: .8rem 1rem; font-size: var(--fs-base); width: 100%; justify-content: space-between; }
  .nav__panel { position: static; display: none; box-shadow: none; border: none; padding: 0 0 .3rem 1rem; min-width: 0; }
  .has-menu.is-open .nav__panel { display: block; }
  .nav__cta { margin: .4rem 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero (donkere navy met radiale gradient, zoals template) ---------- */
.hero {
  position: relative; overflow: hidden; color: #EAF3FB;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(90,160,221,.38), transparent 60%),
    radial-gradient(900px 520px at 100% 0%, rgba(47,115,178,.34), transparent 55%),
    linear-gradient(180deg, var(--brand-dark) 0%, var(--brand-darker) 100%);
}
.hero::after {
  content: ""; position: absolute; right: -6%; top: 8%; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,59,48,.16), transparent 65%); pointer-events: none;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-4); align-items: center; padding-block: var(--sp-5); }
.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--sp-2); }
.hero .eyebrow { color: var(--brand-light); }
.hero h1 { color: #fff; margin-bottom: var(--sp-2); }
.hero__lede { font-size: var(--fs-lg); color: rgba(234,243,251,.86); margin-bottom: var(--sp-3); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero__usps { list-style: none; padding: 0; margin: var(--sp-3) 0 0; display: grid; gap: .55rem; }
.hero__usps li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 600; }
.hero .hero__usps li { color: #EAF3FB; }
.hero .check { color: var(--brand-light); }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }
.hero .card__icon { background: rgba(255,255,255,.12); color: #fff; }
.check { color: var(--brand); flex: none; margin-top: 2px; }
/* Trust-pills in de hero als glas */
.hero .pill {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #fff;
  backdrop-filter: blur(6px); box-shadow: none;
}
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--surface); border: 1px solid var(--line); color: var(--brand-dark);
  padding: .35rem .8rem; border-radius: var(--r-pill); font-size: var(--fs-xs); font-weight: 700; box-shadow: var(--e1);
}
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } .hero__media { order: -1; } }

/* ---------- Form card ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--e3); padding: var(--sp-3);
}
.form-card h2, .form-card h3 { font-size: var(--fs-lg); }
.form-card .sub { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--sp-2); }
.field { margin-bottom: var(--sp-2); }
.field label { display: block; font-weight: 700; font-size: var(--fs-sm); margin-bottom: .35rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: var(--fs-sm); background: var(--brand-soft); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); background: #fff; }
.radio-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.radio-row label {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: var(--fs-sm);
  border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: .5rem .9rem; cursor: pointer; background: var(--brand-soft);
}
.radio-row input { width: auto; accent-color: var(--brand); }
.radio-row label:has(input:checked) { border-color: var(--brand); background: var(--brand-soft-2); }
.form-note { font-size: var(--fs-xs); color: var(--muted); }
.form-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: var(--sp-2); font-size: var(--fs-xs); color: var(--muted); }
.form-meta span { display: inline-flex; gap: .35rem; align-items: center; }
.form-success { display: none; background: var(--accent-soft); border: 1px solid var(--coral); border-radius: var(--r-md); padding: var(--sp-2); color: var(--accent-dark); font-weight: 600; }
.form-success.is-visible { display: block; }

/* ---------- Media block ---------- */
.media-figure {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--e3);
  background: linear-gradient(135deg, var(--brand-soft), var(--surface-2));
  aspect-ratio: 4 / 5; display: grid; place-items: center; position: relative;
}
.media-figure .placeholder { text-align: center; color: var(--brand-dark); padding: var(--sp-3); }
.media-figure .placeholder svg { margin: 0 auto var(--sp-1); }
/* <picture> moet de hele figuur vullen, anders staat de foto los met lege vlakken eromheen */
.media-figure picture { display: block; width: 100%; height: 100%; }
.media-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-band picture { display: block; width: 100%; height: 100%; }
.media-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--sp-2) var(--sp-3);
  background: linear-gradient(to top, rgba(12,39,64,.78), transparent);
  color: #fff; font-size: var(--fs-sm); font-weight: 600;
}
.img-band { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--e3); aspect-ratio: 16/7; background: linear-gradient(135deg, var(--brand-soft), var(--surface-2)); }
.img-band img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Benefits row ---------- */
.benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); }
@media (max-width: 720px){ .benefits { grid-template-columns: 1fr; } }
.benefit { display: flex; gap: .7rem; align-items: flex-start; }
.benefit .b-ic { flex: none; width: 42px; height: 42px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.benefit strong { display: block; }
.benefit span { color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--sp-3); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-3); box-shadow: var(--e1); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--e3); border-color: var(--brand-soft-2); }
.card h3 { font-size: var(--fs-lg); margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: var(--fs-sm); }
.card__icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: var(--sp-2);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.card--link:hover .card__icon { background: var(--brand); color: #fff; }
.card__link { text-decoration: none; color: inherit; display: block; }
.card__more { display: inline-flex; align-items: center; gap: .3rem; margin-top: var(--sp-2); color: var(--accent); font-weight: 700; font-size: var(--fs-sm); }

/* Alt background sections */
.bg-brand { background: linear-gradient(160deg, var(--brand-dark), var(--brand-darker)); color: #DCE8F5; }
.bg-brand h1, .bg-brand h2, .bg-brand h3 { color: #fff; }
.bg-brand .lede, .bg-brand p { color: #B9CDE4; }
.bg-brand .eyebrow { color: var(--brand-light); }
.bg-soft { background: var(--brand-soft); }
.bg-surface { background: var(--surface); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-3); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: var(--sp-3); }
.step__num {
  width: 46px; height: 46px; border-radius: 15px; background: var(--brand); color: #fff;
  font-family: var(--font-display);
  display: grid; place-items: center; font-weight: 600; font-size: 1.15rem; margin-bottom: var(--sp-2); box-shadow: var(--glow);
}
.step h3 { font-size: var(--fs-lg); margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Reasons / feature list ---------- */
.feature { display: flex; gap: var(--sp-2); }
.feature__icon { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.feature h3 { font-size: var(--fs-lg); margin-bottom: .25rem; }
.feature p { color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Testimonials ---------- */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-3); box-shadow: var(--e1); }
.quote blockquote { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 500; margin-bottom: var(--sp-2); color: var(--brand-dark); }
.quote .who { display: flex; align-items: center; gap: .7rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-weight: 800; flex: none; }
.quote .who small { color: var(--muted); }
.rating { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; }
.rating .score { background: var(--brand); color: #fff; border-radius: var(--r-sm); padding: .15rem .55rem; }
.stars { color: var(--star); letter-spacing: 2px; }

/* ---------- Area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .5rem 1rem; font-weight: 600; text-decoration: none; color: var(--ink); box-shadow: var(--e1); transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.chip:hover { background: var(--brand-soft); color: var(--brand-dark); border-color: var(--brand-soft-2); }

/* ---------- FAQ (native details) ---------- */
.faq { display: grid; gap: .75rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--e1); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-lg); color: var(--brand-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-sans); font-size: 1.6rem; color: var(--accent); font-weight: 400; transition: transform var(--dur) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 var(--sp-3) var(--sp-3); color: var(--muted); }
.faq .faq__body p { font-size: var(--fs-sm); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker)); color: #fff; border-radius: var(--r-lg); padding: var(--sp-5) var(--sp-4); text-align: center; box-shadow: var(--e3); }
.cta-band::before { content: ""; position: absolute; left: -10%; bottom: -40%; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(226,59,48,.22), transparent 65%); pointer-events: none; }
.cta-band h2 { color: #fff; margin-bottom: var(--sp-2); position: relative; }
.cta-band p { color: #B9CDE4; margin: 0 auto var(--sp-3); position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Trust bar ---------- */
.trustbar { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; justify-content: center; color: var(--muted); font-weight: 700; font-size: var(--fs-sm); }
.trustbar span { display: inline-flex; align-items: center; gap: .5rem; }
.trustbar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: var(--fs-sm); color: var(--muted); padding-top: var(--sp-3); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand-dark); text-decoration: underline; }
/* Breadcrumbs op donkere hero leesbaar houden */
.hero .crumbs, .hero .crumbs a { color: rgba(234,243,251,.75); }
.hero .crumbs a:hover { color: #fff; }

/* ---------- Prose ---------- */
.prose h2 { margin-top: var(--sp-4); margin-bottom: var(--sp-2); }
.prose h3 { margin-top: var(--sp-3); margin-bottom: var(--sp-1); }
.prose p { margin-bottom: var(--sp-2); }
.prose ul { margin: 0 0 var(--sp-2) 1.2rem; display: grid; gap: .4rem; }
.prose li { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--brand-darker), #081d31); color: #B9CDE4; padding-block: var(--sp-5) var(--sp-3); }
.site-footer a { color: #D5E4F5; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-3); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--sp-2); }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .5rem; font-size: var(--fs-sm); }
.footer__brand p { color: #9FB6D2; font-size: var(--fs-sm); margin-top: var(--sp-2); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--sp-4); padding-top: var(--sp-3); font-size: var(--fs-xs); color: #9FB6D2; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* Footer disclosure (alle pagina's) */
.footer__all { margin-top: var(--sp-4); display: grid; gap: .6rem; }
.footer__disc { border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); background: rgba(255,255,255,.03); }
.footer__disc > summary { cursor: pointer; list-style: none; padding: var(--sp-2) var(--sp-3); font-weight: 700; color: #fff; display: flex; justify-content: space-between; align-items: center; font-size: var(--fs-sm); }
.footer__disc > summary::-webkit-details-marker { display: none; }
.footer__disc > summary::after { content: "+"; font-size: 1.3rem; color: var(--brand-light); }
.footer__disc[open] > summary::after { content: "\2212"; }
.footer__disc .disc-body { padding: 0 var(--sp-3) var(--sp-3); }
.footer__cols { columns: 220px 4; column-gap: var(--sp-3); }
.footer__cols a { display: block; padding: .25rem 0; font-size: var(--fs-xs); break-inside: avoid; }
.footer__sub { border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sm); margin-bottom: .5rem; background: rgba(255,255,255,.02); }
.footer__sub > summary { cursor: pointer; list-style: none; padding: .55rem var(--sp-2); font-weight: 700; color: #D5E4F5; font-size: var(--fs-xs); }
.footer__sub > summary::-webkit-details-marker { display: none; }
.footer__sub .sub-body { padding: 0 var(--sp-2) .6rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
