/* ==========================================================================
   Groenzicht Zorg — stylesheet
   Eén lettertype: Figtree. Palet: bosgroen / salie / crème / inkt.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Kleur */
  --ink:        #14201a;
  --ink-soft:   #48564e;
  --ink-mute:   #7b8880;
  --forest:     #1e4630;
  --forest-700: #2b5c40;
  --moss:       #4a7c59;
  --sage:       #9db9a6;
  --sage-100:   #e4ede6;
  /* Merkgroen, afgeleid van het logo (#409020), iets verdiept zodat
     witte tekst erop 4.85:1 haalt (WCAG AA). */
  --brand:      #39811c;
  --brand-dark: #2f6a17;
  --cream:      #f7f5ef;
  --paper:      #ffffff;
  --line:       #e2e0d8;
  --line-dark:  rgba(255, 255, 255, .14);
  --amber:      #c8892f;

  /* Ruimte (density 4/10) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20, 32, 26, .05), 0 2px 8px rgba(20, 32, 26, .04);
  --shadow-md: 0 2px 6px rgba(20, 32, 26, .05), 0 12px 30px rgba(20, 32, 26, .07);
  --shadow-lg: 0 4px 12px rgba(20, 32, 26, .06), 0 28px 60px rgba(20, 32, 26, .11);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1200px;
  --nav-h: 100px;
}

/* --- 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; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

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

/* --- Typografie ----------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.022em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800; letter-spacing: -.032em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.25; }
h4 { font-size: 1.06rem; line-height: 1.35; }
p  { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: .78rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--moss);
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: var(--sage); flex: none;
}
.eyebrow--light { color: var(--sage); }
.eyebrow--light::before { background: rgba(157, 185, 166, .55); }

.lead { font-size: clamp(1.06rem, 1.6vw, 1.24rem); line-height: 1.6; color: var(--ink-soft); }
.measure    { max-width: 62ch; }
.measure-sm { max-width: 52ch; }

/* --- Layout --------------------------------------------------------------- */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--s-5);
}
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(44px, 5vw, 68px); }
.section--paper { background: var(--paper); }
.section--sage  { background: var(--sage-100); }
.section--dark  { background: var(--forest); color: rgba(255, 255, 255, .78); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.grid { display: grid; gap: var(--s-6); }
.split {
  display: grid; gap: clamp(32px, 5vw, 72px);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .split--wide-left  { grid-template-columns: 1.15fr .85fr; } }
@media (min-width: 900px) { .split--wide-right { grid-template-columns: .85fr 1.15fr; } }

.section-head { max-width: 60ch; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head > .eyebrow { margin-bottom: var(--s-4); }
.section-head > h2 + p { margin-top: var(--s-4); }

/* --- Knoppen -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 48px; padding: 13px 26px;
  border-radius: 999px;
  font-size: .97rem; font-weight: 600; letter-spacing: -.01em;
  cursor: pointer; white-space: nowrap;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), box-shadow .22s var(--ease),
              transform .22s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

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

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(20, 32, 26, .035); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--sage-100); }

.btn--outline-light { border: 1.5px solid rgba(255, 255, 255, .35); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--forest); font-size: .95rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --- Header --------------------------------------------------------------- */
.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: var(--s-4); }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 239, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); background: rgba(247, 245, 239, .95); }

/* De header loopt van rand tot rand, los van de container-breedte */
.header .container {
  max-width: none;
  padding-inline: clamp(16px, 2.6vw, 40px);
}
.header__inner {
  display: flex; align-items: center; gap: var(--s-5);
  min-height: var(--nav-h);
}

.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand__logo {
  display: block; width: auto; height: 68px; flex: none;
  transition: opacity .2s var(--ease);
}
.brand:hover .brand__logo { opacity: .85; }

/* In de donkere footer staat het logo op een licht vlak, zodat het
   er exact zo uitziet als het origineel. */
.brand--footer { margin-right: 0; }
.brand__plate {
  display: inline-flex; padding: 14px 18px;
  background: var(--cream); border-radius: var(--radius);
}
.brand__plate img { display: block; width: auto; height: 62px; }

@media (max-width: 1039px) {
  :root { --nav-h: 86px; }
  .brand__logo { height: 56px; }
}
@media (max-width: 430px) {
  :root { --nav-h: 72px; }
  .header__inner { gap: var(--s-3); }
  .brand__logo { height: 46px; }
  .lang button { min-width: 34px; padding: 0 7px; font-size: .72rem; }
  .burger { width: 42px; height: 42px; margin-left: 4px; }
}

.nav { display: none; }
@media (min-width: 1040px) {
  .nav { display: flex; align-items: center; gap: 2px; margin-inline: auto; }
}

.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 999px;
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { color: var(--ink); background: rgba(20, 32, 26, .05); }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__link svg { width: 13px; height: 13px; transition: transform .22s var(--ease); }
.nav__item:hover .nav__link svg,
.nav__item:focus-within .nav__link svg { transform: rotate(180deg); }

.nav__menu {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 20;
  min-width: 274px; padding: var(--s-2);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a {
  display: block; padding: 10px 13px; border-radius: 9px;
  font-size: .93rem; color: var(--ink-soft);
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav__menu a strong { display: block; color: var(--ink); font-weight: 600; }
.nav__menu a span { font-size: .8rem; color: var(--ink-mute); }
.nav__menu a:hover { background: var(--sage-100); color: var(--ink); }

.header__cta { display: none; }
@media (min-width: 1040px) { .header__cta { display: inline-flex; } }

/* Taalschakelaar NL / TR */
.lang {
  display: inline-flex; align-items: center; gap: 2px; flex: none;
  padding: 3px; margin-left: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
}
@media (min-width: 1040px) { .lang { margin-left: 0; } }
.lang button {
  min-width: 40px; height: 32px; padding: 0 10px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-mute);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.lang button:hover { color: var(--ink); background: rgba(20, 32, 26, .05); }
.lang button[aria-pressed="true"] { background: var(--brand); color: #fff; }
.lang button[aria-pressed="true"]:hover { background: var(--brand-dark); }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-left: 10px;
  border-radius: 12px; border: 1px solid var(--line); background: var(--paper);
}
@media (min-width: 1040px) { .burger { display: none; } }
.burger span {
  display: block; position: relative; width: 19px; height: 1.8px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 19px; height: 1.8px;
  background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobiel paneel */
.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 90;
  background: var(--cream); padding: var(--s-5) var(--s-5) var(--s-8);
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
@media (min-width: 1040px) { .mobile-nav { display: none; } }
.mobile-nav a {
  display: block; padding: 15px 4px; border-bottom: 1px solid var(--line);
  font-size: 1.1rem; font-weight: 600; color: var(--ink);
}
.mobile-nav a.sub {
  font-size: .97rem; font-weight: 500; color: var(--ink-soft); padding-left: var(--s-5);
}
.mobile-nav a.btn {
  display: inline-flex; width: 100%; margin-top: var(--s-6);
  padding: 13px 26px; border-bottom: 0; font-size: .97rem;
}
.mobile-nav a.btn--primary { color: #fff; }
body.nav-open { overflow: hidden; }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(44px, 6vw, 76px) clamp(48px, 7vw, 92px); }
.hero__grid {
  display: grid; gap: clamp(36px, 5vw, 64px); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.02fr .98fr; } }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 8px; margin-bottom: var(--s-5);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; box-shadow: var(--shadow-sm);
  font-size: .82rem; font-weight: 500; color: var(--ink-soft);
}
.hero__badge b { color: var(--ink); font-weight: 700; }
.hero__badge-dot {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--sage-100); color: var(--forest);
}
.hero__badge-dot svg { width: 14px; height: 14px; }

/* Tweede regel van de kop: zelfde stijl als de eerste, alleen een andere kleur */
.hero h1 em {
  font-style: normal; font-weight: inherit; letter-spacing: inherit;
  color: var(--moss);
}
.hero__text > p { margin-top: var(--s-5); max-width: 50ch; }
.hero__text .btn-row { margin-top: var(--s-6); }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: var(--s-6) clamp(24px, 4vw, 48px);
  margin-top: var(--s-7); padding-top: var(--s-6); border-top: 1px solid var(--line);
}
.hero__stat b {
  display: block; font-size: clamp(1.5rem, 2.6vw, 1.95rem); font-weight: 800;
  color: var(--ink); letter-spacing: -.03em; line-height: 1.14;
  font-variant-numeric: tabular-nums;
}
.hero__stat > span { font-size: .87rem; color: var(--ink-mute); }

/* Beeldcompositie */
.hero__media { position: relative; }
.hero__media-main {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  background: var(--sage-100);
}
.hero__media-main img { width: 100%; height: 100%; object-fit: cover; }

/* --- Hero met schermvullende video --------------------------------------- */
.hero--full {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(560px, 88svh, 880px);
  padding-block: clamp(56px, 8vw, 96px);
  background: #0f1a14;
  color: rgba(255, 255, 255, .84);
}
.hero--full .hero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  background: #0f1a14;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(103deg,
      rgba(11, 20, 15, .95) 0%,
      rgba(11, 20, 15, .86) 32%,
      rgba(11, 20, 15, .55) 62%,
      rgba(11, 20, 15, .32) 100%),
    linear-gradient(to top, rgba(11, 20, 15, .6) 0%, rgba(11, 20, 15, 0) 42%);
}
@media (max-width: 780px) {
  .hero__scrim {
    background: linear-gradient(to top, rgba(11, 20, 15, .96) 22%, rgba(11, 20, 15, .74) 62%, rgba(11, 20, 15, .5) 100%);
  }
}

.hero--full .hero__grid { position: relative; display: block; width: 100%; }
.hero--full .hero__text { max-width: 43rem; }
.hero--full h1 { color: #fff; }
.hero--full h1 em { color: var(--sage); }
.hero--full .hero__text > p { color: rgba(255, 255, 255, .8); max-width: 46ch; }

.hero--full .hero__badge {
  background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .86); box-shadow: none;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero--full .hero__badge b { color: #fff; }
.hero--full .hero__badge-dot { background: rgba(255, 255, 255, .16); color: var(--sage); }

.hero--full .hero__stats { border-top-color: rgba(255, 255, 255, .2); }
.hero--full .hero__stat b { color: #fff; }
.hero--full .hero__stat > span { color: rgba(255, 255, 255, .62); }

.hero--full .hero__card {
  position: absolute; right: 0; bottom: 0; left: auto; top: auto;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}
.hero--full .hero__card-ico { background: rgba(255, 255, 255, .16); color: #fff; }
.hero--full .hero__card b { color: #fff; }
.hero--full .hero__card span { color: rgba(255, 255, 255, .68); }
@media (max-width: 1100px) {
  .hero--full .hero__card {
    position: static; display: inline-flex; margin-top: var(--s-6);
  }
}

/* --- Hero: getrapte tekstanimatie ---------------------------------------- */
.hero--full .hero__text > * { opacity: 0; transform: translateY(20px); }
.hero--full .hero__text.is-in > * {
  animation: heroRise .82s var(--ease) both;
}
.hero--full .hero__text.is-in > *:nth-child(1) { animation-delay: .06s; }
.hero--full .hero__text.is-in > *:nth-child(2) { animation-delay: .18s; }
.hero--full .hero__text.is-in > *:nth-child(3) { animation-delay: .32s; }
.hero--full .hero__text.is-in > *:nth-child(4) { animation-delay: .44s; }
.hero--full .hero__text.is-in > *:nth-child(5) { animation-delay: .56s; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* De kop krijgt iets meer gewicht in de beweging */
.hero--full .hero__text.is-in h1 {
  animation-name: heroRiseHead; animation-duration: 1s;
}
@keyframes heroRiseHead {
  from { opacity: 0; transform: translateY(30px); letter-spacing: -.05em; }
  to   { opacity: 1; transform: none; letter-spacing: -.032em; }
}

/* --- Cijfers: van onder naar boven, tellend omhoog ------------------------ */
.hero__stat b { overflow: hidden; padding-bottom: 2px; }
.count-in {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .72s var(--ease);
}
.hero__text.is-in .count-in { transform: none; transition-delay: .62s; }
.count-in .num {
  display: inline-block; font-style: normal;
  text-align: right; font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .hero--full .hero__text > * { opacity: 1; transform: none; }
  .count-in { transform: none; }
}
.hero__media-sub {
  position: absolute; left: -18px; bottom: 46px; width: 44%;
  overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1; border: 7px solid var(--cream);
  box-shadow: var(--shadow-md); background: var(--sage-100);
}
.hero__media-sub img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 600px) { .hero__media-sub { display: none; } }

.hero__card {
  position: absolute; right: -8px; top: 34px;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 17px 12px 12px;
  background: var(--paper); border-radius: 999px; box-shadow: var(--shadow-lg);
}
.hero__card-ico {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--forest); color: #fff;
}
.hero__card-ico svg { width: 18px; height: 18px; }
.hero__card b { display: block; font-size: .9rem; color: var(--ink); line-height: 1.2; }
.hero__card span { font-size: .77rem; color: var(--ink-mute); }
@media (max-width: 600px) { .hero__card { right: 8px; top: 14px; } }

/* --- Marquee / logostrip -------------------------------------------------- */
.strip {
  border-block: 1px solid var(--line); background: var(--paper);
  padding-block: var(--s-5);
}
.strip__inner {
  display: grid; gap: var(--s-4) var(--s-6);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px)  { .strip__inner { grid-template-columns: repeat(4, 1fr); } }
.strip__item { display: flex; align-items: center; gap: 11px; }
.strip__item svg { width: 21px; height: 21px; flex: none; color: var(--moss); }
.strip__item span { font-size: .91rem; font-weight: 500; color: var(--ink); line-height: 1.3; }

/* --- Kaarten -------------------------------------------------------------- */
.cards { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 700px)  { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.svc {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              border-color .28s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sage-100); }
.svc__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.svc:hover .svc__img img { transform: scale(1.045); }
.svc__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; gap: var(--s-3); }
.svc__body h3 { letter-spacing: -.02em; }
.svc__body p { font-size: .95rem; }
.svc__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.svc__list li {
  font-size: .79rem; font-weight: 500; color: var(--forest);
  background: var(--sage-100); padding: 5px 11px; border-radius: 999px;
}
.svc__body .link-arrow { margin-top: auto; padding-top: var(--s-3); }

/* Waardekaart (icoon) */
.value {
  padding: var(--s-5); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.value:hover { border-color: var(--sage); box-shadow: var(--shadow-md); }
.value__ico {
  width: 44px; height: 44px; border-radius: 13px; margin-bottom: var(--s-4);
  display: grid; place-items: center; background: var(--sage-100); color: var(--forest);
  font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em;
}
.value__ico svg { width: 21px; height: 21px; }
.value h4 { margin-bottom: 7px; }
.value p { font-size: .93rem; }
.section--dark .value {
  background: rgba(255, 255, 255, .05); border-color: var(--line-dark);
}
.section--dark .value:hover { border-color: rgba(255, 255, 255, .3); box-shadow: none; }
.section--dark .value__ico { background: rgba(255, 255, 255, .1); color: var(--sage); }
.section--dark .value p { color: rgba(255, 255, 255, .7); }

/* Genummerde stappen */
.steps { counter-reset: step; display: grid; gap: var(--s-5); }
@media (min-width: 720px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: var(--s-5); border-top: 2px solid var(--line); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  display: block; margin-bottom: var(--s-3);
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; color: var(--moss);
}
.step h4 { margin-bottom: 7px; }
.step p { font-size: .93rem; }
.section--dark .step { border-top-color: var(--line-dark); }
.section--dark .step::before { color: var(--sage); }
.section--dark .step p { color: rgba(255, 255, 255, .68); }

/* --- Beeld + tekstblok ---------------------------------------------------- */
.figure {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: var(--sage-100); box-shadow: var(--shadow-md);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--tall  { aspect-ratio: 4 / 5; }
.figure--wide  { aspect-ratio: 3 / 2; }
.figure--sq    { aspect-ratio: 1 / 1; }

.figure-stack { display: grid; gap: var(--s-4); grid-template-columns: repeat(2, 1fr); }
.figure-stack .figure:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
.figure-stack .figure:not(:first-child) { aspect-ratio: 1 / 1; }

.quote-badge {
  position: absolute; left: var(--s-4); right: var(--s-4); bottom: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
}
.quote-badge p { font-size: .93rem; color: var(--ink); font-weight: 500; }
.quote-badge span { display: block; margin-top: 5px; font-size: .8rem; color: var(--ink-mute); }

/* --- Checklijst ----------------------------------------------------------- */
.checks { list-style: none; padding: 0; margin: var(--s-5) 0 0; display: grid; gap: var(--s-3); }
.checks--2 { gap: var(--s-3) var(--s-6); }
@media (min-width: 620px) { .checks--2 { grid-template-columns: repeat(2, 1fr); } }
.checks li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .97rem; color: var(--ink-soft);
}
.checks li svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--moss); }
.checks li b { color: var(--ink); font-weight: 600; }
.section--dark .checks li { color: rgba(255, 255, 255, .78); }
.section--dark .checks li svg { color: var(--sage); }
.section--dark .checks li b { color: #fff; }

/* --- Accordeon ------------------------------------------------------------ */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  width: 100%; padding: var(--s-5) 0; text-align: left;
  font-size: 1.04rem; font-weight: 600; color: var(--ink);
  transition: color .2s var(--ease);
}
.acc__btn:hover { color: var(--moss); }
.acc__btn svg {
  width: 20px; height: 20px; flex: none; color: var(--moss);
  transition: transform .28s var(--ease);
}
.acc__btn[aria-expanded="true"] svg { transform: rotate(45deg); }
.acc__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.acc__panel > div { overflow: hidden; }
.acc__btn[aria-expanded="true"] + .acc__panel { grid-template-rows: 1fr; }
.acc__panel p { padding-bottom: var(--s-5); font-size: .97rem; max-width: 74ch; }
.acc__panel ul { padding: 0 0 var(--s-5) 20px; font-size: .97rem; }
.acc__panel li { margin-bottom: 6px; }

/* --- Reviews -------------------------------------------------------------- */
.reviews { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 780px)  { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  display: flex; flex-direction: column; gap: var(--s-4);
  padding: var(--s-5); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.review__stars { display: flex; gap: 3px; color: var(--amber); }
.review__stars svg { width: 16px; height: 16px; }
.review p { font-size: .97rem; color: var(--ink); line-height: 1.6; }
.review__who { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: var(--s-2); }
.review__who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.review__who b { display: block; font-size: .92rem; color: var(--ink); }
.review__who span { font-size: .8rem; color: var(--ink-mute); }

/* --- CTA-band ------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl); background: var(--forest); color: #fff;
  padding: clamp(36px, 5vw, 68px);
}
.cta-band__bg {
  position: absolute; inset: 0; opacity: .18;
  background-size: cover; background-position: center;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--forest) 34%, rgba(30, 70, 48, .58) 100%);
}
.cta-band__in { position: relative; z-index: 2; max-width: 58ch; }
.cta-band h2 { color: #fff; }
.cta-band p { margin-top: var(--s-4); color: rgba(255, 255, 255, .8); }
.cta-band .btn-row { margin-top: var(--s-6); }

/* --- Pagina-header (subpagina's) ------------------------------------------ */
.page-hero {
  position: relative; padding-block: clamp(44px, 6vw, 76px) clamp(36px, 5vw, 60px);
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 7px;
  margin-bottom: var(--s-5); font-size: .84rem; color: var(--ink-mute);
}
.crumbs a:hover { color: var(--forest); text-decoration: underline; }
.crumbs span[aria-current] { color: var(--ink); font-weight: 500; }
.page-hero p.lead { margin-top: var(--s-5); }

.page-hero__grid {
  display: grid; gap: clamp(28px, 4vw, 56px); align-items: end; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .page-hero__grid { grid-template-columns: 1.1fr .9fr; } }

/* --- Prose (inhoudspagina's) ---------------------------------------------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: var(--s-4); }
.prose h2 { margin-top: var(--s-8); font-size: clamp(1.5rem, 2.6vw, 2rem); }
.prose h3 { margin-top: var(--s-6); }
.prose h2 + p, .prose h3 + p { margin-top: var(--s-3); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--moss); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.callout {
  padding: var(--s-5); border-radius: var(--radius-lg);
  background: var(--sage-100); border: 1px solid rgba(74, 124, 89, .2);
}
.callout h4 { margin-bottom: 7px; }
.callout p { font-size: .95rem; }

/* Zijkolom */
.layout-side {
  display: grid; gap: clamp(36px, 5vw, 64px); grid-template-columns: 1fr; align-items: start;
}
@media (min-width: 1000px) { .layout-side { grid-template-columns: 1fr 330px; } }
.side-card {
  padding: var(--s-5); border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
@media (min-width: 1000px) { .side-card { position: sticky; top: calc(var(--nav-h) + 20px); } }
.side-card h4 { margin-bottom: var(--s-3); }
.side-card p { font-size: .93rem; }
.side-card .btn { width: 100%; margin-top: var(--s-4); }
.side-nav { list-style: none; padding: 0; margin: 0; }
.side-nav li + li { border-top: 1px solid var(--line); }
.side-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: 12px 0; font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.side-nav a:hover { color: var(--forest); }
.side-nav a[aria-current="page"] { color: var(--forest); font-weight: 600; }
.side-nav svg { width: 15px; height: 15px; color: var(--sage); flex: none; }

/* --- Formulier ------------------------------------------------------------ */
.form { display: grid; gap: var(--s-4); }
.form__row { display: grid; gap: var(--s-4); }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field label .req { color: #b3261e; }
.field input, .field select, .field textarea {
  min-height: 50px; padding: 13px 15px;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 11px;
  font-size: 1rem; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a9b2ac; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--sage); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--moss); box-shadow: 0 0 0 4px rgba(74, 124, 89, .13);
}
.field .hint { font-size: .81rem; color: var(--ink-mute); }
.field .err { font-size: .82rem; font-weight: 500; color: #b3261e; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #b3261e; }
.field.is-invalid .err { display: block; }

.consent { display: flex; gap: 11px; align-items: flex-start; }
.consent input { width: 20px; height: 20px; min-height: 0; margin-top: 3px; accent-color: var(--forest); flex: none; }
.consent label { font-size: .88rem; font-weight: 400; color: var(--ink-soft); }

.form__status {
  display: none; gap: 11px; align-items: flex-start;
  padding: var(--s-4) var(--s-5); border-radius: var(--radius);
  background: var(--sage-100); border: 1px solid rgba(74, 124, 89, .28);
  font-size: .95rem; color: var(--forest);
}
.form__status.is-visible { display: flex; }
.form__status svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* --- Contactblokken ------------------------------------------------------- */
.contact-list { display: grid; gap: var(--s-4); }
.contact-item {
  display: flex; gap: var(--s-4); align-items: flex-start;
  padding: var(--s-5); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.contact-item__ico {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center; background: var(--sage-100); color: var(--forest);
}
.contact-item__ico svg { width: 20px; height: 20px; }
.contact-item h4 { margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: .95rem; color: var(--ink-soft); }
.contact-item a:hover { color: var(--forest); text-decoration: underline; }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: var(--s-4);
  padding: 9px 0; font-size: .93rem; border-bottom: 1px solid var(--line);
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--ink); font-weight: 500; }
.hours li span:last-child { font-variant-numeric: tabular-nums; }
.hours li.is-closed span:last-child { color: var(--ink-mute); }

.map {
  overflow: hidden; border-radius: var(--radius-xl);
  border: 1px solid var(--line); background: var(--sage-100); aspect-ratio: 16 / 7;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.85); }

/* --- Footer --------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, .62); padding-block: clamp(48px, 6vw, 80px) var(--s-6); }
.footer__grid {
  display: grid; gap: var(--s-7); grid-template-columns: 1fr;
  padding-bottom: var(--s-7); border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (min-width: 700px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer__about { margin-top: var(--s-5); font-size: .93rem; max-width: 38ch; }
.footer h5 {
  margin-bottom: var(--s-4); font-size: .78rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: #fff;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { font-size: .93rem; transition: color .2s var(--ease); }
.footer a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5);
  justify-content: space-between; align-items: center; padding-top: var(--s-5);
  font-size: .84rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.socials { display: flex; gap: 9px; margin-top: var(--s-5); }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .75);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.socials a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.socials svg { width: 17px; height: 17px; }

/* --- Scroll-reveal -------------------------------------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}
