/* =========================================================
   MIJN SLIM HUIS: DESIGN SYSTEM
   Eén stylesheet voor de hele site. Nieuwe pagina's hergebruiken
   deze tokens en componenten in plaats van eigen stijlen te maken.
   ========================================================= */

/* ---------- Tokens ---------- */
:root{
  --ink:        #1B2B23;   /* hoofdtekst, donkere vlakken */
  --paper:      #EEF2ED;   /* pagina-achtergrond */
  --card:       #FFFFFF;   /* kaarten */
  --green:      #2F6B4F;   /* primaire actiekleur */
  --green-dark: #1F4A37;   /* hover / accent op donker */
  --green-bright:#7FD9A6;  /* accent op donkere vlakken */
  --amber:      #E1972F;   /* zon / aandacht */
  --red:        #B4432E;   /* tekort / waarschuwing */
  --muted:      #5B6960;   /* secundaire tekst */
  --line:       #D9DFD8;   /* randen, scheidingslijnen */

  --wrap:        1120px;
  --wrap-narrow: 720px;
  --wrap-form:   640px;

  --radius-s:  10px;
  --radius-m:  16px;
  --radius-l:  20px;
  --radius-full: 100px;

  --shadow-card: 0 30px 60px -30px rgba(27,43,35,.22);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset & base ---------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html, body{ overflow-x:hidden; max-width:100%; }
img, svg, video{ max-width:100%; height:auto; display:block; }

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

h1,h2,h3{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-weight:600;
  line-height:1.14;
  letter-spacing:-.015em;
  margin:0 0 .5em 0;
}
p{ margin:0 0 1em 0; }
p:last-child{ margin-bottom:0; }
a{ color:inherit; }
.mono{ font-family:'JetBrains Mono', monospace; }

::selection{ background:var(--green-bright); color:var(--ink); }

:focus-visible{
  outline:2px solid var(--green);
  outline-offset:3px;
  border-radius:4px;
}

.skip-link{
  position:absolute; left:16px; top:-60px;
  background:var(--ink); color:#fff;
  padding:10px 18px; border-radius:var(--radius-s);
  font-size:14px; font-weight:600; text-decoration:none;
  z-index:2000; transition:top .2s var(--ease);
}
.skip-link:focus{ top:16px; }

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

/* ---------- Layout ---------- */
.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 24px; }
.wrap--narrow{ max-width:var(--wrap-narrow); }
.wrap--form{ max-width:var(--wrap-form); }

section{ padding:clamp(64px, 9vw, 128px) 0; }
section[id]{ scroll-margin-top:88px; }

/* ---------- Type scale ---------- */
h1, .h1{
  font-size:clamp(2.15rem, 1.35rem + 3.4vw, 3.6rem);
  max-width:20ch;
}
h2, .h2{
  font-size:clamp(1.7rem, 1.2rem + 2vw, 2.5rem);
}
h2.h2--center{ max-width:19ch; margin-left:auto; margin-right:auto; text-align:center; }
h3, .h3{ font-size:1.2rem; }

.lead{
  color:var(--muted);
  font-size:clamp(1.02rem, .95rem + .3vw, 1.15rem);
  max-width:56ch;
}
.eyebrow{
  font-family:'JetBrains Mono', monospace;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--green-dark);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}
.eyebrow::before{ content:''; width:24px; height:1px; background:var(--amber); flex-shrink:0; }
.section-dark .eyebrow{ color:var(--amber); }
.section-dark .eyebrow::before{ background:var(--green-bright); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 26px;
  border-radius:var(--radius-full);
  font-weight:600; font-size:15px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn-primary{ background:var(--green); color:#fff; }
.btn-primary:hover{ background:var(--green-dark); transform:translateY(-1px); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--green); color:var(--green-dark); }
.section-dark .btn-ghost{ color:#EEF2ED; border-color:rgba(238,242,237,.3); }
.section-dark .btn-ghost:hover{ border-color:var(--green-bright); color:var(--green-bright); }

/* ---------- Header / nav ---------- */
header{
  position:sticky; top:0; z-index:200;
  background:rgba(238,242,237,.88);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:14px; padding-bottom:14px;
  max-width:var(--wrap);
}
.logo{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-weight:700; font-size:18px; letter-spacing:-.01em;
  text-decoration:none; color:var(--ink);
}
.logo span{ color:var(--green); }
nav{ display:flex; align-items:center; gap:10px; }
.nav-links{ display:none; }
.nav-links a{
  text-decoration:none; font-size:14px; font-weight:500;
  margin-left:24px; color:var(--ink); opacity:.85;
}
.nav-links a:hover{ opacity:1; }
.nav-links a[aria-current="page"]{ opacity:1; font-weight:600; }
.nav-links a.cta{
  background:var(--green); color:#fff;
  padding:9px 18px; border-radius:var(--radius-full);
  opacity:1; font-weight:600;
}
.nav-links a.cta:hover{ background:var(--green-dark); }
@media (min-width:900px){ .nav-links{ display:flex; align-items:center; } }

.menu-toggle{
  display:none; flex-direction:column; justify-content:center; align-items:center;
  gap:5px; width:40px; height:40px;
  background:transparent; border:none; cursor:pointer; padding:0;
  flex-shrink:0; position:relative; z-index:1002;
}
@media (max-width:899px){ .menu-toggle{ display:flex; } }
.menu-toggle .bar{
  display:block; width:22px; height:2px; border-radius:1px;
  background:var(--ink);
  transition:transform .3s var(--ease), opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2){ opacity:0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0; z-index:1001;
  background:var(--paper);
  display:flex; flex-direction:column; justify-content:flex-start;
  padding:96px 28px 40px;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s;
  overflow-y:auto;
}
.mobile-menu.open{ opacity:1; visibility:visible; transform:translateY(0); }
@media (min-width:900px){ .mobile-menu{ display:none; } }
.mobile-menu a{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:26px; font-weight:600; letter-spacing:-.01em;
  text-decoration:none; color:var(--ink);
  padding:18px 0; border-bottom:1px solid var(--line);
  opacity:0; transform:translateY(10px);
  transition:opacity .4s ease, transform .4s ease;
}
.mobile-menu.open a{ opacity:1; transform:translateY(0); }
.mobile-menu.open a:nth-child(1){ transition-delay:.05s; }
.mobile-menu.open a:nth-child(2){ transition-delay:.10s; }
.mobile-menu.open a:nth-child(3){ transition-delay:.15s; }
.mobile-menu.open a:nth-child(4){ transition-delay:.20s; }
.mobile-menu.open a:nth-child(5){ transition-delay:.25s; }
.mobile-menu.open a:nth-child(6){ transition-delay:.30s; }
.mobile-menu a.cta{
  margin-top:28px; text-align:center;
  background:var(--green); color:#fff;
  border-radius:var(--radius-full); padding:16px;
  border-bottom:none; font-size:17px;
}
body.menu-open{ overflow:hidden; }

/* ---------- Hero ---------- */
.hero{ padding-top:clamp(56px, 8vw, 96px); }
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
}
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; gap:40px; }
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }

.hero-copy > *{ opacity:0; transform:translateY(16px); animation:fadeUp .7s var(--ease) forwards; }
.hero-copy .eyebrow{ animation-delay:.05s; }
.hero-copy h1{ animation-delay:.15s; }
.hero-copy .lead{ animation-delay:.28s; }
.hero-copy .hero-ctas{ animation-delay:.4s; }
@keyframes fadeUp{ to{ opacity:1; transform:translateY(0); } }

/* ---------- Signature: live gauge ---------- */
.gauge-card{
  position:relative;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  padding:28px 28px 24px;
  box-shadow:var(--shadow-card);
  opacity:0; transform:translateY(20px) scale(.98);
  animation:fadeUp .8s var(--ease) forwards;
  animation-delay:.5s;
}
.gauge-card::before{
  content:'';
  position:absolute; inset:-40px -40px auto auto;
  width:220px; height:220px;
  background:radial-gradient(circle, rgba(225,151,47,.25), transparent 70%);
  z-index:-1;
}
.gauge-label{
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px; font-weight:600; color:var(--muted); margin-bottom:6px;
}
.gauge-label .mono{ color:var(--green-dark); font-size:12px; letter-spacing:.06em; }
.live-dot{
  display:inline-block; width:7px; height:7px; border-radius:50%;
  background:var(--green-bright); margin-right:7px;
  box-shadow:0 0 0 0 rgba(127,217,166,.6);
  animation:pulse 2s ease-out infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(127,217,166,.55); }
  70%{ box-shadow:0 0 0 8px rgba(127,217,166,0); }
  100%{ box-shadow:0 0 0 0 rgba(127,217,166,0); }
}
.needle-group{
  transform-origin:150px 150px;
  transform:rotate(-38deg);
  transition:transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.needle-sway{
  transform-origin:150px 150px;
  animation:needleSway 3.4s ease-in-out infinite;
}
@keyframes needleSway{
  0%,100%{ transform:rotate(-1.8deg); }
  50%{ transform:rotate(1.8deg); }
}
@media (prefers-reduced-motion: reduce){
  .needle-group{ transition:none; }
  .needle-sway{ animation:none; }
}
.gauge-readout{ text-align:center; margin-top:6px; }
.gauge-readout .value{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-weight:700; font-size:38px; color:var(--green-dark);
}
.gauge-readout .value small{
  font-family:'Inter', sans-serif; font-weight:500; font-size:14px;
  color:var(--muted); margin-left:4px;
}
.gauge-stats{
  display:flex; justify-content:space-between; gap:8px;
  margin-top:22px; padding-top:18px; border-top:1px solid var(--line);
}
.gauge-stat-label{ display:block; font-size:11px; color:var(--muted); margin-bottom:3px; }
.gauge-stat-value{ font-family:'JetBrains Mono', monospace; font-size:15px; font-weight:600; }

/* ---------- Statement / "beat" sections ---------- */
.beat{ text-align:center; }
.beat .eyebrow{ justify-content:center; }
.beat-intro{ max-width:var(--wrap-narrow); margin:0 auto; }
.beat-intro h2{ max-width:19ch; margin-left:auto; margin-right:auto; }
.beat-intro p{ color:var(--muted); font-size:18px; max-width:56ch; margin:16px auto 0; }
.beat-intro p + p{ margin-top:16px; }

.section-dark{ background:var(--ink); color:#EEF2ED; }
.section-dark .beat-intro p{ color:#C9D6CD; }
.section-dark a{ color:var(--green-bright); }
.section-tint{ background:var(--card); }

/* ---------- Feature list (Hoe) ---------- */
.feature-list{ list-style:none; margin:28px auto 0; padding:0; max-width:640px; text-align:left; }
.feature-list li{
  display:flex; gap:14px; align-items:flex-start;
  padding:16px 0; border-top:1px solid rgba(217,223,216,.5);
  font-size:16px;
}
.section-dark .feature-list li{ border-color:rgba(238,242,237,.14); }
.feature-list li:first-child{ border-top:none; }
.feature-list .dot{
  flex-shrink:0; margin-top:8px; width:8px; height:8px; border-radius:2px;
  background:var(--amber);
}

/* ---------- Preview widgets (Wat je ziet) ---------- */
.preview-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:20px;
  align-items:stretch;
}
@media (max-width:820px){ .preview-grid{ grid-template-columns:1fr; gap:12px; } }
.preview-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m);
  padding:16px; display:flex; flex-direction:column;
}
.preview-tag{
  font-family:'JetBrains Mono', monospace; font-size:12px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--amber); font-weight:600; margin-bottom:8px;
}
.preview-card svg{ width:100%; height:auto; max-height:110px; margin-bottom:8px; }
.preview-card h3{ font-size:16px; margin-bottom:4px; }
.preview-card p{ color:var(--muted); font-size:13px; line-height:1.4; }
.preview-chip-row{ display:flex; gap:10px; margin-bottom:14px; }

@media (max-width:600px){
  .preview-grid{ gap:6px; margin-top:10px; }
  .preview-card{ padding:10px; }
  .preview-card svg{ max-height:58px; margin-bottom:2px; }
  .preview-card h3{ font-size:13px; margin-bottom:1px; }
  .preview-card p{ font-size:11px; line-height:1.3; }
  .preview-tag{ font-size:10px; margin-bottom:4px; }
}
.preview-chip{
  flex:1; background:var(--paper); border-radius:var(--radius-s); padding:10px 12px;
}
.preview-chip .label{ display:block; font-size:11px; color:var(--muted); }
.preview-chip .value{ font-family:'JetBrains Mono', monospace; font-size:15px; font-weight:600; }

/* ---------- Journey / steps (Wat het kost) ---------- */
.journey{ margin-top:44px; display:flex; flex-direction:column; gap:0; }
.journey-step{
  display:grid; grid-template-columns:64px 1fr; gap:24px;
  padding:32px 0; border-top:1px solid var(--line);
}
.journey-step:first-child{ border-top:none; }
.journey-num{
  font-family:'JetBrains Mono', monospace; font-size:14px; font-weight:600;
  color:var(--muted);
}
.journey-step-highlight{ position:relative; }
.journey-step-highlight .journey-num{ color:var(--amber); }
.journey-step h3{ font-size:20px; }
.journey-step p{ color:var(--muted); max-width:62ch; }
@media (max-width:600px){
  .journey-step{ grid-template-columns:1fr; gap:8px; }
}

.cap-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media (max-width:600px){ .cap-grid{ grid-template-columns:1fr; } }
.flip-card{
  text-align:left; background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius-m); padding:22px; cursor:pointer;
  font:inherit; color:inherit; display:flex; flex-direction:column;
  transition:border-color .2s;
}
.flip-card:hover{ border-color:var(--green); }
.flip-card h3{ font-size:17px; }
.flip-card p{ color:var(--muted); font-size:14.5px; margin-bottom:10px; }
.flip-hint{
  font-size:13px; font-weight:600; color:var(--green-dark);
  display:inline-flex; align-items:center; gap:4px; margin-top:auto;
}
.flip-arrow{ transition:transform .2s; }
.flip-card[aria-expanded="true"] .flip-arrow{ transform:rotate(90deg); }
.flip-detail{
  display:none; margin-top:10px; padding-top:10px; border-top:1px solid var(--line);
  font-size:14px; color:var(--muted);
}
.flip-card[aria-expanded="true"] .flip-detail{ display:block; }

/* ---------- Cards / grids (algemeen) ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:820px){ .grid-3{ grid-template-columns:1fr; } }

.link-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:820px){ .link-grid{ grid-template-columns:1fr; gap:12px; } }
.link-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m);
  padding:28px; text-decoration:none; color:inherit;
  display:flex; flex-direction:column;
  transition:border-color .2s, transform .2s;
}
.link-card:hover{ border-color:var(--green); transform:translateY(-2px); }
.link-card h3{ font-size:18px; margin-bottom:10px; }
.link-card p{ color:var(--muted); font-size:14.5px; margin:0 0 16px 0; flex:1; }
.link-btn{ align-self:flex-start; font-size:14px; padding:11px 20px; pointer-events:none; }
@media (max-width:600px){
  .link-card{ padding:16px; }
  .link-card h3{ font-size:15px; margin-bottom:4px; }
  .link-card p{ font-size:13px; margin-bottom:8px; }
  .link-btn{ font-size:13px; padding:9px 16px; }
}

/* ---------- About / founder ---------- */
.about-card{
  display:grid; grid-template-columns:180px 1fr; gap:36px; align-items:center;
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-l);
  padding:40px;
}
.about-photo{
  width:180px; height:180px; border-radius:50%; overflow:hidden;
  background:var(--paper); flex-shrink:0; border:3px solid var(--card);
  box-shadow:0 0 0 1px var(--line);
}
.about-photo img{ width:100%; height:100%; object-fit:cover; }
.about-card h3{ font-size:22px; margin-bottom:4px; }
.about-role{
  font-family:'JetBrains Mono', monospace; font-size:12px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--green-dark); margin-bottom:14px; display:block;
}
.about-card p{ color:var(--muted); font-size:16px; }
@media (max-width:760px){
  .about-card{ grid-template-columns:1fr; justify-items:center; text-align:center; gap:24px; padding:32px 24px; }
  .about-photo{ width:140px; height:140px; }
}
@media (max-width:600px){
  .about-card{ padding:20px 18px; gap:14px; }
  .about-photo{ width:96px; height:96px; }
  .about-card h3{ font-size:19px; }
  .about-role{ margin-bottom:8px; }
  .about-card p{ font-size:14px; }
}

/* ---------- Form ---------- */
#contact{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-l);
  padding:44px;
}
@media (max-width:640px){ #contact{ padding:28px; } }
@media (max-width:600px){ #contact{ padding:18px; } }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:28px; }
@media (max-width:420px){ .form-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:6px; }
.field.full{ grid-column:1 / -1; }
label{ font-size:13px; font-weight:600; color:var(--muted); }
input, textarea{
  font-family:'Inter', sans-serif; font-size:15px; padding:12px 14px;
  border:1px solid var(--line); border-radius:var(--radius-s);
  background:#FBFCFA; color:var(--ink);
}
textarea{ resize:vertical; min-height:90px; }
.form-footer{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  margin-top:24px; flex-wrap:wrap;
}
.form-note{ font-size:13px; color:var(--muted); }
.form-note a{ text-decoration:underline; }
#form-status{ font-size:14px; font-weight:600; }
#form-status.ok{ color:var(--green-dark); }
#form-status.err{ color:var(--red); }
@media (max-width:600px){
  .form-grid{ gap:10px; margin-top:16px; }
  .field{ gap:3px; }
  label{ font-size:12px; }
  input, textarea{ padding:9px 11px; font-size:14px; }
  textarea{ min-height:56px; }
  .form-footer{ margin-top:14px; gap:10px; }
  .form-note{ font-size:11.5px; }
}

/* ---------- Footer ---------- */
footer{ border-top:1px solid var(--line); padding:36px 0; }
footer .wrap{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px; font-size:13px; color:var(--muted);
}
footer a{ text-decoration:underline; }
.footer-links{ display:flex; gap:20px; flex-wrap:wrap; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:400;
  display:none; padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(238,242,237,.94); backdrop-filter:blur(8px);
  border-top:1px solid var(--line);
  transform:translateY(120%); transition:transform .3s ease;
}
.mobile-cta.visible{ transform:translateY(0); }
.mobile-cta a{
  display:block; text-align:center; background:var(--green); color:#fff;
  font-weight:600; font-size:15px; padding:14px; border-radius:var(--radius-full);
  text-decoration:none;
}
@media (max-width:900px){
  .mobile-cta{ display:block; }
  footer{ padding-bottom:88px; }
}

/* ---------- Page progress dots (desktop) ---------- */
.page-progress{
  position:fixed; right:22px; top:50%; transform:translateY(-50%);
  display:none; flex-direction:column; gap:14px; z-index:500;
}
@media (min-width:1140px){ .page-progress{ display:flex; } }
.progress-dot{
  width:9px; height:9px; border-radius:50%; border:1.5px solid var(--muted);
  background:transparent; padding:0; display:block; position:relative;
  text-decoration:none; transition:background .2s, border-color .2s, transform .2s;
}
.progress-dot:hover{ transform:scale(1.2); }
.progress-dot.active{ background:var(--green); border-color:var(--green); transform:scale(1.25); }
.progress-dot .progress-label{
  position:absolute; right:20px; top:50%; transform:translateY(-50%);
  background:var(--ink); color:#fff; font-size:12px; font-weight:600;
  padding:5px 10px; border-radius:6px; white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity .15s;
}
.progress-dot:hover .progress-label{ opacity:1; }

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity:0; transform:translateY(28px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .live-dot, .hero-copy > *, .gauge-card{ animation:none !important; opacity:1 !important; transform:none !important; }
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
}

.beat-row + .beat-row{ border-top:1px solid var(--line); }
.section-dark.beat-row + .beat-row{ border-top:none; }

/* ---------- Twee schermafbeeldingen naast elkaar (met bijschrift) ---------- */
.shot-duo{
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
  max-width:820px; margin:52px auto 0;
}
@media (max-width:700px){ .shot-duo{ grid-template-columns:1fr; } }
.shot-duo figure{ margin:0; }
.shot-duo .shot-frame{ margin:0; max-width:none; }
.shot-duo figcaption{
  margin-top:12px; text-align:center; font-size:13px; color:var(--muted);
  font-family:'JetBrains Mono', monospace;
}

/* ---------- CTA-band (donker, afgerond) ---------- */
.cta-band{
  background:var(--ink); color:#EEF2ED;
  border-radius:var(--radius-l); padding:40px; text-align:center;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color:#C9D6CD; margin:0 auto 22px; max-width:46ch; }
@media (max-width:640px){ .cta-band{ padding:32px 24px; } }

/* ---------- Chooser (interactieve mini-quiz) ---------- */
.chooser-buttons{ display:flex; flex-wrap:wrap; gap:12px; }
.chooser-btn{
  font-family:'Inter', sans-serif; font-size:14px; font-weight:600;
  padding:13px 20px; border-radius:var(--radius-full);
  border:1px solid var(--line); background:var(--card); color:var(--ink);
  cursor:pointer; transition:border-color .15s, background .15s, transform .1s;
}
.chooser-btn:hover{ border-color:var(--green); }
.chooser-btn:active{ transform:scale(.97); }
.chooser-btn.active{ background:var(--green); border-color:var(--green); color:#fff; }
.chooser-result{
  margin-top:24px; padding:24px; background:var(--ink);
  border-radius:var(--radius-m); color:#EEF2ED;
  animation:chooser-in .3s ease;
}
.chooser-result p{ margin:0; font-size:15px; line-height:1.6; }
@keyframes chooser-in{
  from{ opacity:0; transform:translateY(6px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ---------- Simple pages (privacy, subpage cards) ---------- */
.card{
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius-m); padding:28px; margin-top:16px;
}
.card h2{ font-size:18px; margin-bottom:8px; }
.card p{ color:var(--muted); margin:0; }
.card a{ color:var(--green-dark); font-weight:600; text-decoration:underline; }
