:root {
  --ink: #17201D;
  --ink-soft: #4C5852;
  --paper: #FFFFFF;
  --mist: #EDEFEC;
  --accent: #8E2F24;
  --accent-hover: #6F241B;
  --line: #D6DBD6;

  --display: "Instrument Sans", system-ui, sans-serif;
  --body: "Newsreader", Georgia, serif;

  --wrap: 74rem;
  --gap: clamp(3.5rem, 9vw, 8rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display, .btn, nav, label, button, .rol, .kaart__actie {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 1.5rem;
  max-width: 20ch;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 0.6rem;
}

p { margin: 0 0 1.2rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--accent-hover); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

img { max-width: 100%; height: auto; display: block; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.smal { max-width: 62ch; }

.skip { position: absolute; left: -9999px; background: var(--ink); color: #fff; padding: 0.7rem 1rem; z-index: 20; }
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- kop ---------- */

.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar__in {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.merk {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.merk span { color: var(--accent); }

.topbar nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  align-items: center;
}

.topbar nav a {
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.topbar nav a:hover { border-bottom-color: var(--accent); color: var(--ink); }
.topbar nav a[aria-current="page"] { border-bottom-color: var(--accent); }

.topbar .nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 0.45rem 0.95rem;
  border-bottom: none;
}
.topbar .nav-cta:hover { background: var(--accent); border-bottom-color: transparent; }

/* ---------- knoppen ---------- */

.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.btn--lijn { background: transparent; color: var(--ink); }
.btn--lijn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.acties { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- secties ---------- */

.sectie { padding: var(--gap) 0; }
.sectie--mist { background: var(--mist); }
.sectie--ink { background: var(--ink); color: #E3E7E3; }
.sectie--ink h2, .sectie--ink h3 { color: #fff; }
.sectie--ink a { color: #fff; }

.sectie + .sectie:not(.sectie--mist):not(.sectie--ink) { border-top: 1px solid var(--line); }

.lood {
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  line-height: 1.45;
  max-width: 40ch;
}

/* ---------- hero ---------- */

.hero { padding: clamp(3rem, 7vw, 6rem) 0 0; }

.hero__in {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
@media (min-width: 62rem) {
  .hero__in { grid-template-columns: 1.1fr 0.9fr; }
}

.hero__merk {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 0.6rem;
}

.payoff {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.15;
  margin: 0 0 1.8rem;
}

.hero__lead { font-size: clamp(1.15rem, 2vw, 1.4rem); max-width: 34ch; }

.rollen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.7rem;
  list-style: none;
  margin: 1.6rem 0 2rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.rollen li + li::before { content: "|"; color: var(--line); margin-right: 0.7rem; }

.hero__beeld { margin: 0; }
.hero__beeld img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }

.hero__text > * { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
.hero__text > *:nth-child(1) { animation-delay: 0.05s; }
.hero__text > *:nth-child(2) { animation-delay: 0.14s; }
.hero__text > *:nth-child(3) { animation-delay: 0.23s; }
.hero__text > *:nth-child(4) { animation-delay: 0.32s; }
.hero__text > *:nth-child(5) { animation-delay: 0.41s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero__text > * { animation: none; } }

/* ---------- snijvlak ---------- */

.paren {
  display: grid;
  gap: 0;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}
@media (min-width: 48rem) {
  .paren { grid-template-columns: repeat(3, 1fr); }
}

.paar {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  padding: 1rem 1.6rem 1rem 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 48rem) {
  .paar + .paar { border-left: 1px solid var(--line); padding-left: 1.6rem; }
}
.paar em { font-style: normal; color: var(--accent); }

/* ---------- inschakelen ---------- */

.pijlers {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 54rem) {
  .pijlers { grid-template-columns: 1fr 1fr; }
}

.pijler {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}
@media (min-width: 54rem) {
  .pijler:nth-child(odd) { padding-right: 3rem; }
  .pijler:nth-child(even) { padding-left: 3rem; border-left: 1px solid var(--line); }
}

.pijler__tag {
  font-family: var(--display);
  color: var(--accent);
  font-size: 1rem;
  margin: 0 0 0.9rem;
}

.pijler p { color: var(--ink-soft); max-width: 46ch; }

.kaart__actie {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.kaart__actie:hover { border-bottom-color: var(--ink); color: var(--ink); }

/* ---------- twee kolommen met beeld ---------- */

.duo {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 58rem) {
  .duo { grid-template-columns: 1fr 1fr; }
  .duo--omgekeerd .duo__beeld { order: -1; }
}
.duo__beeld { margin: 0; }
.duo__beeld img { width: 100%; object-fit: cover; }
.duo__beeld--staand img { aspect-ratio: 3 / 4; }
.duo__beeld--liggend img { aspect-ratio: 3 / 2; }

/* ---------- beeldband ---------- */

.beeldband { margin: 0; background: var(--ink); }
.beeldband img { width: 100%; aspect-ratio: 45 / 19; object-fit: cover; }
@media (max-width: 40rem) { .beeldband img { aspect-ratio: 16 / 11; } }

/* ---------- thema's ---------- */

.themas { columns: 2; column-gap: 3rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 58rem) { .themas { columns: 3; } }

.themas li {
  break-inside: avoid;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

/* ---------- impact ---------- */

.kolommen {
  display: grid;
  gap: 2.5rem 3rem;
}
@media (min-width: 48rem) { .kolommen { grid-template-columns: 1fr 1fr; } }

.lijst { list-style: none; margin: 0.6rem 0 0; padding: 0; }
.lijst li { padding: 0.5rem 0; border-top: 1px solid var(--line); }
.sectie--ink .lijst li { border-top-color: #3A453F; }

/* ---------- media ---------- */

.media { list-style: none; margin: 0; padding: 0; }
.media li { border-top: 1px solid var(--line); }
.media li:last-child { border-bottom: 1px solid var(--line); }
.media a {
  display: grid;
  gap: 0.15rem 2rem;
  padding: 1.15rem 0;
  text-decoration: none;
  color: var(--ink);
}
@media (min-width: 48rem) { .media a { grid-template-columns: 19rem 1fr; align-items: baseline; } }
.media a:hover .media__titel { color: var(--accent); text-decoration: underline; }
.media__bron { font-family: var(--display); font-size: 0.88rem; color: var(--ink-soft); }
.media__titel { font-family: var(--display); font-size: 1.08rem; font-weight: 500; }

/* ---------- galerij ---------- */

.galerij {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 52rem) { .galerij { grid-template-columns: repeat(4, 1fr); } }
.galerij img { aspect-ratio: 1; object-fit: cover; width: 100%; }

/* ---------- slot ---------- */

.slot h2 { max-width: 24ch; }
.slot p { max-width: 48ch; }

/* ---------- formulier ---------- */

.formulier { display: grid; gap: 1.1rem 1.5rem; max-width: 44rem; }
@media (min-width: 40rem) {
  .formulier { grid-template-columns: 1fr 1fr; }
  .veld--breed, .formulier button { grid-column: 1 / -1; }
}
.veld { display: flex; flex-direction: column; gap: 0.35rem; }
.veld label { font-size: 0.92rem; font-weight: 500; }
.optioneel { color: var(--ink-soft); font-weight: 400; }
.veld input, .veld select, .veld textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
}
.veld textarea { resize: vertical; }
.formulier button { justify-self: start; }
.hide { position: absolute; left: -9999px; }

/* ---------- hulp ---------- */

.hulplijnen { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.hulplijnen li { padding: 0.6rem 0; border-top: 1px solid var(--line); }
.hulplijnen strong { font-family: var(--display); font-weight: 600; }

blockquote { margin: 2.5rem 0 0; padding-left: 1.5rem; border-left: 3px solid var(--accent); }
blockquote p { font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.3; font-family: var(--display); font-weight: 500; margin-bottom: 0.6rem; }
blockquote cite { font-family: var(--display); font-style: normal; font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- voet ---------- */

.footer { background: var(--ink); color: #B9C2BC; padding: 3.5rem 0 2.5rem; font-size: 0.98rem; }
.footer a { color: #fff; }
.footer a:hover { color: var(--accent); }
.footer__in { display: grid; gap: 2rem; }
@media (min-width: 48rem) { .footer__in { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer h2 { font-size: 1.5rem; color: #fff; margin-bottom: 0.4rem; }
.footer__payoff { color: var(--accent); font-family: var(--display); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 0.25rem 0; }
.footer__klein { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #313B36; font-size: 0.88rem; color: #8D9791; }
