/* =====================================================================
   Gewichtskliniek De Prins - Design System
   Merkkleuren afgeleid van De Prins Huisartspraktijk (logo + website)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand - teal-groen (primair) */
  --green:      #59a38f;
  --green-600:  #4a917e;
  --green-700:  #3c7a69;
  --green-800:  #2f6154;
  --teal:       #4fa3a0;

  /* Brand - magenta/framboos (accent, spaarzaam) */
  --magenta:     #c8267f;
  --magenta-600: #b01f6e;
  --magenta-700: #8f195a;

  /* Achtergronden: warm zand/creme ("premium kliniek"-thema 2026-07-09) */
  --mint:     #ece4d9;
  --mint-50:  #f7f3ed;
  --cream:    #faf9f6;
  --white:    #ffffff;

  /* Tekst */
  --ink:    #26332f;   /* koppen / warm bijna-zwart */
  --body:   #48544f;   /* bodytekst */
  --muted:  #77837d;   /* secundair */
  --line:   #ece6de;   /* randen */

  /* Typografie: geometrische sans; serif alleen nog voor accenten */
  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Maatvoering */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-lg: 34px;

  /* Schaduwen */
  --shadow-sm: 0 4px 18px rgba(38, 51, 47, .06);
  --shadow:    0 22px 55px -24px rgba(38, 51, 47, .20);
  --shadow-lg: 0 44px 100px -42px rgba(38, 51, 47, .30);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 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: none !important; transition: none !important; }
}
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green-700); text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typografie ----------
   Koppen zijn licht (300) met een vetgedrukt accentwoord: zet <b> om
   het deel van de h1/h2 dat nadruk verdient. h3/h4 zijn gewoon 600. */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}
h1, h2 { font-weight: 300; letter-spacing: -.02em; }
h1 b, h2 b { font-weight: 600; }
h1 { font-size: clamp(2.5rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.3vw, 2.5rem); }
h3 { font-size: clamp(1.08rem, 1.6vw, 1.25rem); }
p  { font-size: clamp(1rem, 1.15vw, 1.075rem); }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.28rem); color: var(--body); line-height: 1.6; font-weight: 300; }

.overline {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1rem;
}
.overline::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--magenta);
}
.overline.center { justify-content: center; }

.accent { color: var(--magenta); }
.serif-italic { font-family: var(--font-serif); font-style: italic; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(76px, 10vw, 140px); }
.section--mint { background: var(--mint-50); }
.section--green { background: var(--green-800); color: #dce9e4; }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section-head { max-width: 680px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: 1rem; }

.grid { display: grid; gap: clamp(20px, 2.5vw, 32px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ----------
   Alle knoppen zijn rustig donker teal; magenta is alleen nog een
   mini-accent (overline-streepje, rol-labels), geen knopkleur meer. */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 500; font-size: 1rem;
  line-height: 1; text-align: center;
  padding: 1rem 1.8rem; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--green-800); box-shadow: 0 14px 30px -16px rgba(47,97,84,.55); }
.btn:active { transform: translateY(0); }
.btn--accent { --btn-bg: var(--green-700); }
.btn--accent:hover { background: var(--green-800); }
.btn--ghost {
  background: transparent; color: var(--green-700); border-color: var(--green-700);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--green-700); color: #fff; }
.btn--light { background: #fff; color: var(--green-800); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: #fff; color: var(--green-800); box-shadow: var(--shadow); }
/* Outline-variant voor op donkere foto's */
.btn--outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.65);
  box-shadow: none;
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); box-shadow: none; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.textlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; color: var(--green-700);
}
.textlink .arrow { transition: transform .25s var(--ease); }
.textlink:hover { color: var(--magenta); }
.textlink:hover .arrow { transform: translateX(3px); }

/* ---------- Cards: randloos en zwevend ---------- */
.card {
  background: #fff; border: 1px solid transparent; border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 58px; height: 58px; border-radius: 999px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--mint); color: var(--green-700);
}
.card .icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: 1rem; }
/* Nadruk in kaarttekst: 600 (Poppins heeft geen 700, dat zou faux-bold geven) */
.card p strong { font-weight: 600; color: var(--ink); }

/* =====================================================================
   Header / navigatie
   ===================================================================== */
.topbar {
  background: var(--green-800); color: #cfe3dc;
  font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; }
.topbar a { color: #eaf4f0; font-weight: 500; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; align-items: center; gap: .5rem; }
.topbar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--magenta); }
@media (max-width: 640px) { .topbar .tb-left span.hide-sm { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 46px; width: auto; }
.brand .brand-text { line-height: 1.05; }
.brand .brand-text b {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.12rem; color: var(--ink); display: block;
}
.brand .brand-text span { font-size: .72rem; letter-spacing: .04em; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 1.15rem; }
.nav-links a {
  font-weight: 500; color: var(--ink); padding: .4rem .2rem;
  font-size: .95rem; transition: color .2s, box-shadow .2s;
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a.active { color: var(--green-700); box-shadow: inset 0 -2px 0 var(--green-700); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(6px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: grid; }
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .mobile-nav-panel .nav-links { display: flex; }
}
/* Op smalle schermen: alleen wordmerk + hamburger; Aanmelden zit in het menu */
@media (max-width: 560px) {
  .nav-cta .btn--accent { display: none; }
}

/* Mobiel paneel */
.mobile-nav-panel {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 84vw); z-index: 60;
  background: #fff; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .35s var(--ease);
  padding: 90px var(--gutter) 40px; overflow-y: auto;
}
body.nav-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel .nav-links { flex-direction: column; align-items: stretch; gap: .25rem; }
.mobile-nav-panel .nav-links a { padding: .85rem 1rem; font-size: 1.1rem; border-radius: 12px; }
.mobile-nav-panel .btn { width: 100%; margin-top: 1rem; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(38,51,47,.4); z-index: 55;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

/* =====================================================================
   Hero: paginavullende foto met donkere overlay (homepage)
   ===================================================================== */
.hero--photo { position: relative; background: var(--green-800); overflow: hidden; }
.hero--photo .hero-bg {
  position: absolute; inset: 0;
  background: url("../assets/img/consultkamer.jpg") center / cover no-repeat;
}
.hero--photo .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(21, 38, 33, .92) 0%, rgba(21, 38, 33, .62) 48%, rgba(21, 38, 33, .28) 100%),
    linear-gradient(0deg, rgba(21, 38, 33, .35), rgba(21, 38, 33, 0) 40%);
}
.hero--photo .container { position: relative; z-index: 2; }
.hero--photo .hero-inner {
  min-height: clamp(540px, 74vh, 700px);
  max-width: 660px;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(80px, 11vw, 130px);
}
.hero--photo h1 { color: #fff; margin-bottom: 1.4rem; overflow-wrap: break-word; }
.hero--photo h1 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  color: #b9e0d2;
}
.hero--photo .lead { color: rgba(255, 255, 255, .88); max-width: 33rem; margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

@media (max-width: 900px) {
  .hero--photo .hero-inner { min-height: 480px; }
}

/* Lotus watermerk (decoratief) */
.lotus-watermark { position: absolute; opacity: .06; color: var(--green); z-index: 0; pointer-events: none; }

/* =====================================================================
   Logostrip / vertrouwen
   ===================================================================== */
/* Vier gelijke kolommen, zodat er nooit een losse regel met één punt overblijft */
.credstrip { border-bottom: 1px solid var(--line); background: #fff; }
.credstrip .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem 2rem; padding-block: 34px;
}
@media (max-width: 980px) { .credstrip .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .credstrip .container { grid-template-columns: 1fr; } }
.credstrip .cred {
  display: flex; align-items: flex-start; gap: .7rem;
  color: var(--muted); font-weight: 400; font-size: .92rem; line-height: 1.35;
  text-wrap: balance;
}
.credstrip .cred svg { width: 22px; height: 22px; color: var(--green-700); flex: none; margin-top: 1px; }

/* =====================================================================
   Positionering ("geen afvalcoach")
   ===================================================================== */
.statement { position: relative; overflow: hidden; }
.statement .container { position: relative; z-index: 2; }
.statement blockquote {
  max-width: 900px; margin-inline: auto; text-align: center;
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1.32; color: var(--ink);
}
.statement blockquote em { color: var(--magenta); font-style: italic; }
.statement .attrib { text-align: center; margin-top: 1.8rem; color: var(--muted); font-size: .95rem; }

/* =====================================================================
   Traject-tijdlijn (8 stappen)
   ===================================================================== */
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(var(--green), var(--mint));
}
@media (max-width: 620px) { .timeline::before { left: 21px; } }
.tl-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 14px 0; }
@media (max-width: 620px) { .tl-step { grid-template-columns: 44px 1fr; gap: 14px; } }
.tl-num {
  width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 1.5px solid var(--green);
  color: var(--green-700); font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  display: grid; place-items: center; z-index: 1; position: relative;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
@media (max-width: 620px) { .tl-num { width: 44px; height: 44px; font-size: 1.05rem; } }
.tl-step:hover .tl-num { background: var(--green); color: #fff; transform: scale(1.06); }
.tl-body { padding-top: 6px; }
.tl-body h3 { margin-bottom: .3rem; font-size: 1.2rem; }
.tl-body p { color: var(--muted); font-size: 1rem; margin: 0; }

/* Split media/tekst */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split.rev .split-media { order: 2; }
@media (max-width: 860px) { .split.rev .split-media { order: 0; } }
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  aspect-ratio: 5/4; position: relative;
}
.media-frame .ph-note {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  color: rgba(255,255,255,.9); font-size: .9rem; padding: 2rem; gap: .6rem;
}
.media-frame .ph-note svg { width: 44px; height: 44px; opacity: .9; margin-inline: auto; }

/* Oorzaken-lijst */
.cause { display: flex; gap: 1rem; align-items: flex-start; }
.cause .c-ico { width: 46px; height: 46px; border-radius: 999px; background: var(--mint); color: var(--green-700); display: grid; place-items: center; flex: none; }
.cause .c-ico svg { width: 24px; height: 24px; }
.cause h3 { font-size: 1.12rem; margin-bottom: .2rem; }
.cause p { color: var(--muted); font-size: .98rem; margin: 0; }

/* =====================================================================
   Team
   ===================================================================== */
.team-card { text-align: left; overflow: hidden; padding: 0; }
.team-card .tc-photo {
  aspect-ratio: 1/1; width: 100%; object-fit: cover; object-position: center 28%; display: block;
  background: linear-gradient(150deg, var(--mint) 0%, var(--green) 130%);
  filter: saturate(.82) contrast(.97);
}
.team-card .tc-photo .initials {
  font-family: var(--font-head); font-weight: 700; font-size: 3rem; color: #fff; opacity: .9;
}
/* Portret-specifieke uitsnede (subject buiten het midden) */
.tc-photo.pos-right { object-position: 68% center; }
.tc-photo.pos-left  { object-position: 30% center; }
.team-card .tc-body { padding: 24px 26px 28px; }
.team-card .tc-role { color: var(--magenta); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.team-card h3 { margin: .35rem 0 .6rem; }
.team-card p { color: var(--muted); font-size: .98rem; }
.team-card .tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.team-card .tag { background: var(--mint-50); border: 1px solid var(--line); color: var(--green-800); font-size: .78rem; font-weight: 600; padding: .3rem .7rem; border-radius: 999px; }

/* =====================================================================
   Aanmelden CTA
   ===================================================================== */
.cta {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  color: #eaf4f0; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 72px);
  position: relative; overflow: hidden; text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: #cfe3dc; max-width: 40rem; margin: 1rem auto 2rem; }
.cta .cta-lotus { position: absolute; right: -40px; bottom: -50px; width: 260px; color: rgba(255,255,255,.06); }
.cta .cta-lotus.l2 { left: -60px; top: -60px; right: auto; bottom: auto; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-steps { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; position: relative; z-index: 2; }
.cta-steps .cs { display: flex; align-items: center; gap: .6rem; color: #dce9e4; font-size: .92rem; }
.cta-steps .cs b { background: rgba(255,255,255,.14); width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--mint-50); color: var(--body); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 80px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .f-brand img { height: 52px; background: #fff; padding: 8px; border-radius: 12px; border: 1px solid var(--line); }
.site-footer .f-brand p { color: var(--muted); font-size: .92rem; margin-top: 1rem; max-width: 26rem; }
.site-footer h4 { color: var(--ink); font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: var(--body); }
.site-footer a:hover { color: var(--green-700); }
.site-footer li { margin-bottom: .6rem; font-size: .95rem; }
.site-footer .f-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.site-footer .f-contact svg { width: 18px; height: 18px; color: var(--green-700); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }

/* =====================================================================
   Scroll-reveal
   ===================================================================== */
/* Reveal is progressive enhancement: alleen verbergen als JS actief is (.js op <html>). */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* =====================================================================
   Subpagina's - page-hero, breadcrumb, prose, stappen, callouts
   ===================================================================== */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--mint-50) 0%, #fff 100%);
  padding-block: clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .inner { max-width: 720px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { color: var(--body); max-width: 40rem; }
.page-hero .lotus-watermark { width: 300px; right: -50px; bottom: -70px; }

/* Variant: page-hero met paginavullende foto (zet de foto als
   background-image op .ph-bg via een inline style in de HTML) */
.page-hero--photo { background: var(--green-800); border-bottom: 0; padding-block: clamp(72px, 10vw, 130px); }
.page-hero--photo .ph-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero--photo .ph-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(21, 38, 33, .9) 0%, rgba(21, 38, 33, .55) 52%, rgba(21, 38, 33, .22) 100%);
}
.page-hero--photo h1 { color: #fff; }
.page-hero--photo .lead { color: rgba(255, 255, 255, .88); }
.page-hero--photo .overline { color: #a9d4c6; }
.page-hero--photo .breadcrumb { color: rgba(255, 255, 255, .7); }
.page-hero--photo .breadcrumb a { color: #cfe3dc; }
.page-hero--photo .hero-jump .textlink { color: #fff; }
.page-hero--photo .hero-jump .textlink:hover { color: #b9e0d2; }

.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .88rem; color: var(--muted); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--green-700); font-weight: 500; }
.breadcrumb .sep { opacity: .5; }

.prose { max-width: 46rem; }
.prose p { margin-bottom: 1.1rem; color: var(--body); }
.prose h2 { margin: 2.4rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 .6rem; }
.prose ul.ticks { margin: 1rem 0 1.4rem; display: grid; gap: .6rem; }
.prose ul.ticks li { position: relative; padding-left: 2rem; color: var(--body); }
.prose ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--mint); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233c7a69' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.prose a.textlink { margin-top: .3rem; }

/* Gedetailleerde traject-stap (alternerend) */
.step-block { display: grid; grid-template-columns: 88px 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; padding-block: clamp(28px, 4vw, 44px); border-bottom: 1px dashed var(--line); }
.step-block:last-child { border-bottom: 0; }
@media (max-width: 620px) { .step-block { grid-template-columns: 60px 1fr; gap: 16px; } }
.step-block .sb-num {
  width: 88px; height: 88px; border-radius: 24px; display: grid; place-items: center;
  background: var(--mint); color: var(--green-700); font-family: var(--font-head); font-weight: 700; font-size: 2rem;
  position: sticky; top: 96px;
}
@media (max-width: 620px) { .step-block .sb-num { width: 60px; height: 60px; border-radius: 16px; font-size: 1.4rem; position: static; } }
.step-block .sb-body h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: .5rem; }
.step-block .sb-body p { color: var(--body); margin-bottom: .8rem; }
.step-block .sb-meta { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--magenta); }

/* Callout / info-box */
.callout {
  background: var(--mint-50); border: 1px solid var(--line); border-left: 4px solid var(--green);
  border-radius: var(--radius-sm); padding: clamp(20px, 3vw, 28px); margin: 1.6rem 0;
}
.callout.accent { border-left-color: var(--magenta); }
.callout h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.callout p { color: var(--body); margin: 0; }
.callout p + p { margin-top: .7rem; }

/* Media-frame met echte foto.
   Alle contentfoto's krijgen dezelfde subtiele warme teal-tint zodat
   beeldmateriaal uit verschillende bronnen als één geheel oogt. */
.photo-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.82) contrast(.97); }
.photo-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(47, 97, 84, .16), rgba(236, 228, 217, .06) 55%, rgba(21, 38, 33, .12));
  mix-blend-mode: multiply;
}
.photo-frame.tall { aspect-ratio: 4/5; }
.photo-frame.wide { aspect-ratio: 3/2; }

/* Figuur met bronvermelding */
figure.figure { margin: 1.4rem 0; }
figure.figure figcaption, .img-credit {
  font-size: .78rem; color: var(--muted); margin-top: .55rem; line-height: 1.4;
}
figure.figure figcaption a, .img-credit a { color: var(--muted); text-decoration: underline; }
figure.figure figcaption a:hover, .img-credit a:hover { color: var(--green-700); }

/* Formulier: twee kolommen op desktop, gestapeld op mobiel
   (stond eerst als inline style zonder breakpoint -> horizontale scroll) */
.form-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 860px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(26px, 4vw, 44px); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 700; color: var(--ink); font-size: .95rem; margin-bottom: .4rem; }
.field .req { color: var(--magenta); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(89,163,143,.14);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .5rem; }
/* Honeypot tegen spam: buiten beeld, maar niet display:none (bots vullen 'm dan niet) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--body); }
.consent input { width: auto; margin-top: .25rem; flex: none; }

/* Steps-strip (genummerd, horizontaal) */
.steps-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
@media (max-width: 760px) { .steps-strip { grid-template-columns: 1fr; } }
.step-mini { background: #fff; border: 1px solid transparent; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.step-mini .n { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; margin-bottom: 1rem; }
.step-mini h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.step-mini p { color: var(--muted); font-size: .96rem; margin: 0; }

/* =====================================================================
   Pakketten / trajecten (prijskaarten)
   ===================================================================== */
.plan { display: flex; flex-direction: column; }
.plan .plan-role { color: var(--magenta); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.plan h3 { margin: .45rem 0 0; }
.plan .plan-price {
  font-family: var(--font-body); color: var(--green-800); font-weight: 300;
  font-size: clamp(1.9rem, 3vw, 2.4rem); line-height: 1.1; margin: .5rem 0 0;
  display: flex; align-items: baseline; gap: .4rem;   /* houdt "€129" en "/ mnd" bijeen */
}
.plan .plan-price .per { font-size: .92rem; font-weight: 400; color: var(--muted); white-space: nowrap; }
.plan .plan-sub { color: var(--muted); font-size: .9rem; margin-top: .3rem; }
.plan .plan-feat { display: grid; gap: .6rem; margin: 1.3rem 0; }
.plan .plan-feat li { position: relative; padding-left: 1.9rem; color: var(--body); font-size: .98rem; line-height: 1.5; }
.plan .plan-feat li::before {
  content: ""; position: absolute; left: 0; top: .12em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--mint); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233c7a69' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.plan .btn { margin-top: auto; }
.plan--featured { border-color: var(--green); box-shadow: var(--shadow); }
.plan--featured:hover { border-color: var(--green); }
/* Licht groen randje om alle trajectkaarten (pakketten.html) */
.plan--outline { border: 1.5px solid rgba(89, 163, 143, .45); }
.plan--outline:hover { border-color: rgba(89, 163, 143, .45); }
/* Onderhoud houdt het groene randje, maar dan gestippeld */
.plan--outline.plan--optional { border-color: rgba(89, 163, 143, .45); }
/* =====================================================================
   Trechter op de homepage: verplichte poort  +  keuze uit drie trajecten
   ===================================================================== */
/* poort  +  keuze uit twee trajecten  +  optioneel onderhoud */
.funnel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 2fr) auto minmax(0, 1fr);
  gap: clamp(12px, 1.4vw, 22px);
  align-items: stretch;
}
.funnel-col { display: flex; flex-direction: column; min-width: 0; }
.funnel-label {
  font-weight: 600; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-700); margin-bottom: .9rem; min-height: 1.2em;
}
.funnel-col > .card, .funnel-col > .grid { flex: 1; }
.funnel-col .grid { align-items: stretch; }

/* De plus tussen beide kolommen */
.funnel-plus { display: grid; place-items: center; padding-top: calc(.74rem + .9rem); }
.funnel-plus span {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--green-700);
  font-size: 1.6rem; font-weight: 300; line-height: 1;
  box-shadow: var(--shadow-sm);
}

/* De verplichte poort springt eruit */
.plan--gate { border: 1.5px solid var(--green); box-shadow: var(--shadow); }
.plan--gate:hover { border-color: var(--green); }
.plan-badge {
  display: inline-block; align-self: flex-start; white-space: nowrap;
  background: var(--magenta); color: #fff;
  font-weight: 600; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: .7rem;
}

/* Onderhoud is geen verplicht traject: witte kaart, maar gestippelde rand als hint */
.plan--optional { background: #fff; border: 1.5px dashed var(--line); box-shadow: var(--shadow-sm); }
.plan--optional:hover { box-shadow: var(--shadow); }

/* Zachte badge (bv. "Optioneel"); de magenta .plan-badge is voor "Verplicht" */
.plan-badge--soft { background: rgba(89, 163, 143, .16); color: var(--green-800); }

@media (max-width: 1080px) {
  .funnel { grid-template-columns: minmax(0, 1fr); }
  .funnel-plus { padding-top: 0; padding-block: .4rem; }
  .funnel-col + .funnel-plus + .funnel-col .funnel-label { margin-top: .4rem; }
}

/* Brede, uitgelichte kaart (Intake-poort) */
.plan--wide { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.plan--wide .plan-feat { margin: 0; }
.plan--wide .btn { margin-top: 1.3rem; }
@media (max-width: 760px) { .plan--wide { grid-template-columns: 1fr; gap: 24px; } }

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.hide-mobile { }
@media (max-width: 620px) { .hide-mobile { display: none; } }
.maxw-720 { max-width: 720px; } .mx-auto { margin-inline: auto; }

/* =====================================================================
   Boeken (Verder lezen) - informatie.html
   ===================================================================== */
.books { display: grid; gap: clamp(22px, 3vw, 30px); max-width: 900px; margin-inline: auto; }
.book {
  display: grid; grid-template-columns: 150px 1fr; gap: clamp(22px, 3vw, 38px);
  align-items: center;
  background: #fff; border: 1px solid transparent; box-shadow: var(--shadow-sm); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.book:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.book-cover { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); align-self: start; }
.book-cover img { width: 100%; height: auto; display: block; }
.book-body h3 { margin-bottom: .25rem; }
.book-author { color: var(--magenta-700); font-weight: 500; font-size: .95rem; margin-bottom: .75rem; }
.book-body p { color: var(--muted); font-size: 1rem; margin-bottom: 1.15rem; }
@media (max-width: 620px) {
  .book { grid-template-columns: 104px 1fr; gap: 18px; align-items: start; }
}

/* =====================================================================
   Hero sprong-navigatie - informatie.html
   ===================================================================== */
.hero-jump {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  margin-top: 1.6rem;
}
.hero-jump .textlink { font-size: .98rem; }

/* =====================================================================
   FAQ (veelgestelde vragen) - informatie.html
   ===================================================================== */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid transparent; box-shadow: var(--shadow-sm); border-radius: var(--radius);
  padding: 4px 24px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item[open] { border-color: transparent; box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 18px 0;
  font-family: var(--font-head, inherit); font-weight: 600; font-size: 1.1rem;
  color: var(--green-800, var(--body));
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2.5px solid var(--green-700); border-bottom: 2.5px solid var(--green-700);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--magenta); }
.faq-item summary:hover::after { border-color: var(--magenta); }
.faq-item > p {
  margin: 0 0 20px; color: var(--muted); line-height: 1.65;
}
.faq-item > p a { color: var(--green-700); text-decoration: underline; }
.faq-item > p a:hover { color: var(--magenta); }
