/* ==========================================================================
   KSA Roeland Lille — huisstijl
   Eén stylesheet, geen afhankelijkheden.
   Inhoud: 1 fonts · 2 tokens · 3 reset · 4 layout · 5 header · 6 hero
           7 componenten · 8 secties · 9 footer · 10 lightbox
           11 utilities · 12 donkere modus
   ========================================================================== */

/* ---------- 1. Fonts (zelf gehost) --------------------------------------- */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/baloo2-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/baloo2-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- 2. Design tokens -------------------------------------------- */
:root {
  /* Kleuren uit het bestaande KSA-materiaal */
  --blue: #0b5fa6;
  --blue-600: #0a5493;
  --blue-700: #073f6f;
  --navy: #0c2740;
  --navy-soft: #14395c;
  --yellow: #ffc233;
  --yellow-600: #eaa900;
  --brick: #e4572e;
  --green: #2f9e6f;
  --cream: #fdfaf4;
  --cream-2: #f6efe2;
  --white: #ffffff;

  /* Semantisch */
  --bg: var(--cream);
  --bg-alt: var(--cream-2);
  --surface: var(--white);
  --surface-2: #fffdf8;
  --text: #1b2a38;
  --text-soft: #4b5b6b;
  --text-invert: #ffffff;
  --text-invert-soft: rgba(255, 255, 255, 0.82);
  --border: #e6ddcb;
  --border-strong: #d5c9b1;
  --accent: var(--yellow);
  --primary: var(--blue);
  --primary-ink: #ffffff;
  /* Vaste donkere inkt voor tekst op geel of wit — mag NIET meeschakelen met de donkere modus. */
  --on-accent: #0c2740;

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Schaduwen */
  --sh-sm: 0 2px 6px rgba(12, 39, 64, 0.07);
  --sh-md: 0 8px 24px rgba(12, 39, 64, 0.09);
  --sh-lg: 0 18px 44px rgba(12, 39, 64, 0.13);
  --sh-inset: inset 0 -3px 0 rgba(12, 39, 64, 0.08);

  /* Layout */
  --container: 1160px;
  --container-narrow: 820px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --header-h: 68px;

  /* Type */
  --font-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- 3. Reset / basis --------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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 {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 1.4rem + 4.2vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
:where(p, li) { text-wrap: pretty; }

a {
  color: var(--blue-600);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.15s var(--ease);
}
a:hover { color: var(--brick); }

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

strong, b { font-weight: 700; }

ul, ol { padding-left: 1.25em; }
li + li { margin-top: 0.3em; }

hr {
  border: 0;
  border-top: 2px dashed var(--border-strong);
  margin: 2rem 0;
}

table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--yellow); color: var(--on-accent); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* ---------- 4. Layout ---------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.section--alt { background: var(--bg-alt); }
.section--navy {
  background: var(--navy);
  color: var(--text-invert);
}
.section--navy :is(h1, h2, h3, h4) { color: #fff; }
.section--navy a { color: var(--yellow); }
.section--navy a:hover { color: #fff; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.grid--tiles { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid--sidebar { grid-template-columns: 1fr; }
@media (min-width: 880px) {
  .grid--sidebar { grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
}

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 2rem; }

/* Sectiekop */
.sec-head { max-width: 60ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p { color: var(--text-soft); font-size: 1.08em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: color-mix(in srgb, var(--blue) 12%, transparent);
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.9rem;
}
.section--navy .eyebrow { color: var(--yellow); background: rgba(255, 194, 51, 0.16); }

/* Golf-scheiding */
.wave { display: block; width: 100%; height: clamp(40px, 6vw, 80px); }
.wave path { fill: currentColor; }
.wave-top { color: var(--bg); margin-bottom: -1px; }
.wave-alt { color: var(--bg-alt); }
.wave-navy { color: var(--navy); }

/* ---------- 5. Header --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.site-header.is-stuck {
  box-shadow: var(--sh-md);
  border-bottom-color: var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  margin-right: auto;
}
.brand:hover { color: var(--blue); }
.brand__logo {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--sh-sm);
  padding: 3px;
}
.brand__name { font-size: 1.12rem; display: block; }
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--border-strong);
  background: var(--surface);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  cursor: pointer;
}
.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 12px;
  flex: none;
}
.nav-toggle__bars span,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 5px; }
.nav-toggle__bars::after { bottom: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after { transform: translateY(-5px) rotate(-45deg); }

.nav { display: contents; }
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__list li { margin: 0; }
.nav__link {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav__link:hover { background: color-mix(in srgb, var(--blue) 10%, transparent); color: var(--blue-600); }
.nav__link[aria-current='page'] {
  color: var(--blue-600);
  background: color-mix(in srgb, var(--blue) 12%, transparent);
  box-shadow: inset 0 -3px 0 var(--yellow);
}

@media (max-width: 899px) {
  .nav {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 3px solid var(--yellow);
    box-shadow: var(--sh-lg);
    padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-115%);
    transition: transform 0.3s var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .nav__link { padding: 0.85rem 1rem; border-radius: var(--r-md); font-size: 1.15rem; }
  .nav .btn { margin-top: 0.75rem; width: 100%; justify-content: center; }
  .header-cta { display: none; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav { display: flex; align-items: center; gap: 0.75rem; }
  .nav .btn--mobile-only { display: none; }
}

/* ---------- 6. Hero ----------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 12% -5%, color-mix(in srgb, var(--blue) 18%, transparent), transparent 65%),
    radial-gradient(720px 420px at 92% 8%, rgba(255, 194, 51, 0.34), transparent 62%),
    linear-gradient(178deg, var(--cream-2), var(--cream) 62%);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2rem);
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}
.hero h1 { margin-bottom: 0.35em; }
.hero h1 .hl {
  position: relative;
  white-space: nowrap;
  color: var(--blue);
}
.hero h1 .hl::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.06em;
  height: 0.3em;
  background: var(--yellow);
  border-radius: var(--r-pill);
  z-index: -1;
  transform: rotate(-1.2deg);
}
.hero__lead {
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
  color: var(--text-soft);
  max-width: 46ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--border-strong);
  list-style: none;
  padding-left: 0;
}
.hero__facts li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
}
.hero__facts .ico { color: var(--blue); flex: none; }

/* Fotocollage */
.hero__art { position: relative; }
.photo-frame {
  position: relative;
  background: var(--white);
  padding: 0.7rem 0.7rem 3.2rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  rotate: -2deg;
}
.photo-frame img { border-radius: var(--r-sm); width: 100%; object-fit: cover; }
.photo-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.9rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-soft);
  font-size: 1.02rem;
}
.photo-frame::before,
.photo-frame::after {
  content: '';
  position: absolute;
  width: 74px;
  height: 24px;
  background: rgba(255, 194, 51, 0.72);
  box-shadow: 0 1px 4px rgba(12, 39, 64, 0.16);
}
.photo-frame::before { top: -11px; left: -18px; rotate: -26deg; }
.photo-frame::after { top: -11px; right: -18px; rotate: 26deg; }

.photo-frame--sm {
  position: absolute;
  right: -4%;
  bottom: -9%;
  width: 42%;
  rotate: 5deg;
  padding-bottom: 0.7rem;
  border: 4px solid #fff;
}
.photo-frame--sm::before, .photo-frame--sm::after { display: none; }
@media (max-width: 599px) { .photo-frame--sm { display: none; } }

/* Hero: de kleine foto hangt over de rechterhoek, dus schuift de titel naar links. */
@media (min-width: 600px) {
  .hero__art .photo-frame > figcaption {
    text-align: left;
    padding-left: 0.9rem;
    padding-right: 46%;
  }
}

.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-content: center;
  text-align: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: var(--brick);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--sh-md);
  rotate: -12deg;
  padding: 0.5rem;
}
.sticker b { display: block; font-size: 1.7rem; }
.sticker span { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hero .sticker { top: -14px; left: -14px; }

/* Paginakop (binnenpagina's) */
.page-head {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 380px at 8% 0%, rgba(255, 194, 51, 0.3), transparent 62%),
    linear-gradient(160deg, var(--navy), var(--blue-700) 72%, var(--blue-600));
  color: var(--text-invert);
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(2.5rem, 5vw, 4rem);
}
.page-head h1 { color: #fff; }
.page-head__lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--text-invert-soft);
  max-width: 58ch;
}
.page-head .eyebrow { color: var(--on-accent); background: var(--yellow); }
.page-head::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 26px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-invert-soft);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: '›'; margin-right: 0.35rem; opacity: 0.7; }
.breadcrumb a { color: #fff; text-decoration: none; opacity: 0.85; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ---------- 7. Componenten ---------------------------------------------- */

/* Knoppen */
.btn {
  --btn-bg: var(--blue);
  --btn-ink: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  padding: 0.8rem 1.4rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-ink);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 0 color-mix(in srgb, var(--btn-bg) 65%, #000);
  transition: transform 0.14s var(--ease), box-shadow 0.14s var(--ease), background 0.14s var(--ease);
}
.btn:hover {
  color: var(--btn-ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 color-mix(in srgb, var(--btn-bg) 65%, #000);
}
.btn:active { transform: translateY(2px); box-shadow: 0 1px 0 color-mix(in srgb, var(--btn-bg) 65%, #000); }
.btn--accent { --btn-bg: var(--yellow); --btn-ink: var(--on-accent); }
.btn--brick { --btn-bg: var(--brick); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 2.5px var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: #fff; box-shadow: inset 0 0 0 2.5px var(--navy); transform: translateY(-2px); }
.btn--light { --btn-bg: #fff; --btn-ink: var(--on-accent); box-shadow: 0 4px 0 rgba(12,39,64,.25); }
.btn--light:hover { box-shadow: 0 6px 0 rgba(12,39,64,.25); }
.btn--sm { font-size: 0.94rem; padding: 0.55rem 1rem; }
.btn--block { width: 100%; }

/* Kaarten */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.card__body { padding: clamp(1.1rem, 2.5vw, 1.6rem); flex: 1 1 auto; }
.card__body > :last-child { margin-bottom: 0; }
.card__foot {
  padding: 1rem clamp(1.1rem, 2.5vw, 1.6rem);
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 0.96rem;
}
.card__media { position: relative; background: var(--cream-2); }
.card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card h3 { margin-bottom: 0.35em; }

/* Klikbare kaart: hele kaart is doelwit via overlay-link */
.card__overlay-link { position: absolute; inset: 0; z-index: 2; }
.card__overlay-link span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

/* Snel-naar tegels */
.tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
  color: inherit;
}
.tile h3 { font-size: 1.2rem; margin-bottom: 0.2em; }
.tile p { color: var(--text-soft); font-size: 0.96rem; margin: 0; }
.tile__ico {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--blue) 12%, transparent);
  color: var(--blue-600);
}
.tile--accent .tile__ico { background: rgba(255, 194, 51, 0.28); color: var(--yellow-600); }
.tile--brick .tile__ico { background: rgba(228, 87, 46, 0.14); color: var(--brick); }
.tile--green .tile__ico { background: rgba(47, 158, 111, 0.14); color: var(--green); }
.tile__arrow { margin-left: auto; align-self: center; color: var(--text-soft); flex: none; transition: transform 0.18s var(--ease); }
.tile:hover .tile__arrow { transform: translateX(4px); color: var(--blue); }

/* Statistieken */
.stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}
.stats li {
  margin: 0;
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.stats b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.7rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stats span { font-size: 0.94rem; color: var(--text-soft); font-weight: 600; }
.section--navy .stats li { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.14); }
.section--navy .stats b { color: var(--yellow); }
.section--navy .stats span { color: var(--text-invert-soft); }

/* Groepskaart */
.afd {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.afd:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.afd__media { position: relative; }
.afd__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.afd__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.afd__body { padding: 1.25rem; flex: 1 1 auto; }
.afd__body h3 { margin-bottom: 0.15em; }
.afd__age { font-weight: 700; color: var(--blue-600); font-size: 0.95rem; margin-bottom: 0.6em; }
.afd__foot {
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  font-size: 0.94rem;
}
.afd--c1 { border-top: 5px solid var(--yellow); }
.afd--c2 { border-top: 5px solid var(--green); }
.afd--c3 { border-top: 5px solid var(--blue); }
.afd--c4 { border-top: 5px solid var(--brick); }
.afd--c5 { border-top: 5px solid var(--navy); }

/* Activiteitenkaart (kalender) */
.evt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.evt--past { opacity: 0.62; }
.evt__date {
  flex: none;
  width: 84px;
  text-align: center;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  line-height: 1.15;
}
.evt__date .m {
  display: block;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0;
}
.evt__date .d {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--navy);
  padding: 0.3rem 0 0.1rem;
}
.evt__date .y { display: block; font-size: 0.76rem; color: var(--text-soft); padding-bottom: 0.35rem; font-weight: 600; }
.evt__date--tbc .m { background: var(--text-soft); }
.evt__date--tbc .d {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.55rem 0.35rem 0.5rem;
  overflow-wrap: anywhere;
}
.evt h3 { margin-bottom: 0.2em; font-size: 1.22rem; }
.evt__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.6rem;
  padding: 0;
  list-style: none;
}
.evt__meta li { margin: 0; }
.evt p { margin-bottom: 0.5rem; color: var(--text-soft); }
.evt--highlight {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 194, 51, 0.35), var(--sh-md);
}

/* Labels */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: var(--r-pill);
  background: var(--cream-2);
  color: var(--navy-soft);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.tag--leden { background: rgba(11, 95, 166, 0.12); color: var(--blue-700); border-color: transparent; }
.tag--publiek { background: rgba(228, 87, 46, 0.13); color: #a83616; border-color: transparent; }
.tag--kamp { background: rgba(47, 158, 111, 0.15); color: #1c6a49; border-color: transparent; }
.tag--tbc { background: rgba(12, 39, 64, 0.08); color: var(--text-soft); border-color: transparent; }

/* Aftelklok */
.countdown {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--navy), var(--blue-700));
  color: #fff;
  box-shadow: var(--sh-lg);
}
@media (min-width: 760px) {
  .countdown { grid-template-columns: 1fr auto; }
}
.countdown .eyebrow { color: var(--yellow); background: rgba(255, 194, 51, 0.16); }
.countdown h2 { color: #fff; margin-bottom: 0.2em; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); }
.countdown p { color: var(--text-invert-soft); margin-bottom: 0; }
.countdown__clock { display: flex; gap: 0.6rem; }
.countdown__unit {
  min-width: 74px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  padding: 0.7rem 0.5rem;
}
.countdown__unit b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__unit span { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-invert-soft); }

/* Prijstabel */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-sm);
  -webkit-overflow-scrolling: touch;
}
.tbl { min-width: 460px; font-size: 0.98rem; }
.tbl th, .tbl td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.tbl thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 0;
  white-space: nowrap;
}
.tbl tbody tr:last-child :is(td, th) { border-bottom: 0; }
.tbl tbody tr:nth-child(even) { background: var(--surface-2); }
.tbl tbody th { font-weight: 700; color: var(--navy); }
.tbl .num { font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Definitielijst (specs) */
.specs { margin: 0; display: grid; gap: 0.15rem 1rem; grid-template-columns: auto 1fr; font-size: 0.98rem; }
.specs dt { font-weight: 700; color: var(--navy); }
.specs dd { margin: 0; color: var(--text-soft); }

/* Accordeon op basis van <details> */
.acc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.acc + .acc { margin-top: 0.85rem; }
.acc > summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem clamp(1rem, 2.5vw, 1.5rem);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem);
  color: var(--navy);
  list-style: none;
  transition: background 0.15s var(--ease);
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary:hover { background: var(--surface-2); }
.acc > summary::after {
  content: '';
  margin-left: auto;
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  rotate: 45deg;
  transition: rotate 0.2s var(--ease);
  translate: 0 -3px;
}
.acc[open] > summary::after { rotate: -135deg; translate: 0 2px; }
.acc[open] > summary { background: var(--surface-2); border-bottom: 1px solid var(--border); }
.acc__body { padding: clamp(1.1rem, 2.5vw, 1.6rem); }
.acc__body > :last-child { margin-bottom: 0; }
.acc__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brick);
  font-size: 0.95rem;
  background: rgba(228, 87, 46, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

/* Fotogalerij */
.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}
.gallery li { margin: 0; }
.gallery a {
  display: block;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--sh-sm);
  border: 4px solid #fff;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.gallery a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 39, 64, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.gallery a:hover { transform: scale(1.03) rotate(-0.8deg); box-shadow: var(--sh-md); }
.gallery a:hover::after { opacity: 1; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Contactkaart */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  border-radius: var(--r-lg);
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  box-shadow: var(--sh-sm);
}
.contact-card h3 { margin-bottom: 0.3em; }
.role {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: block;
  margin-bottom: 0.2em;
}
.contact-list { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.contact-list li { display: flex; gap: 0.6rem; align-items: flex-start; margin: 0 0 0.5rem; }
.contact-list .ico { flex: none; color: var(--blue); margin-top: 0.25em; }
.contact-list a { font-weight: 700; }

/* Info-blokken */
.note {
  padding: 1.1rem 1.3rem;
  border-radius: var(--r-md);
  background: rgba(255, 194, 51, 0.16);
  border-left: 5px solid var(--yellow);
  font-size: 0.98rem;
}
.note--info { background: rgba(11, 95, 166, 0.09); border-left-color: var(--blue); }
.note--todo { background: rgba(228, 87, 46, 0.1); border-left-color: var(--brick); }
.note > :last-child { margin-bottom: 0; }
.note strong { color: var(--navy); }

/* Grote CTA-band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 5vw, 3.25rem);
  background: linear-gradient(125deg, var(--brick), #f08a3c);
  color: #fff;
  box-shadow: var(--sh-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.92); max-width: 52ch; }
.cta-band .btn { margin-top: 1.25rem; }
.cta-band__deco {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
.cta-band--blue { background: linear-gradient(125deg, var(--blue-700), var(--blue)); }

/* Tijdlijn (jaar in vogelvlucht) */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: repeating-linear-gradient(var(--border-strong) 0 8px, transparent 8px 16px);
}
.timeline li { position: relative; margin: 0 0 1.3rem; padding-left: 2.75rem; }
.timeline li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--blue);
  box-shadow: var(--sh-sm);
}
.timeline li:nth-child(3n + 2)::before { border-color: var(--yellow); }
.timeline li:nth-child(3n + 3)::before { border-color: var(--brick); }
.timeline b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); }
.timeline .when { font-size: 0.88rem; font-weight: 700; color: var(--blue-600); }
.timeline p { margin: 0.2rem 0 0; color: var(--text-soft); font-size: 0.98rem; }

/* Filterknoppen */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0;
  list-style: none;
}
.filters li { margin: 0; }
.filter-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  border: 2px solid var(--border-strong);
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s var(--ease);
}
a.filter-btn { text-decoration: none; }
.filter-btn:hover { border-color: var(--blue); color: var(--blue-600); }
.filter-btn[aria-pressed='true'] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Documentlijst */
.doclist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.doclist li { margin: 0; }
.doclist a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  transition: transform 0.15s var(--ease), border-color 0.15s var(--ease);
}
.doclist a:hover { transform: translateX(3px); border-color: var(--brick); color: var(--navy); }
.doclist .ico { flex: none; color: var(--brick); }
.doclist .meta { margin-left: auto; font-weight: 600; font-size: 0.85rem; color: var(--text-soft); white-space: nowrap; }

/* Linklijst */
.linklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.linklist li { margin: 0; }
.linklist a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
}
.linklist a:hover { border-color: var(--blue); color: var(--blue-600); }

/* ---------- 8. Secties -------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.25em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75em; }
.prose ul { padding-left: 1.15em; }

.sidebar-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  box-shadow: var(--sh-sm);
}
.sidebar-block + .sidebar-block { margin-top: 1.25rem; }
.sidebar-block h3 { font-size: 1.15rem; }
.sidebar-block > :last-child { margin-bottom: 0; }
@media (min-width: 880px) {
  .sticky-side { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

address { font-style: normal; line-height: 1.7; }

.map-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  background: var(--surface);
}
.map-card__img {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(0deg, #e8eddf 0 22px, #dfe6d5 22px 24px),
    repeating-linear-gradient(90deg, #e8eddf 0 22px, #dfe6d5 22px 24px);
  display: grid;
  place-content: center;
  text-decoration: none;
  color: var(--navy);
  text-align: center;
  padding: 1.5rem;
  gap: 0.5rem;
}
.map-card__img:hover { color: var(--blue); }
.map-card__img .pin { font-size: 2.5rem; line-height: 1; }
.map-card__body { padding: 1.1rem 1.3rem; }

/* ---------- 9. Footer --------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: var(--text-invert-soft);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  font-size: 0.97rem;
}
.site-footer :is(h3, h4) { color: #fff; font-size: 1.1rem; margin-bottom: 0.7em; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); text-decoration: underline; }
.footer__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.footer__brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer__brand img { width: 46px; height: 46px; border-radius: 12px; background: #fff; padding: 3px; flex: none; }
.footer__brand b { font-family: var(--font-display); font-size: 1.18rem; color: #fff; display: block; line-height: 1.15; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin: 0 0 0.45rem; }
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  margin-top: 0.5rem;
}
.social:hover { background: var(--yellow); color: var(--on-accent) !important; border-color: var(--yellow); text-decoration: none !important; }
.footer__bottom {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
}
.footer__bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; padding: 0; margin: 0; }
.footer__bottom li { margin: 0; }

/* ---------- 10. Lightbox ------------------------------------------------ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8, 22, 36, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), visibility 0.2s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb__fig { margin: 0; max-width: min(1100px, 100%); text-align: center; }
.lb__img {
  max-width: 100%;
  max-height: 76dvh;
  width: auto;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  margin-inline: auto;
  background: #0c2740;
}
.lb__cap { color: rgba(255, 255, 255, 0.92); margin-top: 0.9rem; font-weight: 600; }
.lb__count { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; margin-top: 0.25rem; }
.lb__btn {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-content: center;
  backdrop-filter: blur(4px);
}
.lb__btn:hover { background: var(--yellow); color: var(--on-accent); }
.lb__close { top: clamp(0.75rem, 2vw, 1.5rem); right: clamp(0.75rem, 2vw, 1.5rem); }
.lb__prev { left: clamp(0.5rem, 2vw, 1.5rem); top: 50%; translate: 0 -50%; }
.lb__next { right: clamp(0.5rem, 2vw, 1.5rem); top: 50%; translate: 0 -50%; }
body.lb-open { overflow: hidden; }

/* ---------- 11. Utilities ----------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-soft); }
.lead { font-size: 1.12em; color: var(--text-soft); }
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.ico { display: inline-block; vertical-align: middle; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.actions--center { justify-content: center; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- 12. Donkere modus ------------------------------------------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d1b28;
    --bg-alt: #122336;
    --surface: #15283a;
    --surface-2: #1a3047;
    --text: #e9f0f7;
    --text-soft: #a9bccd;
    --border: #24405a;
    --border-strong: #2f5170;
    --navy: #eaf2fa;
    --navy-soft: #c8dcee;
    --blue: #4a9de0;
    --blue-600: #7cbdf0;
    --blue-700: #1c4f76;
    --cream: #0d1b28;
    --cream-2: #122336;
    --primary: #4a9de0;
  }
  body { color: var(--text); }
  h1, h2, h3, h4, h5 { color: var(--navy); }
  a { color: var(--blue-600); }
  a:hover { color: var(--yellow); }
  .site-header { background: color-mix(in srgb, #0d1b28 88%, transparent); }
  .brand { color: var(--navy); }
  .nav__link { color: var(--navy); }
  .hero {
    background:
      radial-gradient(1100px 520px at 12% -5%, rgba(74, 157, 224, 0.2), transparent 65%),
      radial-gradient(720px 420px at 92% 8%, rgba(255, 194, 51, 0.14), transparent 62%),
      linear-gradient(178deg, #122336, #0d1b28 62%);
  }
  .hero h1 .hl { color: var(--blue-600); }
  .hero h1 .hl::after { background: rgba(255, 194, 51, 0.5); }
  .page-head { background: linear-gradient(160deg, #0a1725, #16405f 72%, #1c5480); }
  .page-head h1 { color: #fff; }
  .section--navy { background: #0a1725; }
  .site-footer { background: #0a1725; }
  .evt__date .m { background: var(--blue-700); }
  .tbl thead th { background: var(--blue-700); }
  .photo-frame, .gallery a { background: var(--surface); border-color: var(--surface); }
  .photo-frame figcaption { color: var(--text-soft); }
  .btn--ghost { color: var(--navy); box-shadow: inset 0 0 0 2.5px var(--navy); }
  .btn--ghost:hover { background: var(--navy); color: #0d1b28; }
  .map-card__img {
    background:
      repeating-linear-gradient(0deg, #1b3348 0 22px, #16293b 22px 24px),
      repeating-linear-gradient(90deg, #1b3348 0 22px, #16293b 22px 24px);
    color: var(--navy);
  }
  .stats li, .card, .tile, .evt, .acc, .sidebar-block, .contact-card, .table-wrap, .doclist a, .linklist a, .afd, .filter-btn {
    background: var(--surface);
  }
  .card__foot, .afd__foot, .acc[open] > summary, .acc > summary:hover { background: var(--surface-2); }
  .note { background: rgba(255, 194, 51, 0.12); }
  .note--info { background: rgba(74, 157, 224, 0.13); }
  .note--todo { background: rgba(228, 87, 46, 0.14); }
  .tag { background: var(--surface-2); color: var(--navy-soft); }
  .tag--leden { background: rgba(74, 157, 224, 0.18); color: #bcdcf6; }
  .tag--publiek { background: rgba(228, 87, 46, 0.2); color: #f5b39a; }
  .tag--kamp { background: rgba(47, 158, 111, 0.2); color: #a6dcc4; }
  .filter-btn { color: var(--navy); }
  .filter-btn[aria-pressed='true'] { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }
  .timeline li::before { background: var(--surface); }
  /* Elementen met een donkere achtergrond in de lichte modus: die achtergrond wordt
     licht in de donkere modus, dus moet de tekst mee omslaan. */
  .skip-link, .afd__badge { background: var(--blue-700); color: #fff; }
  .skip-link:focus { color: #fff; }
}

/* ---------- Print ------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .cta-band, .btn, .filters, .lb { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: 0.5rem; }
  a::after { content: ' (' attr(href) ')'; font-size: 0.85em; color: #555; }
  .card, .evt, .acc, .table-wrap { break-inside: avoid; box-shadow: none; }
}
