:root {
  --bg: #f4ede2;
  --bg-warm: #ebe1d0;
  --bg-deep: #2a2419;
  --ink: #1f1a12;
  --ink-soft: #4a3f2e;
  --muted: #7a6b54;
  --accent: #b8451f;
  --accent-deep: #8a3417;
  --moss: #5a6147;
  --line: #c9bca5;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter Tight', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: multiply;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 32px;
  backdrop-filter: blur(8px);
  background: rgba(244, 237, 226, 0.8);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
nav.scrolled { border-bottom-color: var(--line); }
nav .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a.active,
.nav-menu a[aria-current="page"] { color: var(--accent); }
.nav-home {
  display: inline-flex;
  align-items: center;
}
.nav-cta {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.nav-menu a.nav-cta.active,
.nav-menu a.nav-cta[aria-current="page"] { background: var(--accent); color: #fff; border-color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* HERO */
.hero {
  padding: 200px 0 110px;
  position: relative;
}
.hero--home {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
}
.hero-decoration {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent) 0%, transparent 60%);
  opacity: 0.12;
  filter: blur(40px);
  pointer-events: none;
}
.hero-portret {
  position: absolute;
  right: 0;
  bottom: 0;
  height: min(90%, 620px);
  width: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
  animation: fadeUp 0.8s ease 0.1s both;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}
a.eyebrow:hover { color: var(--accent); }
.eyebrow .info-icon {
  margin-left: -4px;
  opacity: 0.65;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
a.eyebrow:hover .info-icon { opacity: 1; }
h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 16ch;
  animation: fadeUp 0.8s ease 0.2s both;
}
h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "SOFT" 100;
}
h1 em.lean-left {
  font-style: normal;
  display: inline-block;
  transform: skewX(10deg);
}
.hero-lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 15px;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--body);
  font-weight: 500;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.link-subtle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.link-subtle:hover { color: var(--accent); border-color: var(--accent); }
.link-subtle .arrow { transition: transform 0.3s ease; }
.link-subtle:hover .arrow { transform: translateX(3px); }

/* SECTION BASE */
section {
  padding: 120px 0;
  position: relative;
}
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 18ch;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 54ch;
}

/* BELOFTE / PROMISE */
.belofte {
  background: var(--bg-warm);
  text-align: center;
  padding: 100px 0;
}
.belofte-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ink);
  position: relative;
}
.belofte-quote::before,
.belofte-quote::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 32px auto;
}

/* UITLEG / EXPLAINER */
.uitleg-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.uitleg-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.uitleg-text p:last-child { margin-bottom: 0; }
.uitleg-text p:first-child::first-letter {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 400;
  float: left;
  line-height: 0.9;
  margin: 4px 12px 0 -4px;
  color: var(--accent);
}

/* USP */
.usps {
  background: var(--bg-deep);
  color: var(--bg);
}
.usps .section-label { color: var(--accent); }
.usps .section-title { color: var(--bg); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.usp-card {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 237, 226, 0.2);
}
.usp-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.usp-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.usp-card h3 em {
  font-style: italic;
  color: var(--accent);
}
.usp-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 237, 226, 0.75);
}

/* CONTRAST */
.contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contrast > div {
  padding: 80px 64px;
  position: relative;
}
.contrast > div:first-child {
  border-right: 1px solid var(--line);
}
.contrast .label {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 24px;
}
.pijn .label { color: var(--ink-soft); }
.plezier .label { color: var(--accent); }
.contrast h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.contrast p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.contrast p + p { margin-top: 16px; }
.contrast strong {
  font-weight: 500;
  color: var(--ink);
}

/* PRINCIPES */
.principes {
  background: var(--bg-warm);
}
.principes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.principes-list {
  list-style: none;
  counter-reset: prinz;
}
.principes-list li {
  counter-increment: prinz;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: baseline;
}
.principes-list li:last-child { border-bottom: none; }
.principes-list li::before {
  content: counter(prinz, decimal-leading-zero);
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--accent);
  font-weight: 400;
}
.principes-list--bullets li::before {
  content: '>';
  font-family: var(--body);
  font-style: normal;
  font-size: 26px;
  line-height: 1;
}
.principes-list li p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}
.principes-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.3;
  color: var(--ink-soft);
  padding-left: 32px;
  border-left: 2px solid var(--accent);
}

/* WERKWIJZE */
.werkwijze-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.stappen {
  list-style: none;
  counter-reset: stap;
}
.stappen li {
  counter-increment: stap;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
}
.stappen li:last-child { border-bottom: none; }
.stappen li::before {
  content: counter(stap, decimal-leading-zero);
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
}
.stappen h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stappen p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* TARIEVEN */
.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.tarief {
  padding: 40px 32px;
  background: var(--bg-warm);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.tarief:hover { transform: translateY(-4px); }
.tarief::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.tarief:hover::after { transform: scaleX(1); }
.tarief h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.tarief .prijs {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}
.tarief .prijs sup {
  font-size: 24px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--muted);
}
.tarief-info {
  margin-top: 64px;
  padding: 32px;
  border: 1px dashed var(--line);
  border-radius: 4px;
}
.tarief-info p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.tarief-info p:last-child { margin-bottom: 0; }
.tarief-asterisk {
  color: var(--accent);
  font-family: var(--display);
  font-weight: 400;
}
.tarief h4 .tarief-asterisk {
  font-size: 0.7em;
  margin-left: 2px;
  vertical-align: super;
  line-height: 1;
}
.tarief .prijs .tarief-asterisk {
  font-size: 22px;
  vertical-align: top;
  margin-left: 2px;
  position: relative;
  top: 8px;
}
.tarief-info .tarief-asterisk {
  font-size: 1em;
  margin-right: 2px;
}

/* LIDMAATSCHAP & KLACHTEN */
.lidmaatschap {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lidmaatschap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
}
.lidmaatschap-grid h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lidmaatschap-grid p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 46ch;
}
.lidmaatschap-grid a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s ease;
}
.lidmaatschap-grid a:hover { opacity: 0.7; }

/* OVER RUBEN */
.over {
  background: var(--bg-deep);
  color: var(--bg);
}
.over .section-label { color: var(--accent); }
.over .section-title { color: var(--bg); }
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.over p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(244, 237, 226, 0.8);
  margin-bottom: 20px;
}
.credentials {
  list-style: none;
  margin-top: 32px;
}
.credentials li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 237, 226, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
}
.credentials .what {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--bg);
}
.credentials .when {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* PERSOONLIJK VERHAAL */
.verhaal {
  max-width: 720px;
  margin: 0 auto;
}
.verhaal > h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 80px 0 28px;
}
.verhaal > h2:first-child { margin-top: 0; }
.verhaal > h2 em { font-style: italic; color: var(--accent); }
.verhaal p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.verhaal p:last-child { margin-bottom: 0; }
.verhaal p.beat {
  font-family: var(--display);
  font-style: italic;
  font-size: 21px;
  color: var(--ink);
  margin: 28px 0;
}
.verhaal blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(21px, 2.6vw, 27px);
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  margin: 40px 0;
}

/* Verhaal-sectie met accent-achtergrond */
.verhaal-accent { background: var(--accent); }
.verhaal-accent .verhaal p { color: rgba(255, 255, 255, 0.85); }
.verhaal-accent .verhaal p.beat,
.verhaal-accent .verhaal > h2 { color: #fff; }
.verhaal-accent .verhaal > h2 em { color: var(--bg-warm); }
.verhaal-accent .verhaal blockquote {
  color: #fff;
  border-left-color: rgba(255, 255, 255, 0.45);
}

/* AFBEELDING-PLACEHOLDERS */
.img-ph {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 30% 25%, rgba(184, 69, 31, 0.07), transparent 55%),
    linear-gradient(135deg, var(--bg-warm), #e4d8c3);
  border: 1px dashed var(--line);
  border-radius: 6px;
}
.img-ph::before {
  content: '';
  width: 40px;
  height: 40px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a6b54' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
  opacity: 0.6;
}
.img-ph::after {
  content: 'Afbeelding volgt';
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.img-ph--portrait { aspect-ratio: 4 / 5; }
.img-ph--tall { aspect-ratio: 3 / 4; }
.img-ph--square { aspect-ratio: 1 / 1; }
.img-ph--wide { aspect-ratio: 16 / 10; }
.img-ph--band { aspect-ratio: 24 / 9; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-list {
  list-style: none;
}
.contact-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list .c-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.contact-list a,
.contact-list address {
  font-family: var(--display);
  font-style: normal;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.contact-list a:hover { color: var(--accent); }

/* ACTIE / CTA */
.actie {
  text-align: center;
  padding: 140px 0;
  position: relative;
  background: #e8cbb9;
}
.actie-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 0 auto 48px;
}
.actie-title em {
  font-style: italic;
  color: var(--accent);
}
.actie-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto 48px;
}

/* FAQ */
.faq { background: var(--bg-warm); }
.faq-list {
  margin-top: 56px;
  max-width: 760px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 48px 28px 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  transition: color 0.2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--accent); }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body);
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-list details p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 0 48px 28px 0;
  max-width: 64ch;
}

/* FOOTER */
footer {
  background: var(--bg-deep);
  color: rgba(244, 237, 226, 0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer address {
  font-style: normal;
  line-height: 1.7;
}
footer .addr-label {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin: 12px 0 2px;
}
footer .addr-label:first-child { margin-top: 0; }
footer h5 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  color: var(--bg);
  margin-bottom: 16px;
  font-style: italic;
}
footer a {
  color: rgba(244, 237, 226, 0.7);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}
footer a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(244, 237, 226, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(244, 237, 226, 0.5);
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  display: inline;
  padding: 0;
}

/* DREMPELVERLAGERS (homepage strip) */
.drempel-strip {
  background: var(--bg-warm);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.drempel-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.drempel-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.drempel-list li::before {
  content: '•';
  color: var(--accent);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
}
.drempel-line {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0;
}

/* PROSE — single-column body text */
.prose { max-width: 64ch; }
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 500; }

/* JURIDISCHE PAGINA'S (privacy, algemene voorwaarden) */
.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal-meta {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 48px 0 16px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal ul,
.legal ol {
  margin: 0 0 16px;
  padding-left: 24px;
  color: var(--ink-soft);
}
.legal ul ul,
.legal ol ul,
.legal ol ol {
  margin: 10px 0 6px;
}
.legal li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal li::marker { color: var(--accent); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s ease;
}
.legal a:hover { opacity: 0.7; }
.legal-contact {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* HERKENNINGSLIJST */
.herkenning-prompt {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
}
.herkenning-list {
  list-style: none;
  margin: 0;
}
.herkenning-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}
.herkenning-list li:last-child { border-bottom: none; }
.herkenning-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 12px;
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
}

/* DE THERAPEUT — homepage mini-intro */
.therapeut-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.therapeut-photo-wrap {
  display: flex;
  justify-content: center;
}
.therapeut-photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 4px;
}
/* Foto onderaan laten aansluiten op de gekleurde CTA-band eronder */
.therapeut-section {
  padding-bottom: 0;
}
.therapeut-section .therapeut-photo-wrap {
  align-self: end;
}
.therapeut-section .therapeut-photo {
  display: block;
  margin-bottom: -1px;
}

/* TASK 3 — Koppen op mobiel: balance + responsive sizing */
h1,
h2,
h3,
.section-title,
.actie-title,
.belofte-quote,
.verhaal > h2,
.faq-list summary {
  text-wrap: balance;
}
.uitleg-text p,
.prose p,
.hero-lead,
.section-intro {
  text-wrap: pretty;
}
/* Maak vaste h3-formaten responsive (voorkomt overflow op smalle schermen) */
.usp-card h3 { font-size: clamp(24px, 3.2vw, 32px); }
.contrast h3 { font-size: clamp(26px, 3.6vw, 40px); }
.stappen h3 { font-size: clamp(20px, 2.2vw, 24px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .uitleg-grid,
  .usp-grid,
  .contrast,
  .principes-grid,
  .werkwijze-grid,
  .tarieven-grid,
  .over-grid,
  .contact-grid,
  .therapeut-grid,
  .footer-grid,
  .lidmaatschap-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contrast > div { padding: 56px 32px; }
  .contrast > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .hero { padding: 150px 0 70px; }
  .hero--home { padding: 120px 0 60px; }
  .hero-decoration { display: none; }
  .hero-portret { height: min(60%, 360px); opacity: 0.7; }
  .hero-bg { object-position: 35% center; }
  .verhaal > h2 { margin-top: 56px; }
}

@media (max-width: 760px) {
  nav { padding: 14px 24px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--bg-warm);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 48px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.12);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 20px; font-family: var(--display); }
  .nav-cta { border: 1px solid var(--ink); padding: 12px 24px; }
}
