/* ============================================================
   LVM Solutions
   Thema: licht en redactioneel. Hoog-contrast serif voor koppen,
   DM Sans voor lopende tekst, mono voor labels, olijfgroen accent.
   ============================================================ */

:root {
  --paper:     #FFFFFF;
  --paper-2:   #FAFAF8;
  --ink:       #0B0B0B;
  --muted:     #6E6E6E;
  --olive:     #485C11;
  --olive-2:   #5A7318;
  --sage-soft: #DFECC6;
  --sage-tint: #EEF3E2;
  --rule:      #E6E6E6;

  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body:    "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1240px;
  --r:    14px;
  --r-lg: 24px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 40px; }
.narrow { max-width: 760px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--olive); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; border-radius: 4px; }

/* ── Typografie ─────────────────────────────────────────── */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.1rem, 8.4vw, 7rem);
  line-height: .94;
  letter-spacing: -.022em;
  margin: 0 0 46px;
  max-width: 15ch;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.018em;
  margin: 0 0 18px;
  max-width: 20ch;
}

.h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 12px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--olive);
  margin: 0 0 26px;
}
.eyebrow--tight { margin-bottom: 14px; }

.lede { font-size: 1.16rem; line-height: 1.5; margin: 0; max-width: 46ch; }
.muted { color: var(--muted); margin: 0 0 12px; }
.small { font-size: .9rem; }
.mono { font-family: var(--font-mono); font-size: .78rem; color: var(--muted); margin: 0; }

.section__sub { color: var(--muted); font-size: 1.03rem; margin: 0 0 54px; max-width: 58ch; }
.section__sub--flush { margin-bottom: 22px; }
.section--center .section__sub { margin-inline: auto; }

/* ── Knoppen ────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-body); font-weight: 700; font-size: .92rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--block { width: 100%; }
.btn--wide { padding-inline: 64px; }

.btn--olive { background: var(--olive); color: #fff; }
.btn--olive:hover { background: var(--olive-2); }
.btn--sage { background: var(--sage-soft); color: var(--ink); }
.btn--sage:hover { background: #D2E4B0; }

/* ── Navigatie ──────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(12px);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 86px; }

.logo {
  font-family: var(--font-body); font-weight: 700; font-size: 1.16rem;
  letter-spacing: -.02em; text-decoration: none;
}

.nav__links { display: flex; gap: 30px; margin-inline: auto; }
.nav__links a {
  text-decoration: none; font-size: .93rem; font-weight: 500;
  transition: color .18s ease;
}
.nav__links a:hover { color: var(--olive); }

.nav__cta { padding: 12px 22px; }

.burger {
  display: none; position: relative;
  width: 44px; height: 44px; margin-left: auto;
  background: transparent; border: 1px solid var(--rule); border-radius: 999px;
  cursor: pointer; padding: 0;
}
.burger span {
  position: absolute; left: 12px; width: 18px; height: 1.5px;
  background: var(--ink); transition: top .2s ease, transform .2s ease;
}
.burger span:first-child { top: 18px; }
.burger span:last-child  { top: 24px; }
.burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { top: 21px; transform: rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────── */

.hero { padding-top: clamp(40px, 6vw, 72px); }

.hero__row {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px;
  align-items: start;
  padding-bottom: clamp(56px, 7vw, 88px);
}

.hero__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.hero__points li {
  border-top: 1px solid var(--rule);
  padding: 13px 0 13px 22px;
  position: relative;
  color: var(--muted); font-size: .96rem;
}
.hero__points li:last-child { border-bottom: 1px solid var(--rule); }
.hero__points li::before {
  content: ""; position: absolute; left: 0; top: 1.42em;
  width: 10px; height: 1.5px; background: var(--olive);
}

/* CTA op saliegroen blok */
.stage { position: relative; padding-bottom: clamp(56px, 7vw, 96px); }
.stage__block {
  position: absolute; left: 0; right: 0; top: 56px; bottom: 56px;
  background: var(--sage-soft);
  border-radius: var(--r-lg);
  max-width: calc(var(--wrap) - 80px);
  margin-inline: auto;
}
.stage__inner { position: relative; }

.cta {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 52px);
  margin-inline: 76px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  box-shadow: 0 24px 60px rgba(11,11,11,.14);
}
.cta .h3 { margin-bottom: 8px; }
.cta .muted { margin: 0; }

.cta__mail {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -.015em; color: var(--olive);
  word-break: break-word;
}

/* ── Secties ────────────────────────────────────────────── */

.section { padding: clamp(72px, 9vw, 130px) 0; }
.section--rule { border-top: 1px solid var(--rule); }
.section--center { text-align: center; }
.section--center .h2 { max-width: none; }

.section__head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: clamp(44px, 5vw, 70px);
}
.section__head-row .h2 { margin-bottom: 0; }

/* kolommen met haarlijn erboven, zoals in het thema */
.cols { display: grid; gap: 34px; }
.cols--3 { grid-template-columns: repeat(3, 1fr); }

.col { border-top: 1px solid var(--rule); padding-top: 22px; }
.col__num {
  display: block; font-family: var(--font-mono); font-size: .75rem;
  color: var(--olive); margin-bottom: 18px;
}
.col__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.62rem; line-height: 1.1; letter-spacing: -.015em;
  margin: 0 0 12px;
}
.col p { margin: 0 0 22px; color: var(--muted); font-size: .96rem; }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ticks li { position: relative; padding-left: 22px; font-size: .93rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 9px; height: 1.5px; background: var(--olive);
}

/* stappen met grote serif-nummers */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.step { border-top: 1px solid var(--rule); padding-top: 22px; }
.step__num {
  display: block;
  font-family: var(--font-display); font-weight: 400;
  font-size: 3.4rem; line-height: 1; letter-spacing: -.02em;
  color: #CFCFCF; margin-bottom: 22px;
}
.step h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.42rem; line-height: 1.12; letter-spacing: -.015em;
  margin: 0 0 10px;
}
.step p { margin: 0; font-size: .94rem; color: var(--muted); }

/* twee kolommen */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.listpanel {
  list-style: none; margin: 0; padding: 34px 36px;
  background: var(--sage-tint); border-radius: var(--r-lg);
  display: grid; gap: 0;
}
.listpanel li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 17px 0; font-size: 1rem;
  border-bottom: 1px solid rgba(11,11,11,.09);
}
.listpanel li:last-child { border-bottom: 0; padding-bottom: 0; }
.listpanel li:first-child { padding-top: 0; }
.listpanel span { font-family: var(--font-mono); font-size: .74rem; color: var(--olive); }

.meta { display: flex; gap: 44px; margin: 34px 0 0; }
.meta dt { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); margin-bottom: 5px; }
.meta dd { margin: 0; font-size: 1rem; font-weight: 500; }

/* contact */
.contact__mail {
  margin: 34px 0 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.1; letter-spacing: -.018em;
  color: var(--olive);
  word-break: break-word;
}

/* ── Voettekst ──────────────────────────────────────────── */

.footer { border-top: 1px solid var(--rule); padding: 44px 0 40px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 64px; }
.footer__links a { text-decoration: none; font-size: .93rem; font-weight: 500; }
.footer__links a:hover { color: var(--olive); }

.footer__bottom {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer__mark {
  margin: 0; font-family: var(--font-display); font-size: 1.5rem;
  letter-spacing: -.015em;
}

/* ── Reveal bij scrollen ────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── Responsief ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .wrap { padding-inline: 28px; }
  .hero__row { grid-template-columns: 1fr; gap: 36px; }
  .cols--3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stage__block { max-width: calc(100% - 56px); top: 44px; bottom: 44px; }
  .cta { margin-inline: 36px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .nav__links { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }

  .nav__inner { height: 72px; gap: 12px; }
  .nav__cta { display: none; }
  .burger { display: block; }
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0;
    background: var(--paper); border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 6px 20px 18px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 15px 0; border-bottom: 1px solid var(--rule); font-size: 1.02rem; }
  .nav__links a:last-child { border-bottom: 0; }

  .display { max-width: none; margin-bottom: 32px; }
  .cols--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .section__head-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stage__block { max-width: calc(100% - 24px); top: 26px; bottom: 26px; }
  .cta { margin-inline: 14px; gap: 24px; }
  .meta { gap: 30px; }
  .btn--wide { padding-inline: 34px; width: 100%; }
  .footer__links { gap: 18px 22px; margin-bottom: 44px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
