:root {
  --orange: #ff7621;
  --brown: #32140c;
  --muted: #6f6661;
  --cream: #fdf9e9;
  --blush: #fbf0ee;
  --white: #fffefd;
  --line: #eadfd7;
  --sans: Figtree, Verdana, sans-serif;
  /* Displayfont: tijdelijk gelijk aan de sans. Zodra het definitieve
     displayfont er is, hoeft alleen deze regel te veranderen. */
  --serif: Figtree, Verdana, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--brown);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1440px, 95%);
  z-index: 20;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 15px 0;
}
.nav.is-scrolled {
  background: rgba(255,254,253,.84);
  border-radius: 999px;
  padding: 10px 18px;
  top: 12px;
  box-shadow: 0 14px 48px rgba(59,31,26,.08);
  backdrop-filter: blur(16px);
}
.logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(21,23,28,.8);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); background: #ef6414; }
.btn.secondary { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn.secondary:hover { background: var(--brown); color: white; }
.menu-toggle { display: none; }

.hero {
  min-height: 920px;
  padding: 90px max(28px, calc((100vw - 1440px) / 2)) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 50px;
}
.hero-shot {
  margin: 0;
  order: 1;
  overflow: hidden;
  border-radius: 40px;
  background: var(--blush);
}
.hero-shot img {
  width: 100%;
  height: 880px;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  order: 2;
  text-align: center;
  padding: 0 50px;
  min-height: 880px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}
h1 { font-size: 64px; }
h2 { font-size: 64px; }
.hero-copy p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}
.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 26px;
  color: #5d514c;
  font-size: 15px;
  font-weight: 500;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.center-section {
  position: relative;
  text-align: center;
  padding: 110px 24px 130px;
  overflow: hidden;
}
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #5d514c;
  font-size: 16px;
  font-weight: 500;
}
.label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.center-section h2 { max-width: 790px; margin: 0 auto 24px; }
.center-section > p {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.panel {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto 130px;
  border-radius: 30px;
  background: var(--cream);
}
.candidate {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 480px) 1fr;
  align-items: center;
  gap: 48px;
  min-height: 690px;
  padding: 58px;
  overflow: hidden;
}
.candidate-copy { position: relative; z-index: 2; }
.candidate-copy h2 {
  font-size: clamp(42px, 4.15vw, 62px);
  margin-bottom: 32px;
}
.condition {
  display: block;
  padding: 22px 24px;
  margin: 14px 0;
  border-radius: 12px;
  background: white;
  color: var(--muted);
  box-shadow: 0 10px 22px rgba(59,31,26,.035);
  transition: transform .25s ease;
}
.condition:hover { transform: translateY(-2px); }
.condition strong { display: block; color: var(--brown); margin-bottom: 6px; }
.candidate-art {
  width: 100%;
  height: 574px;
  object-fit: cover;
  border-radius: 30px;
  align-self: center;
}

.treatments,
.faq,
.trust {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 85px 0;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-heading p {
  color: var(--muted);
  line-height: 1.55;
}
.treatments { padding-top: 0; padding-bottom: 122px; }
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.treatment {
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
  background: white;
  box-shadow: 0 10px 26px rgba(59,31,26,.045);
}
.treatment img { width: 100%; height: 410px; object-fit: cover; }
.treatment h3 {
  margin: 26px 28px 8px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}
.treatment p { margin: 0 28px 22px; color: var(--muted); line-height: 1.55; }
.treatment .btn { margin: 0 28px 30px; }

.reads {
  background: var(--cream);
  padding: 60px max(24px, calc((100vw - 1180px) / 2)) 72px;
}
.reads-head { text-align: center; margin-bottom: 34px; }
.reads-head h2 { font-size: clamp(40px, 3.8vw, 62px); }
.read-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.read-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(59,31,26,.045);
  transition: transform .25s ease;
}
.read-card:hover { transform: translateY(-3px); }
.read-card h3 {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
}
.read-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.read-card .more {
  display: block;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 500;
}

.trust {
  width: min(1180px, calc(100% - 42px));
  margin-top: 40px;
  margin-bottom: 120px;
  padding: 68px 44px;
  border-radius: 30px;
  background: var(--cream);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: white;
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(59,31,26,.045);
}
.step em {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-style: normal;
  color: rgba(255,118,33,.45);
  margin-bottom: 14px;
}
.step strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}
.step span { color: var(--muted); line-height: 1.55; }

.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
}
.faq-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 28px 0;
  color: var(--brown);
  cursor: pointer;
  font-family: inherit;
}
.faq-item span {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
}
.faq-item p {
  display: none;
  color: var(--muted);
  line-height: 1.55;
  max-width: 700px;
  font-size: 16px;
}
.faq-item.is-open p { display: block; }

.consult {
  display: grid;
  grid-template-columns: .75fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 58px;
  margin-bottom: 0;
}
.consult p { color: var(--muted); line-height: 1.6; font-size: 18px; }
.consult h2 { margin-bottom: 20px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.consult img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
}

.footer {
  position: relative;
  overflow: hidden;
  background: #26110d;
  color: white;
  margin-top: 110px;
}
.footer-inner {
  position: relative;
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 90px 0 34px;
}
.footer .footer-logo {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 128px);
  font-weight: 300;
  line-height: 1;
  text-align: center;
  color: #f3e9df;
  margin: 0 0 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.footer h3 { color: #fbd0b4; margin: 0 0 14px; font-size: 16px; }
.footer-grid a, .footer-grid p { display: block; margin: 10px 0; color: #f3e9df; font-size: 15px; line-height: 1.6; }
.footer a:hover { color: #fff; }
.legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 70px;
  color: #d8c8bd;
  font-size: 13px;
}
.legal a { color: #d8c8bd; }

/* Alleen verbergen als JS draait — anders blijft de pagina leesbaar
   wanneer het script of de GSAP-CDN niet laadt. */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 900px) {
  .nav {
    width: 100%;
    left: 0;
    transform: none;
    padding: 14px 22px;
    grid-template-columns: 1fr auto;
    background: rgba(255,254,253,.92);
  }
  .links {
    position: fixed;
    inset: 72px 14px auto;
    justify-self: stretch;
    display: grid;
    justify-items: start;
    gap: 18px;
    padding: 28px;
    border-radius: 22px;
    background: white;
    box-shadow: 0 24px 70px rgba(59,31,26,.12);
    transform: translateY(-130%);
    transition: transform .35s ease;
  }
  .links.is-open { transform: translateY(0); }
  .nav-btn { display: none; }
  .menu-toggle {
    display: grid;
    justify-self: end;
    gap: 6px;
    border: 0;
    background: var(--orange);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    place-content: center;
    cursor: pointer;
  }
  .menu-toggle span { width: 22px; height: 2px; background: white; }
  .hero {
    min-height: auto;
    padding: 140px 5% 70px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-copy {
    order: 1;
    padding: 0;
    min-height: auto;
    display: block;
    text-align: center;
  }
  .hero-shot { order: 2; }
  .hero-copy p { margin: 32px auto 40px; font-size: 22px; line-height: 1.4; }
  .hero-shot img { height: 74vh; min-height: 540px; }
  .center-section { padding-top: 62px; }
  .candidate,
  .consult,
  .faq {
    grid-template-columns: 1fr;
  }
  .candidate,
  .consult {
    padding: 30px;
  }
  .candidate { min-height: auto; }
  .candidate-art {
    width: 100%;
    height: 360px;
    margin-top: 24px;
  }
  .read-grid,
  .treatment-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust { padding: 44px 28px; }
  .treatment img { height: 330px; }
  .reads { padding-inline: 22px; }
  .panel,
  .treatments,
  .trust,
  .faq {
    width: calc(100% - 44px);
  }
  .footer-inner { width: calc(100% - 44px); }
}

@media (max-width: 520px) {
  h1, h2 { max-width: 100%; overflow-wrap: break-word; }
  h1 { font-size: 37px; }
  h2 { font-size: 36px; }
  .hero { width: 100%; padding-left: 16px; padding-right: 16px; overflow: hidden; }
  .hero > *, .candidate > *, .center-section > * { min-width: 0; }
  .hero-copy h1 { max-width: 320px; margin: 0 auto; }
  .hero-copy p { font-size: 19px; max-width: 320px; }
  .hero-cta .btn { width: min(100%, 300px); margin: 0 auto; }
  .hero-shot img { height: 520px; }
  .center-section { padding-left: 18px; padding-right: 18px; }
  .center-section h2 { max-width: 320px; }
  .candidate-copy h2 { font-size: 36px; }
  .candidate { padding: 24px 18px 30px; }
  .condition { padding: 16px; }
  .steps { grid-template-columns: 1fr; }
  .reads-head h2, .section-heading h2, .faq h2 { font-size: 40px; }
  .consult { padding: 28px 20px; }
}

/* ============================================================
   Artikelpagina's — opgebouwd uit dezelfde primitieven als de
   homepage: cream/blush panelen, witte kaarten op radius 10,
   dezelfde schaduw, dezelfde labelstijl.
   ============================================================ */

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--orange);
  z-index: 30;
}

.page-head {
  background: var(--blush);
  padding: 170px max(24px, calc((100vw - 1180px) / 2)) 80px;
}
.page-head-inner { max-width: 860px; }
.breadcrumbs {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a:hover { color: var(--orange); }
.page-head h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  margin-bottom: 26px;
}
.lead {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}
.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}
.byline strong { color: var(--brown); font-weight: 600; }

.article-wrap {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 70px;
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 85px 0 40px;
}
/* Zonder dit duwt een brede tabel de hele kolom op tot zijn min-breedte,
   in plaats van binnen .table-scroll te scrollen. */
.article-wrap > * { min-width: 0; }

.toc { position: sticky; top: 110px; align-self: start; }
.toc h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { counter-increment: toc; border-bottom: 1px solid var(--line); }
.toc a {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  transition: color .2s ease;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.toc a:hover, .toc a.is-current { color: var(--brown); }

article.body { max-width: 760px; }
article.body h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  margin: 64px 0 20px;
  scroll-margin-top: 110px;
}
article.body h2:first-child { margin-top: 0; }
article.body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 40px 0 14px;
}
article.body p,
article.body li { font-size: 17px; line-height: 1.75; color: #4a423e; }
article.body p { margin: 0 0 20px; }
article.body ul, article.body ol { margin: 0 0 24px; padding-left: 22px; }
article.body li { margin-bottom: 10px; }
article.body strong { color: var(--brown); font-weight: 600; }
article.body a {
  color: var(--brown);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
article.body a:hover { color: var(--orange); }
article.body img { border-radius: 30px; margin: 32px 0; }

.callout {
  background: var(--cream);
  border-radius: 30px;
  padding: 30px 34px;
  margin: 32px 0;
}
.callout p:last-child { margin-bottom: 0; }

.product-card {
  background: white;
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: 0 10px 26px rgba(59,31,26,.045);
}
.product-card .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.product-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0;
}
.product-card .price {
  color: var(--orange);
  font-weight: 600;
  font-size: 17px;
  white-space: nowrap;
}
.product-card .meta {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}
.product-card p { font-size: 16px; margin-bottom: 10px; }
.product-card .pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pros-cons h4 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pros-cons ul { margin: 0; padding-left: 18px; }
.pros-cons li { font-size: 15px; line-height: 1.5; margin-bottom: 6px; }

.table-scroll { overflow-x: auto; margin: 28px 0; }
table.comparison {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(59,31,26,.045);
  font-size: 15px;
}
table.comparison th {
  background: var(--brown);
  color: #f3e9df;
  padding: 16px 18px;
  text-align: left;
  font-weight: 500;
}
table.comparison td {
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  color: #4a423e;
}
table.comparison td.label-cell { color: var(--brown); font-weight: 600; }

details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
details summary {
  display: block;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
}
details[open] summary::after { content: "–"; }
details > div { padding: 0 0 24px; }
details > div p { margin: 0; color: var(--muted); }

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--cream);
  border-radius: 30px;
  padding: 32px;
  margin-top: 56px;
}
.author-avatar {
  display: grid;
  place-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 600;
  font-size: 22px;
}
.author-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 4px;
}
.author-card .role { margin: 0 0 12px; color: var(--muted); font-size: 14px; }
.author-card p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted); }

.related { margin-top: 60px; }
.related h2 { font-size: 34px; margin-bottom: 24px; }
.related-grid { display: grid; gap: 14px; }
.related-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 22px rgba(59,31,26,.035);
  transition: transform .25s ease;
}
.related-grid a:hover { transform: translateY(-2px); }
.related-grid strong { font-weight: 500; }
.related-grid span { color: var(--orange); }

@media (max-width: 900px) {
  .page-head { padding-top: 130px; padding-bottom: 56px; }
  .article-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    width: calc(100% - 44px);
    padding-top: 56px;
  }
  .toc {
    position: static;
    background: var(--cream);
    border-radius: 30px;
    padding: 26px 28px;
  }
  article.body { max-width: 100%; }
}

@media (max-width: 520px) {
  .lead { font-size: 18px; }
  .product-card .pros-cons { grid-template-columns: 1fr; gap: 16px; }
  .author-card { flex-direction: column; gap: 16px; padding: 26px; }
  details summary { font-size: 20px; }
}

.cta-box {
  background: var(--brown);
  color: #f3e9df;
  border-radius: 30px;
  padding: 46px;
  margin: 56px 0;
  text-align: center;
}
.cta-box h2 { color: #fffefd; font-size: 38px; margin-bottom: 14px; }
.cta-box p { margin: 0 auto 26px; max-width: 460px; color: rgba(243,233,223,.72); line-height: 1.6; }

.article-wrap.solo { grid-template-columns: 1fr; justify-items: center; }
.article-wrap.solo article.body { width: 100%; }

/* De prozastijlen van article.body (`article.body p` / `article.body a`) zijn
   specifieker dan de losse componentklassen en kleuren die anders mee. Deze
   blok zet ze terug voor alles wat geen lopende tekst is. */
article.body .btn { color: white; text-decoration: none; }
article.body .btn.secondary { color: var(--brown); }
article.body .btn.secondary:hover { color: white; }
article.body .cta-box p { color: rgba(243,233,223,.72); }
article.body .related-grid a { color: var(--brown); text-decoration: none; }
article.body .related-grid a:hover { color: var(--orange); }
article.body .author-card p { color: var(--muted); }
article.body .author-card .role { color: var(--muted); }
