/* ==========================================================================
   Administratie- en Belastingadvieskantoor Nelissen
   Huisstijl / stylesheet
   ========================================================================== */

:root {
  /* Kleuren - afgeleid van het logo (teal #649c8f met zwart) */
  --brand:     #649c8f;   /* de exacte kleur uit het logo */
  --ink-900:   #0a2622;
  --ink-800:   #0e332c;
  --ink-700:   #164a40;
  --ink-600:   #1f6154;
  --teal-500:  #4a9184;
  --teal-050:  #e6f0ed;

  --gold-600:  #a97722;
  --gold-500:  #c08a2e;
  --gold-100:  #f6edda;

  --ink:       #16221f;
  --muted:     #566a65;
  --line:      #dde5e2;
  --surface:   #f5f8f7;
  --surface-2: #eaf1ef;
  --white:     #ffffff;

  --ok: #1c7a4f;

  /* Typografie */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Maatvoering */
  --wrap: 1160px;
  --wrap-narrow: 760px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(10, 38, 34, .06), 0 2px 8px rgba(10, 38, 34, .05);
  --shadow-md: 0 4px 12px rgba(10, 38, 34, .07), 0 14px 34px rgba(10, 38, 34, .08);
  --shadow-lg: 0 10px 24px rgba(10, 38, 34, .10), 0 30px 70px rgba(10, 38, 34, .12);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--ink-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -0.022em; color: var(--ink-900); font-weight: 700; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.35rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.012em; }
p { text-wrap: pretty; }

::selection { background: var(--ink-800); color: #fff; }

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

/* --- Layout -------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 2rem + 5vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 1.5rem + 3vw, 4rem) 0; }
.section--surface { background: var(--surface); }
.section--line { border-top: 1px solid var(--line); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink-800); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --- Eyebrow / kop ------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.eyebrow--light { color: var(--gold-500); }

.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); color: var(--muted); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 1rem + 2vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 + p { margin-top: 1rem; }

/* --- Knoppen ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font: inherit; font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--ink-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--ink-700); color: #fff; box-shadow: var(--shadow-md); }

.btn--gold { background: var(--gold-500); color: #1c1305; }
.btn--gold:hover { background: var(--gold-600); color: #fff; }

.btn--ghost { border-color: rgba(10, 38, 34, .22); color: var(--ink-800); background: transparent; }
.btn--ghost:hover { border-color: var(--ink-800); background: var(--ink-800); color: #fff; }

.btn--ghost-light { border-color: rgba(255, 255, 255, .38); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--ink-800); border-color: #fff; }

.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; text-decoration: none; color: var(--ink-700);
}
.arrow-link span { transition: transform .18s ease; }
.arrow-link:hover span { transform: translateX(4px); }

/* --- Header -------------------------------------------------------------- */
.topbar {
  background: var(--ink-900); color: rgba(255, 255, 255, .82);
  font-size: .85rem;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .35rem 1.6rem; align-items: center; justify-content: space-between; padding: .5rem 0; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--gold-500); }
.topbar-items { display: flex; flex-wrap: wrap; gap: .35rem 1.4rem; align-items: center; }
.topbar-items span { display: inline-flex; align-items: center; gap: .45rem; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .85rem 0; }

.logo { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink-900); }
.logo-mark { flex: none; height: 44px; width: auto; }
.logo-text { display: grid; line-height: 1.15; }
.logo-text strong { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }
.logo-text small { font-size: .72rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: .96rem;
  padding: .5rem .8rem; border-radius: var(--r-sm); position: relative;
}
.nav a:hover { color: var(--ink-800); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--ink-800); font-weight: 650; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .16rem;
  height: 2px; background: var(--gold-500); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: .6rem; }
.nav > .btn { display: none; } /* alleen zichtbaar in het mobiele menu */

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .nav {
    position: fixed; inset: 0 0 auto; top: 69px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.25rem; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: .85rem .25rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.02rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 1rem; border-bottom: 0; }
  .topbar-items span.hide-sm { display: none; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(192, 138, 46, .30), transparent 62%),
    radial-gradient(900px 620px at 8% 108%, rgba(100, 156, 143, .40), transparent 60%),
    linear-gradient(160deg, var(--ink-900) 0%, var(--ink-800) 46%, var(--ink-700) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 90% at 70% 10%, #000 10%, transparent 72%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { padding: clamp(3.5rem, 2rem + 6vw, 7rem) 0 clamp(3rem, 2rem + 4vw, 5rem); max-width: 46rem; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero p { margin-top: 1.35rem; font-size: clamp(1.06rem, 1rem + .45vw, 1.28rem); color: rgba(255, 255, 255, .84); max-width: 40rem; }
.hero .btn-row { margin-top: 2.2rem; }

.hero-facts {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px;
  background: rgba(255, 255, 255, .16);
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-facts div {
  background: rgba(10, 38, 34, .55); padding: 1.5rem clamp(1.25rem, 4vw, 2.4rem);
}
.hero-facts strong { display: block; font-size: 1.55rem; color: #fff; letter-spacing: -.02em; }
.hero-facts span { font-size: .9rem; color: rgba(255, 255, 255, .7); }

/* --- Page hero (subpagina's) --------------------------------------------- */
.page-hero {
  color: #fff;
  background: linear-gradient(150deg, var(--ink-900), var(--ink-700));
  padding: clamp(2.75rem, 2rem + 3.5vw, 4.75rem) 0;
}
.page-hero h1 { color: #fff; }
.page-hero p { margin-top: 1rem; color: rgba(255, 255, 255, .82); max-width: 58ch; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: rgba(255, 255, 255, .62); margin-bottom: .9rem; }
.breadcrumb a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-500); }

/* --- Grid & kaarten ------------------------------------------------------ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
@media (max-width: 460px) { .grid-2 { grid-template-columns: 1fr; } }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .97rem; }
.card ul { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: .45rem; }
.card ul li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--muted); }
.card ul li::before {
  content: ""; position: absolute; left: 0; top: .58em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold-500);
}
.card--link { text-decoration: none; color: inherit; display: block; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #bcd2cb; color: inherit; }
.card--link h3 { transition: color .18s ease; }
.card--link:hover h3 { color: var(--ink-600); }

.icon-badge {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--teal-050); color: var(--ink-700); margin-bottom: 1.1rem;
}
.icon-badge svg { width: 24px; height: 24px; }
.icon-badge--gold { background: var(--gold-100); color: var(--gold-600); }

/* --- Stappen ------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.step { position: relative; padding-top: 3.4rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink-800); color: #fff; font-weight: 700; font-size: 1.05rem;
}
.step h3 { margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .97rem; }

/* --- Split (tekst + zijpaneel) ------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.15fr .85fr; } }
.split--reverse > *:first-child { order: 2; }
@media (max-width: 899px) { .split--reverse > *:first-child { order: 0; } }

.panel {
  background: var(--ink-800); color: #fff; border-radius: var(--r-lg);
  padding: clamp(1.75rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.panel h3 { color: #fff; }
.panel p { color: rgba(255, 255, 255, .78); font-size: .97rem; }
.panel dl { margin-top: 1.5rem; display: grid; gap: 1rem; }
.panel dt { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-500); font-weight: 700; }
.panel dd { margin: .15rem 0 0; color: #fff; }
.panel dd a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .3); }
.panel dd a:hover { color: var(--gold-500); border-color: var(--gold-500); }

.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; }
.checklist li { display: grid; grid-template-columns: 24px 1fr; gap: .75rem; align-items: start; }
.checklist svg { width: 22px; height: 22px; color: var(--ok); margin-top: .18em; }

/* --- Quote --------------------------------------------------------------- */
.quote {
  background: var(--ink-800); color: #fff;
  background-image: radial-gradient(800px 380px at 15% 0%, rgba(192, 138, 46, .24), transparent 60%);
}
.quote blockquote {
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem); line-height: 1.35; font-weight: 600;
  letter-spacing: -.02em; max-width: 26ch; margin: 0 auto; text-align: center; text-wrap: balance;
}
.quote figcaption { text-align: center; margin-top: 1.5rem; color: rgba(255, 255, 255, .68); font-size: .95rem; }

/* --- Nieuws -------------------------------------------------------------- */
.news-list { display: grid; gap: 1.25rem; }
.news-item {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.news-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #bcd2cb; color: inherit; }
.news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .8rem; font-size: .82rem; color: var(--muted); margin-bottom: .5rem; }
.news-item h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.news-item p { font-size: .95rem; color: var(--muted); }
.news-item .arrow-link { margin-top: .85rem; font-size: .92rem; }

.tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 999px; background: var(--teal-050); color: var(--ink-700);
}
.tag--gold { background: var(--gold-100); color: var(--gold-600); }
.tag--grey { background: var(--surface-2); color: var(--muted); }

.news-empty {
  border: 1px dashed var(--line); border-radius: var(--r-md); padding: 2rem;
  text-align: center; color: var(--muted); background: var(--surface);
}
.news-updated { font-size: .85rem; color: var(--muted); margin-top: 2rem; }

.filter-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.filter-btn {
  font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
  padding: .45rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--muted);
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.filter-btn:hover { border-color: var(--ink-600); color: var(--ink-800); }
.filter-btn[aria-pressed="true"] { background: var(--ink-800); border-color: var(--ink-800); color: #fff; }

/* --- Keurmerken / lidmaatschappen ---------------------------------------- */
.badge-band {
  background: var(--surface); border-block: 1px solid var(--line);
  padding: clamp(2rem, 1.25rem + 2.5vw, 3rem) 0;
}
.badge-band--licht { background: #fff; border-top: 0; }
.badge-band-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-bottom: 1.5rem;
}
.badge-row {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 820px; margin-inline: auto;
}

.badge {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.1rem;
  text-decoration: none; color: inherit;
  padding: 1.1rem 1.35rem; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.badge:hover { border-color: #bcd2cb; box-shadow: var(--shadow-md); transform: translateY(-2px); color: inherit; }

.badge-logo {
  flex: none; display: grid; place-items: center;
  width: 108px; height: 92px;
  padding-right: 1.1rem; border-right: 1px solid var(--line);
}
.badge-logo img { max-height: var(--logo-h, 48px); max-width: 100%; width: auto; height: auto; }

.badge-mark {
  flex: none; display: grid; place-items: center;
  min-width: 62px; height: 52px; padding: 0 .6rem;
  border-radius: 9px; background: var(--ink-800); color: #fff;
  font-weight: 700; font-size: .95rem; letter-spacing: .04em;
}
.badge-text { display: grid; gap: .15rem; line-height: 1.3; }
.badge-text strong { font-size: .96rem; color: var(--ink-900); }
.badge-text small { font-size: .8rem; color: var(--muted); }
.badge:hover .badge-text small { color: var(--gold-600); }

@media (max-width: 420px) {
  .badge { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .badge-logo { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: .9rem; width: auto; }
}

.footer-badges { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: 1.75rem; }
.footer-badges a {
  display: grid; place-items: center;
  min-width: 92px; height: 62px; padding: .5rem .85rem;
  background: #fff; border-radius: var(--r-sm);
  transition: transform .18s ease;
}
.footer-badges a:hover { transform: translateY(-2px); }
.footer-badges img { max-height: 34px; width: auto; }
.footer-badges .srfa img { max-height: 48px; }

/* --- CTA-band ------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(135deg, var(--ink-800), var(--ink-600));
  color: #fff; border-radius: var(--r-lg);
  padding: clamp(2rem, 1.25rem + 3vw, 3.5rem);
  display: grid; gap: 1.75rem; align-items: center;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 860px) { .cta-band { grid-template-columns: 1.4fr auto; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .82); margin-top: .75rem; max-width: 52ch; }

/* --- Formulier ----------------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.form-row { display: grid; gap: 1.15rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink-800); }
.field .hint { font-size: .82rem; color: var(--muted); font-weight: 400; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ink-600); box-shadow: 0 0 0 4px rgba(100, 156, 143, .14);
}
.field textarea { min-height: 150px; resize: vertical; }
.field--checkbox { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; }
.field--checkbox input { width: 20px; height: 20px; margin-top: .2em; }
.field--checkbox label { font-weight: 400; font-size: .92rem; color: var(--muted); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --- Contactgegevens ----------------------------------------------------- */
.contact-cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem; }
.contact-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.contact-card p, .contact-card address { font-style: normal; color: var(--muted); font-size: .96rem; }
.contact-card a { color: var(--ink-700); }

.hours { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; color: var(--muted); border-bottom: 1px dashed var(--line); padding-bottom: .4rem; }
.hours li:last-child { border-bottom: 0; }

/* --- FAQ ----------------------------------------------------------------- */
.faq { display: grid; gap: .75rem; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r-md); background: #fff;
  padding: 0 1.4rem; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2rem 1.15rem 0; position: relative;
  font-weight: 650; color: var(--ink-800);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .2rem; top: 1.5rem;
  width: 10px; height: 10px; border-right: 2px solid var(--gold-500); border-bottom: 2px solid var(--gold-500);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.7rem; }
.faq details p { padding-bottom: 1.3rem; color: var(--muted); font-size: .97rem; }

/* --- Prose (juridische pagina's) ----------------------------------------- */
.prose { max-width: 72ch; }
.prose h2 { margin: 2.75rem 0 .9rem; font-size: 1.45rem; }
.prose h3 { margin: 1.9rem 0 .6rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.05rem; color: #33424f; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .45rem; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--surface); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-800); }
.prose .note {
  background: var(--gold-100); border-left: 4px solid var(--gold-500);
  padding: 1rem 1.25rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; margin-bottom: 1.5rem; font-size: .95rem;
}

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: rgba(255, 255, 255, .72); padding-top: clamp(3rem, 2rem + 3vw, 4.5rem); font-size: .95rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); padding-bottom: 3rem; }
.site-footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.1rem; font-weight: 700; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: var(--gold-500); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer address { font-style: normal; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: .93rem; }
.footer-logo { display: inline-block; }
.footer-logo img { width: clamp(150px, 52%, 190px); height: auto; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); padding: 1.5rem 4rem 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .86rem;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }

/* --- Cookiebanner -------------------------------------------------------- */
.cookiebar {
  position: fixed; z-index: 90; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 560px; margin-inline: auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 1.4rem 1.5rem;
}
.cookiebar[hidden] { display: none; }
.cookiebar h2 { font-size: 1.05rem; margin-bottom: .5rem; }
.cookiebar p { font-size: .9rem; color: var(--muted); }
.cookiebar .btn-row { margin-top: 1.1rem; }
.cookiebar .btn { font-size: .9rem; padding: .65rem 1.2rem; }

/* --- Terug naar boven ---------------------------------------------------- */
.to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 50;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink-800); cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.to-top[data-visible="true"] { opacity: 1; visibility: visible; transform: translateY(0); }

/* --- Diversen ------------------------------------------------------------ */
.center { text-align: center; }
.mt-1 { margin-top: .75rem; } .mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.25rem; }
.muted { color: var(--muted); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media print {
  .site-header, .topbar, .cookiebar, .to-top, .site-footer, .btn { display: none !important; }
  body { font-size: 12pt; }
}
