/* EK-Zorg — vormgeving
   Rustig, ruim en verzorgd. Zachte blauw- en groentinten, afgeronde vormen. */

:root {
  --inkt:        #0c2830;
  --inkt-zacht:  #47646d;
  --inkt-licht:  #6c858d;

  --blauw:       #14606f;
  --blauw-diep:  #0b3f4b;
  --blauw-nacht: #072e37;
  --groen:       #106030;   /* uit het logo, contrast 7.7:1 op wit */
  --groen-zacht: #eef6ef;
  --groen-mist:  #dcecdd;

  --wolk:        #f4f9f9;
  --wolk-diep:   #e6f0f0;
  --zand:        #faf7f2;
  --rand:        #dbe8e9;
  --rand-zacht:  #eaf2f2;
  --wit:         #ffffff;
  --focus:       #a34a06;

  --rond-s: 12px;
  --rond-m: 20px;
  --rond-l: 30px;
  --rond-xl: 44px;

  --schaduw-s: 0 1px 2px rgba(12,40,48,.05);
  --schaduw-m: 0 2px 6px rgba(12,40,48,.05), 0 14px 34px rgba(12,40,48,.07);
  --schaduw-l: 0 4px 12px rgba(12,40,48,.07), 0 28px 64px rgba(12,40,48,.11);

  --breedte: 1180px;
  --smal: 730px;

  --sans: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: ui-serif, Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .onthul { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--inkt);
  background: var(--wit);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--inkt); margin: 0 0 .55em; font-weight: 600; }
h1, h2 { font-family: var(--serif); font-weight: 500; line-height: 1.14; letter-spacing: -.018em; }
h1 { font-size: clamp(2.4rem, 1.5rem + 3.4vw, 4.15rem); }
h2 { font-size: clamp(1.85rem, 1.35rem + 2vw, 2.85rem); }
h3 { font-size: 1.19rem; line-height: 1.35; letter-spacing: -.005em; font-weight: 640; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blauw-diep); text-underline-offset: .2em; text-decoration-thickness: .07em; transition: color .18s ease; }
a:hover { color: var(--blauw); }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 5px; }
img, svg { max-width: 100%; height: auto; display: block; }
::selection { background: var(--groen-mist); color: var(--blauw-nacht); }

/* ---------- Opmaakhulp ---------- */

.omhulsel { width: 100%; max-width: var(--breedte); margin-inline: auto; padding-inline: 24px; }
.smal { max-width: var(--smal); }
.sectie { padding-block: clamp(3rem, 2.1rem + 3.6vw, 5.5rem); position: relative; }
.sectie--wolk { background: var(--wolk); }
.sectie--groen { background: var(--groen-zacht); }
.sectie--zand  { background: var(--zand); }

.lood { font-size: clamp(1.1rem, 1.02rem + .42vw, 1.32rem); color: var(--inkt-zacht); line-height: 1.66; }
.kop-groep { max-width: 62ch; margin-bottom: clamp(2rem, 1.7rem + 1.2vw, 2.9rem); }

.oogje {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .765rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--groen); margin-bottom: 1.1rem;
}
.oogje::before { content: ""; width: 1.9rem; height: 1px; background: currentColor; opacity: .5; }

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

.invullen {
  background: #fdf1d4; box-shadow: 0 0 0 1px #e6cd91;
  border-radius: 4px; padding: 0 .24em; font-style: normal;
}

/* Rustig invaren bij het scrollen */
.onthul { opacity: 0; transform: translateY(22px); transition: opacity .75s cubic-bezier(.2,.7,.3,1), transform .75s cubic-bezier(.2,.7,.3,1); }
.onthul.zichtbaar { opacity: 1; transform: none; }

/* ---------- Knoppen ---------- */

.knop {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 2.9rem; padding: .75em 1.35em; border-radius: 999px;
  font-weight: 620; font-size: .995rem; letter-spacing: .002em; line-height: 1.2;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .18s ease, box-shadow .2s ease;
}
.knop svg { width: 18px; height: 18px; flex: none; }
.knop:hover { transform: translateY(-2px); }
.knop:active { transform: translateY(0); }
.knop--vol { background: var(--blauw-diep); color: var(--wit); box-shadow: 0 6px 18px rgba(11,63,75,.22); }
.knop--vol:hover { background: var(--blauw); color: var(--wit); box-shadow: 0 12px 28px rgba(11,63,75,.28); }
.knop--rand { background: var(--wit); color: var(--blauw-diep); border-color: var(--rand); box-shadow: var(--schaduw-s); }
.knop--rand:hover { border-color: var(--blauw); background: var(--wit); color: var(--blauw-diep); box-shadow: var(--schaduw-m); }
.knop--groen { background: var(--groen); color: var(--wit); box-shadow: 0 6px 18px rgba(16,96,48,.22); }
.knop--groen:hover { background: #0c4a25; color: var(--wit); }
.knoppen { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.25rem; }

/* WhatsApp-knop */
.knop--wa { background: #1f9d55; color: #fff; box-shadow: 0 6px 18px rgba(31,157,85,.24); }
.knop--wa:hover { background: #17864a; color: #fff; box-shadow: 0 12px 28px rgba(31,157,85,.3); }
.oproep .knop--wa { background: #23ad5e; color: #fff; }
.oproep .knop--wa:hover { background: #1c9350; color: #fff; }

/* Op smalle schermen knoppen over de volle breedte: groter raakvlak */
@media (max-width: 560px) {
  .knoppen { gap: .6rem; }
  .knoppen .knop { flex: 1 1 100%; }
}

/* ---------- Kop ---------- */

.overslaan {
  position: absolute; left: 14px; top: -70px; z-index: 100;
  background: var(--blauw-diep); color: var(--wit);
  padding: .8em 1.3em; border-radius: 0 0 var(--rond-s) var(--rond-s);
  text-decoration: none; font-weight: 600; transition: top .15s ease;
}
.overslaan:focus { top: 0; color: var(--wit); }

.site-kop {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(1.8) blur(14px);
  -webkit-backdrop-filter: saturate(1.8) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-kop.gescrold { border-bottom-color: var(--rand-zacht); box-shadow: 0 1px 20px rgba(12,40,48,.05); background: rgba(255,255,255,.93); }
.kop-binnen { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 82px; }

.merk { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--inkt); }
.merk__teken { flex: none; width: 46px; height: 46px; }
.merk__naam { font-family: var(--serif); font-weight: 500; font-size: 1.22rem; letter-spacing: -.01em; line-height: 1.1; }
.merk__rol { display: block; font-family: var(--sans); font-weight: 500; font-size: .755rem; color: var(--inkt-licht); letter-spacing: .045em; text-transform: uppercase; margin-top: .28em; }

/* Acties rechts in de kopbalk */
.kop-acties { display: flex; align-items: center; gap: .5rem; }

/* WhatsApp-snelkoppeling in de kopbalk: alleen op mobiel, altijd zichtbaar */
.kop-wa {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none;
  background: #1f9d55; color: #fff; border-radius: 50%;
  box-shadow: 0 4px 12px rgba(31,157,85,.28);
  transition: background-color .2s ease, transform .18s ease;
}
.kop-wa:hover { background: #17864a; color: #fff; transform: translateY(-1px); }
.kop-wa svg { width: 22px; height: 22px; }

.menu-knop {
  display: none; align-items: center; gap: .55em;
  background: var(--wit); border: 1px solid var(--rand); border-radius: 999px;
  padding: .6em 1.1em; font: inherit; font-size: .95rem; font-weight: 600; color: var(--inkt); cursor: pointer;
}
.menu-knop__streepjes { position: relative; width: 18px; height: 1.6px; background: var(--inkt); border-radius: 2px; }
.menu-knop__streepjes::before, .menu-knop__streepjes::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--inkt); border-radius: 2px;
}
.menu-knop__streepjes::before { top: -6px; }
.menu-knop__streepjes::after  { top: 6px; }

.hoofdmenu ul { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.hoofdmenu a {
  position: relative; display: block; padding: .6em .95em; border-radius: 999px;
  text-decoration: none; color: var(--inkt-zacht); font-weight: 560; font-size: .96rem;
  transition: color .18s ease, background-color .18s ease;
}
.hoofdmenu a:hover { color: var(--blauw-diep); background: var(--wolk-diep); }
.hoofdmenu a[aria-current="page"] { color: var(--blauw-diep); font-weight: 660; }
.hoofdmenu a[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: .18em; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--groen);
}
.hoofdmenu .menu-cta a { background: var(--blauw-diep); color: var(--wit); padding-inline: 1.4em; margin-left: .45rem; box-shadow: 0 4px 14px rgba(11,63,75,.2); }
.hoofdmenu .menu-cta a:hover { background: var(--blauw); color: var(--wit); }
.hoofdmenu .menu-cta a::after { display: none; }

/* WhatsApp-snelkoppeling: alleen in het mobiele menu */
.menu-wa { display: none; }

@media (max-width: 940px) {
  .menu-knop { display: inline-flex; }
  .kop-wa { display: inline-flex; }
  .hoofdmenu {
    display: none; position: absolute; left: 14px; right: 14px; top: calc(100% + 10px);
    background: var(--wit); border: 1px solid var(--rand); border-radius: var(--rond-m);
    box-shadow: var(--schaduw-l); padding: .7rem;
  }
  .hoofdmenu.open { display: block; }
  .hoofdmenu ul { flex-direction: column; align-items: stretch; gap: .1rem; }
  .hoofdmenu a { padding: .85em 1.1em; border-radius: var(--rond-s); }
  .hoofdmenu a[aria-current="page"]::after { left: auto; right: 1.1em; bottom: 50%; transform: translateY(50%); }
  .hoofdmenu .menu-cta a { text-align: center; margin: .45rem 0 0; }
  .menu-wa { display: block; }
  .menu-wa a {
    display: flex; align-items: center; justify-content: center; gap: .5em;
    background: #1f9d55; color: #fff; text-align: center;
    margin-top: .4rem; border-radius: var(--rond-s); font-weight: 620;
  }
  .menu-wa a:hover { background: #17864a; color: #fff; }
  .menu-wa svg { width: 18px; height: 18px; }
  .menu-wa a::after { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(168deg, var(--wolk) 0%, #eef6f3 46%, var(--groen-zacht) 100%);
  padding-block: clamp(3.25rem, 2rem + 5vw, 6.5rem);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(70px); opacity: .5;
}
.hero::before { width: 30rem; height: 30rem; top: -12rem; right: -8rem; background: #bfe0d6; }
.hero::after  { width: 24rem; height: 24rem; bottom: -14rem; left: -9rem; background: #c6dfe8; }

.hero__raster { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2.25rem, 1rem + 5vw, 5rem); align-items: center; }
.hero__tekst { max-width: 36rem; }
.hero__regio { font-weight: 620; color: var(--groen); }

.hero__beeld { position: relative; }
.hero__beeld img, .hero__beeld svg {
  width: 100%; border-radius: var(--rond-xl); box-shadow: var(--schaduw-l);
}
.hero__beeld::after {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--rond-xl); pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

@media (max-width: 940px) {
  .hero__raster { grid-template-columns: 1fr; }
  .hero__beeld { order: -1; max-width: 30rem; }
}

/* Kleine bewijsregel onder de hero */
.bewijs { display: flex; flex-wrap: wrap; gap: 1.5rem 2.75rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(12,40,48,.1); }
.bewijs div { min-width: 8rem; }
.bewijs dt { font-family: var(--serif); font-size: 1.85rem; line-height: 1; color: var(--blauw-diep); margin-bottom: .3rem; }
.bewijs dd { margin: 0; font-size: .875rem; color: var(--inkt-zacht); letter-spacing: .01em; }

/* ---------- Kaarten ---------- */

.raster { display: grid; gap: 1.35rem; }
.raster--2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.raster--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.raster--4 { grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); }

.kaart {
  position: relative; background: var(--wit);
  border: 1px solid var(--rand-zacht); border-radius: var(--rond-l);
  padding: 2rem 1.9rem; box-shadow: var(--schaduw-s);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.kaart:hover { transform: translateY(-4px); box-shadow: var(--schaduw-m); border-color: var(--rand); }
.kaart h3 { margin-bottom: .5em; }
.kaart p { color: var(--inkt-zacht); }
.sectie--wolk .kaart, .sectie--groen .kaart { border-color: transparent; }

.kaart__teken {
  width: 48px; height: 48px; border-radius: 15px;
  background: linear-gradient(145deg, var(--groen-zacht), var(--groen-mist));
  color: var(--groen); display: grid; place-items: center; margin-bottom: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(16,96,48,.10);
}
.kaart__teken svg { width: 23px; height: 23px; }
.waarde h3 { font-size: 1.1rem; }

/* ---------- Diensten ---------- */

.dienst { display: grid; grid-template-columns: 48px 1fr; gap: 1.2rem; align-items: start; }
.dienst .kaart__teken { margin-bottom: 0; }
.dienst h3 { margin-bottom: .4em; }

.feiten { display: grid; gap: 1.35rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 2.25rem; }
.feit { background: var(--wit); border: 1px solid var(--rand-zacht); border-radius: var(--rond-m); padding: 1.6rem 1.7rem; box-shadow: var(--schaduw-s); }
.feit dt { font-size: .765rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--groen); margin-bottom: .55rem; }
.feit dd { margin: 0; color: var(--inkt); }

/* ---------- Stappen ---------- */

.stappen { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; counter-reset: stap; }
.stap {
  position: relative; counter-increment: stap;
  background: var(--wit); border: 1px solid var(--rand-zacht); border-radius: var(--rond-l);
  padding: 1.55rem 1.7rem 1.55rem 5rem; box-shadow: var(--schaduw-s);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.stap:hover { transform: translateY(-3px); box-shadow: var(--schaduw-m); }
.stap::before {
  content: counter(stap);
  position: absolute; left: 1.7rem; top: 1.5rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: linear-gradient(150deg, var(--blauw), var(--blauw-diep)); color: var(--wit);
  display: grid; place-items: center; font-family: var(--serif); font-size: 1rem;
  box-shadow: 0 4px 12px rgba(11,63,75,.24);
}
.stap h3 { margin-bottom: .45em; }
.stap p { color: var(--inkt-zacht); margin-bottom: 0; }
@media (max-width: 600px) {
  .stap { padding: 5.1rem 1.5rem 1.7rem; }
  .stap::before { left: 1.5rem; top: 1.7rem; }
}

/* ---------- Lijsten ---------- */

.vinkjes { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.vinkjes li { position: relative; padding-left: 2rem; color: var(--inkt-zacht); }
.vinkjes li::before {
  content: ""; position: absolute; left: .1rem; top: .5em;
  width: 1.05rem; height: .58rem;
  border-left: 2.4px solid var(--groen); border-bottom: 2.4px solid var(--groen);
  transform: rotate(-45deg); border-radius: 1px;
}

/* ---------- Oproep ---------- */

.oproep {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--blauw-diep) 0%, var(--blauw-nacht) 100%);
  color: var(--wit); border-radius: var(--rond-xl);
  padding: clamp(2.5rem, 1.6rem + 3.4vw, 4.5rem); text-align: center;
  box-shadow: var(--schaduw-l);
}
.oproep::before {
  content: ""; position: absolute; width: 26rem; height: 26rem; border-radius: 50%;
  top: -13rem; right: -8rem; background: rgba(127,201,180,.16); filter: blur(50px);
}
.oproep > * { position: relative; }
.oproep h2 { color: var(--wit); }
.oproep p { color: #b9d7dd; max-width: 54ch; margin-inline: auto; font-size: 1.09rem; }
.oproep .knoppen { justify-content: center; }
.oproep .knop--rand { background: transparent; color: var(--wit); border-color: rgba(255,255,255,.42); box-shadow: none; }
.oproep .knop--rand:hover { background: rgba(255,255,255,.14); color: var(--wit); border-color: var(--wit); }
.oproep .knop--vol { background: var(--wit); color: var(--blauw-diep); }
.oproep .knop--vol:hover { background: var(--wolk-diep); color: var(--blauw-diep); }
.oproep .invullen { background: rgba(253,241,212,.24); box-shadow: none; color: var(--wit); }

/* ---------- Formulier ---------- */

.formulier { background: var(--wit); border: 1px solid var(--rand-zacht); border-radius: var(--rond-l); padding: clamp(1.6rem, 1rem + 2.2vw, 2.75rem); box-shadow: var(--schaduw-m); }
.veld { margin-bottom: 1.4rem; }
.veld label { display: block; font-weight: 630; margin-bottom: .45rem; font-size: .97rem; }
.veld .hint { display: block; font-weight: 400; font-size: .89rem; color: var(--inkt-licht); margin-top: -.2rem; margin-bottom: .55rem; }
.veld input, .veld textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--inkt);
  padding: .85em 1.05em; border: 1.5px solid var(--rand); border-radius: var(--rond-s);
  background: var(--wit); transition: border-color .18s ease, box-shadow .18s ease;
}
.veld input:hover, .veld textarea:hover { border-color: #c3dadc; }
.veld input:focus, .veld textarea:focus { border-color: var(--blauw); box-shadow: 0 0 0 4px rgba(20,96,111,.1); }
.veld textarea { min-height: 9.5rem; resize: vertical; }
.verplicht { color: #9c2f18; font-weight: 700; }

.instemming { display: flex; gap: .8rem; align-items: flex-start; background: var(--wolk); border-radius: var(--rond-m); padding: 1.2rem 1.35rem; }
.instemming input { flex: none; width: 1.15rem; height: 1.15rem; margin-top: .3rem; accent-color: var(--blauw-diep); }
.instemming label { font-weight: 400; font-size: .95rem; color: var(--inkt-zacht); margin: 0; }

.honingpot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.melding { border-radius: var(--rond-m); padding: 1.2rem 1.4rem; margin-bottom: 1.85rem; }
.melding--fout { background: #fdf0eb; border: 1px solid #eec1b4; color: #77220f; }
.melding--goed { background: var(--groen-zacht); border: 1px solid #b3d8c4; color: #1c5240; }
.melding ul { margin: .55rem 0 0; padding-left: 1.2rem; }

/* ---------- Contact ---------- */

.contactlijst { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.35rem; }
.contactlijst li { display: grid; grid-template-columns: 44px 1fr; gap: 1.05rem; align-items: start; }
.contactlijst .kaart__teken { width: 44px; height: 44px; margin: 0; }
.contactlijst strong { display: block; font-weight: 650; font-size: .97rem; }
.contactlijst span { color: var(--inkt-zacht); }

/* ---------- Voettekst ---------- */

.voet { background: var(--blauw-nacht); color: #a9c6cc; padding-block: 4.5rem 2rem; }
.voet a { color: #e5f1f2; text-decoration: none; }
.voet a:hover { color: var(--wit); text-decoration: underline; }
.voet__raster { display: grid; gap: 3rem; grid-template-columns: 1.5fr 1fr 1.15fr; }
.voet h2 { font-family: var(--sans); color: var(--wit); font-size: .77rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.2em; }
.voet ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; font-size: .96rem; }
.voet__merk { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; color: var(--wit); margin: 0; letter-spacing: -.01em; line-height: 1.1; }
.voet__gegevens { font-size: .95rem; margin-bottom: 1.4rem; }
.voet__gegevens dt { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #7fb0b8; margin-bottom: .15rem; }
.voet__gegevens dd { margin: 0 0 .85rem; }
.voet .invullen { background: rgba(253,241,212,.2); box-shadow: none; color: #f2e6c9; }
.voet__onder {
  border-top: 1px solid rgba(255,255,255,.13);
  margin-top: 3rem; padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .88rem;
}
.sociaal { display: flex; gap: .65rem; margin-top: 1.35rem; }
.sociaal a { width: 42px; height: 42px; border-radius: 13px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background-color .2s ease, transform .2s ease; }
.sociaal a:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.sociaal svg { width: 19px; height: 19px; }

@media (max-width: 820px) { .voet__raster { grid-template-columns: 1fr; gap: 2.25rem; } }

/* ---------- Inhoudspagina's ---------- */

.pagina-kop {
  position: relative; overflow: hidden;
  background: linear-gradient(168deg, var(--wolk) 0%, #eff6f4 100%);
  padding-block: clamp(2.4rem, 1.9rem + 2.4vw, 4rem);
  border-bottom: 1px solid var(--rand-zacht);
}
.pagina-kop::after {
  content: ""; position: absolute; width: 24rem; height: 24rem; border-radius: 50%;
  top: -13rem; right: -7rem; background: #cbe4dc; filter: blur(65px); opacity: .55;
}
.pagina-kop > * { position: relative; }
.pagina-kop p { color: var(--inkt-zacht); max-width: 64ch; margin-bottom: 0; font-size: 1.09rem; }

.proza h2 { margin-top: 2.75rem; }
.proza h3 { margin-top: 1.9rem; }
.proza > :first-child { margin-top: 0; }
.proza ul, .proza ol { padding-left: 1.35rem; color: var(--inkt-zacht); }
.proza li { margin-bottom: .55rem; }

.kruimels { font-size: .875rem; color: var(--inkt-licht); margin-bottom: 1.1rem; letter-spacing: .01em; }
.kruimels a { color: var(--inkt-licht); text-decoration: none; }
.kruimels a:hover { color: var(--blauw); text-decoration: underline; }

/* Tijdlijn op de cv-pagina */
.tijdlijn { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.tijdlijn .kaart { padding-left: 2rem; }
.tijdlijn .periode {
  display: inline-flex; align-items: center; font-size: .755rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--groen); margin-bottom: .7rem;
}

/* ---------- Brede beeldband ---------- */

.beeldband { padding-block: 0; }
.beeldband figure { margin: 0; }
.beeldband img {
  width: 100%; height: clamp(13rem, 11rem + 12vw, 20rem); object-fit: cover;
  border-radius: var(--rond-xl); box-shadow: var(--schaduw-m);
}
.beeldband figcaption { margin-top: .9rem; font-size: .875rem; color: var(--inkt-licht); text-align: center; }

/* Vermelding van de bouwer in de voettekst */
.voet__bouwer { color: #7fb0b8; }
.voet__bouwer a { color: #cfe3e6; }



/* Merkblok in de voettekst: scherp, want echte tekst naast het beeldmerk */
.voet__merkblok { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.voet__hart { width: 56px; height: 56px; flex: none; }
.voet__slogan { font-family: var(--serif); font-style: italic; font-size: .95rem; color: #8fbcc2; margin: .1rem 0 0; }

/* Slogan uit het logo */
.slogan {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  color: var(--groen); margin: -.35em 0 1.1em;
}

/* ---------- Portret op Over mij ---------- */

.portret { position: relative; }
.portret img {
  width: 100%; border-radius: var(--rond-xl);
  box-shadow: var(--schaduw-l);
}
.portret__naam {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  margin: 0; padding: .75rem 1.5rem;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 999px; box-shadow: var(--schaduw-m);
  font-weight: 650; font-size: .97rem; color: var(--inkt);
  text-align: center; white-space: nowrap;
}
.portret__naam span {
  display: block; font-weight: 500; font-size: .8rem;
  color: var(--inkt-licht); letter-spacing: .03em;
}
@media (max-width: 940px) { .portret { max-width: 26rem; margin-inline: auto; } }

/* ---------- Stappenstroom op Werkwijze ---------- */

.stroom { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-bottom: 2.5rem; }
.stroom::before {
  content: ""; position: absolute; left: 12%; right: 12%; top: 1.85rem; height: 2px;
  background: linear-gradient(90deg, var(--groen-mist), var(--groen), var(--groen-mist));
  z-index: 0;
}
.stroom__stap { position: relative; z-index: 1; text-align: center; }
.stroom__bol {
  width: 3.7rem; height: 3.7rem; margin: 0 auto .75rem;
  border-radius: 50%; background: var(--wit);
  border: 2px solid var(--groen-mist);
  display: grid; place-items: center; color: var(--groen);
  box-shadow: var(--schaduw-s);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.stroom__stap:hover .stroom__bol { transform: translateY(-4px); border-color: var(--groen); box-shadow: var(--schaduw-m); }
.stroom__bol svg { width: 22px; height: 22px; }
.stroom__nr {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--groen); margin-bottom: .3rem;
}
.stroom__stap h3 { font-size: 1.02rem; margin-bottom: .35em; }
.stroom__stap p { font-size: .92rem; color: var(--inkt-zacht); margin: 0; }

@media (max-width: 820px) {
  .stroom { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .stroom::before { display: none; }
}
@media (max-width: 480px) { .stroom { grid-template-columns: 1fr; } }

/* Wat u meebrengt / wat ik meebreng */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; } }

.tijdsduur {
  display: inline-flex; align-items: center; gap: .4em;
  font-size: .75rem; font-weight: 650; color: var(--groen);
  background: var(--groen-zacht); border-radius: 999px;
  padding: .25em .75em; margin-bottom: .6rem;
}

/* Lagere variant van de beeldband */
.beeldband--laag img { height: clamp(10rem, 8.5rem + 9vw, 15rem); }
