/* ==========================================================================
   Hoofcount Nederland — huisstijl
   Kleuren komen uit het officiële logo: donkergroen #36442E, groen #567943
   ========================================================================== */

/* ---------- Fonts (lokaal gehost, variabel) ---------- */
@font-face {
  font-family: "Archivo";
  src: url("/fonts/archivo-var.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/fonts/source-sans-3-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* Merkkleuren */
  --groen-donker: #36442E;
  --groen: #567943;
  --groen-diep: #46613A;      /* hover op primaire knoppen */
  --groen-link: #4A6939;      /* tekstlinks, AA-contrast op crème */

  /* Neutralen */
  --creme: #F8F6F0;           /* gebroken wit, paginakleur */
  --zand: #EFE9DB;            /* zachte zandtint voor accentsecties */
  --grijsgroen: #EDF1E7;      /* zeer lichte grijsgroene sectiekleur */
  --staalgrijs: #E7E9E4;      /* koeler neutraal voor technische/data-secties */
  --staalgrijs-donker: #6B7268; /* staalgrijs voor tekst/lijnen op technische elementen */
  --wit: #FFFFFF;
  --antraciet: #21261D;       /* lopende tekst, iets dieper voor meer gewicht */
  --tekst-zacht: #4E5946;     /* secundaire tekst, AA op crème/wit */
  --lijn: #DCE0D2;
  --lijn-input: #8F9C83;

  /* Functioneel */
  --accent-warm: #8A5313;     /* subtiel warm accent (labels, kleine details), AA op crème/zand/wit */
  --accent-warm-zacht: #C98A2E; /* lichtere variant voor gebruik op donkere achtergrond */
  --whatsapp: #1D7A45;
  --whatsapp-diep: #166137;
  --fout: #B3261E;

  /* Typografie */
  --font-kop: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-tekst: "Source Sans 3", "Segoe UI", system-ui, sans-serif;

  /* Spacing-schaal (4/8pt-ritme) */
  --sp-1: .25rem;   /* 4px */
  --sp-2: .5rem;    /* 8px */
  --sp-3: .75rem;   /* 12px */
  --sp-4: 1rem;     /* 16px */
  --sp-6: 1.5rem;   /* 24px */
  --sp-8: 2rem;     /* 32px */
  --sp-12: 3rem;    /* 48px */
  --sp-16: 4rem;    /* 64px */
  --sp-24: 6rem;    /* 96px */
  --sp-32: 8rem;    /* 128px */

  /* Maten */
  --container: 71.25rem;      /* 1140px */
  --radius: 12px;
  --radius-groot: 16px;
  --schaduw: 0 1px 2px rgba(38, 43, 34, .06), 0 6px 20px -8px rgba(38, 43, 34, .12);
  --schaduw-groot: 0 4px 8px rgba(33, 38, 29, .07), 0 16px 40px -12px rgba(33, 38, 29, .22);
  --klikhoogte: 3.25rem;      /* 52px minimale klikhoogte */
  --header-h: 5.25rem;
  --mobielebalk-h: 4.75rem;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: hidden; /* vangt off-canvas-technieken (.verborgen, skiplink) af zodat ze nooit echte horizontale scroll veroorzaken */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-tekst);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--antraciet);
  background: var(--creme);
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 56.25em) {
  body { font-size: 1.125rem; }
}

h1, h2, h3, h4 {
  font-family: var(--font-kop);
  font-weight: 600;
  line-height: 1.2;
  color: var(--groen-donker);
  margin: 0 0 .75em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.25rem, 1.65rem + 2.8vw, 3.5rem);
  line-height: 1.12;
}
h2 {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.625rem);
  line-height: 1.18;
}
h3 { font-size: clamp(1.3125rem, 1.05rem + .8vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p, ul, ol { margin: 0 0 1.1em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
main p { max-width: 60ch; }
main .sectie-kop p,
main .voordeel p,
main .productkaart p,
main .review p,
main .case p,
main .specs span,
main .contactoptie span,
main .persoon p { max-width: none; }

a { color: var(--groen-link); text-underline-offset: .15em; }
a:hover { color: var(--groen-donker); }

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

strong { font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--groen-donker);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Lichte focus-ring op alle donkere achtergronden — .donker bestond niet als klasse en liet
   focusrings op donkere secties onzichtbaar donkergroen-op-donkergroen renderen */
.sectie--donker :focus-visible,
.footer :focus-visible,
.mobiele-balk :focus-visible,
.zwevend-whatsapp:focus-visible {
  outline-color: #F3EFE4;
}

::selection { background: var(--groen); color: var(--wit); }

/* Interactieve elementen: geen tap-vertraging, duidelijke cursor */
a, button, input, select, textarea, summary { touch-action: manipulation; }
button, summary { cursor: pointer; }

/* ---------- Skiplink ---------- */
.skiplink {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--groen-donker);
  color: var(--wit);
  padding: .875rem 1.5rem;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
  text-decoration: none;
}
.skiplink:focus {
  left: 0;
  color: var(--wit);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.125rem, 4vw, 2rem);
}
.container--smal { max-width: 50rem; }

.sectie { padding-block: clamp(3.25rem, 8vw, 5.5rem); }
.sectie--wit { background: var(--wit); }
.sectie--zand { background: var(--zand); }
.sectie--grijsgroen { background: var(--grijsgroen); }
.sectie--donker { background: var(--groen-donker); }
.sectie--donker h2, .sectie--donker h3 { color: var(--wit); }
.sectie--donker p { color: #E6E9DF; }

.sectie-kop { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3rem); }
.sectie-kop--midden { margin-inline: auto; text-align: center; }

.kicker {
  display: block;
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: .625rem;
}
.sectie--donker .kicker { color: #D8B98A; }

.intro { font-size: 1.1875rem; color: var(--tekst-zacht); }
.sectie--donker .intro { color: #E6E9DF; }

/* ---------- Knoppen ---------- */
.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: auto;
  min-height: var(--klikhoogte);
  padding: .8125rem 1.625rem;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: var(--font-kop);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
  word-spacing: normal;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.knop svg { flex: none; }
/* Korte, vaste labels (bellen/WhatsApp) blijven altijd op één regel */
.knop--headerbel, .mobiele-balk .knop, .zwevend-whatsapp, .subtel { white-space: nowrap; }

.knop--primair { background: var(--groen); color: var(--wit); }
.knop--primair:hover { background: var(--groen-diep); color: var(--wit); }

.knop--donker { background: var(--groen-donker); color: var(--wit); }
.knop--donker:hover { background: #2A3524; color: var(--wit); }

.knop--omlijnd {
  background: transparent;
  color: var(--groen-donker);
  border-color: var(--groen);
}
.knop--omlijnd:hover { background: var(--groen); color: var(--wit); }

.knop--licht { background: var(--wit); color: var(--groen-donker); }
.knop--licht:hover { background: var(--zand); color: var(--groen-donker); }

.knop--omlijnd-licht {
  background: transparent;
  color: var(--wit);
  border-color: rgba(255, 255, 255, .65);
}
.knop--omlijnd-licht:hover { background: rgba(255, 255, 255, .12); color: var(--wit); }

.knop--whatsapp { background: var(--whatsapp); color: var(--wit); }
.knop--whatsapp:hover { background: var(--whatsapp-diep); color: var(--wit); }

.knop--groot {
  min-height: 3.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.knoppenrij {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}
.knoppenrij--midden { justify-content: center; }

/* Tekstuele telefoonlink onder knoppen */
.subtel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 2.75rem;
  font-weight: 600;
  color: var(--groen-link);
  text-decoration: none;
}
.subtel:hover { text-decoration: underline; }

/* ---------- Topbalk ---------- */
.topbalk {
  background: var(--groen-donker);
  color: #E6E9DF;
  font-size: .9375rem;
}
.topbalk__binnen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
  padding-block: .375rem;
}
.topbalk a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--wit);
  font-weight: 600;
  text-decoration: none;
  min-height: 2.25rem;
}
.topbalk a:hover { text-decoration: underline; color: var(--wit); }
.topbalk__links { display: flex; align-items: center; gap: 1.5rem; }
@media (max-width: 56.1875em) {
  .topbalk { display: none; } /* mobiel heeft de vaste actiebalk onderaan */
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 240, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.header--gescrold {
  background: rgba(255, 255, 255, .97);
  border-bottom-color: var(--lijn);
  box-shadow: 0 1px 0 rgba(33, 38, 29, .02), 0 12px 28px -18px rgba(33, 38, 29, .28);
}
.header__binnen {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
  width: 100%;
  box-sizing: border-box;
  padding-inline: clamp(2rem, 4vw, 3rem);
}
.logo {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.logo img {
  width: clamp(10rem, 30vw, 13.5rem);
  height: auto;
}

.nav { display: flex; align-items: center; gap: .125rem; flex: none; }
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--klikhoogte);
  padding: .5rem 1.125rem;
  border-radius: 8px;
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--groen-donker);
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover { background: var(--grijsgroen); }
.nav a[aria-current="page"] {
  color: var(--groen);
  box-shadow: inset 0 -3px 0 var(--groen);
  border-radius: 8px 8px 0 0;
}

/* Uitklapmenu onder "Onze producten": toont de vier baden bij hover of focus */
.nav__item { position: relative; }
.nav__item > a { gap: .3125rem; }
.nav__pijl { flex: none; transition: transform .18s ease; }
.nav__item:hover .nav__pijl,
.nav__item:focus-within .nav__pijl { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: .375rem;
  min-width: 14rem;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw-groot);
  padding: .5rem;
  display: grid;
  gap: .125rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
/* onzichtbare brug zodat de cursor van de link naar het menu kan bewegen zonder dat het sluit */
.nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: .5rem;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: .5rem .875rem;
  border-radius: 8px;
  font-family: var(--font-tekst);
  font-weight: 500;
  font-size: 1rem;
  color: var(--antraciet);
  white-space: nowrap;
}
.nav__dropdown a:hover { background: var(--grijsgroen); color: var(--groen-donker); }
@media (prefers-reduced-motion: reduce) {
  .nav__dropdown, .nav__pijl { transition: none; }
}

.header__acties { display: flex; align-items: center; gap: .625rem; margin-left: auto; }
.header__advies {
  display: none;
  white-space: nowrap;
  flex: none;
}
@media (min-width: 80em) {
  .header__advies { display: inline-flex; }
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-width: var(--klikhoogte);
  min-height: var(--klikhoogte);
  padding: .5rem .875rem;
  background: none;
  border: 2px solid var(--lijn);
  border-radius: 10px;
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1rem;
  color: var(--groen-donker);
}
.hamburger:hover { border-color: var(--groen); }

.knop--headerbel__kort { display: none; }
@media (max-width: 56.1875em) {
  .nav { display: none; }
  .hamburger { display: inline-flex; }
  /* Op smal scherm alleen icoon + "Bel" tonen — nooit een los woord afbreken */
  .knop--headerbel__vol { display: none; }
  .knop--headerbel__kort { display: inline; }
}
/* Tussen 900-1280px: logo compacter zodat "Onze producten" / "Over ons" niet meer
   binnen hun eigen knop afbreken (kwam door te weinig breedte voor de volledige nav) */
@media (min-width: 56.25em) and (max-width: 79.9375em) {
  .logo img { width: clamp(7.5rem, 16vw, 9.5rem); }
  .nav a { padding-inline: .75rem; }
  .header__binnen { gap: .75rem; }
}
@media (max-width: 30em) {
  .header__binnen { gap: .5rem; }
  .header__acties { gap: .5rem; }
  .header .knop--headerbel { padding-inline: .875rem; }
  .hamburger { padding: .5rem .625rem; }
  .logo img { width: clamp(8.25rem, 27vw, 9.5rem); }
  /* Op zeer smalle schermen: alleen het hamburgericoon, label blijft voor schermlezers beschikbaar */
  .hamburger__label {
    position: absolute;
    left: -9999px;
  }
}

/* Mobiel menu (volledige breedte, onder de header) */
.mobiel-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--creme);
  overflow-y: auto;
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--lijn);
}
.mobiel-menu.is-open { display: block; }
.mobiel-menu ul { list-style: none; margin: 0; padding: 0; }
.mobiel-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
  padding: .75rem clamp(1.125rem, 4vw, 2rem);
  font-family: var(--font-kop);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--groen-donker);
  text-decoration: none;
  border-bottom: 1px solid var(--lijn);
}
.mobiel-menu a:hover { background: var(--grijsgroen); }
.mobiel-menu a[aria-current="page"] { color: var(--groen); }
.mobiel-menu__sub {
  font-size: 1.0625rem !important;
  padding-left: clamp(2.125rem, 8vw, 3rem) !important;
  font-weight: 500 !important;
}
.mobiel-menu__cta { padding: 1.5rem clamp(1.125rem, 4vw, 2rem); display: grid; gap: .875rem; }
body.menu-open { overflow: hidden; }

/* ---------- Hero (foto met donkere overlay, tekst ervoor) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--groen-donker);
}
.hero__foto {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(30, 38, 24, .82) 0%, rgba(30, 38, 24, .6) 52%, rgba(30, 38, 24, .28) 100%);
}
@media (max-width: 47.9375em) {
  .hero::after { background: rgba(30, 38, 24, .68); }
}
.hero__binnen { padding-block: clamp(3.5rem, 10vw, 7rem); }
.hero__tekst { max-width: 37rem; }
.hero h1 { margin-bottom: .5em; color: var(--wit); }
.hero__sub {
  font-size: clamp(1.125rem, 2.5vw, 1.3125rem);
  color: #E9EDE0;
  max-width: 34rem;
}
.hero .knoppenrij { margin-top: 1.75rem; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--wit);
}
.hero__trust svg { flex: none; color: #AECB95; }

/* Subpagina-hero */
.paginakop {
  background: linear-gradient(180deg, var(--grijsgroen) 0%, var(--creme) 100%);
  border-bottom: 1px solid var(--lijn);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.paginakop .intro { max-width: 44rem; }

/* Subpagina-hero met foto */
.paginakop--foto {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--groen-donker);
  border-bottom: none;
}
.paginakop--foto .paginakop__foto {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.paginakop--foto::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(30, 38, 24, .8) 0%, rgba(30, 38, 24, .55) 55%, rgba(30, 38, 24, .3) 100%);
}
@media (max-width: 47.9375em) {
  .paginakop--foto::after { background: rgba(30, 38, 24, .66); }
}
.paginakop--foto h1 { color: var(--wit); }
.paginakop--foto .kicker { color: #D8B98A; }
.paginakop--foto .intro { color: #E9EDE0; }

/* ---------- Breadcrumbs ---------- */
.kruimels { padding-top: 1.25rem; font-size: .9375rem; }
.kruimels ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-items: center;
}
.kruimels li { display: inline-flex; align-items: center; gap: .25rem; }
.kruimels li + li::before { content: "›"; color: var(--tekst-zacht); padding-inline: .25rem; }
.kruimels a { display: inline-flex; align-items: center; min-height: 2rem; }
.kruimels [aria-current="page"] { color: var(--tekst-zacht); }

/* ---------- Afbeeldingsplaceholder ----------
   Bewust ingehouden: een zachte foto-achtige verloop zonder gestippelde rand of
   "upload hier"-icoon, zodat het als rustige beeldvlek oogt in plaats van een AI-tool-kader. */
.ph {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  background: linear-gradient(160deg, #DCE4CE 0%, #B9C7A4 60%, #9FB088 100%);
  border-radius: var(--radius-groot);
  color: var(--groen-donker);
  width: 100%;
  overflow: hidden;
}
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--3x4 { aspect-ratio: 3 / 4; max-width: 22rem; }
.ph--1x1 { aspect-ratio: 1 / 1; }

/* Plaatshouder in een full-bleed beeldvlak (hero/paginakop/split-screen/content-banner):
   die klassen zetten zelf position/hoogte/breedte, hier alleen de ph-look herstellen. */
.hero__foto.ph,
.paginakop__foto.ph,
.split-screen__foto.ph,
.content-banner__foto.ph {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  border-radius: 0;
}
.ph svg { display: none; }
.ph strong { display: none; }
.ph span {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .01em;
  color: rgba(33, 38, 29, .55);
  max-width: none;
}

/* ---------- Visueel motief: grote sectienummers ----------
   Terugkerend element dat de route van advies → keuze → installatie → gebruik
   markeert. Gebruikt in de meerwaarde-sectie, de adviesroute en de productprofielen. */
.sectienummer {
  display: block;
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-warm-zacht);
  opacity: .55;
}
.sectie--donker .sectienummer,
.sectie--wit .voordeel .sectienummer { color: var(--accent-warm-zacht); }

/* ---------- Voordelen ---------- */
.voordelen {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
}
.voordeel {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--schaduw);
}
.voordeel__icoon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: var(--grijsgroen);
  color: var(--groen);
  margin-bottom: 1.125rem;
}
.voordeel h3 { font-size: 1.1875rem; margin-bottom: .5rem; }
.voordeel p { color: var(--tekst-zacht); font-size: 1rem; }
.voordeel .sectienummer { display: none; } /* niet gebruikt in deze kaartvariant */

/* ---------- Productenoverzicht (homepage): Excel/Robot/Standard + PediVue secundair ----------
   Opbouw per kaart: foto (ph) → klikbare naam+hint-balk (dé link naar de productpagina) →
   USP's. Alleen de balk is klikbaar, niet de hele kaart. */
.productengrid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40em) {
  .productengrid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 61.25em) {
  .productengrid { grid-template-columns: repeat(3, 1fr); }
}

.productkaart {
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  overflow: hidden;
  box-shadow: var(--schaduw);
}
.productkaart__foto {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 0;
}
.productkaart__balk {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1.125rem 1.375rem;
  border-top: 1px solid var(--lijn);
  border-bottom: 1px solid var(--lijn);
  text-decoration: none;
  background-color: var(--wit);
  transition: background-color .2s ease, border-color .2s ease;
}
.productkaart__balk:hover,
.productkaart__balk:focus-visible {
  background-color: var(--grijsgroen);
  border-color: var(--groen);
}
.productkaart__naam {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--groen-donker);
}
.productkaart__hint {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--tekst-zacht);
}
.productkaart__hint svg { flex: none; transition: transform .18s ease; }
.productkaart__balk:hover .productkaart__hint svg,
.productkaart__balk:focus-visible .productkaart__hint svg { transform: translateX(3px); }
.productkaart__usps {
  list-style: none;
  margin: 0;
  padding: 1.125rem 1.375rem 1.375rem;
  display: grid;
  gap: .55rem;
}
.productkaart__usps li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9375rem;
  color: var(--tekst-zacht);
}
.productkaart__usps svg { flex: none; color: var(--groen); margin-top: .15rem; }

/* PediVue: één lange, dunne balk onder de drie hoofdkaarten — bewust minder gewicht */
.pedivue-balk {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.125rem;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  padding: .875rem 1.375rem;
  text-decoration: none;
  box-shadow: var(--schaduw);
  transition: border-color .2s ease, background-color .2s ease;
}
.pedivue-balk:hover,
.pedivue-balk:focus-visible {
  background-color: var(--grijsgroen);
  border-color: var(--groen);
}
.pedivue-balk__foto {
  flex: none;
  width: 4.5rem;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}
.pedivue-balk__tekst {
  display: flex;
  flex-direction: column;
  gap: .125rem;
  min-width: 0;
}
.pedivue-balk__naam {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--groen-donker);
}
.pedivue-balk__omschrijving {
  font-size: .9375rem;
  color: var(--tekst-zacht);
}
.pedivue-balk__pijl {
  flex: none;
  margin-left: auto;
  display: inline-flex;
  color: var(--tekst-zacht);
  transition: transform .18s ease;
}
.pedivue-balk:hover .pedivue-balk__pijl,
.pedivue-balk:focus-visible .pedivue-balk__pijl { transform: translateX(3px); }
@media (max-width: 30em) {
  .pedivue-balk__omschrijving { display: none; }
}

/* ---------- Adviesstappen: proceslijn met een decoratief spoor van koeienklauwen ---------- */
.stappen-wrap { position: relative; }
.stappen {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.stap__nummer {
  position: relative;
  z-index: 1;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--groen);
  color: var(--wit);
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1.0625rem;
}
.stap__inhoud h3 { font-size: 1.125rem; margin: 0 0 .375rem; }
.stap__inhoud p { font-size: 1rem; color: var(--tekst-zacht); margin: 0; }

/* Decoratieve laag: standaard verborgen (mobiel/tablet houden de gestapelde layout) */
.stappen__spoor { display: none; }

@media (min-width: 56.25em) {
  .stappen { grid-template-columns: repeat(4, 1fr); }
  .stap__nummer { margin-bottom: 1.125rem; }

  /* Drie segmenten tussen de vier cirkels. De cirkels staan aan het begin van elke
     grid-kolom (niet gecentreerd), dus de posities zijn berekend op de werkelijke
     cirkelmiddens: kolombreedte = (100% - 3*kolomgap) / 4, cirkelmidden = kolomstart + 1,5rem.
     Elk segment houdt daarna nog eens 3rem vrije ruimte rond de cirkels aan (cirkelstraal
     1,5rem + buffer + halve klauwbreedte), zodat de afdrukken de cirkels nooit raken. */
  .stappen__spoor {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .spoor-segment {
    position: absolute;
    top: 1.5rem; /* zelfde hoogte als het midden van de nummercirkels */
    width: calc(25% - 5.625rem);
    height: 0;
  }
  .spoor-segment--a { left: 4.5rem; }
  .spoor-segment--b { left: calc(25% + 4.875rem); }
  .spoor-segment--c { left: calc(50% + 5.25rem); }

  .spoor-hoef {
    position: absolute;
    top: 0;
    width: 26px;
    height: auto;
    opacity: .65;
  }
}
@media (max-width: 56.1875em) {
  .stappen { grid-template-columns: 1fr; gap: 0; }
  .stappen li { position: relative; display: flex; gap: 1.25rem; padding-bottom: 2rem; }
  .stappen li:last-child { padding-bottom: 0; }
  .stappen li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 3rem;
    bottom: -2rem;
    left: 1.5rem;
    transform: translateX(-50%);
    width: 2px;
    background: var(--lijn);
  }
}

/* ---------- Klantcase (donkere sectie, compact) ---------- */
.case-sectie { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.case-sectie .kicker { color: #D8B98A; }
.case-sectie h2 { color: var(--wit); margin-bottom: .5rem; }
.case-sectie p { color: #E6E9DF; }
.case {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: center;
}
@media (min-width: 56.25em) {
  .case { grid-template-columns: .8fr 1.2fr; }
}
.case__media img {
  width: 100%;
  border-radius: var(--radius-groot);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.case__media .ph {
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border-color: rgba(255,255,255,.3);
  color: var(--wit);
}
.case__media .ph svg { color: rgba(255,255,255,.6); }
.case__media .ph span { color: #C9D1BE; }
.case__cijfers {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1.25rem;
}
.case__cijfer strong {
  display: block;
  font-family: var(--font-kop);
  font-size: 1.75rem;
  color: var(--accent-warm-zacht);
  line-height: 1.1;
}
.case__cijfer span { color: #C9D1BE; font-size: .875rem; }
.case-sectie .disclaimer {
  font-size: .875rem;
  color: #B7C1AA;
  border: none;
  padding-left: 0;
  margin-top: 1rem;
}
.case-sectie .citaat-inline {
  margin-top: 1rem;
  font-size: .9375rem;
  color: #DDE3D2;
  font-style: italic;
}
.disclaimer {
  font-size: .9375rem;
  color: var(--tekst-zacht);
  border-left: 3px solid var(--lijn);
  padding-left: 1rem;
  margin-top: 1.25rem;
}

/* ---------- Video ---------- */
.videogrid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}
.videokaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  overflow: hidden;
  box-shadow: var(--schaduw);
}
.videokaart h3 {
  font-size: 1.0625rem;
  margin: 0;
  padding: 1.125rem 1.25rem 1.25rem;
}
.video-vlak {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--groen-donker);
}
.video-vlak iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-start {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.video-start img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-start::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 43, 34, 0) 40%, rgba(38, 43, 34, .45));
}
.video-start__knop {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--groen-donker);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
  transition: transform .2s ease, background-color .2s ease;
}
.video-start:hover .video-start__knop { background: var(--wit); transform: scale(1.06); }
.video-start:focus-visible { outline-offset: -4px; outline-color: var(--wit); }
.videonoot { font-size: .9375rem; color: var(--tekst-zacht); margin-top: 1.25rem; }

/* ---------- Reviews ---------- */
.reviewgrid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.review {
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--schaduw);
}
.review blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  color: var(--antraciet);
}
.review blockquote p::before { content: "“"; color: var(--groen); font-weight: 700; }
.review blockquote p::after { content: "”"; color: var(--groen); font-weight: 700; }
.review footer {
  margin-top: auto;
  font-size: .9375rem;
  color: var(--tekst-zacht);
}
.review footer strong { display: block; color: var(--groen-donker); }
.review--placeholder {
  border-style: dashed;
  border-color: #9DB18B;
  background: var(--grijsgroen);
  box-shadow: none;
  align-items: flex-start;
}
.review--placeholder .reviewlabel {
  font-family: var(--font-kop);
  font-weight: 600;
  color: var(--groen-donker);
  margin-bottom: .5rem;
}
.review--placeholder p { font-size: .9375rem; color: var(--tekst-zacht); }

/* ---------- Citaat (pull-quote) ---------- */
.citaat {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--grijsgroen);
  border-left: 4px solid var(--groen);
  border-radius: 0 var(--radius-groot) var(--radius-groot) 0;
  max-width: 42rem;
}
.citaat p {
  margin: 0;
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.4;
  color: var(--groen-donker);
}
.citaat footer {
  margin-top: .75rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--tekst-zacht);
}

/* ---------- Persoon (Marcel) ---------- */
.persoon {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 50em) {
  .persoon { grid-template-columns: minmax(14rem, 20rem) 1fr; }
}
.persoon__kaartjes {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.persoon__kaartjes li {
  background: var(--grijsgroen);
  border: 1px solid var(--lijn);
  color: var(--groen-donker);
  border-radius: 999px;
  padding: .375rem .875rem;
  font-size: .9375rem;
  font-weight: 600;
}

/* ---------- CTA-band (varianten, zodat niet iedere sectie er hetzelfde uitziet) ---------- */
.ctaband { text-align: center; }
.ctaband h2 { color: var(--wit); }
.ctaband p { color: #E6E9DF; font-size: 1.1875rem; max-width: 38rem; margin-inline: auto; }
.ctaband .knoppenrij { margin-top: 2rem; }

/* Herbruikbare "grote telefoonregel" — dominante tel:-link, licht of donker inzetbaar */
.ctaband__bel {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-kop);
  font-weight: 650;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--groen-donker);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ctaband__bel svg { flex: none; color: var(--groen); }
.ctaband__bel:hover { color: var(--groen); }

/* Compacte variant: één dominante regel met het telefoonnummer, op donkere band */
.ctaband--compact { padding-block: clamp(2.5rem, 6vw, 3.5rem); }
.ctaband--compact .ctaband__label {
  display: block;
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1.0625rem;
  color: #D8B98A;
  margin-bottom: .75rem;
}
.ctaband--compact .ctaband__bel { color: var(--wit); }
.ctaband--compact .ctaband__bel svg { color: var(--accent-warm-zacht); }
.ctaband--compact .ctaband__bel:hover { color: #EAEDE3; }
.ctaband--compact .knoppenrij { margin-top: 1.75rem; }

/* Persoonlijke variant: portret + telefoonnummer naast elkaar */
.ctaband--persoon .container { text-align: left; }
.ctaband--persoon .ctapersoon {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}
@media (min-width: 50em) {
  .ctaband--persoon .ctapersoon { grid-template-columns: auto 1fr; }
}
.ctapersoon__foto .ph { max-width: 11rem; margin: 0; }
@media (min-width: 50em) { .ctapersoon__foto .ph { margin: 0; } }
.ctaband--persoon h2 { margin-bottom: .5rem; }
.ctaband--persoon p { margin-inline: 0; }
.ctaband--persoon .knoppenrij { justify-content: flex-start; margin-top: 1.75rem; }

/* ---------- Productvergelijking (tabel) ---------- */
.tabelwrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw);
}
.vergelijk {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  font-size: 1rem;
}
.vergelijk th,
.vergelijk td {
  padding: 1.125rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--lijn);
}
.vergelijk thead th {
  font-family: var(--font-kop);
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--tekst-zacht);
  background: var(--grijsgroen);
  white-space: nowrap;
}
.vergelijk tbody th {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--groen-donker);
  min-width: 12rem;
}
.vergelijk tbody th a {
  color: var(--groen-donker);
  text-decoration: none;
}
.vergelijk tbody th a:hover { color: var(--groen); text-decoration: underline; }
.vergelijk tbody th small {
  display: block;
  font-family: var(--font-tekst);
  font-weight: 400;
  font-size: .9375rem;
  color: var(--tekst-zacht);
  margin-top: .125rem;
}
.vergelijk td { color: var(--antraciet); }
.vergelijk tbody tr:last-child th,
.vergelijk tbody tr:last-child td { border-bottom: none; }
.vergelijk tbody tr:hover { background: #FAFBF5; }
.vergelijk .knop {
  min-height: 2.75rem;
  padding: .5rem 1.25rem;
  font-size: 1rem;
  white-space: nowrap;
}
/* Op mobiel vervangt een losse kaart per product de tabel (geen horizontaal scrollen nodig) */
.vergelijkkaarten { display: none; }
@media (max-width: 50em) {
  .tabelwrap { display: none; }
  .vergelijkkaarten { display: grid; gap: 1.25rem; }
}
.vergelijkkaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  padding: 1.625rem 1.5rem;
  box-shadow: var(--schaduw);
}
.vergelijkkaart__label {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--accent-warm);
  margin-bottom: .5rem;
}
.vergelijkkaart h3 { margin-bottom: .625rem; }
.vergelijkkaart p { color: var(--tekst-zacht); margin-bottom: 1.25rem; }
.vergelijkkaart .knop { width: 100%; }

/* ---------- Spec-lijst productpagina ---------- */
.specs {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.specs li {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.specs strong { display: block; font-family: var(--font-kop); color: var(--groen-donker); margin-bottom: .25rem; }
.specs span { color: var(--tekst-zacht); font-size: 1rem; }

.checklijst { list-style: none; margin: 0 0 1.1em; padding: 0; display: grid; gap: .625rem; }
.checklijst li { display: flex; align-items: flex-start; gap: .625rem; }
.checklijst svg { flex: none; color: var(--groen); margin-top: .25rem; }

/* ==========================================================================
   Content-beeldsysteem — herbruikbare varianten voor content+beeld-secties.
   Basisregel: variatie ontstaat via layout/schaal/uitsnede, niet via nieuwe
   stijlen — kleuren, radius, schaduw en spacing komen uit dezelfde tokens
   als de rest van de site.
   ========================================================================== */

/* --- .content-split: framed foto naast tekst (basis 50/50) ---
   Modifiers: --reverse (beeld links), --60-40 / --70-30 (asymmetrisch) */
.content-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 56.25em) {
  .content-split { grid-template-columns: 1fr 1fr; }
  .content-split--reverse > :first-child { order: 2; }
  .content-split--60-40 { grid-template-columns: 1.5fr 1fr; }
  .content-split--60-40.content-split--reverse { grid-template-columns: 1fr 1.5fr; }
  .content-split--70-30 { grid-template-columns: 1.7fr 1fr; }
  .content-split--70-30.content-split--reverse { grid-template-columns: 1fr 1.7fr; }
}
.content-split__foto {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw);
  display: block;
}
.content-split__foto--staand { aspect-ratio: 3 / 4; max-width: 24rem; margin-inline: auto; }

/* --- .split-screen: écht split-screen — de foto IS de sectiehelft ---
   Geen kader, geen marge boven/onder/naast de foto: het beeldvlak vult de volledige
   hoogte en breedte van zijn kant van de sectie. Plaats dit element rechtstreeks als
   <section> (niet in .sectie/.container), zodat er geen padding-block tussen komt.
   De tekstkolom regelt haar eigen binnenruimte. */
.split-screen {
  display: grid;
  background: var(--creme);
}
@media (min-width: 56.25em) {
  .split-screen { grid-template-columns: 1fr 1fr; min-height: 32rem; }
  .split-screen--reverse .split-screen__foto-wrap { order: 2; }
}
.split-screen__foto-wrap { position: relative; min-height: 20rem; }
.split-screen__foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-screen__tekst {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
}
.split-screen__tekst > * { max-width: 32rem; }
@media (max-width: 56.1875em) {
  .split-screen__foto-wrap { height: 17rem; min-height: 0; }
}

/* --- .content-banner: brede panoramische foto tussen twee secties --- */
.content-banner { width: 100%; overflow: hidden; }
.content-banner__foto {
  width: 100%;
  height: clamp(13rem, 30vw, 22rem);
  object-fit: cover;
  display: block;
}

/* --- .content-overlap: grote foto met kleiner overlappend detailkader --- */
.content-overlap { position: relative; }
.content-overlap__hoofd {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw);
  display: block;
}
@media (min-width: 56.25em) {
  .content-overlap__hoofd { aspect-ratio: 5 / 4; }
}
.content-overlap__detail {
  position: absolute;
  width: 38%;
  max-width: 13rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--schaduw-groot);
  border: 4px solid var(--wit);
  display: block;
}
.content-overlap__detail--rechtsonder { right: -1.25rem; bottom: -1.25rem; }
.content-overlap__detail--linksonder { left: -1.25rem; bottom: -1.25rem; }
@media (max-width: 30em) {
  .content-overlap__detail { width: 34%; }
  .content-overlap__detail--rechtsonder { right: -.625rem; bottom: -.625rem; }
  .content-overlap__detail--linksonder { left: -.625rem; bottom: -.625rem; }
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .875rem; max-width: 50rem; }
.faq details {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--klikhoogte);
  padding: 1rem 1.25rem;
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--groen-donker);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--grijsgroen);
  color: var(--groen);
  font-size: 1.25rem;
  font-weight: 600;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { background: var(--grijsgroen); }
.faq details > div { padding: 0 1.25rem 1.25rem; color: var(--tekst-zacht); }

/* ---------- Formulier ---------- */
.formulier { display: grid; gap: 1.25rem; }
.veld { display: grid; gap: .375rem; }
.veld label { font-weight: 600; color: var(--groen-donker); }
.veld .optioneel { font-weight: 400; color: var(--tekst-zacht); }
.veld input,
.veld select,
.veld textarea {
  width: 100%;
  min-height: var(--klikhoogte);
  padding: .75rem 1rem;
  border: 1.5px solid var(--lijn-input);
  border-radius: 10px;
  background: var(--wit);
  font: inherit;
  color: var(--antraciet);
}
.veld textarea { min-height: 8rem; resize: vertical; }
.veld input:focus, .veld select:focus, .veld textarea:focus {
  outline: 3px solid var(--groen);
  outline-offset: 1px;
  border-color: var(--groen);
}
.veld input[aria-invalid="true"],
.veld textarea[aria-invalid="true"] { border-color: var(--fout); }
.veld-fout {
  display: none;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--fout);
}
.veld.heeft-fout .veld-fout { display: block; }

.check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.check input {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: .2rem;
  accent-color: var(--groen);
}
.check label { font-size: 1rem; font-weight: 400; }

.formulier-melding {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.formulier-melding.is-fout {
  display: block;
  background: #FBEAE9;
  border: 1px solid var(--fout);
  color: var(--fout);
}

.verborgen { position: absolute; left: -9999px; }

/* ---------- Contactopties ---------- */
.contactopties {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.contactoptie {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-groot);
  padding: 1.375rem 1.5rem;
  text-decoration: none;
  color: var(--antraciet);
  box-shadow: var(--schaduw);
  transition: border-color .2s ease;
}
.contactoptie:hover { border-color: var(--groen); color: var(--antraciet); }
.contactoptie__icoon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: var(--grijsgroen);
  color: var(--groen);
}
.contactoptie strong { display: block; font-family: var(--font-kop); color: var(--groen-donker); }
.contactoptie span { color: var(--tekst-zacht); font-size: 1rem; }

/* ---------- Footer ----------
   Formaat afgestemd op referentie (de Webtandem): logo + korte omschrijving,
   daarnaast drie ruime kolommen, daaronder een dunne juridische regel. */
.footer {
  background: #232B1B; /* iets dieper dan sectie--donker, zodat een donkere CTA erboven nooit visueel samensmelt */
  color: #DDE3D2;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 1rem;
}
.footer a { color: var(--wit); text-decoration: none; }
.footer a:hover { text-decoration: underline; color: var(--wit); }

.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  margin-bottom: 2.5rem;
}
.footer__logo { display: inline-flex; margin-bottom: .875rem; }
.footer__logo img { width: 9.5rem; height: auto; display: block; }
.footer__omschrijving { max-width: 22rem; color: #C9D1BE; }
.footer__kop {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9FAD8F;
  margin-bottom: 1rem;
}
.footer__lijst { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; }
.footer__lijst a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
}
.footer__social { display: flex; gap: .625rem; margin-top: .5rem; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  color: var(--wit);
  transition: background-color .2s ease;
}
.footer__social a:hover { background: var(--groen); text-decoration: none; }

/* Rij social-iconen op een lichte achtergrond (bv. contactpagina) */
.socialrij { display: flex; flex-wrap: wrap; gap: .625rem; align-items: center; }
.socialrij a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--grijsgroen);
  color: var(--groen-donker);
  transition: background-color .2s ease, color .2s ease;
}
.socialrij a:hover { background: var(--groen); color: var(--wit); }
.socialrij__noot { font-size: .9375rem; color: var(--tekst-zacht); margin-top: .75rem; }
.footer__onder {
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  justify-content: space-between;
  font-size: .875rem;
  color: #C4CDB6;
}
.footer__onder a { color: #E6E9DF; text-decoration: underline; text-underline-offset: .15em; }
.footer__onder a:hover { color: var(--wit); }


/* ---------- Mobiele actiebalk ---------- */
.mobiele-balk {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .625rem .625rem calc(.625rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--lijn);
  box-shadow: 0 -4px 16px rgba(38, 43, 34, .12);
}
/* Grid-items mogen krimpen tot onder hun content-breedte, anders duwt "WhatsApp" de balk
   op zeer smalle schermen (320px) buiten de viewport */
.mobiele-balk .knop { min-width: 0; }
.mobiele-balk .knop { min-height: 3.375rem; font-size: 1.0625rem; padding-inline: 1rem; }
@media (max-width: 22.5em) {
  .mobiele-balk .knop { font-size: 1rem; padding-inline: .75rem; gap: .4375rem; }
}
@media (min-width: 56.25em) {
  .mobiele-balk { display: none; }
}
@media (max-width: 56.1875em) {
  body { padding-bottom: calc(var(--mobielebalk-h) + env(safe-area-inset-bottom)); }
}

/* Desktop: subtiele vaste WhatsApp-knop */
.zwevend-whatsapp {
  display: none;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 110;
  align-items: center;
  gap: .625rem;
  min-height: 3.375rem;
  padding: .75rem 1.375rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--wit);
  font-family: var(--font-kop);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(22, 97, 55, .4);
  transition: background-color .2s ease;
}
.zwevend-whatsapp:hover { background: var(--whatsapp-diep); color: var(--wit); }
@media (min-width: 56.25em) {
  .zwevend-whatsapp { display: inline-flex; }
}

/* ---------- Subtiele verschijn-animatie ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
  }
  html.js .reveal.is-zichtbaar {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Galerij: masonry-grid, elk item houdt zijn eigen beeldverhouding aan ---------- */
.galerijgrid {
  columns: 1;
  column-gap: 1.25rem;
}
@media (min-width: 40em) {
  .galerijgrid { columns: 2; }
}
@media (min-width: 61.25em) {
  .galerijgrid { columns: 3; }
}
.galerij-item { break-inside: avoid; margin: 0 0 1.25rem; }
.galerij-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-groot);
}
.galerij-trigger .ph { width: 100%; }
.galerij-trigger:hover .ph { filter: brightness(.97); }

/* ---------- Lightbox (native <dialog>: Escape en backdrop-focus komen gratis mee) ---------- */
.lightbox {
  border: 0;
  padding: 0;
  max-width: min(90vw, 48rem);
  max-height: 85vh;
  background: var(--wit);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw-groot);
}
.lightbox::backdrop { background: rgba(20, 24, 16, .72); }
.lightbox__inhoud { padding: 1.25rem; }
.lightbox__foto {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}
.lightbox__titel { margin: 1rem 0 0; font-weight: 600; color: var(--groen-donker); }
.lightbox__sluit {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--groen-donker);
  cursor: pointer;
}
.lightbox__sluit:hover { background: var(--wit); }

/* ---------- 404 ---------- */
.fout404 { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.fout404 .knoppenrij { margin-top: 2rem; }

/* ---------- Print ---------- */
@media print {
  .topbalk, .header, .mobiele-balk, .zwevend-whatsapp, .footer, .mobiel-menu { display: none !important; }
}
