:root {
  --ink: #132c28;
  --ink-soft: #35504b;
  --forest: #18483d;
  --forest-2: #0e3931;
  --sage: #cfe0c3;
  --sage-light: #edf4e8;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --terracotta: #cc6448;
  --terracotta-dark: #9d422e;
  --line: rgba(19, 44, 40, 0.14);
  --shadow: 0 24px 70px rgba(17, 47, 41, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
body.grote-tekst { font-size: 19px; }

img { display: block; max-width: 100%; }
picture { display: block; }
a { color: var(--forest); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta-dark); }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid #ffb000;
  outline-offset: 4px;
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tint { background: var(--cream); }
.section-dark { color: #f6f4ed; background: var(--forest-2); }
.section-dark p, .section-dark .eyebrow { color: #d8e7df; }
.section-dark a { color: white; }
.section-dark .card { color: var(--ink); }
.section-dark .card p { color: var(--ink-soft); }
.section-dark .card a { color: var(--forest); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest);
  border-radius: 50% 50% 50% 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-word { font-size: 1.22rem; }
.brand-word span { color: var(--terracotta-dark); }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  padding: 10px 11px;
  color: var(--ink);
  border-radius: 9px;
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--sage-light); }

.text-toggle, .menu-toggle {
  min-width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 800;
}
.text-toggle:hover, .menu-toggle:hover { background: var(--sage-light); }
.menu-toggle { display: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--terracotta); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.55rem); }
h2 { font-size: clamp(2.05rem, 4.3vw, 3.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.12rem; }
p { margin: 0 0 1.15em; }
.lead { max-width: 700px; color: var(--ink-soft); font-size: clamp(1.08rem, 1.7vw, 1.28rem); line-height: 1.65; }
.section-heading { max-width: 800px; margin-bottom: 44px; }
.section-heading p:last-child { margin-bottom: 0; }
.muted { color: var(--ink-soft); }
.small { font-size: .88rem; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  color: white;
  background: var(--forest);
  border: 2px solid var(--forest);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { color: white; background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-2px); }
.button-light { color: var(--ink); background: white; border-color: white; }
.button-light:hover { color: var(--ink); background: var(--sage); border-color: var(--sage); }
.button-ghost { color: var(--forest); background: transparent; }
.button-ghost:hover { color: white; }
.arrow { font-size: 1.2em; line-height: 1; }

.hero { padding: 42px 0 82px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
.hero-copy { padding: 28px 0; }
.hero h1 span { color: var(--terracotta); }
.hero-image-wrap { position: relative; }
.hero-image {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
  border-radius: 160px 24px 24px 24px;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  right: -18px;
  bottom: 30px;
  max-width: 270px;
  padding: 20px;
  background: rgba(255,253,248,.96);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(18,46,40,.18);
}
.hero-note strong { display: block; margin-bottom: 4px; font-family: Georgia, serif; font-size: 1.08rem; }
.hero-note p { margin: 0; color: var(--ink-soft); font-size: .85rem; line-height: 1.5; }

.topic-strip { padding: 24px 0; color: white; background: var(--forest); }
.topic-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.topic-list a { display: flex; align-items: center; gap: 10px; color: white; text-decoration: none; font-weight: 750; }
.topic-list a::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; background: var(--sage); border-radius: 50%; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(17, 47, 41, .06);
}
.card:hover { border-color: rgba(24,72,61,.32); }
.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--forest);
  background: var(--sage-light);
  border-radius: 15px;
}
.card-icon svg { width: 27px; height: 27px; }
.card p { color: var(--ink-soft); }
.card-link { display: inline-flex; gap: 7px; font-weight: 800; text-decoration: none; }
.card-link::after { content: "→"; }
.card-link::before { content: ""; position: absolute; inset: 0; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; }
.split.reverse { grid-template-columns: 1.08fr .92fr; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-copy ul, .article-body ul, .article-body ol { padding-left: 1.25rem; }
.check-list { display: grid; gap: 12px; margin: 25px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
}

.quote-panel {
  padding: 38px;
  color: white;
  background: var(--terracotta-dark);
  border-radius: var(--radius-lg);
}
.quote-panel blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(1.35rem, 2.7vw, 2rem); line-height: 1.32; }
.quote-panel cite { display: block; margin-top: 20px; font-family: Inter, sans-serif; font-size: .84rem; font-style: normal; font-weight: 750; letter-spacing: .04em; }
.quote-panel h2 { font-size: 1.75rem; }
.quote-panel ul { margin: 20px 0 0; padding-left: 1.25rem; }
.quote-panel li + li { margin-top: 8px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { padding: 26px 22px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: var(--radius); counter-increment: step; }
.step::before { content: "0" counter(step); display: block; margin-bottom: 36px; color: var(--terracotta-dark); font-weight: 900; letter-spacing: .08em; }
.step p { margin-bottom: 0; color: var(--ink-soft); font-size: .95rem; }

.article-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 22px; }
.article-card { min-height: 355px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; background: var(--sage-light); border-radius: var(--radius); }
.article-card:first-child { color: white; background: var(--forest); }
.article-card:first-child p, .article-card:first-child .meta { color: #d8e8e0; }
.article-card p { color: var(--ink-soft); }
.article-card a { color: inherit; }
.article-card h2, .article-card h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.article-card h2 a, .article-card h3 a { text-decoration: none; }
.meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 18px; color: var(--ink-soft); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.tag { display: inline-flex; padding: 6px 10px; color: var(--forest); background: white; border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; }

.page-hero { padding: 76px 0 66px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero .lead { margin-bottom: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-bottom: 30px; color: var(--ink-soft); font-size: .83rem; }
.breadcrumbs a { color: inherit; }
.breadcrumbs span::before { content: "/"; margin-right: 10px; }
.page-hero h1 { max-width: 1000px; font-size: clamp(2.7rem, 5vw, 4.35rem); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 70px; }
.article-body { min-width: 0; }
.article-body h2 { margin-top: 1.45em; font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.article-body h3 { margin-top: 1.55em; }
.article-body p, .article-body li { color: #29443f; }
.article-body strong { color: var(--ink); }
.article-body .intro { color: var(--ink); font-size: 1.22rem; line-height: 1.65; }
.article-body figure { margin: 42px 0; }
.article-body figure img { border-radius: var(--radius); }
.article-body figcaption { margin-top: 10px; color: var(--ink-soft); font-size: .82rem; }
.article-body a:not(.button) { font-weight: 700; }
.aside { position: sticky; top: 108px; padding: 24px; background: var(--cream); border-radius: var(--radius); }
.aside h2 { font-family: Inter, sans-serif; font-size: .87rem; letter-spacing: .08em; text-transform: uppercase; }
.aside ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.aside a { font-size: .92rem; font-weight: 700; text-decoration: none; }

.tip { margin: 30px 0; padding: 24px 26px; border-left: 5px solid var(--forest); background: var(--sage-light); border-radius: 0 15px 15px 0; }
.tip strong { display: block; margin-bottom: 5px; }
.tip p:last-child { margin-bottom: 0; }

.comparison { width: 100%; margin: 30px 0; border-collapse: collapse; font-size: .94rem; }
.comparison th, .comparison td { padding: 15px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.comparison th { color: white; background: var(--forest); }
.comparison th:first-child { border-radius: 10px 0 0 0; }
.comparison th:last-child { border-radius: 0 10px 0 0; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 20px 38px 20px 0; cursor: pointer; font-family: Georgia, serif; font-size: 1.22rem; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; margin-right: -30px; color: var(--terracotta); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.contact-list { display: grid; gap: 22px; margin: 34px 0; padding: 0; list-style: none; }
.contact-list strong { display: block; }
.contact-form { padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--paper); border: 1px solid #9bad9f; border-radius: 10px; }
.field input::placeholder, .field textarea::placeholder { color: #586e69; opacity: 1; }
.field textarea { min-height: 160px; resize: vertical; }
.form-note { margin: 16px 0 0; color: var(--ink-soft); font-size: .82rem; }

.cta-band { position: relative; overflow: hidden; padding: 70px 0; color: white; background: var(--forest); }
.cta-band::after { content: ""; position: absolute; width: 380px; height: 380px; right: -120px; top: -220px; border: 70px solid rgba(207,224,195,.13); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 740px; margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); }

.site-footer { color: #d8e4df; background: #0c2923; }
.footer-main { padding: 70px 0 52px; display: grid; grid-template-columns: 1.3fr .7fr .7fr .9fr; gap: 42px; }
.footer-brand { color: white; }
.footer-brand .brand-word span { color: #e9856b; }
.footer-intro { max-width: 340px; margin-top: 18px; color: #afc5bd; font-size: .92rem; }
.site-footer h2 { margin-bottom: 18px; color: white; font-family: Inter, sans-serif; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #d8e4df; font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: white; text-decoration: underline; }
.footer-address { color: #d8e4df; font-size: .9rem; font-style: normal; }
.footer-address a { color: #d8e4df; }
.footer-address a:hover { color: white; }
.footer-bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; color: #9bb5ac; font-size: .8rem; }

@media (max-width: 1020px) {
  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    max-height: calc(100vh - 82px);
    display: none;
    align-items: stretch;
    padding: 18px 20px 28px;
    overflow: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(17,47,41,.14);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 13px 12px; font-size: 1rem; }
  .menu-toggle { display: inline-grid; }
  .header-tools { display: flex; gap: 8px; }
  .hero-grid, .split, .split.reverse { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-image { min-height: 470px; }
  .split-media { max-width: 760px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-card:first-child { grid-column: 1 / -1; }
  .content-grid { grid-template-columns: 1fr; gap: 42px; }
  .aside { position: static; order: -1; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  body.grote-tekst { font-size: 18px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .section-sm { padding: 48px 0; }
  .header-inner { min-height: 72px; }
  .site-nav { inset: 72px 0 auto; max-height: calc(100vh - 72px); }
  .brand-mark { width: 39px; height: 39px; }
  .text-toggle { display: none; }
  .hero { padding-top: 18px; }
  .hero-grid { gap: 28px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .hero-image { min-height: 410px; border-radius: 80px 18px 18px 18px; }
  .hero-note { right: 10px; bottom: 14px; max-width: 240px; padding: 15px; }
  .topic-list { grid-template-columns: 1fr 1fr; }
  .card-grid, .steps, .article-grid, .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .article-card:first-child, .field-full { grid-column: auto; }
  .split { gap: 36px; }
  .split .split-media { order: -1; }
  .split.reverse .split-media { order: 0; }
  .page-hero { padding: 50px 0; }
  .content-grid { gap: 30px; }
  .article-body figure { margin-inline: -14px; }
  .article-body figure img { border-radius: 0; }
  .comparison { display: block; overflow-x: auto; }
  .contact-form { padding: 24px 18px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-main > :first-child { grid-column: 1 / -1; }
  .footer-bottom .container { flex-direction: column; gap: 6px; }
}

@media (max-width: 440px) {
  .brand-word { font-size: 1.08rem; }
  .topic-list, .footer-main { grid-template-columns: 1fr; }
  .footer-main > :first-child { grid-column: auto; }
  .hero-note { position: static; max-width: none; margin: -34px 12px 0; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media print {
  .site-header, .site-footer, .cta-band, .aside, .button-row { display: none !important; }
  body { color: black; background: white; font-size: 12pt; }
  .section, .page-hero { padding: 20px 0; background: white; }
  a { color: black; text-decoration: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
