/* ════════════════════════════════════════════════════════════════
   Klaassens Digital — stylesheet · "Grafiet & Signaal"
   De opgeruimde werkbank: koel papier, grafiet-inkt, donkere
   boekensteunen (kop en voet), één signaalkleur (gebrand oranje —
   de kleur van vakwerk), en een monospace-laag voor cijfers en
   labels. Scherpe hoeken, hairlines in plaats van kaarten.
   Geen schaduwen, geen decoratie: het werk en de prijzen spreken.
   ════════════════════════════════════════════════════════════════ */

/* ---------- Lokale fonts (self-hosted, GEEN Google Fonts) ---------- */
@font-face {
  font-family: "Geist";
  src: url("/fonts/Geist-Variable.ttf") format("truetype");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("/fonts/Geist-Italic-Variable.ttf") format("truetype");
  font-weight: 100 900; font-style: italic; font-display: swap;
}

/* ════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   Zelfde tokennamen als voorheen (afhankelijke sheets blijven werken),
   radicaal andere waarden. Accent-ladder in OKLCH rond hue 50 (gebrand
   oranje, AA-veilig als tekst); --signal is de felle marker-variant
   (alleen voor vlakken/markeringen, nooit lopende tekst).
   ════════════════════════════════════════════════════════════════ */
:root {
  /* Canvas — koel papier, geen crème */
  --bg:        #f6f6f3;
  --surface:   #fbfbf9;
  --surface-2: #ebebe6;
  --bg-elev:   #ffffff;

  /* Inkt */
  --text:    #191b1e;
  --muted:   #545a61;
  /* WCAG AA: #82888f haalde maar 3,58:1 op papier en 4,12:1 op --surface-2.
     Deze haalt ≥4,5:1 op wit, --bg én --surface-2 — koele tint blijft. */
  --muted-2: #63696f;

  /* Grafiet (de donkere boekensteunen) */
  --ink:   #17191c;
  --ink-2: #1f2226;

  /* Accent — gebrand oranje (tekst-veilig) + felle signaalmarker */
  --accent:        oklch(0.51 0.125 50);  /* gebrand oranje, AA als kleine tekst op papier */
  --accent-hover:  oklch(0.45 0.115 50);
  --accent-press:  oklch(0.39 0.10 50);
  --accent-subtle: oklch(0.95 0.03 70);   /* pale amber tint */
  --accent-line:   oklch(0.85 0.07 65);
  --on-accent:     #ffffff;
  --signal:        oklch(0.76 0.15 65);   /* felle amber-marker, niet voor tekst */

  /* Hairlines */
  --border:   #dcdcd6;
  --border-2: #c6c6bf;

  /* Semantisch (gedempt) */
  --pos:    oklch(0.50 0.10 155);  --pos-bg: oklch(0.96 0.03 155);
  --neg:    oklch(0.52 0.13 25);   --neg-bg: oklch(0.96 0.03 25);

  /* Vorm — scherp. Geen afgeronde kaarten, geen schaduwen. */
  --radius: 0px; --radius-lg: 0px; --radius-btn: 0px; --radius-pill: 0px;
  --container: 1180px;
  --shadow-sm: none; --shadow: none; --shadow-lg: none;
  --ring: 0 0 0 3px var(--accent-subtle);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Geist", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Geist", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono:    ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
}

/* Donkere scope — hero, contact-afsluiting, footer. Componenten erin
   nemen automatisch de juiste tokens over. */
.ink, .footer {
  --bg: var(--ink);
  --surface: var(--ink-2);
  --surface-2: #24272c;
  --bg-elev: var(--ink-2);
  --text: #ecedea;
  --muted: #a8adb3;
  --muted-2: #7c828a;
  --border: rgba(255,255,255,.16);
  --border-2: rgba(255,255,255,.28);
  --accent: oklch(0.76 0.15 65);          /* op donker mag de felle variant als tekst (AA) */
  --accent-hover: oklch(0.82 0.14 70);
  --accent-press: oklch(0.68 0.15 60);
  --accent-subtle: rgba(240, 170, 60, .14);
  --accent-line: rgba(240, 170, 60, .38);
  --on-accent: #17191c;
  background: var(--ink);
  color: var(--text);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overscroll-behavior-y: none; }
body {
  font-family: var(--font-body);
  background: var(--bg); color: var(--text);
  line-height: 1.6; font-size: 17px;
  overflow-x: hidden;
  /* Lange woorden (samenstellingen, URL's, e-mailadressen) breken netjes af
     i.p.v. hun vak op te rekken. Inherited → geldt site-breed; raakt niets
     dat past. */
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}

/* ---------- Krimp-hardening (de klassieke oorzaak) ----------
   Flex/grid-kinderen krijgen standaard min-width:auto en weigeren dan te
   krimpen onder hun inhoud — dat knijpt tekst of duwt de rij over de rand.
   min-width:0 laat ze meebewegen met de beschikbare ruimte. Puur defensief:
   waar de inhoud al past verandert er niets. */
.about__body, .miniover__body, .cta__contact, .form, .field,
.pw-card__meta, .pw-card__frame, .guarantee__body, .footer__col, .footer__brand,
.tier__info, .step, .card, .traject, .faq-item summary {
  min-width: 0;
}
.cta__contact li, .devlist li, .inout li, .tier { min-width: 0; }
.cta__contact li > *, .footer__company > * { min-width: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--signal); color: var(--ink); }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--signal); color: var(--ink); padding: 10px 18px; font-family: var(--font-mono); font-size: .85rem; }
.skip-link:focus { left: 0; }

/* Mono-label — de spec-sheet-laag */
.section__eyebrow, .traject__tag, .tier__badge, .win__badge, .project-card__tag,
.form__note, .trajecten__note, .footer__made {
  font-family: var(--font-mono);
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATIE — donkere grafietbalk, op elke pagina
   ════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--ink); color: #ecedea;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: rgba(255,255,255,.14); }
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding: 14px clamp(20px, 5vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: grid; place-items: center; }
.brand__glyph { flex: none; }
/* Merkteken = het venster: lichte pagina met een signaalbalk. Geen letter in een vakje.
   Staat op de donkere balk/voet, dus zonder eigen grafiet-achtergrond. */
.brand__win { fill: #ecedea; }
.brand__bar { fill: var(--signal); }
.brand__text { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; color: #ecedea; }
.brand__accent { color: var(--signal); margin-left: 2px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links > a:not(.btn) {
  padding: 9px 13px; color: #b7bcc2; font-size: .93rem; font-weight: 500;
  transition: color .2s;
}
.nav__links > a:not(.btn):hover { color: #fff; }
.nav__links > a[aria-current="page"] { color: #fff; text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--signal); text-decoration-thickness: 2px; }

.nav__lang {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; padding: 8px 12px; margin-left: 4px;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .04em;
  color: #b7bcc2; border: 1px solid rgba(255,255,255,.22);
  transition: color .2s, border-color .2s;
}
.nav__lang:hover { color: #fff; border-color: rgba(255,255,255,.5); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav__toggle span { width: 24px; height: 2px; background: #ecedea; transition: .3s var(--ease); }
.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); }

.mobile-menu {
  position: fixed; inset: 0 0 auto 0; top: 0; z-index: 90;
  background: var(--ink); color: #ecedea;
  padding: 92px 24px 36px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateY(-100%); transition: transform .35s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a:not(.btn) {
  padding: 16px 4px; font-size: 1.3rem; font-family: var(--font-display); font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.12); color: #ecedea;
}
.mobile-menu .btn { margin-top: 20px; justify-content: center; }
/* Taalwisselaar: weggewerkt, geen menu-item. Klein mono-label onderaan. */
.mobile-menu a.mobile-menu__lang {
  align-self: flex-start;
  margin-top: 22px; padding: 4px 0; min-height: 0;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  /* Het mobiele menu is donker maar valt buiten de .ink-scope, dus niet
     var(--muted-2) gebruiken (die is voor licht papier). Vaste, AA-veilige tint. */
  color: #8b9199; border-bottom: none;
}
.mobile-menu a.mobile-menu__lang:hover { color: #ecedea; }

/* ════════════════════════════════════════════════════════════════
   KNOPPEN — rechthoekig, beslist
   ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; font-weight: 600; font-size: .96rem;
  font-family: var(--font-body); letter-spacing: .01em;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--primary:active { background: var(--accent-press); }

.btn--ghost { color: var(--text); background: transparent; border-color: var(--border-2); }
.btn--ghost:hover { border-color: var(--text); }


/* ════════════════════════════════════════════════════════════════
   HERO — donker, typografie links, het echte werk rechts
   ════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 86svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 140px; padding-bottom: 96px; position: relative;
}
/* nauwelijks zichtbaar tekenraster op grafiet — textuur, geen illustratie */
.ink { position: relative; }
.ink::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.ink > * { position: relative; }
.hero__inner { display: flex; flex-direction: column; align-items: flex-start; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 72px); align-items: center; width: 100%; }
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }

/* Venster-stapel: twee echte screenshots in mini-browserchrome, verspringend */
.hero__stack { position: relative; min-width: 0; }
.hero__win {
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.65);
}
.hero__win + .hero__win {
  position: absolute; right: -4%; bottom: -14%; width: 62%;
  border-color: rgba(255,255,255,.2);
}
.hero__win-bar { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero__win-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); flex: none; }
.hero__win-bar span { font-family: var(--font-mono); font-size: .68rem; color: #8b9198; margin-left: 6px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.hero__win img { width: 100%; height: auto; display: block; }


.hero__title {
  font-family: var(--font-display); font-weight: 650;
  font-size: clamp(2.6rem, 6.6vw, 5rem);
  line-height: 1.02; letter-spacing: -0.03em;
  margin: 28px 0 0; max-width: 17ch; color: var(--text);
}
.grad-text { color: inherit; box-shadow: inset 0 -0.14em var(--signal); }
.ink .grad-text { box-shadow: inset 0 -0.14em oklch(0.62 0.16 55); }

.hero__sub {
  margin-top: 28px; max-width: 56ch; font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--muted); line-height: 1.65;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

/* mono-feitenregel onder de CTA's (vervangt de trust-pills) */
.hero__trust { margin-top: 64px; display: flex; flex-direction: column; gap: 12px; width: 100%; }
.hero__trust > span { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em; color: var(--muted-2); }
.hero__trust-logos { display: flex; flex-wrap: wrap; gap: 10px 28px; border-top: 1px solid var(--border); padding-top: 16px; }
.trust-pill {
  font-family: var(--font-mono); font-size: .84rem; color: var(--muted);
  background: none; border: none; padding: 0;
}
.trust-pill::before { content: "— "; color: var(--muted-2); }

.scroll-hint {
  position: absolute; bottom: 26px; left: clamp(20px, 5vw, 48px);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em;
  color: var(--muted-2); text-transform: uppercase;
}
.scroll-hint:hover { color: var(--text); }
.scroll-hint__mouse, .scroll-hint__mouse span { display: none; }
.scroll-hint__label::before { content: "↓ "; }

/* ════════════════════════════════════════════════════════════════
   SECTIES — genummerde mono-koppen boven een hairline
   ════════════════════════════════════════════════════════════════ */
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section--alt { background: var(--surface-2); border: none; }
/* Doorlopende achtergrond met een subtiele hairline i.p.v. een harde kleurbreuk —
   de scheiding is dan bewust, niet per ongeluk. Gelijke lucht boven en onder de
   lijn (zie #altijd hieronder), anders wordt de scheiding zelf een gat. */
.section--rule {
  border-top: 1px solid var(--border);
  padding-top: clamp(52px, 7vw, 88px);
}

.section__head { max-width: 720px; margin-bottom: 52px; }
.section__eyebrow {
  font-size: .8rem; letter-spacing: .08em; font-weight: 500;
  color: var(--accent); margin-bottom: 20px;
  padding-top: 14px; border-top: 2px solid var(--text);
  display: block;
}
.ink .section__eyebrow { border-top-color: var(--text); }
.section__title {
  font-family: var(--font-display); font-weight: 640;
  font-size: clamp(1.9rem, 4.2vw, 2.9rem); line-height: 1.06; letter-spacing: -0.025em; color: var(--text);
}
.section__lead { margin-top: 18px; color: var(--muted); font-size: 1.1rem; max-width: 62ch; }
.section__cta { display: flex; justify-content: flex-start; margin-top: 44px; }

/* ════════════════════════════════════════════════════════════════
   KAARTEN → vlakke panelen met hairlines
   ════════════════════════════════════════════════════════════════ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border-2); }
.card {
  position: relative; padding: 30px 26px 34px 0; margin-right: 26px;
  background: none; border: none; border-top: none;
}
.cards .card + .card { border-left: 1px solid var(--border); padding-left: 26px; }
.card__icon {
  width: auto; height: auto; background: none; border: none;
  color: var(--accent); margin-bottom: 18px; display: block;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 620; letter-spacing: -0.015em; margin-bottom: 10px; color: var(--text); }
.card p { color: var(--muted); font-size: .99rem; }

/* ════════════════════════════════════════════════════════════════
   WERKWIJZE — genummerde stappen aan een lijn
   ════════════════════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: stap; }
.step {
  position: relative; padding: 22px 0 0; background: none; border: none;
  border-top: 2px solid var(--border-2);
}
.step__num {
  font-family: var(--font-mono); font-size: .95rem; font-weight: 500;
  color: var(--accent); display: block; margin-bottom: 14px; letter-spacing: .04em;
}
.step h3 { font-family: var(--font-display); font-size: 1.14rem; font-weight: 620; margin-bottom: 8px; letter-spacing: -0.015em; color: var(--text); }
.step p { color: var(--muted); font-size: .96rem; }
.steps--flow .step:not(:last-child)::after { content: none; }
.steps--flow .step:first-child { border-top-color: var(--text); }

/* ════════════════════════════════════════════════════════════════
   OVER MIJ
   ════════════════════════════════════════════════════════════════ */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.about__visual { position: relative; }
.about__photo {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--border);
  display: grid; place-items: center;
}
/* Echte foto (straks): groot en in grayscale — het frame is er klaar voor */
.about__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
/* Bewuste placeholder: een gemarkeerd fotokader (paskruis-hoeken + mono-label),
   geen grijs vlak met initialen */
.about__pending { position: absolute; inset: 14px; border: 1px dashed var(--border-2); display: grid; place-items: center; }
.about__pending::before, .about__pending::after {
  content: ""; position: absolute; width: 14px; height: 14px; border-color: var(--muted-2); border-style: solid;
}
.about__pending::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.about__pending::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.about__pending-label { text-align: center; padding: 12px; }
.about__pending-label b { display: block; font-family: var(--font-display); font-weight: 630; font-size: 1.15rem; color: var(--text); letter-spacing: -.01em; }
.about__pending-label span { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.about__badge {
  position: static; margin-top: 14px; background: none; border: none; border-left: 3px solid var(--signal);
  padding: 4px 0 4px 14px; max-width: none; box-shadow: none;
}
.about__badge strong { display: block; font-family: var(--font-display); margin-bottom: 2px; color: var(--text); }
.about__badge span { font-size: .86rem; color: var(--muted); }

.about__body p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; max-width: 64ch; }
.about__story-head { font-family: var(--font-display); font-weight: 630; font-size: 1.3rem; letter-spacing: -0.015em; color: var(--text); margin: 40px 0 12px; }
.about__story-head--first { margin-top: 0; }
.about__story { max-width: 720px; margin: clamp(36px, 6vw, 60px) 0 0; }
.about__story p { color: var(--muted); font-size: 1.04rem; line-height: 1.7; margin-bottom: 16px; max-width: 68ch; }
.pullquote {
  font-family: var(--font-display); font-weight: 630;
  font-size: clamp(1.25rem, 3vw, 1.7rem); line-height: 1.25; letter-spacing: -0.02em;
  color: var(--text); border-left: 3px solid var(--signal); padding: 4px 0 4px 22px; margin: 30px 0 0;
}

.miniover { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.miniover__visual { position: relative; max-width: 380px; }
.miniover__body p { color: var(--muted); font-size: 1.05rem; margin: 0 0 18px; max-width: 58ch; }
.miniover__body .pullquote { margin: 0 0 26px; }

/* ════════════════════════════════════════════════════════════════
   CONTACT / FORM — papieren formulier op donker bureau
   ════════════════════════════════════════════════════════════════ */
.cta {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 70px); align-items: start;
  padding: 0; background: none; border: none; box-shadow: none;
}
.cta__contact { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.cta__contact li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-family: var(--font-mono); font-size: .95rem; }
.cta__contact a, .cta__contact address { color: var(--text); font-style: normal; transition: color .2s; }
.cta__contact a:hover { color: var(--accent); }

.form { display: flex; flex-direction: column; gap: 16px; background: var(--bg-elev); padding: clamp(22px, 3vw, 34px); border: 1px solid var(--border); }
.ink .form { background: #fbfbf9; border-color: transparent;
  --text: #191b1e; --muted: #545a61; --muted-2: #63696f;
  --bg: #f6f6f3; --bg-elev: #ffffff; --border: #dcdcd6; --border-2: #c6c6bf;
  --accent: oklch(0.54 0.13 50); --accent-hover: oklch(0.48 0.12 50); --on-accent: #fff;
  color: var(--text);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .03em; color: var(--muted); }
.field input, .field textarea {
  width: 100%; padding: 13px 14px;
  background: var(--bg); border: 1px solid var(--border-2); color: var(--text);
  font: inherit; font-size: 16px; transition: border-color .2s, box-shadow .2s; resize: vertical; border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.form__hp { position: absolute; left: -9999px; }
.form__note { font-size: .8rem; color: var(--muted-2); }
.form__consent { font-size: .82rem; color: var(--muted-2); }
.form__consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }


/* ════════════════════════════════════════════════════════════════
   FOOTER — donkere boekensteun
   ════════════════════════════════════════════════════════════════ */
.footer { border-top: none; padding: 64px 0 32px; margin-top: 0; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr; gap: 40px; align-items: start; }
.footer__brand { max-width: 36ch; }
.footer__brand .brand__text { font-size: 1.2rem; }
.footer__brand p { color: var(--muted); margin-top: 10px; max-width: 34ch; font-size: .95rem; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-family: var(--font-mono); font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.footer__col a { color: var(--muted); font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__company span, .footer__company a { color: var(--muted); font-size: .9rem; line-height: 1.55; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--border);
  color: var(--muted-2); font-size: .85rem;
}
.footer__made { font-size: .78rem; letter-spacing: .04em; }

/* ════════════════════════════════════════════════════════════════
   REVEAL — rustige fade-in
   ════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 40ms + var(--i, 0) * 35ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════
   WERK — venster-showcase, vlak en scherp
   ════════════════════════════════════════════════════════════════ */
/* Eén live-project groot (featured, volle breedte) + de drie voorbeelden als
   volle rij van drie eronder — de laatste rij vult altijd de breedte, geen gat. */
.pw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pw-card {
  display: flex; flex-direction: column; color: inherit; cursor: pointer;
  background: var(--bg-elev); border: 1px solid var(--border);
  overflow: hidden; transition: border-color .2s;
}
.pw-card:hover { border-color: var(--text); transform: none; box-shadow: none; }
.pw-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.pw-card__frame { display: block; }
.pw-card__bar { display: flex; align-items: center; gap: 7px; padding: 10px 12px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.pw-card__bar > i { width: 8px; height: 8px; border-radius: 50%; background: var(--border-2); flex: none; }
.pw-card__url { margin-left: 8px; font-family: var(--font-mono); font-size: .74rem; color: var(--muted); background: var(--bg); border: 1px solid var(--border); padding: 3px 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.pw-card__thumb { display: grid; place-items: center; aspect-ratio: 16 / 8.5; color: var(--muted-2); background: var(--surface); overflow: hidden; }
.pw-card__thumb .ph { font-size: 1.8rem; opacity: .8; }
.pw-card:hover .pw-card__thumb { color: var(--accent); }
/* echt screenshot in de thumb — het bewijs, niet een icoon */
.pw-card__shot { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: saturate(.96); transition: filter .25s var(--ease); }
.pw-card:hover .pw-card__shot { filter: saturate(1.05); }

/* Featured — het enige échte live-project krijgt de volle breedte + een
   spec-regel die het meta-paneel vult (geen holle rechterhelft meer). */
.pw-card--featured { grid-column: 1 / -1; flex-direction: row; }
.pw-card--featured .pw-card__frame { flex: 1 1 58%; min-width: 0; display: flex; flex-direction: column; border-right: 1px solid var(--border); }
.pw-card--featured .pw-card__thumb { aspect-ratio: 16 / 6.4; flex: 1; }
.pw-card--featured .pw-card__meta { flex: 1 1 42%; border-top: none; justify-content: center; padding: clamp(24px, 3vw, 38px) clamp(24px, 3vw, 40px); gap: 12px; }
.pw-card--featured .pw-card__meta h3 { font-size: 1.7rem; }
.pw-card--featured .pw-card__meta > p { font-size: 1.02rem; }

/* Spec-sheet-regel in de featured meta — mono labels, hairlines (huisstijl) */
.pw-card__specs { margin: 6px 0 2px; border-top: 1px solid var(--border); }
.pw-card__specs > div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.pw-card__specs dt { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); flex: none; }
.pw-card__specs dd { font-size: .92rem; color: var(--text); text-align: right; min-width: 0; }

@media (max-width: 860px) {
  .pw-card--featured { flex-direction: column; }
  .pw-card--featured .pw-card__frame { border-right: none; }
  .pw-card--featured .pw-card__thumb { aspect-ratio: 16 / 8.5; }
  .pw-card--featured .pw-card__meta { border-top: 1px solid var(--border); }
}
.pw-card__meta { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 22px; flex: 1; border-top: 1px solid var(--border); }
.pw-card__meta h3 { font-family: var(--font-display); font-size: 1.26rem; font-weight: 630; letter-spacing: -0.015em; color: var(--text); }
.pw-card__meta p { color: var(--muted); font-size: .96rem; }
.pw-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--accent); padding-top: 8px; }
.pw-card__cta .ph { transition: transform .2s var(--ease); }
.pw-card:hover .pw-card__cta .ph { transform: translateX(4px); }

.project-card__tag {
  align-self: flex-start; font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: none; border: none; padding: 0;
}

/* Venster-modal */
.win-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(14px, 4vw, 46px);
  background: rgba(15, 16, 18, 0.62);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.win-overlay.open { opacity: 1; visibility: visible; }
.win {
  position: relative; width: min(1080px, 100%); height: min(760px, 100%);
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--bg-elev); border: 1px solid var(--border-2);
  transform: translateY(8px); opacity: 0; transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.win-overlay.open .win { transform: none; opacity: 1; }
.win__bar { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.win__dots { display: flex; gap: 6px; }
.win__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-2); }
.win__addr {
  flex: 1; min-width: 0; margin: 0 4px;
  font-family: var(--font-mono); font-size: .8rem; color: var(--muted); background: var(--bg); border: 1px solid var(--border);
  padding: 6px 14px; text-align: center;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.win__close { width: 36px; height: 36px; display: grid; place-items: center; color: var(--muted); transition: background .2s, color .2s; flex-shrink: 0; }
.win__close:hover { background: var(--surface); color: var(--text); }
.win__body { flex: 1; min-height: 0; background: #fff; position: relative; }
.win__frame { width: 100%; height: 100%; border: 0; display: block; }
.win__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 14px; border-top: 1px solid var(--border); background: var(--surface-2); flex-wrap: wrap; }
.win__badge { font-size: .74rem; color: var(--muted); padding: 5px 10px; background: var(--bg); border: 1px solid var(--border); }
.win__foot-actions { display: inline-flex; gap: 10px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════════
   PRIJZEN — de tarievenkaart
   ════════════════════════════════════════════════════════════════ */
.trajecten { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 56px); }
.traject { position: relative; padding: 0; background: none; border: none; }
.traject__tag {
  position: static; display: inline-block; margin-bottom: 14px;
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 0; background: none; border: none; color: var(--accent);
}
.traject__h { font-family: var(--font-display); font-size: 1.5rem; font-weight: 640; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 8px; color: var(--text); padding-top: 14px; border-top: 2px solid var(--text); }
.traject__desc { color: var(--muted); font-size: .98rem; margin-bottom: 22px; max-width: 46ch; }

.traject__tiers { display: flex; flex-direction: column; gap: 0; }
.tier {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 16px 0; background: none; border: none; border-bottom: 1px solid var(--border);
}
.tier--hot { background: none; border-bottom-color: var(--border); box-shadow: inset 3px 0 var(--signal); padding-left: 14px; }
.tier__info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tier__name { font-weight: 600; font-size: .98rem; display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap; color: var(--text); }
.tier__meta { font-size: .84rem; color: var(--muted); }
.tier__price { font-family: var(--font-mono); font-weight: 500; font-size: 1.06rem; color: var(--text); white-space: nowrap; font-variant-numeric: tabular-nums; }
.tier__badge {
  font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 8px; background: var(--signal); color: var(--ink);
}
/* Kleine letters onder de prijslijst: eigen ademruimte, niet tegen de hairline
   van de laatste prijsregel geplakt. */
.traject__foot { margin-top: clamp(22px, 3vw, 30px); font-size: .82rem; line-height: 1.6; color: var(--muted-2); }
.trajecten__note { margin-top: 36px; text-align: left; color: var(--muted); font-size: .88rem; }

/* ── Wat er altijd in zit — de complete-site-belofte ── */
.included { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 44px; border-top: 2px solid var(--text); }
.included li {
  display: flex; align-items: flex-start; gap: 10px; min-width: 0;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  font-size: .96rem; line-height: 1.5; color: var(--muted);
}
.included .ph { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }

/* Teaser op de homepage — verwijst naar het volledige blok op /prijzen/ */
.included-teaser {
  margin-top: 44px; padding: 22px 0 22px 22px;
  border-left: 3px solid var(--signal); max-width: 78ch;
}
.included-teaser__claim {
  font-family: var(--font-display); font-weight: 630;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem); line-height: 1.3; letter-spacing: -.015em;
  color: var(--text); margin-bottom: 10px;
}
.included-teaser p { color: var(--muted); font-size: .99rem; }
.included-teaser a { display: inline-block; margin-top: 12px; }

.traject--wide { grid-column: 1 / -1; }


.partner__sub { margin-top: 20px; padding: 0; background: none; border: none; border-top: 2px solid var(--text); padding-top: 16px; }
.partner__sub-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 630; color: var(--text); margin-bottom: 10px; }
.partner__close { margin-top: 14px; font-size: .84rem; color: var(--muted-2); font-family: var(--font-mono); }
.devlist { display: flex; flex-direction: column; }
.devlist li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; font-size: .92rem; color: var(--muted); padding: 11px 0; border-bottom: 1px solid var(--border); }
.devlist li:last-child { border-bottom: none; }
.devlist .price { font-family: var(--font-mono); font-weight: 500; font-size: .9rem; color: var(--text); white-space: nowrap; font-variant-numeric: tabular-nums; }

.partner__inout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 16px; }
.inout { padding: 18px 0 0; border: none; border-top: 2px solid var(--text); background: none; }
.inout--in, .inout--out { background: none; border-color: var(--text); }
.inout ul { display: flex; flex-direction: column; gap: 9px; }
.inout li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--muted); line-height: 1.5; }
.inout .ph { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.inout--in .ph { color: var(--pos); }
.inout--out .ph { color: var(--neg); }

.traject-nav { display: flex; flex-wrap: wrap; gap: 0 26px; margin-top: 28px; border-top: 1px solid var(--border); padding-top: 14px; }
.traject-nav a {
  padding: 6px 0; font-family: var(--font-mono); font-size: .84rem; color: var(--muted);
  background: none; border: none; transition: color .2s;
}
.traject-nav a:hover { color: var(--accent); }

/* ════════════════════════════════════════════════════════════════
   GARANTIES (over-pagina)
   ════════════════════════════════════════════════════════════════ */
.guarantees { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 48px; }
.guarantee { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0 0; background: none; border: none; border-top: 1px solid var(--border-2); margin: 0; }
.guarantee .card__icon { width: auto; height: auto; margin: 2px 0 0; background: none; border: none; }
.guarantee .card__icon svg { width: 22px; height: 22px; }
.guarantee__body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 630; letter-spacing: -0.01em; margin-bottom: 5px; color: var(--text); }
.guarantee__body p { color: var(--muted); font-size: .93rem; }

/* ════════════════════════════════════════════════════════════════
   FAQ — hairline-accordeon
   ════════════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; border-top: 1px solid var(--border-2); }
.faq-item { background: none; border: none; border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-item[open] { border-color: var(--border); box-shadow: none; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 2px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq__plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--accent); transition: transform .22s var(--ease), opacity .22s var(--ease); }
.faq__plus::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq__plus::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item[open] .faq__plus::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq__a { padding: 0 2px 22px; color: var(--muted); }
.faq__a p { max-width: 66ch; line-height: 1.65; }
.faq__a p + p { margin-top: 12px; }
.faq-item[open] .faq__a { animation: faqOpen .18s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-5px); } }

.faq-group { max-width: 820px; margin: 0; }
.faq-group + .faq-group { margin-top: 56px; }
.faq-group__title { font-family: var(--font-mono); font-weight: 500; font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.faq-group__title i { display: none; }

/* ════════════════════════════════════════════════════════════════
   PAGINA-BOUWSTENEN
   ════════════════════════════════════════════════════════════════ */
.page-intro { padding-top: clamp(130px, 17vh, 180px); }
.page-intro .section__head { margin-bottom: 0; max-width: 780px; }
/* Intro en het blok erna stapelden allebei hun sectiepadding op → dubbel gat.
   De onderruimte van de intro is genoeg. (#altijd staat alleen op /prijzen/.) */
.page-intro + #altijd { padding-top: 0; }
/* Even veel lucht onder dit blok als boven de prijzen, zodat de hairline
   ertussen gecentreerd staat. */
#altijd { padding-bottom: clamp(52px, 7vw, 88px); }
.page-cta__panel {
  text-align: left; padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
  background: var(--ink); color: #ecedea; border: none; box-shadow: none;
  --text: #ecedea; --muted: #a8adb3; --muted-2: #7c828a;
  --border: rgba(255,255,255,.16); --border-2: rgba(255,255,255,.28);
  --accent: oklch(0.76 0.15 65); --accent-hover: oklch(0.82 0.14 70); --on-accent: #17191c;
}
.page-cta__panel h2, .page-cta__panel h1 { font-family: var(--font-display); font-weight: 640; font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -0.025em; line-height: 1.08; color: #ecedea; }
.page-cta__panel p { color: #a8adb3; margin: 16px 0 0; max-width: 56ch; }
.page-cta__panel .btn--ghost { color: #ecedea; border-color: rgba(255,255,255,.35); }
.page-cta__panel .btn--ghost:hover { border-color: #fff; }
.page-cta__panel .btn--primary { background: var(--signal); color: var(--ink); }
.page-cta__panel .btn--primary:hover { background: oklch(0.82 0.14 70); }
.page-cta__buttons { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; margin-top: 30px; }

/* ════════════════════════════════════════════════════════════════
   PHOSPHOR-ICONEN — maten per context
   ════════════════════════════════════════════════════════════════ */
.ph { display: inline-block; vertical-align: middle; }
.card__icon .ph { font-size: 24px; }
.guarantee .card__icon .ph { font-size: 22px; }
.cta__contact .ph { font-size: 18px; color: var(--accent); flex-shrink: 0; }
.btn .ph { font-size: 1.1em; transition: transform .2s var(--ease); }
.btn--primary:hover .ph { transform: translateX(3px); }
.win__close .ph { font-size: 20px; }

/* ════════════════════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════════════════════ */
.section--flush { padding-top: 0; }
.mt-lg { margin-top: 44px; }
.link-accent { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.link-accent:hover { color: var(--accent-hover); }
.d0 { --i: 0; } .d1 { --i: 1; } .d2 { --i: 2; } .d3 { --i: 3; } .d4 { --i: 4; }
[id] { scroll-margin-top: 90px; }

/* ════════════════════════════════════════════════════════════════
   MOBIEL & TOUCH
   ════════════════════════════════════════════════════════════════ */
a, button, .btn, summary, label, .pw-card { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
input:not([type="hidden"]), textarea, select { font-size: 16px; }
.cta__contact a, .mobilebar a, address, [href^="tel:"], [href^="mailto:"] { -webkit-user-select: text; user-select: text; }

.mobilebar { display: none; }
@media (max-width: 767px) {
  .mobilebar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    display: flex; gap: 1px; padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink); border-top: 1px solid rgba(255,255,255,.14);
  }
  .mobilebar__btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 52px; font-family: var(--font-body); font-weight: 600; font-size: .98rem;
    background: var(--ink); color: #ecedea; border: none;
  }
  .mobilebar__btn--primary { background: var(--signal); color: var(--ink); }
  .mobilebar__btn .ph { font-size: 1.15rem; }
  body { padding-bottom: calc(52px + env(safe-area-inset-bottom)); }
  .footer__col a, .mobile-menu a, .nav__links > a { min-height: 44px; display: flex; align-items: center; }
}

/* ════════════════════════════════════════════════════════════════
   COOKIE-CONSENT-BALK (dormant tot analytics gekoppeld is)
   ════════════════════════════════════════════════════════════════ */
.cookiebar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 200;
  max-width: 720px; margin-inline: auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: var(--ink); color: #ecedea; border: 1px solid rgba(255,255,255,.2);
}
.cookiebar__txt { flex: 1 1 260px; font-size: .88rem; color: #a8adb3; }
.cookiebar__txt a { color: var(--signal); text-decoration: underline; text-underline-offset: 3px; }
.cookiebar__btns { display: flex; gap: 10px; flex: 0 0 auto; }
.cookiebar .btn--ghost { color: #ecedea; border-color: rgba(255,255,255,.35); }
.cookiebar .btn--primary { background: var(--signal); color: var(--ink); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  /* de venster-stapel is desktop-decor; op mobiel staat het echte werk één scroll lager */
  .hero__stack { display: none; }
}
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; border-top: none; }
  .cards .card { margin-right: 0; padding: 22px 0; border-top: 1px solid var(--border-2); }
  .cards .card + .card { border-left: none; padding-left: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about__visual { max-width: 360px; }
  .cta { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .miniover { grid-template-columns: 1fr; }
  .pw-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .included { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; }
}
@media (max-width: 820px) {
  .trajecten, .guarantees { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .included { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .win-overlay { padding: 0; }
  .win { width: 100%; height: 100%; border: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .steps, .form__row, .partner__inout { grid-template-columns: 1fr; }
  .hero { padding-top: 128px; min-height: 78svh; }
  .footer__bottom { flex-direction: column; }
  .scroll-hint { display: none; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .win__dots { display: none; }
  .win__foot { justify-content: center; }
  .win__addr { font-size: .72rem; padding: 5px 10px; }
  /* knoppen mogen wrappen — geen 2px-overflow op 320px */
  .btn { white-space: normal; text-align: center; max-width: 100%; }
  .btn--lg { padding: 14px 20px; font-size: .98rem; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 0 1 auto; min-width: 0; }
}

/* ════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
