/* ==========================================================================
   EZOI — Expertisecentrum Zorg, Ondermijning & Integriteit
   Hoofd-stylesheet
   --------------------------------------------------------------------------
   Inhoud:
   1.  Design tokens (:root)
   2.  Reset & basis
   3.  Typografie
   4.  Layout helpers (container, section, grid)
   5.  Buttons & links
   6.  Eyebrow / rules / arrow-motief
   7.  Header & navigatie
   8.  Footer
   9.  Hero
   10. Pijlers / kaarten
   11. Venn-visual
   12. Methode (5 stappen)
   13. Narratief blok
   14. Diensten
   15. Waardetrap
   16. Voor wie
   17. Afbakening (RIEC)
   18. Slot-CTA
   19. Forms (basis — uitgebreid in aparte bestanden waar nodig)
   20. Animatie / reveal
   Responsive breakpoints staan in responsive.css
   ========================================================================== */

/* 1. DESIGN TOKENS ========================================================= */
:root {
  /* Kleuren — vastgesteld tegen officiële huisstijl (docs/_EZOI_Huisstijl.pdf, sept 2026). */
  --navy-900: #282856;   /* zelfde blauwtint als --navy-800, op klantverzoek —
                             overal exact dezelfde huisstijlkleur, geen variatie */
  --navy-800: #282856;   /* primaire merkkleur — exacte huisstijlkleur "Blauw" */
  --navy-700: #383866;   /* verhoogde vlakken op donker (kaarten)              */
  --navy-600: #4d4d71;   /* randen op donker                                   */

  --gold-500: #c49858;   /* primair accent — knoppen/iconen op donker          */
  --gold-400: #d2ae78;   /* hover-accent                                       */
  --gold-300: #e5cea4;   /* eyebrows / haarlijnen op donker                    */
  --gold-700: #8b673e;   /* goud op lichte achtergrond — exacte huisstijlkleur "Goud" */

  --paper:    #f6f7f9;   /* lichte sectie-achtergrond                          */
  --paper-2:  #eef0f4;   /* alternatieve lichte tint                           */
  --white:    #ffffff;
  --ink:      #1e293b;   /* bodytekst op licht                                 */
  --ink-soft: #55617a;   /* secundaire tekst op licht                          */
  --line:     #dde1e8;   /* randen op licht                                    */

  --on-dark:        #eef1f6; /* bodytekst op donker                            */
  --on-dark-soft:   #a9b4c8; /* secundaire tekst op donker                     */

  /* Typografie */
  --font-serif: 'Spectral', 'Iowan Old Style', 'Palatino Linotype', Palatino,
    'Times New Roman', Georgia, serif;
  --font-sans: 'Navigo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Helvetica, Arial, sans-serif;

  --fs-eyebrow: 0.78rem;
  --fs-body:    1.0625rem;   /* 17px */
  --fs-lead:    1.1875rem;   /* 19px */
  --fs-h6: 1rem;
  --fs-h5: 1.15rem;
  --fs-h4: clamp(1.25rem, 1.05rem + 0.9vw, 1.55rem);
  --fs-h3: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
  --fs-h2: clamp(2rem, 1.5rem + 2.4vw, 3rem);
  --fs-h1: clamp(2.6rem, 1.9rem + 3.4vw, 4.25rem);

  --lh-tight: 1.12;
  --lh-snug:  1.28;
  --lh-body:  1.7;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --section-y: clamp(4rem, 2.5rem + 7vw, 8rem);

  /* Vorm */
  --radius: 4px;
  --radius-lg: 8px;
  --content-max: 1200px;
  --measure: 40rem;          /* max leesbreedte lopende tekst */

  --shadow-sm: 0 1px 3px rgba(12, 26, 51, 0.08),
    0 1px 2px rgba(12, 26, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(12, 26, 51, 0.10),
    0 2px 6px rgba(12, 26, 51, 0.06);

  --header-h: 108px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. RESET & BASIS ======================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
svg { fill: currentColor; }

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 40%, transparent); text-underline-offset: 0.18em; }
a:hover { text-decoration-color: currentColor; }

ul, ol { padding-left: 1.2em; }
li { margin-bottom: 0.35em; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* 3. TYPOGRAFIE ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  color: var(--navy-800);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 600; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-snug); }
h5 { font-family: var(--font-sans); font-size: var(--fs-h5); font-weight: 600; color: var(--navy-800); }
h6 {
  font-family: var(--font-sans);
  font-size: var(--fs-h6);
  font-weight: 600;
  color: var(--navy-800);
}

p { max-width: var(--measure); }
.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-soft);
}

strong, b { font-weight: 600; }
em, i { font-style: italic; }

.serif { font-family: var(--font-serif); }
.text-gold { color: var(--gold-700); }

/* Kleuromkering op donkere secties */
.section--dark {
  background: var(--navy-800);
  color: var(--on-dark);
}
.section--darker { background: var(--navy-900); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--dark h5, .section--dark h6,
.section--darker h1, .section--darker h2, .section--darker h3,
.section--darker h4, .section--darker h5, .section--darker h6 { color: #fff; }
.section--dark .lead, .section--darker .lead { color: var(--on-dark-soft); }
.section--dark .text-gold, .section--darker .text-gold { color: var(--gold-300); }

.section--paper { background: var(--paper); }

/* 4. LAYOUT ============================================================== */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.5rem + 3vw, 2.5rem);
}
.container--narrow { max-width: 820px; }

.section {
  padding-block: var(--section-y);
}
.section + .section { border-top: 0; }

/* Watermerk-motief onder lichte blokken (subtiel, decoratief) --------------
   .section--wm        → drie overlappende cirkels, rechtsonder ("drie werelden")
   .section--wm-arrows → pijl-stapel uit het logo, linksboven
   Combineer met een van de posities via .section--wm.                        */
.section--wm,
.section--wm-arrows {
  position: relative;
  overflow: clip;
}
.section--wm > .container,
.section--wm-arrows > .container { position: relative; z-index: 1; }
.section--wm::before,
.section--wm-arrows::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
}
.section--wm::before {
  right: clamp(-180px, -6vw, -80px);
  bottom: clamp(-200px, -10vw, -110px);
  width: min(620px, 52vw);
  aspect-ratio: 1;
  background-image: url("../icons/wm-circles.svg");
}
.section--wm-arrows::before {
  left: clamp(-160px, -7vw, -70px);
  top: clamp(-140px, -6vw, -70px);
  width: min(460px, 42vw);
  aspect-ratio: 1;
  background-image: url("../icons/wm-arrows.svg");
}
/* Op donkere blokken lichter motief */
.section--dark.section--wm::before,
.section--darker.section--wm::before,
.section--dark.section--wm-arrows::before,
.section--darker.section--wm-arrows::before {
  opacity: 0.06;
  filter: brightness(0) invert(1);
}
@media (prefers-reduced-motion: no-preference) {
  .section--wm::before, .section--wm-arrows::before { transition: opacity 0.4s var(--ease); }
}

.stack > * + * { margin-top: var(--space-3); }
.stack-sm > * + * { margin-top: var(--space-2); }
.stack-lg > * + * { margin-top: var(--space-4); }

.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section-head {
  max-width: 780px;
  margin-bottom: var(--space-6);
}
.section-head .lead { margin-top: var(--space-3); }
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center p { margin-inline: auto; }

/* 5. BUTTONS & LINKS ===================================================== */
.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
    border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn:hover {
  --btn-bg: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  border-color: var(--line);
}
.btn--ghost:hover {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  border-color: var(--navy-800);
  box-shadow: none;
}
.section--dark .btn--ghost,
.section--darker .btn--ghost,
.hero .btn--ghost {
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.section--dark .btn--ghost:hover,
.section--darker .btn--ghost:hover,
.hero .btn--ghost:hover {
  --btn-fg: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

/* Tekstlink met pijl */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-700);
  text-decoration: none;
}
.arrow-link::after {
  content: "";
  width: 1.1em; height: 1.1em;
  background: currentColor;
  -webkit-mask: url("../icons/arrow-right.svg") no-repeat center / contain;
  mask: url("../icons/arrow-right.svg") no-repeat center / contain;
  transition: transform 0.2s var(--ease);
}
.arrow-link:hover { text-decoration: none; }
.arrow-link:hover::after { transform: translateX(4px); }
.section--dark .arrow-link, .section--darker .arrow-link { color: var(--gold-300); }

/* 6. EYEBROW / RULES / ARROW-MOTIEF ===================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--space-3);
}
.section--dark .eyebrow, .section--darker .eyebrow, .hero .eyebrow {
  color: var(--gold-300);
}
.eyebrow::before {
  content: "";
  width: 2.2em;
  height: 2px;
  background: currentColor;
  flex: none;
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
}
.section--dark .rule, .section--darker .rule {
  background: var(--navy-600);
}

/* 7. HEADER & NAVIGATIE ================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: var(--header-h);
}
.site-header a { text-decoration: none; }

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  flex: none;
}
.brand img { height: 76px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 0.4rem + 1.6vw, 2.1rem); }
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4rem + 1.6vw, 2.1rem);
  list-style: none;
  margin: 0; padding: 0;
}
.primary-nav li { margin: 0; }
.primary-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.4rem 0;
  position: relative;
}
.primary-nav a:hover { color: #fff; }
.primary-nav a[aria-current="page"] { color: #fff; }
.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
}
.primary-nav .btn { color: var(--navy-900); padding-inline: 2.3em; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* 8. FOOTER ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: var(--on-dark-soft);
  padding-block: var(--space-7) var(--space-4);
  font-size: 0.95rem;
}
.site-footer a { color: var(--on-dark-soft); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--navy-700);
}
.site-footer h2 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-3);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6em; }
.footer-brand img { width: min(240px, 62vw); height: auto; margin-bottom: var(--space-4); }
.footer-brand p { color: var(--on-dark-soft); max-width: 34ch; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-4);
  font-size: 0.85rem;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: var(--space-3); list-style: none; padding: 0; margin: 0; }
.footer-bottom li { margin: 0; }
.footer-credit {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--navy-700);
  font-size: 0.78rem;
  color: var(--on-dark-soft);
  opacity: 0.7;
  text-align: left;
}

/* 9. HERO ============================================================== */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
/* Homepage-hero (met foto) vult het scherm onder de sticky header; de
   compacte pagina-hero (.hero--page, zonder foto) blijft content-hoogte. */
.hero:not(.hero--page) {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  object-position: right center;
  width: 100%; height: 100%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--navy-900) 0%, rgba(40, 40, 86, 0.82) 38%, rgba(40, 40, 86, 0.35) 78%, rgba(40, 40, 86, 0.55) 100%),
    linear-gradient(180deg, transparent 55%, rgba(40, 40, 86, 0.75) 82%, var(--navy-900) 100%);
}
.hero__inner {
  padding-block: clamp(5rem, 3rem + 12vw, 9.5rem);
  max-width: 45rem;
  margin-right: auto;   /* links uitlijnen binnen de container */
}
.hero h1 {
  color: #fff;
  margin-bottom: var(--space-3);
}
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 1.7rem);
  color: var(--gold-300);
  margin-bottom: var(--space-4);
}
.hero__text {
  font-size: var(--fs-lead);
  color: var(--on-dark-soft);
  max-width: 38rem;
}

/* 10. PIJLERS / KAARTEN ================================================ */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--gold-500);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card h3, .card h4 { color: var(--navy-800); }
.card__kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-700);
}
.card p { color: var(--ink-soft); font-size: 1rem; }
.card .arrow-link { margin-top: auto; padding-top: var(--space-2); }

.card--dark {
  background: var(--navy-700);
  border-color: var(--navy-600);
}
.card--dark h3, .card--dark h4 { color: #fff; }
.card--dark p { color: var(--on-dark-soft); }
.card--dark .card__kicker { color: var(--gold-300); }

.pillar__icon {
  width: 40px; height: 40px;
  color: var(--gold-700);
}
.section--dark .pillar__icon { color: var(--gold-300); }

/* 11. VENN-VISUAL ===================================================== */
.venn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.venn__figure { width: 100%; max-width: 520px; margin-inline: auto; }
.venn__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 1.05rem + 1.1vw, 1.75rem);
  line-height: 1.4;
  color: #fff;
  border-left: 2px solid var(--gold-500);
  padding-left: var(--space-3);
}

/* 12. METHODE (5 STAPPEN) ============================================ */
.methode {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-6);
  align-items: center;
}
.methode__figure { width: 100%; max-width: 460px; margin-inline: auto; }
.methode__list { list-style: none; padding: 0; margin: 0; }
.methode__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--navy-600);
  margin: 0;
}
.methode__list li:last-child { border-bottom: 1px solid var(--navy-600); }
.methode__num {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 0.05em;
}
.methode__step h3 {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.methode__step p { color: var(--on-dark-soft); font-size: 0.98rem; margin: 0; }

/* 13. NARRATIEF BLOK ================================================= */
.narrative {
  max-width: 46rem;
}
.narrative p { max-width: none; }
.narrative .accent-lines p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--navy-800);
}
.section--dark .narrative .accent-lines p { color: var(--gold-300); }
.narrative .accent-lines {
  border-left: 2px solid var(--gold-500);
  padding-left: var(--space-3);
  margin-block: var(--space-4);
}

/* 14. DIENSTEN ====================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.service-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.15rem;
}

/* 15. WAARDETRAP =================================================== */
.ladder { list-style: none; padding: 0; margin: 0; max-width: 40rem; }
.ladder li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: var(--fs-lead);
  margin: 0;
}
.ladder li + li { padding-left: 0; }
.ladder__step {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.ladder li::before {
  content: "";
  width: 1.4em; height: 1.4em;
  flex: none;
  background: var(--gold-500);
  -webkit-mask: url("../icons/arrow-right.svg") no-repeat center / contain;
  mask: url("../icons/arrow-right.svg") no-repeat center / contain;
}

/* 16. VOOR WIE ==================================================== */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.audience {
  padding: var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.audience h3 {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.audience p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* 17. AFBAKENING (RIEC) ========================================== */
.boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.boundary__card {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: var(--space-4);
  background: var(--paper);
}
.boundary__card h3 { font-size: 1.1rem; margin-bottom: var(--space-1); }
.boundary__card p { font-size: 0.98rem; color: var(--ink-soft); }

/* 18. SLOT-CTA ================================================== */
.cta-final {
  position: relative;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-final__bg {
  position: absolute; inset: 0; z-index: -2;
  object-fit: cover; object-position: center; width: 100%; height: 100%;
}
.cta-final::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 120% at 50% 50%, rgba(40, 40, 86, 0.62) 0%, rgba(40, 40, 86, 0.9) 70%),
    linear-gradient(180deg, var(--navy-900), rgba(40, 40, 86, 0.8) 30%, var(--navy-900));
}
.cta-final h2 { color: #fff; margin-bottom: var(--space-3); }
.cta-final p { margin-inline: auto; color: var(--on-dark-soft); font-size: var(--fs-lead); }
.cta-final .btn-row { justify-content: center; }

/* 19. FORMS (basis) ============================================ */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-3); }
.field label { font-weight: 600; font-size: 0.95rem; color: var(--navy-800); }
.field .hint { font-size: 0.85rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-500);
  outline: 2px solid color-mix(in srgb, var(--gold-500) 45%, transparent);
  outline-offset: 1px;
}
.field--error input, .field--error select, .field--error textarea { border-color: #b42318; }
.field__error { font-size: 0.85rem; color: #b42318; font-weight: 600; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }
.form-status {
  padding: var(--space-3);
  border-radius: var(--radius);
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.form-status--ok { background: #e7f4ec; color: #1b5e33; border: 1px solid #b7dcc4; }
.form-status--err { background: #fdeceb; color: #8a1b12; border: 1px solid #f2c2bd; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* 20. ANIMATIE / REVEAL ====================================== */
/* Alleen verbergen wanneer JS actief is — zonder JS blijft alles zichtbaar. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .arrow-link::after { transition: none; }
  .primary-nav { transition: none !important; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flow-lg > * + * { margin-top: var(--space-4); }

/* ==========================================================================
   21. BINNENPAGINA'S — extra componenten
   ========================================================================== */

/* Compacte pagina-hero (zonder foto) */
.hero--page {
  background: var(--navy-800);
}
.hero--page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(820px 460px at 88% -12%, rgba(194, 161, 94, 0.16), transparent 62%),
    linear-gradient(180deg, var(--navy-900), var(--navy-800));
}
.hero--page .hero__inner {
  padding-block: clamp(3.25rem, 2.25rem + 5vw, 5.5rem);
  max-width: 48rem;
  margin-right: auto;
}
.hero--page h1 { color: #fff; margin-bottom: var(--space-3); }
.hero--page .hero__text {
  color: var(--on-dark-soft);
  font-size: var(--fs-lead);
  max-width: 42rem;
}

/* Zichtbare broodkruimel boven de pagina-titel */
.breadcrumbs { margin-bottom: var(--space-3); }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4em;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
}
.breadcrumbs a {
  color: var(--on-dark-soft);
  text-decoration: none;
}
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs li { display: flex; align-items: center; gap: 0.4em; margin: 0; }
.breadcrumbs li[aria-current] { color: #fff; }
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--on-dark-soft);
  opacity: 0.5;
}

/* Twee kolommen: hoofdtekst + aside */
.split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.split__aside {
  padding: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  font-size: 0.98rem;
}
.split__aside h3 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.split__aside p { color: var(--ink-soft); }
.section--dark .split__aside {
  background: var(--navy-700);
  border-color: var(--navy-600);
  border-left-color: var(--gold-500);
}
.section--dark .split__aside p { color: var(--on-dark-soft); }

/* Disciplines-rij (Onze visie) */
.discipline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
.discipline-list li {
  margin: 0;
  padding: var(--space-2) var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-800);
}
.discipline-list li span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Genummerde stappen op lichte achtergrond */
.steps { counter-reset: step; display: grid; gap: var(--space-3); }
.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3) var(--space-4);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
}
.steps__item:last-child { border-bottom: 1px solid var(--line); }
.steps__num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-700);
  line-height: 1;
  min-width: 2.4ch;
}
.steps__body h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.steps__body p { color: var(--ink-soft); margin: 0; }
.steps__body .q {
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--gold-700);
  font-family: var(--font-serif);
}

/* Checklijst */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8em;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15em;
  width: 1.25em; height: 1.25em;
  background: var(--gold-500);
  -webkit-mask: url("../icons/check.svg") no-repeat center / contain;
  mask: url("../icons/check.svg") no-repeat center / contain;
}
.section--dark .checklist li::before, .section--darker .checklist li::before { background: var(--gold-300); }

/* Losse quote-sectie */
.pullquote {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.2rem + 1.8vw, 2.25rem);
  line-height: 1.32;
  color: #fff;
}
.pullquote blockquote::before { content: "\201C"; color: var(--gold-500); }
.pullquote blockquote::after { content: "\201D"; color: var(--gold-500); }
.pullquote cite {
  display: block;
  margin-top: var(--space-3);
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* FAQ */
.faq { max-width: 46rem; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  cursor: pointer;
  padding: var(--space-3) 2rem var(--space-3) 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-800);
  list-style: none;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 1rem; height: 1rem;
  transform: translateY(-50%);
  background: var(--gold-700);
  -webkit-mask: url("../icons/chevron-down.svg") no-repeat center / contain;
  mask: url("../icons/chevron-down.svg") no-repeat center / contain;
  transition: transform 0.2s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq__item p { padding-bottom: var(--space-3); color: var(--ink-soft); margin: 0; max-width: none; }

/* Formulier-layout */
.form-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.form-card {
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-aside { font-size: 0.98rem; }
.form-aside h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.form-aside p { color: var(--ink-soft); }
.form-aside .rule { margin-block: var(--space-4); }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
fieldset.field {
  border: 0;
  padding: 0;
  margin-bottom: var(--space-4);
}
fieldset.field legend {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
  padding: 0;
}
.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.98rem;
  font-weight: 400;
}
.choice input { width: auto; margin-top: 0.15rem; flex: none; }
.check-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}
.check-consent input { width: auto; margin-top: 0.15rem; flex: none; }

/* Contactkaart / gegevens */
.contact-lines { list-style: none; padding: 0; margin: 0; }
.contact-lines li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  margin-bottom: 0.7em;
}
.contact-lines .label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
  min-width: 7ch;
  flex: none;
}

/* Kaart als link */
a.card { text-decoration: none; color: inherit; }
a.card:hover { text-decoration: none; }

/* Fieldset reset binnen formulier */
fieldset.field { display: block; }
