/* =============================================================
   GelijkGezond Theme CSS
   Combines: variant-d.css + pages.css + mobile menu + WP fixes
   ============================================================= */

:root {
  --green: #3DB54A;
  --green-700: #2c8a37;
  --green-800: #246d2c;
  --green-50: #ecf7ec;
  --teal: #1A7B8C;
  --teal-700: #145e6c;
  --teal-50: #e6eff1;
  --ink: #1A1A1A;
  --ink-2: #404a4f;
  --ink-3: #6b757a;
  --ink-4: #9aa1a5;
  --line: #e4e2dc;
  --line-2: #d3d0c8;
  --grey: #F5F5F5;
  --grey-2: #ebeae4;
  --white: #FFFFFF;
  --warm-1: #f4e9d6;
  --warm-2: #e5cfa8;
  --warm-3: #c6a374;
  --accent: var(--green);
  --accent-700: var(--green-700);
  --accent-50: var(--green-50);
  --shadow-card: 0 1px 2px rgba(20,20,20,0.04), 0 8px 24px rgba(20,20,20,0.06);
  --shadow-card-h: 0 2px 4px rgba(20,20,20,0.05), 0 16px 32px rgba(20,20,20,0.10);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--white); color: var(--ink); font-family: 'Kumbh Sans', system-ui, -apple-system, sans-serif; font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- Annoncebalk ---------- */
.announce { background: var(--ink); color: #fff; font-size: 14px; text-align: center; padding: 8px 24px; letter-spacing: 0.01em; }
.announce strong { color: #d8f1da; font-weight: 600; }

/* ---------- Navigatie ---------- */
.nav { position: sticky; top: 0; background: rgba(255,255,255,0.96); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line); z-index: 30; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; max-width: 1280px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-footer .logo-mark-img { height: 40px; width: auto; }
.logo-footer .logo-text { color: #fff; font-weight: 700; font-size: 21px; letter-spacing: -0.01em; }

.nav-links { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; align-items: center; }
.nav-links li > a { padding: 10px 14px; font-size: 15.5px; font-weight: 500; color: var(--ink-2); border-radius: 8px; display: inline-flex; align-items: center; gap: 4px; transition: color 120ms, background 120ms; }
.nav-links li > a:hover { color: var(--ink); background: var(--grey); }
.nav-links li > a.current { color: var(--green-800); background: var(--green-50); }
.nav-links li > a .chev { width: 10px; height: 10px; margin-left: 2px; opacity: 0.55; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 8px; background: var(--ink); color: #fff !important; font-weight: 600; font-size: 15px; margin-left: 6px; }
.nav-cta:hover { background: #000; }

/* Mobile toggle button */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 300ms, opacity 300ms; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Section helpers ---------- */
section { position: relative; }
.section-grey { background: var(--grey); }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 56px 0; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin: 0 0 16px; }

/* ---------- Routing-blok ---------- */
.routing { padding: 56px 0 64px; background: var(--white); border-bottom: 1px solid var(--line); }
.routing-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.routing-head h2 { font-size: 22px; font-weight: 600; margin: 0; color: var(--ink-2); letter-spacing: -0.01em; }
.routing-head h2 strong { font-weight: 700; color: var(--ink); }
.routing-head .city-tags { font-size: 13.5px; color: var(--ink-3); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.routing-head .city-tags .pin { width: 10px; height: 10px; border-radius: 50%; background: var(--green); display: inline-block; box-shadow: 0 0 0 4px rgba(61,181,74,0.18); margin-right: 6px; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 14px; min-height: 270px; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; position: relative; overflow: hidden; }
.route-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-h); border-color: transparent; }
.route-card .icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--green-50); color: var(--green-800); }
.route-card.teal .icon { background: var(--teal-50); color: var(--teal-700); }
.route-card.warm .icon { background: #f4e9d6; color: #8a6a2f; }
.route-card h3 { font-size: 22px; font-weight: 700; margin: 0; line-height: 1.25; letter-spacing: -0.015em; }
.route-card p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.route-card .link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--green-800); }
.route-card.teal .link { color: var(--teal-700); }
.route-card.warm .link { color: #8a6a2f; }
.route-card .link .arr { display: inline-block; transition: transform 200ms; }
.route-card:hover .link .arr { transform: translateX(4px); }
.route-card .audience { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 104px; background: var(--white); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.hero h1 { font-size: 60px; font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 24px; text-wrap: balance; }
.hero h1 .accent { color: var(--green-800); }
.hero .lead { font-size: 19px; line-height: 1.6; color: var(--ink-2); margin: 0 0 32px; max-width: 520px; font-weight: 300; }
.hero .lead strong { font-weight: 600; color: var(--ink); }
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .trust { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 28px; font-size: 14px; color: var(--ink-3); }
.hero .trust b { color: var(--ink); font-weight: 600; display: block; font-size: 22px; line-height: 1; margin-bottom: 4px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 8px; font-family: inherit; font-size: 16px; font-weight: 600; border: 1.5px solid transparent; cursor: pointer; transition: background 150ms, transform 100ms, box-shadow 150ms, color 150ms, border-color 150ms; text-decoration: none; line-height: 1; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 1px 0 var(--green-700), 0 4px 16px rgba(61,181,74,0.25); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }

/* ---------- Photo card ---------- */
.photo-card { position: relative; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; background: radial-gradient(140% 100% at 30% 0%, #f9eede 0%, #e9d2a8 55%, #c79b5b 100%); box-shadow: 0 1px 2px rgba(20,20,20,0.06), 0 30px 60px -20px rgba(20,20,20,0.25); isolation: isolate; }
.photo-card.warm-teal { background: radial-gradient(140% 100% at 30% 0%, #e1f0f2 0%, #a8cfd5 55%, #4f8a93 100%); }
.photo-card .photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.photo-card:has(.photo-img)::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 42%); z-index: 1; }
.photo-meta { position: absolute; left: 18px; bottom: 18px; right: 18px; display: flex; justify-content: space-between; align-items: end; color: #fff; z-index: 2; }
.photo-meta .name { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; text-shadow: 0 1px 2px rgba(0,0,0,0.25); }
.photo-meta .name small { display: block; font-weight: 400; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; opacity: 0.9; }

/* Hero portrait */
.hero-portrait { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; justify-content: center; }
.hero-portrait img { width: 100%; max-width: 360px; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 18%; border-radius: 18px; box-shadow: 0 1px 2px rgba(20,20,20,0.06), 0 26px 50px -22px rgba(20,20,20,0.28); }
.hero-portrait .cap { display: flex; flex-direction: column; gap: 2px; }
.hero-portrait .cap strong { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.hero-portrait .cap span { font-size: 14px; color: var(--ink-3); }

/* ---------- Stats ---------- */
.stats { padding: 96px 0; background: var(--grey); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat { padding: 32px 28px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line); }
.stat .n { font-size: 64px; font-weight: 700; color: var(--green-800); line-height: 1; letter-spacing: -0.03em; margin-bottom: 16px; display: flex; align-items: baseline; gap: 6px; }
.stat .n .unit { font-size: 24px; color: var(--ink-2); font-weight: 600; }
.stat .lbl { font-size: 16px; line-height: 1.5; color: var(--ink-2); }
.stat .src { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-3); letter-spacing: 0.02em; }
.stats-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 48px; align-items: end; }
.stats-head h2 { font-size: 38px; font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.15; text-wrap: balance; }
.stats-head p { color: var(--ink-2); margin: 0; font-size: 17px; max-width: 460px; }

/* ---------- Aanpak ---------- */
.aanpak { padding: 104px 0; background: var(--white); }
.aanpak-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.aanpak h2 { font-size: 42px; font-weight: 700; margin: 0 0 20px; letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
.aanpak p { font-size: 17.5px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.6; }
.aanpak .check-list { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 14px; }
.aanpak .check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; font-size: 16px; }
.aanpak .check-list .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--green-50); color: var(--green-800); display: grid; place-items: center; margin-top: 2px; }
.aanpak-aside { background: var(--teal); background: linear-gradient(155deg, #1f8a9d 0%, #155e6c 100%); color: #fff; border-radius: 20px; padding: 44px 40px; position: relative; overflow: hidden; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; }
.aanpak-aside::before { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%); right: -80px; top: -80px; }
.aanpak-aside .quote-mark { font-family: Georgia, serif; font-size: 90px; line-height: 0.7; opacity: 0.4; }
.aanpak-aside blockquote { font-size: 24px; line-height: 1.4; font-weight: 500; margin: 0 0 24px; letter-spacing: -0.01em; }
.aanpak-aside cite { font-style: normal; font-size: 14.5px; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.aanpak-aside cite .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #f4e9d6, #c6a374); flex-shrink: 0; border: 2px solid rgba(255,255,255,0.4); }
.aanpak-aside cite small { display: block; font-weight: 400; opacity: 0.8; margin-top: 2px; }

/* ---------- Financiers ---------- */
.funders { padding: 80px 0; background: var(--white); border-top: 1px solid var(--line); }
.funders-head { text-align: center; margin-bottom: 36px; }
.funders-head h2 { font-size: 22px; font-weight: 600; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em; }
.funders-head p { color: var(--ink-3); margin: 0; font-size: 14.5px; }
.funder-group { margin-bottom: 40px; }
.funder-group:last-child { margin-bottom: 0; }
.funder-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 22px; }
.logo-grid { display: grid; gap: 18px; align-items: stretch; max-width: 920px; margin: 0 auto; }
.logo-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.logo-grid.cols-7 { grid-template-columns: repeat(7, 1fr); max-width: 100%; }
.logo-cell { height: 84px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; background: var(--white); padding: 16px; overflow: hidden; transition: border-color 200ms, box-shadow 200ms; }
.logo-cell > a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.logo-cell img { max-width: 100%; max-height: 52px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: 0.78; transition: filter 200ms, opacity 200ms; }
.logo-cell img.logo-lg { max-height: 74px; }
.logo-cell:hover { border-color: var(--line-2); box-shadow: var(--shadow-card); }
.logo-cell:hover img { filter: grayscale(0); opacity: 1; }

/* ---------- Footer ---------- */
.footer { background: #141416; color: #d5d5d3; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer .logo-text { color: #fff; }
.footer p { font-size: 14.5px; color: #a9a9a4; line-height: 1.6; margin: 16px 0 0; }
.footer h4 { color: #fff; margin: 0 0 14px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { font-size: 14.5px; color: #c4c4bf; transition: color 120ms; }
.footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #2a2a2c; padding-top: 24px; font-size: 13px; color: #87877f; flex-wrap: wrap; gap: 16px; }
.footer-bottom .meta { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .meta span:not(:first-child)::before { content: '·'; margin-right: 18px; margin-left: -18px; color: #4a4a45; }
.footer-social a { display: inline-grid; place-items: center; width: 36px; height: 36px; background: #232325; border-radius: 8px; color: #fff; margin-left: 8px; transition: background 150ms; }
.footer-social a:hover { background: var(--green-700); }

/* ==============================================================
   PAGES CSS — Inner page components
   ============================================================== */
.page-hero { padding: 72px 0 56px; border-bottom: 1px solid var(--line); background: var(--white); }
.page-hero.center { text-align: center; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: 52px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 18px; text-wrap: balance; max-width: 18ch; }
.page-hero.center h1 { margin-left: auto; margin-right: auto; }
.page-hero .lead { font-size: 19px; color: var(--ink-2); max-width: 620px; margin: 0; font-weight: 300; line-height: 1.6; }
.page-hero.center .lead { margin: 0 auto; }
.page-hero .ctas { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero.center .ctas { justify-content: center; }

.crumb { font-size: 13.5px; color: var(--ink-3); margin-bottom: 22px; display: flex; gap: 8px; align-items: center; }
.crumb a { color: var(--ink-3); }
.crumb a:hover { color: var(--ink); }
.crumb .sep { opacity: 0.5; }

.subnav { position: sticky; top: 71px; z-index: 20; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.subnav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; gap: 4px; overflow-x: auto; }
.subnav a { padding: 16px 16px; font-size: 15px; font-weight: 500; color: var(--ink-2); border-bottom: 2px solid transparent; white-space: nowrap; }
.subnav a:hover { color: var(--ink); }
.subnav a.active { color: var(--green-800); border-bottom-color: var(--green); }

.prose-section { padding: 80px 0; }
.prose { max-width: 720px; }
.prose.center { margin: 0 auto; text-align: center; }
.prose h2 { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 20px; text-wrap: balance; }
.prose p { font-size: 18px; line-height: 1.65; color: var(--ink-2); margin: 0 0 18px; }
.prose p.big { font-size: 21px; color: var(--ink); font-weight: 300; line-height: 1.55; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose-airy p { font-size: 20px; line-height: 1.7; font-weight: 300; color: var(--ink); }
.prose-airy p strong { font-weight: 600; }

.steps { display: grid; gap: 20px; max-width: 860px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 26px; align-items: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 32px; }
.step .num { width: 56px; height: 56px; border-radius: 50%; background: var(--green-50); color: var(--green-800); display: grid; place-items: center; font-size: 26px; font-weight: 700; }
.step h3 { font-size: 22px; font-weight: 700; margin: 4px 0 8px; letter-spacing: -0.01em; }
.step p { margin: 0; font-size: 16.5px; color: var(--ink-2); line-height: 1.55; }

.media-video { display: block; width: 100%; max-width: 860px; margin: 40px auto 0; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #0c1012; overflow: hidden; }
.media-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1000px; margin: 0 auto; }
.compare .col { border-radius: var(--radius-lg); padding: 36px 34px; }
.compare .col.give { background: var(--green-50); border: 1px solid #cfe8d0; }
.compare .col.ask { background: var(--teal-50); border: 1px solid #c9e0e4; }
.compare .col h3 { font-size: 23px; font-weight: 700; margin: 0 0 22px; min-height: 64px; display: flex; align-items: flex-start; gap: 12px; letter-spacing: -0.01em; line-height: 1.2; }
.compare .col h3 .badge-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.compare .give h3 .badge-ic { background: var(--green); }
.compare .ask h3 .badge-ic { background: var(--teal); }
.compare ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.compare li { display: grid; grid-template-columns: 20px 1fr; gap: 13px; font-size: 16px; line-height: 1.5; color: var(--ink-2); }
.compare li strong { color: var(--ink); font-weight: 600; }
.compare li .mk { margin-top: 3px; color: var(--green-700); }
.compare .ask li .mk { color: var(--teal-700); }

.portrait-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.portrait { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.portrait .pic { aspect-ratio: 4 / 3; position: relative; background: radial-gradient(140% 100% at 30% 0%, #f9eede 0%, #e9d2a8 55%, #c79b5b 100%); }
.portrait.t2 .pic { background: radial-gradient(140% 100% at 30% 0%, #e1f0f2 0%, #a8cfd5 55%, #4f8a93 100%); }
.portrait.t3 .pic { background: radial-gradient(140% 100% at 30% 0%, #efe6f2 0%, #cdb6d6 55%, #8a6aa0 100%); }
.portrait .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait .body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.portrait .name { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.portrait .role { font-size: 14px; color: var(--ink-3); margin-top: -6px; }
.portrait blockquote { margin: 6px 0 0; font-size: 16.5px; line-height: 1.5; color: var(--ink-2); border-left: 3px solid var(--green); padding-left: 14px; font-style: italic; }
.portrait.t2 blockquote { border-left-color: var(--teal); }
.portrait.t3 blockquote { border-left-color: #8a6aa0; }
.portrait blockquote.placeholder { color: var(--ink-4); }

.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.city { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; background: var(--white); transition: border-color 200ms, box-shadow 200ms; }
.city:hover { border-color: var(--line-2); box-shadow: var(--shadow-card); }
.city .ic { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px; background: var(--green-50); color: var(--green-800); display: grid; place-items: center; }
.city .nm { font-size: 19px; font-weight: 700; }

.tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.tab { padding: 12px 22px; border-radius: 999px; border: 1.5px solid var(--line-2); background: var(--white); font-family: inherit; font-size: 15.5px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: all 150ms; }
.tab:hover { border-color: var(--ink-3); }
.tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade 280ms ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.partner-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; max-width: 1000px; margin: 0 auto; }
.partner-detail h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 16px; }
.partner-detail p { font-size: 17px; color: var(--ink-2); line-height: 1.6; margin: 0 0 14px; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1040px; margin: 0 auto; }
.tl-step { position: relative; padding: 0 22px; text-align: center; }
.tl-step .dot { width: 54px; height: 54px; border-radius: 50%; background: var(--white); border: 2px solid var(--green); color: var(--green-800); font-weight: 700; font-size: 22px; display: grid; place-items: center; margin: 0 auto 18px; position: relative; z-index: 2; }
.tl-step::before { content: ''; position: absolute; top: 27px; left: -50%; width: 100%; height: 2px; background: var(--line-2); z-index: 1; }
.tl-step:first-child::before { display: none; }
.tl-step h4 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.tl-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; margin: 0; }

.data-table { width: 100%; max-width: 860px; margin: 0 auto; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.data-table th, .data-table td { text-align: left; padding: 18px 24px; border-bottom: 1px solid var(--line); font-size: 16px; vertical-align: top; }
.data-table tr:last-child th, .data-table tr:last-child td { border-bottom: none; }
.data-table th { width: 34%; font-weight: 700; color: var(--ink); background: var(--grey); }
.data-table td { color: var(--ink-2); }

.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1040px; margin: 0 auto; }
.people-grid.cols-5 { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.person { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.person .pic { aspect-ratio: 1 / 1; background: radial-gradient(140% 100% at 30% 0%, #eef1f2 0%, #cfd6d9 60%, #9aa6ab 100%); position: relative; overflow: hidden; }
.person:nth-child(3n+2) .pic { background: radial-gradient(140% 100% at 30% 0%, #e8f0ea 0%, #c2d6c8 60%, #8aa893 100%); }
.person:nth-child(3n+3) .pic { background: radial-gradient(140% 100% at 30% 0%, #e7eef0 0%, #bcd0d4 60%, #7f9aa1 100%); }
.person .pic .figure { position: absolute; inset: 0; display: grid; place-items: end center; }
.person .pic .figure svg { width: 64%; }
.person .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.person .body { padding: 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; flex: 1; }
.person .who { min-width: 0; }
.person .nm { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; }
.person .loc { font-size: 13px; color: var(--green-800); font-weight: 600; margin-top: 3px; }
.person .role { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; line-height: 1.35; }
.person .li { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; border: 1px solid var(--line); color: var(--ink-3); transition: background .15s, color .15s, border-color .15s; }
.person .li:hover { background: var(--green-800); border-color: var(--green-800); color: #fff; }
.person .li svg { width: 15px; height: 15px; }
.team-sub { text-align: center; font-size: 16px; color: var(--ink-3); max-width: 620px; margin: 6px auto 40px; line-height: 1.5; }

.quote-band { background: linear-gradient(155deg, #1f8a9d 0%, #155e6c 100%); color: #fff; padding: 80px 0; text-align: center; }
.quote-band blockquote { font-size: 32px; line-height: 1.35; font-weight: 500; max-width: 880px; margin: 0 auto 20px; letter-spacing: -0.01em; text-wrap: balance; }
.quote-band .who { font-size: 15px; opacity: 0.85; }

.cta-band { padding: 80px 0; background: var(--grey); text-align: center; }
.cta-band.teal { background: linear-gradient(155deg, #1f8a9d 0%, #155e6c 100%); color: #fff; }
.cta-band h2 { font-size: 38px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 14px; text-wrap: balance; }
.cta-band p { font-size: 18px; max-width: 600px; margin: 0 auto 28px; }
.cta-band.teal p { opacity: 0.9; }
.cta-band .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band.teal .btn-secondary { background: #fff; color: var(--teal-700); border-color: #fff; }
.cta-band.teal .btn-secondary:hover { background: rgba(255,255,255,0.85); }

.cta-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1000px; margin: 0 auto; text-align: left; }
.cta-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(4px); display: flex; flex-direction: column; }
.cta-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.cta-card p { font-size: 15px; margin: 0 0 18px; opacity: 0.9; }
.cta-card .btn { margin-top: auto; align-self: flex-start; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1000px; margin: 0 auto; }
.contact-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 32px; border-top: 4px solid var(--green); }
.contact-block.c2 { border-top-color: var(--teal); }
.contact-block.c3 { border-top-color: #8a6aa0; }
.contact-block.c4 { border-top-color: var(--ink-3); }
.contact-block h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
.contact-block p { font-size: 16px; color: var(--ink-2); line-height: 1.55; margin: 0 0 12px; }
.contact-block a.mail { font-weight: 600; color: var(--green-800); word-break: break-all; }

.info-card { max-width: 1000px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.info-card h3 { font-size: 20px; margin: 0 0 8px; font-weight: 700; }
.info-card p { font-size: 16px; color: var(--ink-2); line-height: 1.6; margin: 0; }

.doc-list { list-style: none; padding: 0; margin: 0; max-width: 720px; display: grid; gap: 12px; }
.doc-list li { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; transition: border-color 150ms, box-shadow 150ms; }
.doc-list li:hover { border-color: var(--line-2); box-shadow: var(--shadow-card); }
.doc-list .doc-ic { width: 40px; height: 40px; border-radius: 9px; background: var(--green-50); color: var(--green-800); display: grid; place-items: center; flex-shrink: 0; }
.doc-list .doc-name { font-weight: 600; font-size: 16px; flex: 1; }
.doc-list .doc-status { font-size: 13px; color: var(--ink-4); }

.tag-pill { display: inline-block; padding: 8px 16px; border-radius: 999px; background: var(--white); border: 1.5px solid var(--line-2); font-size: 15px; font-weight: 600; color: var(--ink-2); }

.section-title { text-align: center; margin-bottom: 44px; }
.section-title .eyebrow { margin-bottom: 12px; }
.section-title h2 { font-size: 38px; font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.15; text-wrap: balance; }
.section-title p { font-size: 17px; color: var(--ink-2); max-width: 600px; margin: 14px auto 0; }

.name-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px; max-width: 720px; margin: 0 auto; list-style: none; padding: 0; }
.name-list li { padding: 14px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; font-size: 16px; }
.name-list li b { font-weight: 700; }
.name-list li span { color: var(--ink-3); font-size: 14px; }

.logo-wordmark { font-weight: 700; font-size: 15px; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink-2); text-align: center; }

[id] { scroll-margin-top: 130px; }

/* =============================================================
   WordPress Admin Bar fix
   ============================================================= */
.admin-bar .nav { top: 32px; }
.admin-bar .subnav { top: 103px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
  .admin-bar .subnav { top: 117px; }
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 980px) {
  .container { padding: 0 22px; }
  .nav-inner { padding: 14px 22px; }
  .nav-toggle { display: flex; }

  /* Mobile nav */
  #primaryNav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 16px 22px 24px;
    z-index: 29;
  }
  #primaryNav.open { display: block; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-links li > a { font-size: 17px; padding: 12px 16px; }
  .nav-cta { margin-left: 0; margin-top: 8px; justify-content: center; }

  .route-grid { grid-template-columns: 1fr; }
  .hero-grid, .aanpak-grid, .stats-head { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr; }
  .logo-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .logo-grid.cols-7 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero h1 { font-size: 42px; }
  .aanpak h2 { font-size: 32px; }
  .section-pad { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .page-hero h1 { font-size: 36px; }
  .compare, .partner-detail, .info-card { grid-template-columns: 1fr; }
  .portrait-trio { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid, .people-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .tl-step:nth-child(3)::before { display: none; }
  .cta-cards, .contact-grid { grid-template-columns: 1fr; }
  .name-list { grid-template-columns: 1fr; }
  .quote-band blockquote { font-size: 24px; }
  .step { grid-template-columns: 48px 1fr; gap: 18px; padding: 22px; }
  .cta-band h2 { font-size: 28px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .logo-grid.cols-7 { grid-template-columns: repeat(2, 1fr); }
  .hero .trust { flex-direction: column; gap: 12px; }
  .hero-portrait img { max-width: 280px; }
  .aanpak-aside { padding: 32px 28px; }
}

/* =============================================================
   Fact-list (partner tabs)
   ============================================================= */
.fact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.fact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.fact-list .k { font-weight: 700; color: var(--green-800); font-size: 15px; white-space: nowrap; }
.fact-list .v { font-size: 15.5px; color: var(--ink-2); }

/* =============================================================
   Partner logo wall (gemeenten grid)
   ============================================================= */
.partner-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.partner-wall.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
.partner-wall .logo-cell { height: 110px; }
.partner-wall .logo-cell img { max-height: 64px; }
.partner-wall.gemeenten .logo-cell { padding: 12px; }
.partner-wall.gemeenten .logo-cell img { max-height: 82px; }

/* =============================================================
   Auto-scrollende logo-carrousel
   ============================================================= */
.lp-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 4px;
}
.lp-viewport { overflow: hidden; flex: 1 1 auto; min-width: 0; }
.lp-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  transition: none;
}
.lp-track .logo-cell { flex: 0 0 auto; width: 190px; height: 110px; }
.lp-track .logo-cell img { max-height: 64px; }
.lp-arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.lp-arrow:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); }

@media (max-width: 980px) {
  .partner-wall { grid-template-columns: repeat(2, 1fr); }
  .lp-track .logo-cell { width: 150px; }
}
