/* =========================================================
   IRW — Stoppen met roken via infrarood behandeling & coaching
   Stylesheet
   ========================================================= */

:root {
  /* Diepblauw — kernkleur (basis: header, hero, accenten), nu een
     stoerdere, verzadigde navy in plaats van het vlakke lichte teal. */
  --blue-900: #081226;
  --blue-800: #0D1B3A;
  --blue-700: #122752;
  --blue-600: #1B3A73;
  --blue-500: #2C56A0;
  --blue-400: #5A82C4;
  --blue-100: #E6ECF9;
  --blue-50:  #F3F6FC;

  /* Rood — primair accent voor CTA's en highlights, feller dan koraal */
  --red-600: #C81E2C;
  --red-500: #E0293A;
  --red-100: #FBE1E3;

  /* Extra accenten voor variatie en "leven" in de blokken */
  --gold-500: #E7A93B;
  --gold-100: #FBEBCB;
  --brick-600: #A34A2B;
  --brick-100: #F4E3D8;

  /* Warme neutrale tinten — voorkomt een klinische uitstraling */
  --sand-50:  #FBF8F3;
  --sand-100: #F4EEE3;
  --sand-200: #EAE0CF;

  /* Tekstkleuren */
  --ink-900: #12141C;
  --ink-700: #3A3D48;
  --ink-500: #666A76;
  --white:   #FFFFFF;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(10, 18, 38, 0.08);
  --shadow-md: 0 12px 32px rgba(10, 18, 38, 0.16);
  --shadow-lg: 0 24px 60px rgba(15, 40, 45, 0.16);

  --max-width: 1180px;

  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 0.5em 0;
  font-weight: 600;
}
p { margin: 0 0 1em 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red-500);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--red-600); box-shadow: var(--shadow-md); }
.btn-dark {
  background: var(--ink-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { background: var(--blue-800); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-outline {
  background: transparent;
  color: var(--brick-600);
  border-color: var(--brick-600);
}
.btn-outline:hover { background: var(--white); }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 27, 58, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: var(--white);
  box-shadow: 0 2px 20px rgba(8,18,38,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo svg {
  display: block;
  height: 58px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  opacity: 0.92;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,255,255,0.14); opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: flex;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
  padding: 3px;
}
.lang-switch a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  opacity: 0.75;
}
.lang-switch a.is-active { background: var(--white); color: var(--blue-700); opacity: 1; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--blue-700) 0%, var(--blue-600) 45%, var(--blue-500) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-kicker {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold-500); }
.hero-lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.92);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-media {
  position: relative;
  padding: 14px 20px 44px 0;
}
.hero-media::before {
  content: "";
  position: absolute;
  top: 28px;
  right: -18px;
  width: 88%;
  height: 88%;
  background: var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero-media::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: -14px;
  width: 46%;
  height: 40%;
  background: var(--red-500);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero-media figure {
  margin: 0;
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 10px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-media img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: -24px;
  bottom: -20px;
  z-index: 2;
  background: var(--white);
  color: var(--ink-900);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero-badge .hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-100);
  color: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge .hero-badge-icon svg { width: 22px; height: 22px; }
.hero-badge strong { display: block; font-family: var(--font-heading); font-size: 0.98rem; line-height: 1.25; }
.hero-badge span { display: block; font-size: 0.78rem; color: var(--ink-500); margin-top: 2px; }

/* ---------- Sections (generic) ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--sand-50); }
.section-tint { background: var(--blue-50); }
.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  color: var(--blue-600);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: stretch;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 460px;
}
.split-media img {
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.95);
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 18px 9px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.media-badge svg { width: 16px; height: 16px; color: var(--red-500); flex-shrink: 0; }
.split h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.split p { color: var(--ink-700); }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.pill {
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.pill-list.multicolor .pill:nth-child(5n+2) { background: var(--red-100); color: var(--red-600); }
.pill-list.multicolor .pill:nth-child(5n+3) { background: var(--gold-100); color: var(--brick-600); }
.pill-list.multicolor .pill:nth-child(5n+4) { background: var(--brick-100); color: var(--brick-600); }

.note-box {
  background: var(--sand-100);
  border-left: 4px solid var(--blue-500);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--ink-700);
  margin-top: 18px;
}

/* ---------- Trust / feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.feature-card .feature-icon { margin-left: auto; margin-right: auto; }
.feature-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red-100);
  color: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-500); font-size: 0.94rem; margin-bottom: 0; }
.feature-grid.alt-icons .feature-card:nth-child(4n+1) .feature-icon,
.feature-grid.alt-icons .feature-card:nth-child(4n+3) .feature-icon { background: var(--blue-100); color: var(--blue-600); }
.feature-grid.alt-icons .feature-card:nth-child(4n+4) .feature-icon { background: var(--gold-100); color: var(--brick-600); }

/* ---------- Traject / timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 6%;
  right: 6%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--sand-200) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 24px 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.timeline-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.timeline-step .step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 0 0 5px var(--white);
}
.timeline-step:nth-child(5n+2) .step-num { background: var(--red-500); }
.timeline-step:nth-child(5n+3) .step-num { background: var(--gold-500); color: var(--ink-900); }
.timeline-step:nth-child(5n+4) .step-num { background: var(--brick-600); }
.timeline-step:nth-child(5n+5) .step-num { background: var(--blue-800); }
.timeline-step h3 { font-size: 1rem; margin-bottom: 6px; }
.timeline-step p { font-size: 0.9rem; color: var(--ink-500); margin-bottom: 0; }

/* ---------- SNUS callout ---------- */
.callout {
  background: linear-gradient(135deg, var(--gold-100), var(--brick-100));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.callout h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
.callout p { color: var(--ink-700); }
.callout-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.callout-stat .num { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 700; color: var(--brick-600); }
.callout-stat .label { font-size: 0.86rem; color: var(--ink-500); }

/* ---------- Receptenboek ---------- */
.recipe-card {
  background: var(--sand-50);
  border: 2px solid var(--blue-500);
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.recipe-card h2 { color: var(--ink-900); }
.recipe-card p { color: var(--ink-700); }
.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-100);
  color: var(--red-600);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-500); }
.recipe-checklist { margin: 22px 0; }
.recipe-checklist li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.recipe-checklist svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue-600); margin-top: 2px; }
.recipe-signup {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 28px;
}
.recipe-signup h3 { color: var(--blue-700); }
.recipe-signup form { display: flex; flex-direction: column; gap: 12px; }
.recipe-signup input[type="email"] {
  padding: 13px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--sand-200);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
}
.recipe-signup .fineprint { font-size: 0.78rem; color: var(--ink-500); margin-top: 10px; margin-bottom: 0; }
.recipe-visual {
  aspect-ratio: 1;
  border: 2px dashed var(--blue-400);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--blue-600);
  text-align: center;
  padding: 24px;
}
.recipe-visual svg { width: 44px; height: 44px; }
.recipe-visual span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }

/* ---------- Pricing ---------- */
.price-intro {
  max-width: 62ch;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--ink-700);
  font-size: 1.02rem;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}
.price-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--sand-200);
  border-top: 5px solid var(--blue-500);
  border-radius: var(--radius-lg);
  padding: 32px 24px 26px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-tier-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.price-tier-icon svg { width: 26px; height: 26px; }
.price-tier-label {
  font-weight: 700;
  color: var(--ink-900);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.price-tier-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: 4px;
}
.price-tier-amount span { font-size: 0.85rem; font-weight: 500; color: var(--ink-500); }
.price-tier > p.price-tier-desc { font-size: 0.88rem; color: var(--ink-500); margin: 0 0 18px; }
.price-tier-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.price-tier-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: var(--ink-700); }
.price-tier-list svg { width: 17px; height: 17px; color: var(--blue-600); flex-shrink: 0; margin-top: 2px; }
.price-tier .btn { width: 100%; text-align: center; }
.price-tier-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--gold-500);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
/* Kleuraccenten per tier */
.price-tier:nth-child(2) { border-top-color: var(--gold-500); }
.price-tier:nth-child(2) .price-tier-icon { background: var(--gold-100); color: var(--brick-600); }
.price-tier:nth-child(2) .price-tier-list svg { color: var(--brick-600); }
.price-tier:nth-child(3) {
  border-top-color: var(--red-500);
  border-color: var(--red-100);
  transform: scale(1.045);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.price-tier:nth-child(3):hover { transform: scale(1.045) translateY(-6px); }
.price-tier:nth-child(3) .price-tier-icon { background: var(--red-100); color: var(--red-600); }
.price-tier:nth-child(3) .price-tier-list svg { color: var(--red-500); }
.price-tier:nth-child(3) .btn-primary { background: var(--red-600); }
.price-tier:nth-child(3) .btn-primary:hover { background: var(--red-500); }
.price-tier:nth-child(4) { border-top-color: var(--brick-600); }
.price-tier:nth-child(4) .price-tier-icon { background: var(--brick-100); color: var(--brick-600); }
.price-tier:nth-child(4) .price-tier-list svg { color: var(--brick-600); }

.price-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.price-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--sand-50);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.price-note-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.price-note-icon svg { width: 19px; height: 19px; }
.price-note:nth-child(2) .price-note-icon { background: var(--gold-100); color: var(--brick-600); }
.price-note p { font-size: 0.92rem; color: var(--ink-700); margin: 0; }
.price-cta { text-align: center; margin-top: 40px; }

/* ---------- Over mij (placeholder) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about-photo-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--blue-500);
  background: var(--blue-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue-600);
  text-align: center;
  padding: 24px;
}
.about-photo-placeholder svg { width: 48px; height: 48px; }
.about-photo-placeholder span { font-weight: 600; font-size: 0.88rem; }
.content-todo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-100);
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.about-copy p.placeholder-text {
  font-style: italic;
  color: var(--ink-500);
  border-left: 3px solid var(--sand-200);
  padding-left: 16px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 6px 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--blue-600); transition: transform 0.2s ease; }
.faq-item[open] .chevron { transform: rotate(180deg); }
.faq-item p { color: var(--ink-700); padding-bottom: 20px; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand-200);
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--sand-50);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--ink-500); margin-top: 14px; }
.form-status { font-size: 0.9rem; font-weight: 600; margin: 12px 0 0; min-height: 1.2em; }
.form-status.is-success { color: var(--blue-700); }
.form-status.is-error { color: var(--red-600); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--blue-800);
  padding: 20px;
  box-shadow: 0 -6px 24px rgba(8,18,38,0.25);
  transform: translateY(120%);
  transition: transform 0.35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  max-width: 70ch;
}
.cookie-banner .btn { flex-shrink: 0; }
@media (max-width: 620px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner .btn { width: 100%; }
}

.contact-info-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--blue-700); font-size: 1.2rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin: 20px 0; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-list svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: var(--blue-600); }
.contact-info-list a { color: var(--blue-700); text-decoration: none; font-weight: 600; }
.contact-info-list a:hover { text-decoration: underline; }
.contact-info-list .info-label { font-size: 0.78rem; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.contact-info-card > p { color: var(--ink-700) !important; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 32ch; margin-top: 14px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--ink-900);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  /* Tijdelijk: zelfde placeholder-foto niet twee keer kort na elkaar tonen op mobiel/tablet */
  #coaching .split-media { display: none; }
  .split-media { min-height: 320px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .callout { grid-template-columns: 1fr; }
  .recipe-card { grid-template-columns: 1fr; }
  .recipe-visual { max-width: 260px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-placeholder { max-width: 320px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-notes { grid-template-columns: 1fr; }
  .price-tier:nth-child(3), .price-tier:nth-child(3):hover { transform: none; margin-top: 14px; }
}
@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .hero { padding: 48px 0 72px; }
  .timeline { grid-template-columns: 1fr; }
  .feature-grid.cols-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .callout, .recipe-card, .contact-form { padding: 28px; }
  .hero-ctas .btn { width: 100%; }
  .price-grid { grid-template-columns: 1fr; }
  .price-tier:nth-child(3), .price-tier:nth-child(3):hover { transform: none; margin-top: 0; }
}

/* ---------- Mobile nav (JS-toggled) ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--blue-700);
  z-index: 60;
  padding: 24px;
  flex-direction: column;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav-close { background: transparent; border: none; color: var(--white); }
.mobile-nav-close svg { width: 28px; height: 28px; }
.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.mobile-nav .btn {
  margin-top: 24px;
  border-bottom: none;
  font-size: 1rem;
}
