/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --sage-50: #f0f7f3;
  --sage-100: #cee6d9;
  --sage-200: #a8d4be;
  --sage-300: #85be9e;
  --sage-400: #6aaa87;
  --sage-500: #518c6c;
  --sage-600: #3f6e55;
  --sage-700: #335a46;
  --sage-800: #284738;
  --sage-900: #1e352a;

  --terra-50: #fff6dc;
  --terra-100: #fcecc4;
  --terra-200: #eac078;
  --terra-300: #e5a15a;
  --terra-400: #d6814b;
  --terra-500: #c06a3a;
  --terra-600: #a5562e;
  --terra-700: #874524;
  --terra-800: #6a361c;
  --terra-900: #502814;

  --font-heading: Georgia, Cambria, "Times New Roman", serif;
  --font-body: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease-out-soft: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
body {
  margin: 0;
  color: var(--sage-800);
  background: #fff;
  font-family: var(--font-body);
  overflow-x: clip;
  overscroll-behavior-y: none;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: normal; font-size: inherit; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; vertical-align: middle; }
svg { display: block; vertical-align: middle; }
button { font: inherit; border: none; background: none; cursor: pointer; padding: 0; margin: 0; color: inherit; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.section-padding { padding: 5rem 1.5rem; }
@media (min-width: 768px)  { .section-padding { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .section-padding { padding-left: 5rem; padding-right: 5rem; } }
@media (min-width: 1280px) { .section-padding { padding-left: 8rem; padding-right: 8rem; } }

.container-narrow { max-width: 56rem; margin: 0 auto; }
.container-wide { max-width: 72rem; margin: 0 auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.btn-primary {
  background: var(--sage-500);
  color: #fff;
}
.btn-primary:hover { background: var(--sage-600); box-shadow: 0 10px 15px -3px rgba(81, 140, 108, 0.2); }
.btn-primary:focus-visible { outline: 2px solid var(--sage-400); outline-offset: 2px; }

.btn-secondary {
  border: 2px solid var(--sage-500);
  color: var(--sage-600);
  background: transparent;
}
.btn-secondary:hover { background: var(--sage-500); color: #fff; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.btn-secondary:focus-visible { outline: 2px solid var(--sage-400); outline-offset: 2px; }

.btn-accent {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: var(--terra-300);
  color: #fff;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.btn-accent:hover { background: var(--terra-400); box-shadow: 0 10px 15px -3px rgba(229, 161, 90, 0.2); }
.btn-accent:focus-visible { outline: 2px solid var(--terra-200); outline-offset: 2px; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgb(255, 255, 255);
  transition: box-shadow 0.5s;
  animation: navbar-drop 0.6s var(--ease-out-soft) both;
}
@keyframes navbar-drop {
  from { transform: translateY(-100px); }
  to { transform: translateY(0); }
}
.navbar.is-scrolled { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media (min-width: 768px) { .navbar-inner { padding: 0 3rem; } }

.navbar-logo { position: relative; z-index: 10; display: flex; align-items: center; gap: 0.75rem; }
.navbar-logo img { height: 3rem; width: auto; }

.navbar-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .navbar-links { display: flex; } }

.navbar-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 9999px;
  color: var(--sage-700);
  transition: color 0.3s, background-color 0.3s;
}
.navbar-link:hover { color: var(--sage-500); }
.navbar-link.is-active { color: var(--sage-600); background: var(--sage-100); }

.navbar-toggle {
  display: block;
  position: relative;
  z-index: 10;
  padding: 0.5rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .navbar-toggle { display: none; } }
.navbar-toggle-bars { width: 1.5rem; display: flex; flex-direction: column; gap: 0.375rem; }
.navbar-toggle-bars span { display: block; height: 2px; background: var(--sage-700); transition: all 0.3s; }
.navbar-toggle.is-open .bar-1 { transform: translateY(8px) rotate(45deg); }
.navbar-toggle.is-open .bar-2 { opacity: 0; }
.navbar-toggle.is-open .bar-3 { transform: translateY(-8px) rotate(-45deg); }

.navbar-mobile {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid transparent;
  transition: max-height 0.3s ease, border-color 0.3s ease;
}
@media (min-width: 1024px) { .navbar-mobile { display: none; } }
.navbar-mobile.is-open { max-height: 28rem; border-top-color: var(--sage-100); }
.navbar-mobile-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.navbar-mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sage-700);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s, transform 0.3s, background-color 0.2s, color 0.2s;
}
.navbar-mobile.is-open .navbar-mobile-link { opacity: 1; transform: translateX(0); }
.navbar-mobile-link:hover { background: var(--sage-50); }
.navbar-mobile-link.is-active { background: var(--sage-50); color: var(--sage-600); }
.navbar-mobile-inner a:nth-child(1) { transition-delay: 0s; }
.navbar-mobile-inner a:nth-child(2) { transition-delay: 0.05s; }
.navbar-mobile-inner a:nth-child(3) { transition-delay: 0.1s; }
.navbar-mobile-inner a:nth-child(4) { transition-delay: 0.15s; }
.navbar-mobile-inner a:nth-child(5) { transition-delay: 0.2s; }

/* ==========================================================================
   Footer reveal shell (desktop "curtain" effect)
   ========================================================================== */
.page-shell { position: relative; z-index: 10; background: #fff; overflow-x: clip; }
@media (min-width: 768px) {
  .page-shell.reveal-active {
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  }
}
.footer-slot { position: static; }
@media (min-width: 768px) {
  .footer-slot.reveal-active { position: fixed; inset-inline: 0; bottom: 0; z-index: 0; }
}

/* ==========================================================================
   Scroll-reveal system
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .navbar { animation: none !important; }
  .hero-eyebrow, .hero-title, .hero-lead, .hero-actions, .hero-image-wrap,
  .hero-split-eyebrow, .hero-split-title, .hero-split-lead, .hero-split-cta, .hero-split-image { animation: none !important; opacity: 1 !important; transform: none !important; }
  .scroll-cue-arrow { animation: none !important; }
}

/* Animated line (draws in/out continuously as it scrolls through view) */
[data-line] { overflow: hidden; }
[data-line] .line-fill {
  width: 100%; height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}
[data-line="vertical"] .line-fill { transform-origin: top; transform: scaleY(0); }

/* ==========================================================================
   Section heading
   ========================================================================== */
.section-heading { margin-bottom: 3rem; text-align: center; }
@media (min-width: 768px) { .section-heading { margin-bottom: 4rem; } }
.section-heading.align-left { text-align: left; }
.section-heading-label {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--terra-300);
}
.section-heading-label.light { color: var(--sage-300); }
.section-heading-title {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--sage-800);
}
@media (min-width: 768px) { .section-heading-title { font-size: 2.25rem; line-height: 2.5rem; } }
@media (min-width: 1024px) { .section-heading-title { font-size: 3rem; line-height: 1; } }
.section-heading-title.light { color: #fff; }
.section-heading-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  max-width: 42rem;
  line-height: 1.625;
  color: var(--sage-600);
}
.section-heading-subtitle.center { margin-left: auto; margin-right: auto; }
.section-heading-subtitle.light { color: var(--sage-200); }

.divider-wrap { max-width: 12.5rem; margin: 0 auto 2.5rem; }
.divider-line { height: 1px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sage-50);
}
@media (min-width: 1024px) { .hero { flex-direction: row; justify-content: flex-start; } }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(240, 247, 243, 0.8) 0%, transparent 55%, rgba(255, 246, 220, 0.4) 100%);
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .hero-inner { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr; padding-left: 5rem; padding-right: 5rem; } }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-300);
  margin-bottom: 1rem;
  animation: fade-up 0.6s 0.2s both;
}
.hero-title {
  font-size: 2.25rem;
  color: var(--sage-800);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  animation: fade-up 0.7s 0.3s both;
}
.hero-title .accent { color: var(--sage-500); }
@media (min-width: 768px)  { .hero-title { font-size: 3rem; line-height: 1; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; line-height: 1; } }

.hero-lead {
  font-size: 1.125rem;
  color: var(--sage-600);
  line-height: 1.625;
  max-width: 36rem;
  margin-bottom: 2rem;
  animation: fade-up 0.7s 0.45s both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: fade-up 0.7s 0.6s both; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-scale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  order: -1;
  animation: fade-scale 0.8s 0.4s both;
}
@media (min-width: 1024px) { .hero-image-wrap { order: 0; } }
.hero-image-frame { position: relative; width: 240px; height: 300px; }
@media (min-width: 640px)  { .hero-image-frame { width: 320px; height: 400px; } }
@media (min-width: 1024px) { .hero-image-frame { width: 420px; height: 520px; } }
.hero-image-decor {
  position: absolute; inset: -1rem;
  background: linear-gradient(to bottom right, var(--sage-200), var(--terra-50));
  border-radius: 2rem;
  transform: rotate(3deg);
}
.hero-image-inner {
  position: relative; width: 100%; height: 100%;
  border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero-image-inner img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.scroll-cue {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .scroll-cue {
    display: flex;
    position: fixed;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 40;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage-400);
  }
}
.scroll-cue:hover { color: var(--sage-600); }
.scroll-cue.is-visible { opacity: 1; pointer-events: auto; }
.scroll-cue-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-cue-arrow { animation: bob 1.8s ease-in-out infinite; }
.scroll-cue-arrow svg { width: 1.25rem; height: 1.25rem; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ==========================================================================
   Doelgroepen cards
   ========================================================================== */
.card-grid { max-width: 72rem; margin: 0 auto; display: grid; gap: 2rem; }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card { display: block; cursor: pointer; }
.card-image { position: relative; height: 18rem; border-radius: 1rem; overflow: hidden; margin-bottom: 1.25rem; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.card:hover .card-image img { transform: scale(1.05); }
.card-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30, 53, 42, 0.5), transparent); }
.card-title { position: absolute; bottom: 1.25rem; left: 1.25rem; color: #fff; font-size: 1.5rem; line-height: 2rem; }
.card-desc { color: var(--sage-600); line-height: 1.625; margin-bottom: 0.75rem; }
.card-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--sage-500); font-weight: 500; font-size: 0.875rem; line-height: 1.25rem; transition: gap 0.3s; }
.card:hover .card-link { gap: 0.75rem; }
.card-link svg { width: 1rem; height: 1rem; }

/* ==========================================================================
   Kennismaking
   ========================================================================== */
.kennismaking { background: var(--sage-50); }
.kennismaking-grid { max-width: 72rem; margin: 0 auto; display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .kennismaking-grid { grid-template-columns: 1fr 1fr; } }
.kennismaking-image { position: relative; aspect-ratio: 1 / 1; border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.kennismaking-image img { width: 100%; height: 100%; object-fit: cover; }
.kennismaking-text { position: relative; padding-left: 1.5rem; }
@media (min-width: 768px) { .kennismaking-text { padding-left: 2rem; } }
.kennismaking-line { position: absolute; left: 0; top: 0.25rem; bottom: 0.25rem; width: 1px; }
.kennismaking-text p { color: var(--sage-600); line-height: 1.625; margin-bottom: 1.25rem; }

.more-content { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.35s var(--ease-out-soft), opacity 0.35s var(--ease-out-soft); }
.more-content.is-open { opacity: 1; }

.read-more-btn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--sage-500); font-weight: 500; font-size: 0.875rem; line-height: 1.25rem;
  margin-bottom: 2rem; transition: color 0.2s; cursor: pointer;
}
.read-more-btn:hover { color: var(--sage-700); }
.read-more-btn svg { width: 1rem; height: 1rem; transition: transform 0.3s; }
.read-more-btn.is-open svg { transform: rotate(180deg); }

/* ==========================================================================
   Registraties (dark section)
   ========================================================================== */
.registraties { background: var(--sage-800); color: #fff; }
.registraties-grid { max-width: 64rem; margin: 0 auto; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .registraties-grid { grid-template-columns: repeat(3, 1fr); } }
.reg-card { height: 100%; padding: 1.5rem; border-radius: 1rem; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.reg-icon { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: rgba(229, 161, 90, 0.15); color: var(--terra-300); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.reg-icon svg { width: 1.5rem; height: 1.5rem; }
.reg-title { font-size: 1.125rem; line-height: 1.75rem; color: #fff; margin-bottom: 1rem; }
.reg-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; line-height: 1.25rem; color: var(--sage-200); }
.reg-list li { display: flex; align-items: flex-start; gap: 0.625rem; }
.reg-list svg { width: 1rem; height: 1rem; margin-top: 0.125rem; color: var(--terra-300); flex-shrink: 0; }
.reg-list a { text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.3); transition: color 0.2s, text-decoration-color 0.2s; }
.reg-list a:hover { color: #fff; text-decoration-color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--sage-50); border-top: 1px solid var(--sage-100); }
.footer-inner { max-width: 72rem; margin: 0 auto; padding: 3.5rem 1.5rem; }
@media (min-width: 768px) { .footer-inner { padding-left: 3rem; padding-right: 3rem; } }
.footer-top { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .footer-top { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 4rem; } }
.footer-brand { flex-shrink: 0; }
.footer-brand img { height: 3.5rem; width: auto; margin-bottom: 1rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.875rem; line-height: 1.25rem; color: var(--sage-500); }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--sage-700); }
.footer-text { }
@media (min-width: 768px) { .footer-text { max-width: 32rem; margin-left: auto; } }
.footer-text p { font-size: 0.875rem; color: var(--sage-700); line-height: 1.625; }
@media (min-width: 768px) { .footer-text p { font-size: 1rem; } }
.footer-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.footer-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 500; font-size: 0.875rem; line-height: 1.25rem; transition: all 0.3s; cursor: pointer; }
.footer-btn svg { width: 1rem; height: 1rem; }
.footer-btn-accent { background: var(--terra-400); color: #fff; }
.footer-btn-accent:hover { background: var(--terra-500); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.footer-btn-outline { border: 2px solid var(--sage-300); color: var(--sage-700); }
.footer-btn-outline:hover { background: var(--sage-100); }

.footer-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--sage-100); font-size: 0.875rem; line-height: 1.25rem; }
.footer-nav a { color: var(--sage-600); transition: color 0.2s; }
.footer-nav a:hover { color: var(--terra-400); }

.footer-bottom { border-top: 1px solid var(--sage-100); padding-top: 1.5rem; margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { color: var(--sage-500); font-size: 0.75rem; }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; color: var(--sage-500); font-size: 0.75rem; }
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--sage-700); }
.footer-legal-sep { color: var(--sage-200); }

/* ==========================================================================
   One-time reveal (fade/slide in once, honours delay/duration) — used on
   the contact page and the simple legal/reference pages.
   ========================================================================== */
[data-reveal-once] { opacity: 0; transform: translateY(64px); transition: opacity 0.7s var(--ease-out-soft), transform 0.7s var(--ease-out-soft); }
[data-reveal-once].is-visible { opacity: 1; transform: translate(0, 0); }
[data-reveal-once="left"] { transform: translateX(64px); }
[data-reveal-once="right"] { transform: translateX(-64px); }
[data-reveal-once="down"] { transform: translateY(-64px); }

/* Staggered-once list (each child fades up in sequence, once) */
[data-stagger-once-item] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease-out-soft), transform 0.6s var(--ease-out-soft); }
[data-stagger-once-item].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal-once], [data-stagger-once-item] { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Accordion
   ========================================================================== */
.accordion-group { display: flex; flex-direction: column; gap: 1rem; }
.accordion { border-radius: 1rem; border: 2px solid var(--sage-200); background: #fff; overflow: hidden; transition: all 0.3s; }
.accordion:hover { border-color: var(--sage-300); }
.accordion.is-open { border-color: var(--sage-400); background: rgba(240, 247, 243, 0.5); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.accordion.accent-terra { border-color: var(--terra-100); }
.accordion.accent-terra:hover { border-color: var(--terra-200); }
.accordion.accent-terra.is-open { border-color: var(--terra-300); background: rgba(255, 246, 220, 0.5); }
.accordion-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; cursor: pointer; }
@media (min-width: 768px) { .accordion-header { padding: 1.5rem 2rem; } }
.accordion-header-left { display: flex; align-items: center; gap: 1rem; }
.accordion-title { font-size: 1.25rem; line-height: 1.75rem; text-align: left; color: var(--sage-800); }
@media (min-width: 768px) { .accordion-title { font-size: 1.5rem; line-height: 2rem; } }
.accordion-chevron { flex-shrink: 0; margin-left: 1rem; color: var(--sage-400); transition: transform 0.3s; }
.accordion.accent-terra .accordion-chevron { color: var(--terra-300); }
.accordion.is-open .accordion-chevron { transform: rotate(180deg); }
.accordion-chevron svg { width: 1.5rem; height: 1.5rem; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out-soft); }
.accordion-panel-inner { padding: 0 1.5rem 1.5rem; }
@media (min-width: 768px) { .accordion-panel-inner { padding: 0 2rem 2rem; } }
.accordion-panel-content { border-top: 1px solid var(--sage-100); padding-top: 1.5rem; }
.accordion-panel-content h4 { font-size: 1.125rem; line-height: 1.75rem; color: var(--sage-800); margin-bottom: 1rem; }
.accordion-panel-content > p { color: var(--sage-600); line-height: 1.625; margin-bottom: 1.5rem; }

/* Shared content bits used inside accordions / legal pages */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.chip { padding: 0.5rem 1rem; border-radius: 9999px; background: var(--sage-100); color: var(--sage-700); font-size: 0.875rem; line-height: 1.25rem; font-weight: 500; border: 1px solid var(--sage-200); }
.chip-sm { padding: 0.25rem 0.75rem; font-size: 0.75rem; line-height: 1rem; border-radius: 9999px; background: var(--sage-200); color: var(--sage-700); font-weight: 500; }

.info-grid { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-card { padding: 1rem; border-radius: 0.75rem; background: var(--terra-50); border: 1px solid var(--terra-100); }
.info-card.sage { background: var(--sage-50); border-color: var(--sage-100); }
.info-card h5 { font-weight: 500; color: var(--sage-800); margin-bottom: 0.25rem; font-size: 1rem; }
.info-card p { color: var(--sage-600); font-size: 0.875rem; line-height: 1.25rem; }

.bullet-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.bullet-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.bullet-list svg { width: 1.25rem; height: 1.25rem; margin-top: 0.125rem; color: var(--terra-300); flex-shrink: 0; }
.bullet-list span { color: var(--sage-600); font-size: 0.875rem; line-height: 1.25rem; }

.check-grid { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .check-grid { grid-template-columns: 1fr 1fr; } }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem; border-radius: 0.5rem; background: var(--sage-50); }
.check-item svg { width: 1.25rem; height: 1.25rem; margin-top: 0.125rem; color: var(--sage-500); flex-shrink: 0; }
.check-item strong { display: block; font-weight: 500; color: var(--sage-800); font-size: 0.875rem; line-height: 1.25rem; }
.check-item p { color: var(--sage-600); font-size: 0.875rem; line-height: 1.25rem; }

.timeline { display: flex; flex-direction: column; gap: 1.5rem; }
.timeline-step { display: flex; gap: 1.25rem; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; }
.timeline-num { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: var(--terra-300); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; flex-shrink: 0; }
.timeline-line { width: 1px; flex: 1; background: var(--terra-100); margin-top: 0.5rem; }
.timeline-body { padding-bottom: 0.5rem; }
.timeline-body h5 { font-weight: 500; color: var(--sage-800); margin-bottom: 0.25rem; }
.timeline-body p { color: var(--sage-600); font-size: 0.875rem; line-height: 1.625; }

.phase-list { display: grid; gap: 1.5rem; }
.phase-card { padding: 1.25rem; border-radius: 0.75rem; background: var(--sage-50); border: 1px solid var(--sage-100); }
.phase-card h5 { font-size: 1.125rem; line-height: 1.75rem; color: var(--sage-700); margin-bottom: 0.75rem; }
.phase-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.phase-card li { display: flex; align-items: flex-start; gap: 0.75rem; }
.phase-card li svg { width: 1rem; height: 1rem; margin-top: 0.25rem; color: var(--sage-400); flex-shrink: 0; }
.phase-card li span { color: var(--sage-600); font-size: 0.875rem; line-height: 1.25rem; }

.method-list { display: flex; flex-direction: column; gap: 1rem; }
.method-card { padding: 1.25rem; border-radius: 0.75rem; background: rgba(255, 246, 220, 0.6); border: 1px solid var(--terra-100); }
.method-card.sage-tone { background: var(--sage-50); border-color: var(--sage-200); }
.method-card h5 { font-weight: 500; color: var(--sage-800); margin-bottom: 0.5rem; }
.method-card p { color: var(--sage-600); font-size: 0.875rem; line-height: 1.625; }

.ehealth-box { padding: 1.25rem; border-radius: 0.75rem; background: var(--sage-100); border: 1px solid var(--sage-200); }
.ehealth-box h4 { font-weight: 500; color: var(--sage-800); margin-bottom: 0.75rem; }
.ehealth-box p { color: var(--sage-600); font-size: 0.875rem; line-height: 1.625; margin-bottom: 0.75rem; }
.ehealth-box ul { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.875rem; line-height: 1.25rem; color: var(--sage-600); }

.tariff-box { padding: 1.25rem; border-radius: 0.75rem; background: var(--sage-50); border: 1px solid var(--sage-100); }
.tariff-box.terra { background: var(--terra-50); border-color: var(--terra-100); }
.tariff-box.white { background: #fff; border-color: var(--sage-200); }
.tariff-box.dark { background: var(--sage-800); color: #fff; }
.tariff-box h4 { font-size: 1.125rem; line-height: 1.75rem; color: var(--sage-800); margin-bottom: 0.75rem; }
.tariff-box.dark p { color: var(--sage-200); font-size: 0.875rem; line-height: 1.25rem; margin-bottom: 0; }
.tariff-box.dark strong { color: #fff; }
.tariff-box p { color: var(--sage-600); font-size: 0.875rem; line-height: 1.625; margin-bottom: 0.75rem; }
.tariff-box p.strong { color: var(--sage-700); font-weight: 500; }
.tariff-box p:last-child { margin-bottom: 0; }
.tariff-box .fine { font-size: 0.875rem; color: var(--sage-600); line-height: 1.625; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--sage-100); }
.tariff-box .fine a { color: var(--sage-700); }
.tariff-box .fine a:hover { color: var(--sage-900); }
.tariff-box p a, .accordion-panel-content p a { color: var(--sage-700); text-decoration: underline; transition: color 0.2s; }
.tariff-box p a:hover, .accordion-panel-content p a:hover { color: var(--sage-900); }

.table-scroll { overflow-x: auto; overflow-y: visible; }
.pricing-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.pricing-table thead tr { border-bottom: 1px solid var(--sage-200); }
.pricing-table th { text-align: left; padding: 0.75rem 0; color: var(--sage-700); font-weight: 500; line-height: 1.25rem; }
.pricing-table th:last-child { text-align: right; }
.pricing-table td { padding: 0.75rem 0; color: var(--sage-600); line-height: 1.25rem; border-bottom: 1px solid var(--sage-100); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child { text-align: right; font-weight: 500; color: var(--sage-800); }

.stat-callout { padding: 1.25rem; border-radius: 0.75rem; background: var(--sage-800); color: #fff; margin-bottom: 1.5rem; }
.stat-callout p { color: var(--sage-200); font-size: 0.875rem; line-height: 1.625; }
.accordion-panel-content .stat-callout a { color: #fff; text-decoration: underline; transition: color 0.2s; }
.accordion-panel-content .stat-callout a:hover { color: var(--terra-200); }
.stat-callout strong { color: #fff; }

/* ==========================================================================
   Content-page hero variants (contact / kind-en-jeugd / jong-volwassenen /
   young-professionals)
   ========================================================================== */
.contact-hero { position: relative; padding: 6rem 1.5rem 2.5rem; background: var(--sage-50); }
@media (min-width: 768px) { .contact-hero { padding-left: 3rem; padding-right: 3rem; } }
.contact-hero-inner { max-width: 72rem; margin: 0 auto; text-align: center; }
.contact-hero h1 { font-size: 1.875rem; color: var(--terra-400); line-height: 1.25; margin-bottom: 1rem; }
@media (min-width: 768px) { .contact-hero h1 { font-size: 2.25rem; line-height: 2.5rem; } }
.contact-hero p { font-size: 1.125rem; color: var(--sage-600); line-height: 1.625; max-width: 42rem; margin: 0 auto; }

.banner { background: var(--sage-800); }
.banner-inner { max-width: 72rem; margin: 0 auto; padding: 1.25rem 1.5rem; }
@media (min-width: 768px) { .banner-inner { padding-left: 3rem; padding-right: 3rem; } }
.banner-content { display: flex; align-items: flex-start; gap: 0.75rem; }
.banner-icon { width: 1.25rem; height: 1.25rem; color: var(--terra-300); flex-shrink: 0; margin-top: 0.125rem; }
.banner-content p { color: var(--sage-200); font-size: 0.875rem; line-height: 1.25rem; }
.banner-content strong { color: #fff; }
.banner-content .small { font-size: 0.75rem; line-height: 1rem; margin-top: 0.375rem; }
.banner-content .warn { color: var(--terra-200); font-size: 0.75rem; line-height: 1rem; margin-top: 0.375rem; }

.contact-section { padding: 3rem 1.5rem 5rem; background: #fff; }
@media (min-width: 768px) { .contact-section { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .contact-section { padding-left: 5rem; padding-right: 5rem; } }
@media (min-width: 1280px) { .contact-section { padding-left: 8rem; padding-right: 8rem; } }
.contact-grid { max-width: 72rem; margin: 0 auto; display: grid; gap: 4rem; min-width: 0; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { padding: 1rem; border-radius: 1rem; background: var(--sage-50); border: 1px solid var(--sage-100); display: flex; align-items: flex-start; gap: 0.75rem; }
@media (min-width: 640px) { .contact-card { padding: 1.5rem; gap: 1.25rem; } }
.contact-card-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: var(--sage-500); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
@media (min-width: 640px) { .contact-card-icon { width: 3rem; height: 3rem; } }
.contact-card-icon svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 640px) { .contact-card-icon svg { width: 1.5rem; height: 1.5rem; } }
.contact-card h3 { font-size: 1.125rem; line-height: 1.75rem; color: var(--sage-800); margin-bottom: 0.25rem; }
.contact-card > div:not(.contact-card-icon) { min-width: 0; flex: 1; }
.contact-card a { color: var(--sage-600); transition: color 0.2s; font-size: 0.875rem; line-height: 1.25rem; }
.contact-card a:hover { color: var(--sage-500); }
@media (min-width: 768px) { .contact-card a.text-md { font-size: 1rem; line-height: 1.5rem; } }
.contact-card .note { color: var(--sage-500); font-size: 0.875rem; line-height: 1.25rem; margin-top: 0.25rem; }
.contact-card p { color: var(--sage-600); font-size: 1rem; line-height: 1.5rem; }
a.zivver-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; padding: 0.625rem 1.25rem; background: var(--sage-500); color: #fff; border-radius: 9999px; font-size: 0.875rem; line-height: 1.25rem; font-weight: 500; transition: all 0.3s; }
a.zivver-btn:hover { background: var(--sage-600); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.zivver-btn svg { width: 1rem; height: 1rem; }

.bereikbaarheid-toggle { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; line-height: 1.25rem; color: var(--terra-400); transition: color 0.2s; margin-top: 0.75rem; cursor: pointer; }
.bereikbaarheid-toggle:hover { color: var(--terra-500); }
.bereikbaarheid-toggle svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.bereikbaarheid-panel { display: none; margin-top: 0.75rem; padding: 1rem; border-radius: 0.75rem; background: var(--terra-50); border: 1px solid var(--terra-100); }
.bereikbaarheid-panel.is-open { display: block; }
.bereikbaarheid-panel p { color: var(--sage-600); font-size: 0.875rem; line-height: 1.625; }
.bereikbaarheid-panel p + p { margin-top: 0.5rem; }

.contact-media { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .contact-media { position: sticky; top: 7rem; } }
.contact-map { border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); border: 1px solid var(--sage-100); }
.contact-map iframe { width: 100%; height: 320px; border: 0; display: block; }
.contact-photo { border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.contact-photo img { width: 100%; height: auto; display: block; }
.contact-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-photo-grid .contact-photo { border-radius: 0.75rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.contact-photo-grid img { height: 12rem; object-fit: cover; }

.hero-split { position: relative; max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .hero-split { padding: 0 3rem; } }
@media (min-width: 1024px) { .hero-split { grid-template-columns: 1fr 1fr; } }
.hero-split-eyebrow { display: inline-block; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; animation: fade-up 0.6s 0.2s both; }
.hero-split-title { font-size: 2.25rem; line-height: 1.25; margin-bottom: 1.5rem; animation: fade-up 0.7s 0.3s both; }
@media (min-width: 768px) { .hero-split-title { font-size: 3rem; line-height: 1; } }
.hero-split-lead { font-size: 1.125rem; line-height: 1.625; margin-bottom: 2rem; animation: fade-up 0.7s 0.45s both; }
.hero-split-cta { animation: fade-up 0.7s 0.6s both; }
.hero-split-image { position: relative; overflow: hidden; animation: fade-scale 0.8s 0.4s both; }
.hero-split-image img { width: 100%; height: auto; display: block; }

.hero-terra { position: relative; padding: 8rem 0 5rem; overflow: hidden; background: linear-gradient(to bottom right, var(--terra-50), #fff, var(--sage-50)); }
.hero-terra-shape { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: rgba(255, 246, 220, 0.4); border-bottom-left-radius: 8rem; display: none; }
@media (min-width: 1024px) { .hero-terra-shape { display: block; } }
.hero-terra .hero-split-eyebrow { color: var(--terra-400); }
.hero-terra .hero-split-title { color: var(--sage-800); }
.hero-terra .hero-split-title .accent { color: var(--terra-400); }
.hero-terra .hero-split-lead { color: var(--sage-600); }
.hero-terra .hero-split-image { border-radius: 2rem; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15); border: 4px solid #fff; }

.hero-sage { position: relative; padding: 8rem 0 5rem; overflow: hidden; background: linear-gradient(to bottom, var(--sage-100), var(--sage-50), #fff); }
.hero-sage-blur { position: absolute; border-radius: 9999px; filter: blur(64px); }
.hero-sage-blur.one { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: rgba(168, 212, 190, 0.3); }
.hero-sage-blur.two { bottom: 2.5rem; right: 5rem; width: 24rem; height: 24rem; background: rgba(206, 230, 217, 0.4); }
.hero-sage .hero-split-eyebrow { color: var(--sage-500); }
.hero-sage .hero-split-title { color: var(--sage-800); }
.hero-sage .hero-split-title .accent { color: var(--sage-500); }
.hero-sage .hero-split-lead { color: var(--sage-600); }
.hero-sage .hero-split-image { border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15); }
.hero-sage .hero-split-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30, 53, 42, 0.2), transparent); }

.hero-dark { position: relative; padding: 8rem 0 5rem; overflow: hidden; background: var(--sage-800); }
.hero-dark-shape.one { position: absolute; top: 0; right: 0; width: 33.333%; height: 100%; background: rgba(229, 161, 90, 0.1); border-bottom-left-radius: 12rem; }
.hero-dark-shape.two { position: absolute; bottom: 0; left: 0; width: 50%; height: 50%; background: rgba(51, 90, 70, 0.5); border-top-right-radius: 8rem; }
.hero-dark .hero-split-eyebrow { color: var(--terra-300); }
.hero-dark .hero-split-title { color: #fff; }
.hero-dark .hero-split-title .accent { color: var(--terra-300); }
.hero-dark .hero-split-lead { color: var(--sage-200); }
.hero-dark .hero-split-image { border-radius: 1rem; border: 2px solid var(--sage-700); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4); }

.accordions-section { padding: 5rem 1.5rem; background: #fff; }
@media (min-width: 768px) { .accordions-section { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .accordions-section { padding-left: 5rem; padding-right: 5rem; } }
@media (min-width: 1280px) { .accordions-section { padding-left: 8rem; padding-right: 8rem; } }
.accordions-inner { max-width: 56rem; margin: 0 auto; }
.intro-text { max-width: 820px; margin: 0 auto 4rem; text-align: center; }
.intro-text p { font-size: 1.125rem; color: var(--sage-600); line-height: 1.625; }

/* ==========================================================================
   Legal / reference pages (checklist, algemene voorwaarden, privacy)
   ========================================================================== */
.legal-page { padding-top: 8rem; padding-bottom: 5rem; background: #fff; }
.legal-inner { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .legal-inner { padding: 0 3rem; } }
.legal-eyebrow { display: inline-block; font-size: 0.875rem; line-height: 1.25rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terra-300); margin-bottom: 1rem; }
.legal-title { font-size: 2.25rem; color: var(--sage-800); line-height: 1.25; margin-bottom: 2rem; }
@media (min-width: 768px) { .legal-title { font-size: 3rem; line-height: 1; } }
.legal-lead { color: var(--sage-600); line-height: 1.625; font-size: 0.9375rem; margin-bottom: 2.5rem; }
.legal-content { display: flex; flex-direction: column; gap: 2rem; color: var(--sage-600); line-height: 1.625; font-size: 0.9375rem; }
.legal-content h2 { font-size: 1.25rem; line-height: 1.75rem; color: var(--sage-800); margin-bottom: 0.75rem; }
.legal-content p + p { margin-top: 0.75rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.25rem; }
.legal-content a { color: var(--sage-500); text-decoration: underline; transition: color 0.2s; }
.legal-content a:hover { color: var(--sage-700); }

.checklist-items { display: flex; flex-direction: column; gap: 1rem; }
.checklist-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: 0.75rem; background: var(--sage-50); border: 1px solid var(--sage-100); }
.checklist-num { width: 2rem; height: 2rem; border-radius: 0.5rem; background: var(--sage-500); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 500; flex-shrink: 0; }
.checklist-item p { font-size: 0.9375rem; line-height: 1.625; color: var(--sage-600); padding-top: 0.25rem; }
