/* ============================================================
   Pillen en Praten — main.css
   Basis-stijlen: design tokens, typografie, componenten, layout.
   Alle @media breakpoints staan in responsive.css.
   ============================================================ */

/* ============================================================
   PILLEN EN PRATEN — Design System
   Warm Dutch pharmacy. "Niet alleen pillen. Ook praten."
   ============================================================ */

:root {
  /* Brand */
  --green-900: #02622D;   /* donkergroen */
  --green-600: #3F9E45;
  --green-500: #55B74C;   /* fris groen */
  --green-400: #78BD7A;   /* lichtgroen */
  --green-100: #E4F2E2;
  --green-50:  #EEF6EC;

  --cream:   #FAFBF7;     /* zacht crème/wit */
  --white:   #FFFFFF;
  --ink:     #102015;     /* donkere tekst */
  --slate:   #66736A;     /* secundair grijs */
  --line:    #E6EBE4;

  --grad: linear-gradient(135deg, #02622D 0%, #55B74C 100%);
  --grad-soft: linear-gradient(135deg, #EEF6EC 0%, #FAFBF7 100%);

  --shadow-sm: 0 2px 10px rgba(16,32,21,.05);
  --shadow:    0 18px 50px -20px rgba(2,98,45,.28);
  --shadow-lg: 0 40px 90px -30px rgba(2,98,45,.40);

  --r-sm: 16px;
  --r:    28px;
  --r-lg: 40px;
  --pill: 999px;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);

  --font: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;

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

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}

p { margin: 0; }
p + p { margin-top: 1em; }

::selection { background: var(--green-400); color: #06351a; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vh, 140px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; letter-spacing: 0; text-transform: none;
  color: var(--green-900);
  background: var(--green-50); border: 1px solid var(--green-100);
  padding: 7px 16px 7px 13px; border-radius: var(--pill);
}
.eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-500);
}
.eyebrow.on-dark { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }
.eyebrow.on-dark::before { background: var(--green-400); }

/* Type scale */
.display {
  font-size: clamp(46px, 8.2vw, 110px);
  line-height: .96; letter-spacing: -0.04em; font-weight: 700;
}
.h-xl { font-size: clamp(34px, 5vw, 68px); letter-spacing: -0.035em; }
.h-lg { font-size: clamp(28px, 3.4vw, 46px); letter-spacing: -0.03em; }
.h-md { font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.02em; }
.lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--slate); line-height: 1.55; max-width: 56ch; }
.muted { color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green-900); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: #fff !important;
  border: 1.5px solid var(--bd);
  font: inherit; font-weight: 700; font-size: 17px;
  padding: 16px 28px; border-radius: var(--pill);
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  will-change: transform; line-height: 1; white-space: nowrap;
}
/* Variant-knoppen: expliciete kleur-overrides */
.btn--ghost,
.btn--ghost:hover { color: var(--green-900) !important; }
.btn--light,
.btn--light:hover { color: var(--green-900) !important; }
.btn--on-dark-ghost,
.btn--on-dark-ghost:hover { color: #fff !important; }
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { --bg: var(--green-500); --fg: #fff; }
.btn--ghost { --bg: transparent; --fg: var(--green-900); --bd: rgba(2,98,45,.25); }
.btn--ghost:hover { --bg: var(--white); box-shadow: var(--shadow-sm); }
.btn--light { --bg: #fff; --fg: var(--green-900); }
.btn--on-dark-ghost { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.35); }
.btn--lg { padding: 19px 34px; font-size: 18px; }
.btn--sm { padding: 11px 18px; font-size: 15px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* magnetic wrapper */
.magnetic { display: inline-flex; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; background: rgba(250,251,247,.96);
  backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
  opacity: 1; pointer-events: none;
  border-bottom: 1px solid transparent; transition: border-color .3s;
}
.site-header.scrolled::before { border-color: var(--line); }
.nav {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 28px;
  padding: 18px 0;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 38px; width: auto; }
.nav__menu {
  display: flex; align-items: center; gap: 4px; margin-left: 8px;
  list-style: none; padding: 0; margin-block: 0;
}
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--pill);
  font-weight: 600; font-size: 16px; color: var(--ink);
  transition: background .2s, color .2s;
}
.nav__link:hover, .nav__link.active { background: var(--green-50); color: var(--green-900); }
.nav__link .caret { width: 14px; height: 14px; transition: transform .25s; }
.has-mega:hover .caret { transform: rotate(180deg); }
.nav__spacer { flex: 1; }
.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__sub {
  font-weight: 600; font-size: 15px; color: var(--green-900);
  padding: 11px 16px; border-radius: var(--pill); transition: background .2s;
}
.nav__sub:hover { background: var(--green-50); }

/* Burger button: drie lijnen via box-shadow — geen child-elementen nodig */
.nav__burger {
  display: none; position: relative;
  width: 44px; height: 44px; min-width: 44px; flex-shrink: 0;
  border: none; background: var(--green-900);
  border-radius: 50%; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
/* Middelste lijn */
.nav__burger span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px; pointer-events: none;
  /* Boven- en onderlijn via box-shadow — altijd zichtbaar */
  box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
}
/* Verberg de span-gebaseerde ::before/::after — niet meer nodig */
.nav__burger span::before,
.nav__burger span::after { display: none; }

/* ---------- Mega menu ---------- */
.has-mega { position: relative; }
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(880px, 90vw);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 28px 22px 22px;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 90;
}
.mega::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.has-mega:hover .mega, .mega:hover, .has-mega:focus-within .mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega__item {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border-radius: var(--r-sm);
  transition: background .18s;
}
.mega__item:hover { background: var(--green-50); }
.mega__dot {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: var(--pill);
  display: grid; place-items: center; background: var(--green-100); color: var(--green-900);
}
.mega__dot svg { width: 19px; height: 19px; }
.mega__t { display: block; font-weight: 700; font-size: 15.5px; line-height: 1.2; }
.mega__d { display: block; font-size: 13px; color: var(--slate); margin-top: 3px; line-height: 1.35; }
.mega__foot {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  background: var(--grad);
  padding: 24px var(--gut);
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform .5s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__top img {
  height: 40px; width: auto; max-width: calc(100% - 56px);
  flex-shrink: 0; object-fit: contain; object-position: left center;
  filter: brightness(0) invert(1);
}
/* Sluit-knop: pure CSS cross — betrouwbaarder dan SVG op alle browsers */
.mm-close {
  position: relative;
  width: 44px; height: 44px; min-width: 44px; flex-shrink: 0;
  border-radius: 50%; border: 2px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.15);
  cursor: pointer; padding: 0;
}
.mm-close::before,
.mm-close::after {
  content: "";
  position: absolute;
  width: 18px; height: 2px;
  background: #fff; border-radius: 2px;
  top: 50%; left: 50%;
}
.mm-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mm-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-menu nav { margin-top: 40px; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  color: #fff; font-size: clamp(30px, 9vw, 46px); font-weight: 700; letter-spacing: -0.03em;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.16);
}
.mobile-menu__cta { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Pills / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  padding: 9px 16px; border-radius: var(--pill); font-size: 15px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card--hover:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* ---------- Image placeholder ---------- */
.ph {
  position: relative; border-radius: var(--r); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(85,183,76,.10) 0 12px, rgba(120,189,122,.06) 12px 24px),
    var(--green-50);
  display: grid; place-items: center; color: var(--green-900);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12.5px; letter-spacing: .04em;
  text-transform: uppercase; opacity: .65; padding: 6px 12px; border: 1px dashed rgba(2,98,45,.4);
  border-radius: var(--pill);
}
.img-card { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.img-card img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Pill blobs / decorative ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; pointer-events: none; }
.pill-shape {
  position: absolute; border-radius: var(--pill); pointer-events: none;
  background: var(--grad); opacity: .9;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 12% -10%, rgba(85,183,76,.28), transparent 60%),
              radial-gradient(700px 500px at 95% 120%, rgba(2,98,45,.55), transparent 55%);
  pointer-events: none;
}
.site-footer .wrap { position: relative; }
.footer-cta {
  background: var(--grad); color: #fff; position: relative; overflow: hidden;
  width: 100vw; margin-left: 50%; transform: translateX(-50%);
  padding-block: clamp(44px, 6vw, 80px); z-index: 2;
}
.footer-cta__inner {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut);
}

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-block: clamp(64px, 9vw, 96px) 48px;
}
.footer-brand__mark { font-size: 26px; font-weight: 700; letter-spacing: -.02em; color: #fff; }
.footer-brand__mark .en { color: var(--green-400); }
.footer-slogan { color: var(--green-400); font-weight: 600; margin-top: 14px; max-width: 32ch; }
.footer-col h4 { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 15.5px; color: rgba(255,255,255,.72); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 26px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 14px; color: rgba(255,255,255,.6);
}
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: var(--pill); border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.socials a:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }




/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero { position: relative; overflow: hidden; background: var(--green-900); padding-block: clamp(56px, 9vw, 110px); }
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.07) 1.1px, transparent 1.2px); background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(900px 500px at 80% 0%, #000, transparent 70%);
          mask-image: radial-gradient(900px 500px at 80% 0%, #000, transparent 70%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero__inner { max-width: 64ch; }
.page-hero h1 { font-size: clamp(40px, 6.4vw, 84px); letter-spacing: -.04em; margin-top: 18px; color: #fff; }
.page-hero .lead { margin-top: 22px; color: rgba(255,255,255,.85); font-weight: 500; }
/* .page-hero .eyebrow: no override — uses default .eyebrow style (dark-green text on light-green pill, readable on dark-green hero bg) */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); flex-wrap: wrap; }
.breadcrumb span { white-space: nowrap; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .5; }

.prose { max-width: 68ch; }
.prose p { margin-top: 18px; font-size: 18px; }
.prose h2 { font-size: clamp(26px, 3vw, 38px); margin-top: 48px; letter-spacing: -.02em; }
.prose h3 { font-size: clamp(20px, 2vw, 26px); margin-top: 36px; }
.prose strong { color: var(--green-900); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.feature { display: flex; flex-direction: column; gap: 14px; }
.feature__ic { width: 52px; height: 52px; border-radius: var(--r-sm); background: var(--green-100); color: var(--green-900); display: grid; place-items: center; }
.feature__ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 21px; }
.feature p { color: var(--slate); font-size: 16px; }

/* Service hub cards (Wij doen meer) */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hub-card {
  position: relative; display: flex; flex-direction: column; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden; min-height: 230px;
}
.hub-card::before { content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%; background: var(--green-50); transition: transform .4s var(--ease); }
.hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.hub-card:hover::before { transform: scale(1.6); }
.hub-card > * { position: relative; z-index: 1; }
.hub-card__ic { width: 50px; height: 50px; border-radius: var(--pill); background: var(--grad); color: #fff; display: grid; place-items: center; }
.hub-card__ic svg { width: 23px; height: 23px; }
.hub-card h3 { font-size: 22px; letter-spacing: -.02em; }
.hub-card p { color: var(--slate); font-size: 15.5px; flex: 1; }
.hub-card .arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green-900); font-size: 15px; }
.hub-card .arrow svg { width: 16px; height: 16px; transition: transform .25s; }
.hub-card:hover .arrow svg { transform: translateX(4px); }

/* Media / article cards */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.article:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.article[data-modal] { cursor: pointer; }
.article[data-modal]:focus-visible { outline: 3px solid var(--green-500); outline-offset: 3px; }
.article__more { margin-top: 4px; font-weight: 700; font-size: 15px; color: var(--green-900); display: inline-flex; align-items: center; gap: 6px; }
.article:hover .article__more { gap: 9px; }
.article__media { aspect-ratio: 16/10; }
.article__media .ph { width: 100%; height: 100%; border-radius: 0; }
.article__media img { width: 100%; height: 100%; object-fit: cover; }
.article__body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article__tag { display: inline-flex; align-self: flex-start; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-900); background: var(--green-50); padding: 6px 12px; border-radius: var(--pill); }
.article h3 { font-size: 21px; letter-spacing: -.02em; }
.article p { color: var(--slate); font-size: 15.5px; flex: 1; }
.article__meta { font-size: 13px; color: var(--slate); font-weight: 600; }

/* Tips / link list */
.link-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.link-item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 20px; align-items: center;
  padding: 26px 8px; border-bottom: 1px solid var(--line); transition: background .2s, padding .2s;
}
.link-item:hover { background: var(--green-50); padding-inline: 18px; }
.link-item__ic { width: 52px; height: 52px; border-radius: var(--r-sm); background: var(--green-100); color: var(--green-900); display: grid; place-items: center; }
.link-item__ic svg { width: 24px; height: 24px; }
.link-item h3 { font-size: 20px; letter-spacing: -.01em; }
.link-item p { color: var(--slate); font-size: 15.5px; margin-top: 4px; max-width: 70ch; }
.link-item .go { width: 44px; height: 44px; border-radius: var(--pill); border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--green-900); transition: background .2s, transform .2s; }
.link-item:hover .go { background: var(--green-500); color: #06351a; border-color: transparent; transform: translateX(2px); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding-block: 16px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row__ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--pill); background: var(--green-100); color: var(--green-900); display: grid; place-items: center; }
.info-row__ic svg { width: 20px; height: 20px; }
.info-row__t { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); }
.info-row__v { font-size: 18px; font-weight: 600; margin-top: 3px; }
.info-row__v a:hover { color: var(--green-900); }

.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qa {
  display: flex; align-items: center; gap: 14px; padding: 20px; border-radius: var(--r-sm);
  background: #fff; border: 1px solid var(--line); font-weight: 700; transition: transform .25s var(--ease), box-shadow .25s; cursor: pointer;
}
.qa:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.qa__ic { width: 44px; height: 44px; border-radius: var(--pill); background: var(--grad); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.qa__ic svg { width: 20px; height: 20px; }

/* Form */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 15px; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px; padding: 14px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(85,183,76,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Open hours card */
.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); font-weight: 600; }
.hours li:last-child { border-bottom: 0; }
.hours .closed { color: #b4452f; }

/* CTA band */
.cta-band { background: var(--grad); color: #fff; border-radius: var(--r-lg); padding: clamp(36px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.14) 1.4px, transparent 1.5px); background-size: 28px 28px; opacity:.5; }
.cta-band > * { position: relative; z-index: 1; }




/* ============================================================
   INSCHRIJF-WIZARD (meerstaps-formulier, contact pagina)
   ============================================================ */

.inschrijf-wizard { max-width: 860px; }

/* ── Stap-indicator ── */
.wizard-progress {
  display: flex; align-items: center; margin-bottom: 36px;
}
.wizard-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0;
}
.wizard-step__circle {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  background: var(--green-100); color: var(--slate);
  border: 2px solid var(--green-100);
  transition: background .25s, color .25s, border-color .25s;
}
.wizard-step__label {
  font-size: 12px; font-weight: 600; color: var(--slate);
  white-space: nowrap; transition: color .25s;
}
.wizard-connector {
  flex: 1; height: 2px; background: var(--green-100); margin: 0 6px; margin-bottom: 24px;
  transition: background .25s;
}
/* Actieve stap */
.wizard-step.active .wizard-step__circle { background: var(--green-900); color: #fff; border-color: var(--green-900); }
.wizard-step.active .wizard-step__label  { color: var(--green-900); }
/* Voltooide stap */
.wizard-step.done .wizard-step__circle { background: var(--green-500); color: #fff; border-color: var(--green-500); }
.wizard-step.done .wizard-step__label  { color: var(--green-500); }
.wizard-connector.done { background: var(--green-500); }

/* ── Formulierpanelen ── */
.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: panelIn .3s var(--ease) both; }

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

.form-panel-title {
  font-size: 20px; font-weight: 700; color: var(--green-900);
  padding-bottom: 14px; margin-bottom: 22px;
  border-bottom: 2px solid var(--green-100);
}
.form-panel-desc {
  color: var(--slate); font-size: 15px; line-height: 1.65;
  margin-top: -10px; margin-bottom: 24px;
}
.form-info-block {
  background: var(--green-50); border: 1.5px solid var(--green-100);
  border-radius: var(--r-sm); padding: 18px 22px; margin-bottom: 28px;
  font-size: 15px; color: var(--ink); line-height: 1.65;
}

/* ── Navigatie ── */
.wizard-nav {
  display: flex; align-items: center; gap: 12px;
  margin-top: 36px; padding-top: 22px; border-top: 1.5px solid var(--line);
}
.form-required-note { font-size: 13px; color: var(--slate); margin-top: 14px; }

/* ── Veld-fout-stijlen ── */
.req { color: #dc2626; font-weight: 700; }
.field__label-block { display: block; font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.field__hint {
  display: block; font-size: 13px; color: var(--slate); margin-top: 5px; line-height: 1.4;
}
.field__error {
  display: block; font-size: 13px; color: #dc2626; font-weight: 600; margin-top: 5px;
}
.field--error { border-color: #dc2626 !important; background: #fff5f5 !important; box-shadow: 0 0 0 3px rgba(220,38,38,.12) !important; }

/* ── Radio-knoppen ── */
.radio-group {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.radio-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 15px; cursor: pointer;
  padding: 10px 18px; border: 1.5px solid var(--line);
  border-radius: var(--pill); background: #fff;
  transition: border-color .15s, background .15s, color .15s;
  user-select: none;
}
.radio-label:has(input:checked) {
  border-color: var(--green-900); background: var(--green-50); color: var(--green-900);
}
.radio-label input[type="radio"] { accent-color: var(--green-900); }

/* ── Checkbox-groepen ── */
.check-group { display: flex; flex-direction: column; gap: 10px; }
.check-label {
  display: flex; align-items: flex-start; gap: 14px; cursor: pointer;
  padding: 14px 18px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: #fff;
  font-size: 15px; line-height: 1.55;
  transition: border-color .15s, background .15s;
}
.check-label:has(input:checked) {
  border-color: var(--green-900); background: var(--green-50);
}
.check-label input[type="checkbox"] {
  margin-top: 2px; accent-color: var(--green-900);
  flex-shrink: 0; width: 18px; height: 18px; cursor: pointer;
}

/* ── Gezinsleden-kaarten ── */
.member-card {
  background: var(--green-50); border: 1.5px solid var(--green-100);
  border-radius: var(--r-sm); padding: 20px; margin-bottom: 16px;
}
.member-card__head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px;
}
.member-card__title { font-size: 16px; font-weight: 700; color: var(--green-900); }
.member-remove {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  color: var(--slate); transition: border-color .15s, color .15s;
}
.member-remove:hover { border-color: #dc2626; color: #dc2626; }

.members-actions {
  display: flex; align-items: center; gap: 16px; margin-top: 6px;
}

/* ---------- Responsive ---------- */




/* ============================================================
   SHARED: lists, maps, modal (used across pages)
   ============================================================ */
.binck-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.binck-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; }
.binck-list .tick { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--green-100); color: var(--green-900); display: grid; place-items: center; margin-top: 3px; }
.binck-list .tick svg { width: 12px; height: 12px; }

/* Map screenshot slot */
.tag-soon { display:inline-flex; align-items:center; gap:8px; background: var(--green-900); color:#fff; padding:8px 16px; border-radius: var(--pill); font-weight:700; font-size:14px; }
.map-shot { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--green-50); }
.map-shot image-slot { display: block; width: 100%; height: 100%; }
.map-shot__addr { position: absolute; left: 16px; bottom: 16px; z-index: 3; background: #fff; padding: 9px 15px; border-radius: var(--pill); font-weight: 700; font-size: 14px; box-shadow: var(--shadow-sm); display: inline-flex; gap: 8px; align-items: center; pointer-events: none; }
.map-shot__addr svg { width: 16px; height: 16px; color: var(--green-900); }

/* Modal / popup */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px;
  background: rgba(16,32,21,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: #fff; border-radius: var(--r); width: min(580px, 100%); max-height: 90vh; overflow: auto;
  box-shadow: var(--shadow-lg); transform: translateY(18px) scale(.98); transition: transform .35s var(--ease);
}
.modal-overlay.open .modal { transform: none; }
.modal__head { position: relative; padding: 30px clamp(24px,4vw,36px) 0; }
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: var(--pill);
  border: 1px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink);
  transition: background .2s, transform .2s;
}
.modal__close:hover { background: var(--green-50); transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; }
.modal__title { font-size: clamp(24px, 3vw, 33px); letter-spacing: -.025em; margin-top: 14px; }
.modal__body { padding: 16px clamp(24px,4vw,36px) clamp(24px,4vw,36px); }
.modal__meta { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--green-900); }
.modal__text p { margin-top: 14px; color: var(--slate); font-size: 16.5px; line-height: 1.6; }
.modal__text p:first-child { margin-top: 18px; }
.modal-success { text-align: center; padding: 14px 0 6px; }
.modal-success .tickbig { width: 64px; height: 64px; border-radius: 50%; background: var(--green-500); color: #06351a; display: grid; place-items: center; margin: 0 auto 18px; }
.modal-success .tickbig svg { width: 30px; height: 30px; }


/* ===================== HOME / FRONT-PAGE ===================== */
/* ===== HOME-SPECIFIC ===== */

/* Hero */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(60px, 9vw, 120px); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__bg .blob1 { width: 620px; height: 620px; left: -180px; top: -160px; background: radial-gradient(circle, rgba(120,189,122,.55), transparent 70%); }
.hero__bg .blob2 { width: 520px; height: 520px; right: -120px; bottom: -200px; background: radial-gradient(circle, rgba(85,183,76,.40), transparent 70%); }
.hero__bg .micro {
  position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(2,98,45,.10) 1.2px, transparent 1.3px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(1100px 700px at 50% 0%, #000, transparent 75%);
          mask-image: radial-gradient(1100px 700px at 50% 0%, #000, transparent 75%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-top: 22px; }
.hero h1 .ink { color: var(--ink); }
.hero h1 .grn { color: var(--green-900); }
.hero__sub { margin-top: 26px; max-width: 48ch; }
.hero__cta { margin-top: 34px; }
.hero__meta { margin-top: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--green-900); font-size: 17px; }
.hero__phone:hover { text-decoration: underline; }

/* Open / gesloten badge */
.open-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--pill);
  padding: 6px 14px 6px 10px; color: var(--ink); }
.open-badge__dot { width: 9px; height: 9px; border-radius: 50%; background: #9ca3af; flex-shrink: 0; }
.open-badge.is-open .open-badge__dot {
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.18);
  animation: badgePulse 2.2s ease-in-out infinite;
}
.open-badge.is-open { border-color: rgba(22,163,74,.3); }
.open-badge.is-closed .open-badge__dot { background: #dc2626; }
.open-badge.is-closed { border-color: rgba(220,38,38,.25); }
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
  50%      { box-shadow: 0 0 0 6px rgba(22,163,74,.06); }
}

/* Hero visual stack */
.hero__visual { position: relative; }
.hero__card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 3/3.6; background: var(--green-50);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,98,45,.42), transparent 46%); }
.hero__badge {
  position: absolute; z-index: 3; right: -14px; top: 40px;
  width: 124px; height: 124px; border-radius: 50%; background: var(--green-500); color: #06351a;
  display: grid; place-content: center; text-align: center; padding: 16px; font-weight: 700;
  font-size: 13px; line-height: 1.25; box-shadow: var(--shadow); animation: floaty 6s ease-in-out infinite;
}
.hero__quote {
  position: absolute; z-index: 3; left: -22px; bottom: 48px;
  background: #fff; border-radius: var(--r); padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; max-width: 250px; animation: floaty 7s ease-in-out infinite reverse;
}
.hero__quote .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--green-100); display: grid; place-items: center; color: var(--green-900); flex-shrink: 0; }
.hero__quote > div { display: flex; flex-direction: column; line-height: 1.2; }
.hero__quote b { font-size: 15px; }
.hero__quote span { font-size: 13px; color: var(--slate); margin-top: 2px; }
.float-pill {
  position: absolute; z-index: 2; border-radius: var(--pill); background: var(--grad);
  box-shadow: var(--shadow); animation: floaty 8s ease-in-out infinite;
}
.float-pill.p1 { width: 70px; height: 32px; left: -30px; top: 30%; transform: rotate(-18deg); }
.float-pill.p2 { width: 50px; height: 24px; right: 18%; bottom: -14px; background: var(--green-400); animation-delay: -2s; }

@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-12px) } }

/* hero word reveal — base state is VISIBLE so it always shows (print/export/frozen-frame safe).
   The slide-up only plays as enhancement when motion is allowed. */
.reveal-line { display: block; overflow: hidden; padding-bottom: .04em; }
.reveal-line > span { display: block; transform: translateY(0); }

@keyframes lineUp { from { transform: translateY(110%); } to { transform: translateY(0); } }

/* Trustbar */
.trustbar { border-block: 1px solid var(--line); background: #fff; }
.trustbar__row { display: flex; flex-wrap: wrap; gap: 12px 14px; padding-block: 26px; align-items: center; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; color: var(--ink); }
.trust-item svg { width: 20px; height: 20px; color: var(--green-500); flex-shrink: 0; }
.trust-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--green-400); }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat__num { font-size: clamp(40px, 5vw, 64px); font-weight: 700; letter-spacing: -.04em; color: var(--green-900); line-height: 1; }
.stat__lbl { margin-top: 10px; color: var(--slate); font-weight: 600; }

/* Binckhorst split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

/* Services sticky panels */
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.svc-tagline { font-size: clamp(19px, 2vw, 25px); font-weight: 700; letter-spacing: -.015em; color: var(--green-900); margin-top: 12px; line-height: 1.18; }
.svc-panel--alt .svc-tagline { color: var(--green-400); }
.svc-panel {
  position: sticky; display: grid; grid-template-columns: 1.1fr 1fr; min-height: 380px;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff;
  border: 1px solid var(--line); margin-bottom: 28px;
}
.svc-panel__body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.svc-panel__num { font-family: ui-monospace, monospace; font-size: 14px; color: var(--green-500); font-weight: 700; letter-spacing: .1em; }
.svc-panel h3 { margin-top: 14px; }
.svc-panel p { margin-top: 16px; color: var(--slate); max-width: 42ch; }
.svc-panel__media { position: relative; background: var(--grad); min-height: 280px; }
.svc-panel__media .ph { position: absolute; inset: 0; border-radius: 0; }
.svc-panel__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-panel--alt { background: var(--green-900); color: #fff; border-color: transparent; }
.svc-panel--alt h3,
.svc-panel--alt .h-lg { color: #fff; }
.svc-panel--alt p { color: rgba(255,255,255,.82); }
.svc-panel--alt .svc-tagline { color: #fff; }
.svc-panel--alt .svc-panel__num { color: var(--green-400); }

/* Wonderpillen statement */
.statement { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.statement::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 500px at 80% 10%, rgba(85,183,76,.22), transparent 60%); }
.statement .wrap { position: relative; }
.statement h2 { font-size: clamp(40px, 7vw, 96px); line-height: .98; letter-spacing: -.04em; }
.statement h2 .accent { color: var(--green-400); }
.word-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
.word-strip .w {
  font-size: clamp(18px, 2vw, 26px); font-weight: 700; padding: 10px 22px; border-radius: var(--pill);
  border: 1.5px solid rgba(255,255,255,.22); color: #fff;
}
.word-strip .w.in { background: var(--green-500); color: #06351a; border-color: transparent; }

/* Journey */
.journey-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 18px; margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut); }
.journey-track::-webkit-scrollbar { height: 8px; }
.journey-track::-webkit-scrollbar-thumb { background: var(--green-400); border-radius: 999px; }
.journey-card { scroll-snap-align: start; flex: 0 0 min(420px, 80vw); background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.journey-step { font-family: ui-monospace, monospace; font-weight: 700; color: var(--green-500); letter-spacing: .12em; font-size: 13px; }
.journey-card .q { font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; letter-spacing: -.02em; margin-top: 18px; line-height: 1.1; }
.journey-card .meta { margin-top: auto; padding-top: 24px; color: var(--slate); font-size: 15px; }
.journey-num { width: 46px; height: 46px; border-radius: 50%; background: var(--green-100); color: var(--green-900); font-weight: 700; display: grid; place-items: center; margin-bottom: 6px; }

/* Roken keynote */
.roken { background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.roken::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.14) 1.4px, transparent 1.5px); background-size: 28px 28px; opacity:.5; }
.roken .wrap { position: relative; }
.roken-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.roken h2 { font-size: clamp(34px, 4.6vw, 60px); color: #fff; }
.roken-counts { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 8px; }
.count-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); padding: 26px; backdrop-filter: blur(4px); }
.count-card .yr { font-size: 14px; font-weight: 700; opacity: .8; letter-spacing: .08em; }
.count-card .pct { font-size: clamp(40px, 5vw, 58px); font-weight: 700; letter-spacing: -.03em; line-height: 1; margin-top: 6px; }
.roken-steps { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.roken-steps li { display: flex; gap: 14px; align-items: center; font-weight: 600; }
.roken-steps .n { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 14px; flex-shrink: 0; }

/* Gezondheidshuis circle */
.orbit-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,64px); align-items: center; }
.orbit { position: relative; width: min(460px, 86vw); aspect-ratio: 1; margin-inline: auto; }
.orbit__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 40%; height: 40%; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-content: center; text-align: center; padding: 18px; box-shadow: var(--shadow);
  font-weight: 700; line-height: 1.1; z-index: 2;
}
.orbit__core span { font-size: 13px; opacity: .85; font-weight: 600; display: block; margin-top: 4px; }
.orbit__ring { position: absolute; inset: 8%; border: 1.5px dashed rgba(2,98,45,.25); border-radius: 50%; }
.orbit__node {
  position: absolute; width: 88px; height: 88px;
  border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-content: center; text-align: center; font-weight: 700; font-size: 13px; color: var(--green-900);
  padding: 6px; transform: translate(-50%, -50%);
  transition: box-shadow .3s var(--ease);
}
.orbit__node:hover { box-shadow: var(--shadow); }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote-card .mark { font-size: 48px; line-height: .6; color: var(--green-400); font-weight: 900; height: 26px; }
.quote-card p { font-size: 19px; font-weight: 500; margin-top: 16px; }
.quote-card .who { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 12px; }
.quote-card .av { width: 44px; height: 44px; border-radius: 50%; background: var(--green-100); color: var(--green-900); display: grid; place-items: center; font-weight: 700; }
.quote-card .who b { display: block; font-size: 15px; }
.quote-card .who span { font-size: 13px; color: var(--slate); }

/* ============================================================
   Google Maps placeholder (vervangt de Claude-design map-slot)
   ============================================================ */
.map-shot iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-embed-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 20px;
  background:
    repeating-linear-gradient(135deg, rgba(85,183,76,.10) 0 12px, rgba(120,189,122,.06) 12px 24px),
    var(--green-50);
  color: var(--green-900); font-weight: 600;
}
.map-embed-placeholder span {
  border: 1px dashed rgba(2,98,45,.4); padding: 8px 14px; border-radius: var(--pill);
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; letter-spacing: .02em;
}

/* ============================================================
   RESPONSIVE — media queries (samengevoegd voor minder HTTP-requests)
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header { position: static; }
}

@media (max-width: 920px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .three-col, .hub-grid, .media-grid { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .three-col, .hub-grid, .media-grid, .four-col, .field-row, .quick-actions { grid-template-columns: 1fr; }
  .link-item { grid-template-columns: 44px 1fr; }
  .link-item .go { display: none; }
}

@media (max-width: 1080px) {
  .nav__menu { display: none; }
  .nav__sub { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__spacer { display: none; }
  .nav { justify-content: space-between; }
  .nav__cta .btn { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal { transition: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-line > span { animation: lineUp .85s var(--ease) forwards; }
  .reveal-line:nth-child(1) > span { animation-delay: .08s; }
  .reveal-line:nth-child(2) > span { animation-delay: .18s; }
  .reveal-line:nth-child(3) > span { animation-delay: .28s; }
}

@media (max-width: 920px) {
  .hero__grid, .split, .roken-grid, .orbit-wrap { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; }
  .svc-panel { grid-template-columns: 1fr; }
  .svc-panel__media { order: -1; min-height: 220px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .quotes { grid-template-columns: 1fr; }
  .roken-counts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .roken-counts { grid-template-columns: 1fr; }
}

/* Tablet — 768px */
@media (max-width: 768px) {
  :root { --gut: 28px; }
  .section { padding-block: clamp(56px, 9vh, 96px); }
  .footer-cta__inner { gap: 22px; }
}

/* Grote telefoon — 480px */
@media (max-width: 480px) {
  :root { --gut: 20px; }
  .display { font-size: clamp(40px, 13vw, 60px); }
  .h-xl { font-size: clamp(30px, 8.5vw, 44px); }
  .btn { width: 100%; justify-content: center; }
  .btn-row { width: 100%; }
  .btn-row .btn { flex: 1 1 auto; }
  .nav__logo img { height: 32px; }
  .modal { width: 100%; max-height: 88vh; border-radius: 22px; }
  .modal__head { padding: 24px 20px 0; }
  .modal__body { padding: 14px 20px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* iPhone — 390px */
@media (max-width: 400px) {
  body { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
}

/* Android — 360px */
@media (max-width: 360px) {
  :root { --gut: 16px; }
  .display { font-size: 38px; }
  .hero__badge { width: 104px; height: 104px; font-size: 12px; }
  .chip, .eyebrow { font-size: 13px; }
}

/* ── Wizard responsive ── */
@media (max-width: 640px) {
  .wizard-progress { gap: 0; }
  .wizard-step__label { display: none; }
  .wizard-step__circle { width: 36px; height: 36px; font-size: 14px; }
  .wizard-connector { margin-bottom: 0; }
  .wizard-nav { flex-wrap: wrap; gap: 10px; }
  .wizard-nav .btn { flex: 1 1 auto; justify-content: center; }
  .member-card { padding: 16px; }
  .members-actions { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .inschrijf-wizard .info-card { padding: 20px 18px; }
  .radio-label { padding: 9px 14px; font-size: 14px; }
  .check-label { padding: 12px 14px; }
}
