/* ==========================================================================
   Unique – Dagbesteding & BSO
   ========================================================================== */

:root {
  --bg: #FBF9F5;
  --surface: #FFFFFF;
  --sand: #F3EEE6;
  --sand-2: #EAE2D6;
  --line: #E6DED3;
  --line-soft: #EFE8DE;
  --line-strong: #E2D9CD;
  --text: #2F2A26;
  --text-2: #4A433D;
  --muted: #5E554E;
  --brand: #3B332E;
  --brand-hover: #221D1A;
  --brand-soft: #4A413B;
  --on-dark: #EDE6DC;
  --accent: #E3A94B;
  --accent-hover: #EDBD6B;
  --eyebrow: #7A5210;
  --badge-bg: #F6E7CC;
  --badge-text: #5E3E0C;
  --notice-text: #4A3208;
  --focus: #C8871F;
  --link-hover: #8A5A12;
  --input-border: #B9AEA2;
  --social-border: #CFC5BA;
  --error: #A3321F;
  --error-bg: #FBEDEA;
  --error-text: #7A2415;
  --whatsapp: #128C4A;
  --whatsapp-hover: #0E7440;

  --font-sans: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 84px;
  --shadow-card: 0 16px 36px rgba(47, 42, 38, 0.10);
  --shadow-pop: 0 18px 40px rgba(47, 42, 38, 0.10);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; outline: none; }
img { display: block; max-width: 100%; height: auto; }
p, li, dd, figcaption, blockquote, address { text-wrap: pretty; }
p, figure, blockquote, dl, dd, ol, ul { margin: 0; }
h1, h2, h3, h4, h5 { margin: 0; }
address { font-style: normal; }

a { color: var(--brand); }
a:hover { color: var(--link-hover); }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 6px; }
input:focus-visible, textarea:focus-visible { outline-offset: 1px; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--brand); color: #fff; padding: 12px 18px; border-radius: 10px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.stack { display: flex; flex-direction: column; }
.stack--4 { gap: 4px; }
.stack--8 { gap: 8px; }
.stack--10 { gap: 10px; }
.stack--14 { gap: 14px; }
.stack--16 { gap: 16px; }
.stack--18 { gap: 18px; }
.stack--20 { gap: 20px; }
.stack--22 { gap: 22px; }
.stack--24 { gap: 24px; }
.stack--28 { gap: 28px; }
.stack--40 { gap: 40px; }
.stack--44 { gap: clamp(28px, 4vw, 44px); }
.stack--56 { gap: clamp(36px, 5vw, 56px); }
.stack--64 { gap: clamp(40px, 5vw, 64px); }
.flex-1 { flex: 1; }

.grid { display: grid; gap: 24px; }
ul.grid, ol.grid { list-style: none; padding: 0; margin: 0; }
.grid--220 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.grid--240 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 16px; }
.grid--260 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--300 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--400 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
.grid--420 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid--gap-16 { gap: 16px; }
.grid--gap-20 { gap: 20px; }
.grid--gap-22 { gap: 22px; }
.grid--gap-24 { gap: 24px; }
.grid--gap-48 { gap: clamp(24px, 4vw, 48px); }
.grid--gap-56 { gap: clamp(24px, 4vw, 56px); }
.grid--gap-72 { gap: clamp(36px, 5vw, 72px); }
.grid--start { align-items: start; }
.grid--stretch { align-items: stretch; }

.split {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.split--440 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); }
.split--380 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }
.split--center { align-items: center; }

.measure-30 { max-width: 30em; }
.measure-720 { max-width: 720px; }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--lg { padding: clamp(56px, 7vw, 104px) 0; }
.section--white { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section--sand { background: var(--sand); }

.section-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px;
}
.section-head__main { max-width: 640px; }
.section-head__aside {
  font-size: 18px; line-height: 1.6; color: var(--text-2); max-width: 420px; text-wrap: balance;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--eyebrow);
}
.h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(40px, 5.2vw, 64px); line-height: 1.06; letter-spacing: -0.015em;
  color: var(--text); text-wrap: balance;
}
.h1--page { font-size: clamp(40px, 5vw, 60px); }
.h1--klachten { font-size: clamp(38px, 4.6vw, 56px); line-height: 1.08; }
.h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -0.01em;
  color: var(--text); text-wrap: balance;
}
.h2--sm { font-size: clamp(26px, 2.8vw, 34px); line-height: 1.18; letter-spacing: 0; }
.h2--form { font-size: clamp(26px, 2.8vw, 32px); line-height: 1.2; letter-spacing: 0; }
.h2--light { color: #fff; }
.h3 { font-family: var(--font-serif); font-weight: 500; font-size: 26px; line-height: 1.2; }
.h4 { font-size: 21px; font-weight: 600; color: var(--text); }
.h5 { font-size: 20px; font-weight: 600; color: var(--text); }

.lead { font-size: clamp(18px, 1.6vw, 20px); line-height: 1.65; color: var(--text-2); max-width: 34em; }
.lead--wide { max-width: none; }
.body-lg { font-size: 18px; line-height: 1.65; color: var(--text-2); }
.body-md { font-size: 17px; line-height: 1.6; color: var(--text-2); }

.rule { display: block; width: 44px; height: 3px; border-radius: 2px; background: var(--accent); }

.badge {
  align-self: flex-start;
  font-size: 13px; font-weight: 600; line-height: 1.4;
  color: var(--badge-text); background: var(--badge-bg);
  border-radius: 999px; padding: 5px 12px;
}
.badge--lg { font-size: 14px; padding: 6px 14px; }

.text-link {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  font-weight: 600; font-size: 16px; color: var(--text);
}
.strong-link { font-weight: 600; color: var(--text); }

.icon-text { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: 12px;
  border: 1.5px solid transparent;
  font: inherit; font-weight: 600; font-size: 17px; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: background-color .15s, color .15s;
}
.btn--sm { min-height: 48px; padding: 0 22px; font-size: 16px; }
.btn--lg { min-height: 54px; padding: 0 26px; }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-hover); color: #fff; }

.btn--outline { border-color: var(--brand); color: var(--text); background: transparent; }
.btn--outline:hover { background: var(--sand); color: var(--text); }

.btn--accent { background: var(--accent); color: var(--text); font-weight: 700; }
.btn--accent:hover { background: var(--accent-hover); color: var(--text); }

.btn--outline-light { border-color: var(--on-dark); color: #fff; }
.btn--outline-light:hover { background: var(--brand-soft); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

/* ---------- Utility bar ---------- */
.utility-bar {
  display: none;
  background: var(--sand); border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--text-2);
}
.utility-bar__inner {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 9px; padding-bottom: 9px;
}
.utility-bar__group { display: flex; gap: 24px; flex-wrap: wrap; }
.utility-bar__phone { color: var(--text); font-weight: 600; text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 245, 0.96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header__logo { display: flex; align-items: center; border-radius: 8px; }
.site-header__logo img { height: 58px; width: auto; }

.main-nav { display: none; align-items: center; gap: 36px; }
.main-nav__links { display: flex; align-items: center; gap: 32px; font-size: 17px; font-weight: 500; }
.main-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 0; border: 0; border-bottom: 2px solid transparent;
  background: none; font: inherit; color: var(--text); text-decoration: none; cursor: pointer;
}
.main-nav__link:hover { color: var(--link-hover); }
.main-nav__link[data-active] { border-bottom-color: var(--accent); }
.dropdown__toggle svg { transition: transform .15s; }
.dropdown__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown { position: relative; }
.dropdown__panel { position: absolute; top: 100%; left: -24px; padding-top: 12px; }
.dropdown__menu {
  width: 360px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-pop);
  padding: 10px; display: flex; flex-direction: column; gap: 2px;
}
.dropdown__item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px 16px; border-radius: 10px; text-decoration: none; color: var(--text);
}
.dropdown__item:hover, .dropdown__item[aria-current="page"] { background: var(--sand); color: var(--text); }
.dropdown__title { font-weight: 600; font-size: 16px; }
.dropdown__desc { font-size: 14px; color: var(--muted); line-height: 1.4; }

.menu-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; padding: 0 16px; border-radius: 12px;
  border: 1.5px solid var(--brand); background: transparent; color: var(--text);
  font: inherit; font-weight: 600; font-size: 16px; cursor: pointer;
}
.menu-toggle__close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { display: inline; }

.mobile-nav {
  border-top: 1px solid var(--line); background: var(--bg);
  padding: 12px var(--gutter) 28px;
  display: flex; flex-direction: column; gap: 4px;
  max-height: calc(100vh - var(--header-h)); overflow: auto;
}
.mobile-nav__main {
  padding: 14px 0; font-size: 19px; font-weight: 600; color: var(--text);
  text-decoration: none; border-bottom: 1px solid var(--line);
}
.mobile-nav__main--boxed { margin-top: 8px; border-top: 1px solid var(--line); }
.mobile-nav__heading {
  padding: 14px 0 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--eyebrow);
}
.mobile-nav__sub {
  padding: 12px 0 12px 14px; font-size: 18px; color: var(--text);
  text-decoration: none; border-left: 2px solid var(--accent);
}
.mobile-nav a[aria-current="page"] { font-weight: 700; }
.mobile-nav__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }

@media (min-width: 900px) {
  .utility-bar { display: block; }
  .main-nav { display: flex; }
  .menu-toggle, .mobile-nav { display: none !important; }
}

/* ---------- Home: hero ---------- */
.hero { padding: clamp(40px, 6vw, 88px) 0 clamp(56px, 7vw, 104px); }
.hero__figure { position: relative; }
.hero__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 20px; background: var(--sand-2); }
.hero__caption {
  position: absolute; left: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border-radius: 12px; padding: 12px 16px;
  font-size: 15px; color: var(--text); box-shadow: 0 8px 24px rgba(47, 42, 38, 0.12);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- Home: service cards ---------- */
.service-card {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  text-decoration: none; color: var(--text);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); color: var(--text); }
.service-card__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.service-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card__body p { font-size: 17px; line-height: 1.6; color: var(--text-2); flex: 1; }
.service-card__more { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px; margin-top: 8px; }
.service-card__more svg { transition: transform .2s; }
.service-card:hover .service-card__more svg { transform: translateX(3px); }

/* ---------- Home: approach ---------- */
@media (min-width: 900px) {
  .sticky-intro { position: sticky; top: 120px; }
}
.pillars { counter-reset: none; }
.tile {
  background: var(--sand); border-radius: 18px; padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 12px;
}
.tile p { font-size: 17px; line-height: 1.6; color: var(--text-2); }
.tile__num { font-family: var(--font-serif); font-size: 18px; color: var(--eyebrow); }

/* ---------- Home: mission ---------- */
.panel { background: var(--surface); border-radius: 20px; padding: clamp(28px, 4vw, 44px); }
.panel p:not(.eyebrow) { font-size: 17px; line-height: 1.65; color: var(--text-2); }

.quote {
  margin: 0 auto; max-width: 880px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.quote p {
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.35; color: var(--text); text-wrap: balance;
}

/* ---------- Home: gallery ---------- */
.gallery__item { display: flex; flex-direction: column; gap: 12px; }
.gallery__item img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; background: var(--sand-2);
}
.gallery__item figcaption { font-size: 15px; line-height: 1.5; color: var(--muted); }

/* ---------- Service pages ---------- */
.page-hero { padding: clamp(28px, 4vw, 48px) 0 clamp(56px, 7vw, 96px); }
.page-hero__img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 20px; background: var(--sand-2); }

.breadcrumb { font-size: 15px; color: var(--muted); }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 600; }

.feature {
  background: var(--sand); border-radius: 16px; padding: 24px 24px 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.feature p { font-size: 17px; line-height: 1.6; color: var(--text-2); }
.feature__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--eyebrow); margin-bottom: 4px;
}

.info-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 24px;
}
.facts { display: flex; flex-direction: column; }
.facts > div {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 4px 20px; padding: 16px 0; border-top: 1px solid var(--line-soft);
}
.facts dt { font-weight: 600; font-size: 16px; color: var(--text); }
.facts dd { font-size: 17px; line-height: 1.6; color: var(--text-2); }
.facts a { color: var(--text-2); }

.photo-card { display: flex; flex-direction: column; gap: 12px; }
.photo-card img {
  width: 100%; flex: 1; min-height: 320px; object-fit: cover; border-radius: 20px; background: var(--sand-2);
}
.photo-card figcaption { font-size: 15px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { padding: 0 0 clamp(56px, 7vw, 96px); }
.cta-band__box {
  background: var(--brand); border-radius: 24px; padding: clamp(32px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 32px; align-items: center;
}
.cta-band__text { font-size: 18px; line-height: 1.65; color: var(--on-dark); max-width: 32em; text-wrap: balance; }
.cta-band .btn-row { margin-top: 0; }

/* ---------- Contact ---------- */
.page-intro { padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 104px); }

.contact-card {
  background: var(--sand); border-radius: 20px; padding: clamp(24px, 3.5vw, 36px);
  display: flex; flex-direction: column; gap: 24px;
}
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--surface);
  display: flex; align-items: center; justify-content: center; color: var(--brand);
}
.contact-row__label { font-size: 16px; font-weight: 600; color: var(--muted); }
.contact-row__phone {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: 24px; font-weight: 600; color: var(--text); text-decoration: none;
}
.contact-row__phone:hover { color: var(--link-hover); text-decoration: underline; }
.contact-row__address { font-size: 18px; line-height: 1.55; color: var(--text); }
.contact-row .text-link { gap: 8px; margin-top: 6px; }

.hours { display: flex; flex-direction: column; }
.hours > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 8px 0; border-bottom: 1px solid var(--line-strong); font-size: 17px;
}
.hours dt { color: var(--text); }
.hours dd { color: var(--text); font-variant-numeric: tabular-nums; font-weight: 500; }

.hours--compact { gap: 4px; font-size: 16px; }
.hours--compact > div { padding: 0; border: 0; gap: 12px; font-size: 16px; }
.hours--compact dt, .hours--compact dd { color: var(--text-2); font-weight: 400; }

.follow { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 0 4px; font-size: 16px; color: var(--text-2); }

.social { display: flex; gap: 10px; }
.social__link {
  width: 44px; height: 44px; border-radius: 12px; background: var(--surface);
  display: flex; align-items: center; justify-content: center; color: var(--text);
}
.social__link:hover { background: var(--sand-2); color: var(--text); }
.social__link--outline { background: transparent; border: 1.5px solid var(--social-border); }
.social__link--outline:hover { background: var(--sand); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(24px, 3.5vw, 40px);
  display: flex; flex-direction: column; gap: 22px;
}
.form-note { font-size: 16px; line-height: 1.55; color: var(--muted); }

.form-alert {
  background: var(--error-bg); border: 1.5px solid var(--error); border-radius: 12px;
  padding: 14px 16px; font-size: 16px; color: var(--error-text); font-weight: 500;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 16px; color: var(--text); }
.field__optional { font-weight: 400; color: var(--muted); }
.field__help { font-size: 15px; line-height: 1.5; color: var(--muted); }
.field__error { font-size: 15px; color: var(--error); font-weight: 500; }

.field input, .field textarea {
  width: 100%;
  min-height: 52px; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--input-border); background: var(--surface);
  font: inherit; font-size: 17px; color: var(--text);
}
.field textarea { padding: 14px 16px; line-height: 1.55; resize: vertical; }
.field input::placeholder { color: #8C837B; }
.field [aria-invalid="true"] { border-color: var(--error); }

.form-card .btn { align-self: flex-start; }
.form-card .btn[disabled] { opacity: .7; cursor: progress; }

.form-notice {
  background: var(--badge-bg); border-radius: 12px; padding: 16px 18px;
  font-size: 16px; line-height: 1.55; color: var(--notice-text);
}
.form-notice strong { display: block; margin-bottom: 4px; }
.form-notice a { color: var(--notice-text); font-weight: 600; }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Klachten ---------- */
.todo-box {
  border: 1.5px dashed var(--focus); border-radius: 14px; padding: 18px 20px; background: #FFFBF3;
  display: flex; flex-direction: column; gap: 10px;
}
.todo-box__label {
  font-family: ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--eyebrow);
}
.todo-box ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; font-size: 16px; line-height: 1.5; color: var(--text-2); }

/* ---------- Tekstpagina's (privacybeleid) ---------- */
.prose {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(24px, 4vw, 48px);
  font-size: 17px; line-height: 1.7; color: var(--text-2);
}
.prose > * + * { margin-top: 14px; }
.prose h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(22px, 2.2vw, 26px); line-height: 1.25; color: var(--text);
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line-soft);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose ul { padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.prose li::marker { color: var(--accent); }
.prose a { color: var(--text); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sand); border-top: 1px solid var(--line); }
.site-footer__inner {
  padding-top: clamp(48px, 6vw, 72px); padding-bottom: 32px;
  display: flex; flex-direction: column; gap: 48px;
}
.site-footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: 40px 32px;
}
.site-footer__col { display: flex; flex-direction: column; gap: 14px; font-size: 16px; color: var(--text-2); }
.site-footer__col:first-child { gap: 18px; }
.site-footer__col p { font-size: 16px; line-height: 1.6; }
.site-footer__col address { line-height: 1.7; }
.site-footer__col a { color: var(--text); }
.site-footer__logo { height: 70px; width: auto; align-self: flex-start; }
.site-footer__heading {
  font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text);
}
.site-footer__strong { font-weight: 600; }
.site-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer__list a { text-decoration: none; }
.site-footer__list a:hover { text-decoration: underline; color: var(--link-hover); }
.site-footer__list-gap { margin-top: 8px; }
.site-footer__sbb { width: 120px; height: 120px; object-fit: contain; }
.site-footer__bottom {
  border-top: 1px solid var(--line-strong); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 14px; color: var(--muted);
}
.site-footer__bottom a { color: var(--text-2); }

/* ---------- WhatsApp button ---------- */
.whatsapp {
  position: fixed; left: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 60;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; min-width: 56px; padding: 0; border-radius: 999px;
  background: var(--whatsapp); color: #fff; font-weight: 600; font-size: 16px; text-decoration: none;
  box-shadow: 0 10px 28px rgba(18, 60, 40, 0.28);
}
.whatsapp:hover { background: var(--whatsapp-hover); color: #fff; }
.whatsapp__label { display: none; }
@media (min-width: 900px) {
  .whatsapp { padding: 0 22px 0 18px; }
  .whatsapp__label { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

/* ==========================================================================
   WordPress-aanvullingen
   Alles hierboven is ongewijzigd overgenomen uit het ontwerp (website/src/assets/css/style.css).
   ========================================================================== */

/* ---------- Adminbalk (ingelogd) ---------- */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .site-header { top: 0; } }

/* ---------- Tekst uit de blokeditor ---------- */
.entry-body > * { margin: 0; }
.entry-body p { font-size: 18px; line-height: 1.65; color: var(--text-2); }
.entry-body a { color: var(--text); font-weight: 600; }
.entry-body ul, .entry-body ol {
  padding-left: 22px; display: flex; flex-direction: column; gap: 6px;
  font-size: 18px; line-height: 1.65; color: var(--text-2);
}
.entry-body h2, .entry-body h3 {
  font-family: var(--font-serif); font-weight: 500; color: var(--text);
  font-size: clamp(22px, 2.2vw, 26px); line-height: 1.25;
}
.entry-body blockquote, .prose blockquote {
  margin: 0; padding-left: 20px; border-left: 3px solid var(--accent);
  font-family: var(--font-serif); font-style: italic; color: var(--text);
}
.prose h3 { font-size: 20px; font-weight: 600; color: var(--text); margin-top: 28px; }
.prose strong { color: var(--text); }
.prose > .wp-block-group, .prose > .is-style-kader { margin-top: 24px; }

/* Blokstijl "Aandachtskader" (Groep) en "Label" (Alinea) */
.is-style-kader,
.is-style-kader > .wp-block-group__inner-container {
  display: flex; flex-direction: column; gap: 10px;
}
.is-style-kader {
  border: 1.5px dashed var(--focus); border-radius: 14px; padding: 18px 20px; background: #FFFBF3;
}
.is-style-kader > *, .is-style-kader > .wp-block-group__inner-container > * { margin: 0; }
.entry-body .is-style-kader ul, .prose .is-style-kader ul {
  padding-left: 20px; gap: 6px; font-size: 16px; line-height: 1.5; color: var(--text-2);
}
p.is-style-label, .entry-body p.is-style-label, .prose p.is-style-label {
  font-family: ui-monospace, Menlo, monospace; font-size: 12px; line-height: 1.6;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--eyebrow);
}

/* Blokstijl "Stappen" (Lijst): genummerd als de uitgangspunten op de homepage */
ol.is-style-stappen, .entry-body ol.is-style-stappen, .prose ol.is-style-stappen {
  list-style: none; padding: 0; margin: 0; counter-reset: stap; gap: 0;
}
ol.is-style-stappen > li {
  counter-increment: stap; position: relative;
  padding: 16px 0 16px 52px; border-top: 1px solid var(--line);
}
ol.is-style-stappen > li:last-child { border-bottom: 1px solid var(--line); }
ol.is-style-stappen > li::before {
  content: counter(stap, decimal-leading-zero);
  position: absolute; left: 0; top: 16px;
  font-family: var(--font-serif); font-size: 18px; line-height: 1.65; color: var(--eyebrow);
}
ol.is-style-stappen strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }

/* ---------- Gravity Forms (eigen CSS van Gravity Forms staat uit) ---------- */
.form-card .gform_wrapper, .form-card .gform_wrapper form { margin: 0; }
.gform_wrapper .gform_body { container-type: inline-size; }
.gform_wrapper .gform_fields {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 22px;
  margin: 0; padding: 0; border: 0; list-style: none;
}
.gform_wrapper .gfield {
  grid-column: 1 / -1; min-width: 0; margin: 0; padding: 0; border: 0;
  display: flex; flex-direction: column; gap: 8px;
}
@container (min-width: 462px) {
  .gform_wrapper .gfield--width-half { grid-column: span 6; }
}
.gform_wrapper .gfield_label { font-weight: 600; font-size: 16px; color: var(--text); padding: 0; }
.gform_wrapper .gfield_required { color: inherit; }
.gform_wrapper .gfield_description { font-size: 15px; line-height: 1.5; color: var(--muted); }
.gform_wrapper .gfield_description.validation_message,
.gform_wrapper .gfield_validation_message { font-size: 15px; line-height: 1.6; color: var(--error); font-weight: 500; }

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--input-border); background: var(--surface);
  font: inherit; font-size: 17px; color: var(--text);
}
.gform_wrapper input, .gform_wrapper textarea, .gform_wrapper select { display: block; }
/* Hoogte gelijk aan een textarea met rows="5" / rows="6" in het ontwerp (Chrome-meting). */
.gform_wrapper textarea {
  padding: 14px 16px; line-height: 1.55; resize: vertical;
  height: 161.72px;
}
.gform_wrapper .gfield.rows-6 textarea { height: 188.06px; }
.gform_wrapper input::placeholder, .gform_wrapper textarea::placeholder { color: #8C837B; }
.gform_wrapper [aria-invalid="true"],
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select { border-color: var(--error); }
.gform_wrapper input:focus-visible, .gform_wrapper textarea:focus-visible { outline-offset: 1px; }

.gform_wrapper .gform_validation_errors {
  background: var(--error-bg); border: 1.5px solid var(--error); border-radius: 12px;
  padding: 14px 16px; margin: 0 0 22px;
}
.gform_wrapper .gform_submission_error {
  margin: 0; font-family: var(--font-sans); font-size: 16px; font-weight: 500; line-height: 1.6; color: var(--error-text);
}
.gform_wrapper .gform_validation_errors ol,
.gform_wrapper .gform-icon { display: none; }

.gform_wrapper .gform_footer, .gform_wrapper .gform-footer {
  margin: 22px 0 0; padding: 0; display: flex; align-items: center; gap: 12px;
}
.gform_wrapper .gform_button,
.gform_wrapper .gform_footer [type="submit"] {
  -webkit-appearance: none; appearance: none;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 26px; border-radius: 12px; border: 1.5px solid transparent;
  background: var(--brand); color: #fff;
  font: inherit; font-weight: 600; font-size: 17px; line-height: 1.2;
  cursor: pointer; transition: background-color .15s, color .15s;
}
.gform_wrapper .gform_button:hover,
.gform_wrapper .gform_footer [type="submit"]:hover { background: var(--brand-hover); color: #fff; }
.gform_wrapper .gform_button[disabled] { opacity: .7; cursor: progress; }
.gform_wrapper .gform_ajax_spinner { width: 20px; height: 20px; }

.gform_confirmation_message {
  background: var(--badge-bg); border-radius: 12px; padding: 16px 18px;
  font-size: 16px; line-height: 1.55; color: var(--notice-text);
}
.gform_confirmation_message strong { display: block; margin-bottom: 4px; }
.gform_confirmation_message a { color: var(--notice-text); font-weight: 600; }

/* Verborgen velden en de spamval */
.gform_wrapper .gform_hidden,
.gform_wrapper .gfield--type-hidden,
.gform_wrapper .gfield_visibility_hidden,
.gform_wrapper .gform_validation_container,
.gform_wrapper .gfield--type-honeypot { display: none !important; }
.gform_wrapper .screen-reader-text, .gform_wrapper .hidden_label .gfield_label {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
