/* =======================================================
   NOVARU — css/style.css
   Design tokens exact identiek aan intakeformulier.html
   ======================================================= */

:root {
  --bg:            #f2ebdd;
  --bg-2:          #ece2d0;
  --panel:         #fbf6ec;
  --panel-strong:  #f4ecdd;
  --line:          rgba(90,70,55,.2);
  --line-bright:   rgba(168,72,42,.55);
  --ink:           #2a211c;
  --muted:         #6b5d50;
  --muted-2:       #594d42;
  --accent:        #a8482a;
  --accent-dim:    rgba(168,72,42,.14);
  --accent-2:      #185f58;
  --danger:        #a3231b;

  --radius: 14px;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;
  --display: 'Chakra Petch', sans-serif;
  --body:    'Sora', sans-serif;

  --nav-h:   68px;
  --max-w:   1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }

/* ---------- Achtergrond-sfeer ---------- */
.bg-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 620px at 88% -12%, rgba(168,72,42,.10), transparent 60%),
    radial-gradient(780px 560px at -5% 110%, rgba(24,95,88,.07), transparent 60%);
}
/* Papierkorrel */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .28; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
}

/* ---------- Container ---------- */
.container {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow { max-width: 700px; }

/* =======================================================
   NAVIGATIE
   ======================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(242,235,221,.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 28px; height: 100%;
  display: flex; align-items: center; gap: 28px;
}
.nav-brand {
  display: flex; align-items: center; gap: 9px; flex: none;
  font-family: var(--display); font-weight: 700;
  font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
}
.brand-dot {
  width: 10px; height: 10px; border-radius: 2px;
  background: var(--accent); transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(168,72,42,.38);
  display: inline-block; flex: none;
}
.nav-links {
  display: flex; gap: 2px; margin-left: auto;
}
.nav-link {
  font-size: .84rem; color: var(--muted);
  padding: 8px 13px; border-radius: 8px;
  transition: color .15s, background .15s;
  position: relative;
}
.nav-link:hover     { color: var(--ink); background: var(--accent-dim); }
.nav-link.active    { color: var(--ink); background: var(--accent-dim); }
.nav-link.active::after {
  content: "";
  position: absolute; bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent-2);
}
.nav-link:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 2px; border-radius: 8px; }

.btn-nav {
  font-family: var(--display); font-weight: 600;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 9px;
  background: var(--accent); color: #fbf6ec;
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap; flex: none;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 22px -8px var(--accent); }
.btn-nav:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 3px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 3px; }

.nav-mobile {
  display: none;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: rgba(242,235,221,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 16px 28px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile .nav-link { display: block; padding: 12px 16px; font-size: .96rem; }
.nav-mobile .btn-primary { margin-top: 12px; display: block; text-align: center; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600;
  font-size: .86rem; letter-spacing: .04em;
  border-radius: 11px; padding: 13px 24px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none; border: none; cursor: pointer;
}
.btn:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 3px; }

.btn-primary {
  background: var(--accent); color: #fbf6ec;
  box-shadow: 0 12px 30px -12px rgba(168,72,42,.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(168,72,42,.44); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent; color: var(--muted-2);
  border: 1px solid var(--line);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--line-bright); background: var(--accent-dim); }

.btn-lg { padding: 16px 32px; font-size: .94rem; }

/* =======================================================
   SECTIE BASISSTIJLEN
   ======================================================= */
.section {
  position: relative; z-index: 2;
  padding: 100px 0;
}
.sec-alt { background: rgba(42,33,28,.026); }

.section-head { margin-bottom: 60px; }
.sec-code {
  display: block;
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 14px;
}
.sec-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04; letter-spacing: -.01em;
}
.sec-sub {
  color: var(--muted-2); margin-top: 14px;
  max-width: 52ch; font-weight: 300; font-size: 1.05rem;
}
.accent { color: var(--accent); }
.section-cta { margin-top: 44px; }

/* =======================================================
   HERO — Editoriaal, bodem-links
   ======================================================= */
.hero {
  position: relative;
  min-height: 66svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
  padding-top: 32px;
}

/* Verticale metadata-strip — rechterrand, writing-mode voor toegankelijkheid */
.hero-meta {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 44px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 22px;
  writing-mode: vertical-rl;
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); opacity: .55;
  pointer-events: none; user-select: none;
}
.hero-meta span::after {
  content: " /";
  margin-left: 4px; opacity: .35;
}
.hero-meta span:last-child::after { content: ""; }

/* Accentlijn links */
.hero-line {
  position: absolute;
  left: max(36px, calc((100vw - var(--max-w)) / 2 + 36px));
  top: 8%; bottom: 20%;
  width: 1.5px; background: var(--line-bright); opacity: .5;
}
.hero-line::before {
  content: "";
  position: absolute; top: -1px; left: -3px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 14px var(--accent);
}
.hero-line::after {
  content: "";
  position: absolute; bottom: -1px; left: -3.5px;
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid var(--accent-2); background: transparent;
}

/* Hero tekst — bodem-links */
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  width: 100%;
  padding-left: 64px; /* ruimte voor de accentlijn */
}

.hero-label {
  display: block;
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 26px;
}

.hero-heading {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.4rem, 9vw, 8.4rem);
  line-height: .97; letter-spacing: -.025em;
  display: flex; flex-direction: column;
}
/* Masker voor slide-up animatie per regel */
.h-mask {
  overflow: hidden; display: block;
  line-height: 1.05;
}
.h-line { display: block; }
.h-accent { color: var(--accent); }

/* Roterend woord in ondertitel */
.hero-sub {
  margin-top: 28px;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  color: var(--muted-2); font-weight: 300;
  max-width: 46ch;
}
.rotating-wrap {
  display: inline-block; position: relative;
  min-width: 130px;
}
.rw {
  display: inline-block; color: var(--ink); font-weight: 500;
  position: absolute; left: 0;
  opacity: 0; transform: translateY(5px);
  transition: opacity .4s, transform .4s;
  pointer-events: none; white-space: nowrap;
}
.rw-active {
  opacity: 1; transform: none;
  position: relative;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px;
}

/* Scroll-indicator */
.scroll-ind {
  position: absolute; bottom: 28px; right: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); opacity: .55;
  animation: scrollPulse 2.6s ease-in-out infinite;
}
.scroll-lbl { writing-mode: vertical-rl; }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
}
.scroll-line::after {
  content: "";
  position: absolute; bottom: 0; left: -3px;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: translateY(0); }
  50%       { opacity: .7; transform: translateY(7px); }
}

/* Hero atmosferische foto — rechts, wegvervagend */
.hero-photo {
  position: absolute; top: 0; right: 44px; /* 44px = hero-meta breedte */
  width: 42%; height: 100%;
  z-index: 0; pointer-events: none;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  opacity: .13;
  filter: grayscale(20%) sepia(25%);
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 38%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 28%, transparent 62%, var(--bg) 100%);
}
.hero-line,
.hero-meta { z-index: 1; }

/* =======================================================
   SCROLL-REVEAL ANIMATIES
   ======================================================= */
/* Hero koptekstregel — slide-up vanuit masker */
.reveal-line {
  transform: translateY(108%);
  transition: transform .88s cubic-bezier(.16,1,.3,1);
}
.reveal-line.in { transform: none; }

/* Secties / blokken fade-in */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .72s, transform .72s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }

/* Gestaffelde kinderen */
.reveal-stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s, transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal-stagger.in > *:nth-child(1) { opacity:1; transform:none; transition-delay:.00s; }
.reveal-stagger.in > *:nth-child(2) { opacity:1; transform:none; transition-delay:.09s; }
.reveal-stagger.in > *:nth-child(3) { opacity:1; transform:none; transition-delay:.18s; }
.reveal-stagger.in > *:nth-child(4) { opacity:1; transform:none; transition-delay:.27s; }
.reveal-stagger.in > *:nth-child(5) { opacity:1; transform:none; transition-delay:.36s; }
.reveal-stagger.in > *:nth-child(6) { opacity:1; transform:none; transition-delay:.45s; }

/* =======================================================
   SECTIE 1 — Waarom AI (split-layout)
   ======================================================= */

/* Split-afbeelding — vult de volledige kolomhoogte */
.split-visual {
  display: flex;
}
.split-img {
  width: 100%; display: block;
  height: 100%; min-height: 400px;
  object-fit: cover; object-position: center 30%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* Section-head ín de split-tekst: kleinere ondermarge */
.split-text .section-head { margin-bottom: 40px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: stretch;
}
.statement {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.2; margin-bottom: 20px;
}
.body-text {
  color: var(--muted-2); font-weight: 300;
  line-height: 1.75; font-size: 1rem;
  margin-bottom: 38px;
}
.stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat  { display: flex; flex-direction: column; gap: 5px; }
.stat-val {
  font-family: var(--display); font-weight: 700;
  font-size: 2.2rem; color: var(--accent-2); line-height: 1;
}
.stat-lbl {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); line-height: 1.4;
}

/* =======================================================
   PLACEHOLDERS
   ======================================================= */
.placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px;
  background: var(--panel-strong);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  text-align: center; padding: 28px;
  position: relative; min-height: 200px;
}
/* Hoek-tick details (zelfde als intakeformulier .panel) */
.placeholder::before {
  content: ""; position: absolute; top: 9px; left: 9px;
  width: 13px; height: 13px;
  border-top: 1px solid var(--line-bright);
  border-left: 1px solid var(--line-bright);
}
.placeholder::after {
  content: ""; position: absolute; bottom: 9px; right: 9px;
  width: 13px; height: 13px;
  border-bottom: 1px solid var(--line-bright);
  border-right: 1px solid var(--line-bright);
}
.ph-tag {
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); opacity: .75; display: block;
}
.ph-dim  { font-family: var(--mono); font-size: .72rem; color: var(--muted); display: block; }
.ph-desc { font-size: .78rem; color: var(--muted-2); font-weight: 300; display: block; }

/* =======================================================
   SECTIE 2 — Wat je krijgt (typografische lijst)
   ======================================================= */
.offer-list {
  border-top: 1px solid var(--line);
  overflow: hidden; /* verhindert horizontale scroll door hover-effect */
}
.offer-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left .2s, background .2s;
  cursor: default;
}
.offer-item:hover {
  padding-left: 18px;
  background: rgba(168,72,42,.04);
  margin: 0 -18px;
  padding-right: 18px;
}
.offer-n {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-2); padding-top: 5px;
  white-space: nowrap;
}
.offer-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 8px;
}
.offer-text { color: var(--muted-2); font-size: .94rem; font-weight: 300; line-height: 1.7; }

/* =======================================================
   SECTIE 3 — Hoe het werkt (tijdlijn-stepper)
   ======================================================= */
.stepper {
  display: flex; flex-direction: column;
  position: relative; padding-left: 36px;
}
/* Verticale tijdlijnlijn */
.stepper::before {
  content: ""; position: absolute;
  left: 9px; top: 22px; bottom: 22px;
  width: 1px; background: var(--line);
}

.step { position: relative; }

/* Tijdlijndot */
.step::before {
  content: ""; position: absolute;
  left: -32px; top: 23px;
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid var(--muted); background: var(--bg);
  transition: border-color .2s, background .2s, box-shadow .2s;
  z-index: 1;
}
.step:has(.step-btn[aria-expanded="true"])::before {
  border-color: var(--accent-2); background: var(--accent-2);
  box-shadow: 0 0 10px rgba(24,95,88,.35);
}

.step-btn {
  width: 100%; padding: 18px 0;
  display: flex; align-items: center; gap: 20px;
  cursor: pointer; text-align: left;
  border-bottom: 1px solid var(--line);
  transition: border-color .2s;
}
.step-btn:hover .step-name { color: var(--accent); }
.step-btn:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 3px; }
.step:has(.step-btn[aria-expanded="true"]) .step-btn { border-color: transparent; }

.step-num  {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .18em; color: var(--accent-2); min-width: 28px;
  text-transform: uppercase;
}
.step-name {
  font-family: var(--display); font-weight: 600;
  font-size: 1.1rem; flex: 1;
  transition: color .15s;
}
.step-chev {
  width: 15px; height: 15px; flex: none;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .2s;
}
.step-btn[aria-expanded="true"] .step-chev {
  transform: rotate(-135deg); border-color: var(--accent-2);
}

/* Smooth accordion via CSS grid-trick */
.step-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
.step-body > p {
  overflow: hidden; min-height: 0;
  color: var(--muted-2); font-size: .94rem; font-weight: 300; line-height: 1.75;
  padding-bottom: 0;
  transition: padding-bottom .4s cubic-bezier(.16,1,.3,1);
}
.step-btn[aria-expanded="true"] + .step-body  {
  grid-template-rows: 1fr;
}
.step-btn[aria-expanded="true"] + .step-body > p { padding-bottom: 22px; }

/* =======================================================
   SECTIE 4 — Pijlers (Waarom Novaru) — geen boxen
   ======================================================= */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding-right: 44px;
  border-right: 1px solid var(--line);
}
.pillar:not(:first-child) { padding-left: 44px; }
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar-num {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: 4rem; line-height: 1; margin-bottom: 16px;
  color: rgba(168,72,42,.10); letter-spacing: -.02em;
}
.pillar-title {
  font-family: var(--display); font-weight: 600;
  font-size: 1.2rem; margin-bottom: 14px;
}
.pillar-body {
  color: var(--muted-2); font-size: .92rem; font-weight: 300; line-height: 1.72;
}

/* =======================================================
   SECTIE 5 — FAQ (krantenstijl accordeon)
   ======================================================= */
.faq { display: flex; flex-direction: column; }

.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-btn {
  width: 100%; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--body); font-size: 1rem; font-weight: 500;
  color: var(--ink); text-align: left; cursor: pointer;
  background: none; border: none;
  transition: color .15s;
}
.faq-btn:hover { color: var(--accent); }
.faq-btn:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 3px; }

.faq-chev {
  width: 16px; height: 16px; flex: none;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .2s;
}
.faq-btn[aria-expanded="true"] .faq-chev {
  transform: rotate(-135deg); border-color: var(--accent-2);
}

/* Smooth accordion via CSS grid-trick */
.faq-ans {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
.faq-ans > p {
  overflow: hidden; min-height: 0;
  color: var(--muted-2); font-size: .94rem; font-weight: 300; line-height: 1.75;
  padding-bottom: 0;
  transition: padding-bottom .38s cubic-bezier(.16,1,.3,1);
}
.faq-btn[aria-expanded="true"] + .faq-ans { grid-template-rows: 1fr; }
.faq-btn[aria-expanded="true"] + .faq-ans > p { padding-bottom: 24px; }

/* =======================================================
   SECTIE 8 — Contact
   ======================================================= */
.sec-contact { background: var(--panel-strong); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.contact-sub {
  color: var(--muted-2); font-weight: 300; font-size: 1rem;
  max-width: 38ch; margin: 16px 0 32px; line-height: 1.68;
}
.contact-mail-wrap {
  margin-top: 20px;
  font-size: .88rem; color: var(--muted-2);
}
.contact-mail {
  color: var(--accent-2);
  border-bottom: 1px solid rgba(24,95,88,.3);
  transition: border-color .15s;
  margin-left: 6px;
}
.contact-mail:hover { border-color: var(--accent-2); }
.contact-mail:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 2px; }

/* Klantfoto in contact-linkerkolom */
.contact-photo {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact-photo img {
  width: 100%; display: block;
  height: 220px;
  object-fit: cover; object-position: center 20%;
}

/* Formulierkaart */
.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 16px 48px -24px rgba(70,45,25,.12);
  position: relative;
}
.form-card::before {
  content: ""; position: absolute; top: 10px; left: 10px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--line-bright);
  border-left: 1px solid var(--line-bright); opacity: .7;
}
.form-card::after {
  content: ""; position: absolute; bottom: 10px; right: 10px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--line-bright);
  border-right: 1px solid var(--line-bright); opacity: .7;
}
.form-title {
  font-family: var(--display); font-weight: 600;
  font-size: 1.08rem; margin-bottom: 22px;
}
.cform { display: flex; flex-direction: column; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-lbl {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-2);
}
.cform input,
.cform textarea {
  font-family: var(--body); font-size: .94rem; color: var(--ink);
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 14px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.cform textarea { resize: vertical; min-height: 100px; }
.cform input::placeholder,
.cform textarea::placeholder { color: #8d8071; }
.cform input:focus,
.cform textarea:focus {
  outline: none; border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(24,95,88,.22);
}
.cf-field.invalid input,
.cf-field.invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(163,35,27,.14);
}
.cf-err {
  font-family: var(--mono); font-size: .7rem; color: var(--danger);
  display: flex; align-items: center; gap: 5px;
}
.cf-err::before { content: "⚠ "; }
.cf-notice {
  font-size: .88rem; color: var(--accent-2);
  font-weight: 500; margin-top: 4px;
}

/* =======================================================
   FOOTER
   ======================================================= */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 52px 0 34px;
  position: relative; z-index: 2;
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  gap: 36px; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 42px;
}
.footer-brand { display: flex; flex-direction: column; gap: 9px; }
.footer-tag {
  font-family: var(--mono); font-size: .64rem;
  letter-spacing: .06em; color: var(--muted); text-transform: uppercase;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 3px; }
.footer-nav a {
  font-size: .86rem; color: var(--muted);
  padding: 4px 0; display: block;
  transition: color .15s;
}
.footer-nav a:hover { color: var(--ink); }
.footer-nav a:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 2px; }
.footer-contact a {
  font-family: var(--mono); font-size: .78rem;
  letter-spacing: .04em; color: var(--muted);
  transition: color .15s;
}
.footer-contact a:hover { color: var(--ink); }
.footer-contact a:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 2px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom span {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); opacity: .65;
}

/* =======================================================
   FOOTER — juridische balk
   ======================================================= */
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  padding: 14px 0 18px;
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
}
.footer-legal a,
.footer-legal span {
  font-family: var(--mono); font-size: .60rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); opacity: .65;
}
.footer-legal a { border-bottom: 1px solid transparent; transition: opacity .15s, border-color .15s; }
.footer-legal a:hover { opacity: 1; border-color: var(--muted); }

/* =======================================================
   OVER ONS — pagina-specifieke stijlen
   ======================================================= */
.about-hero {
  padding-top: 72px; padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}
.about-headline {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 1.0; letter-spacing: -.025em;
  margin: 16px 0 32px; max-width: 20ch;
}
.about-intro {
  max-width: 52ch;
  font-size: 1.05rem; font-weight: 300; color: var(--muted-2); line-height: 1.78;
}

/* Story split */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-text-block .sec-code { margin-bottom: 14px; }
.about-text-block h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.08; margin-bottom: 28px;
}
.about-body {
  color: var(--muted-2); font-weight: 300;
  line-height: 1.82; font-size: .98rem;
}
.about-body p + p { margin-top: 18px; }

/* Atmosferische foto op about-pagina */
.about-img {
  width: 100%; display: block;
  height: 520px;
  object-fit: cover; object-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* Aanpaklijst — gelijkaardig aan offer-list maar smaller */
.about-steps {
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.about-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.about-step-n {
  font-family: var(--mono); font-size: .66rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-2); padding-top: 4px;
}
.about-step-title {
  font-family: var(--display); font-weight: 600;
  font-size: 1.05rem; margin-bottom: 6px;
}
.about-step-body {
  color: var(--muted-2); font-size: .9rem; font-weight: 300; line-height: 1.68;
}

/* Citaat-blok */
.about-quote-block {
  margin: 56px 0 0;
  padding: 36px 44px;
  border-left: 3px solid var(--accent);
  background: rgba(168,72,42,.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-quote-text {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.4; color: var(--ink); margin-bottom: 14px;
}
.about-quote-attr {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-2);
}

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1000px) {
  .pillars { grid-template-columns: 1fr; gap: 36px; }
  .pillar  { border-right: none; padding-left: 0; padding-right: 0; border-top: 1px solid var(--line); padding-top: 32px; }
  .pillar:first-child { border-top: none; padding-top: 0; }

}

@media (max-width: 860px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .split { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .split-visual { display: block; }
  .split-img { height: 280px; }
  .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-split { grid-template-columns: 1fr; gap: 44px; }
  .about-img { height: 280px; }
  .hero-heading { font-size: clamp(3rem, 13vw, 5.2rem); }
  .hero-meta { display: none; }
  .hero-photo { display: none; }

  .section { padding: 76px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .nav-inner  { padding: 0 18px; }

  .hero-content { padding-left: 18px; }
  .hero-line    { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .scroll-ind { right: 20px; }

  .offer-item { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 0; }
  .offer-item:hover { padding-left: 0; background: none; margin: 0; padding-right: 0; }
  .stepper { padding-left: 28px; }

  .about-quote-block { padding: 24px 22px; }
  .about-headline { font-size: clamp(2.2rem, 10vw, 3.6rem); }

  .stats { gap: 22px; }
  .section      { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .form-card    { padding: 24px 20px; }
  .contact-inner { gap: 32px; }
}

/* =======================================================
   prefers-reduced-motion — toegankelijkheid
   ======================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }

  /* Zorg dat reveal-elementen meteen zichtbaar zijn */
  .reveal, .reveal-stagger > *, .reveal-line {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
