/* ==========================================================================
   Engelbart Infra — demo 1 · cinematisch donker, blauw accent
   ========================================================================== */

:root {
  /* Kleur */
  --bg: #0B0B0B;
  --bg-alt: #141414;
  --surface: #F5F4F1;
  --text: #FFFFFF;
  --text-ink: #111111;
  --muted: rgba(255, 255, 255, .65);
  --muted-ink: rgba(17, 17, 17, .68);
  --line: rgba(255, 255, 255, .12);
  --line-ink: rgba(17, 17, 17, .12);
  --accent: #5FA0E0;       /* staalblauw op donker (contrast 7.4:1) */
  --accent-ink: #1D5A99;   /* hetzelfde blauw, donkerder voor lichte secties (6.6:1) */

  /* Typografie */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-display: clamp(2.75rem, 7vw, 6rem);
  --fs-h2: clamp(2rem, 4.5vw, 3.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.625rem);
  --fs-body: clamp(1rem, 1.2vw, 1.125rem);
  --fs-lead: clamp(1.125rem, 1.6vw, 1.375rem);
  --fs-eyebrow: .75rem;

  /* Layout */
  --container: 1440px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(96px, 12vh, 180px);
  --radius: 8px;
  --header-h: 80px;

  /* 8px-schaal */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 48px; --s8: 64px; --s10: 80px; --s12: 96px;

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --t-fast: 200ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[role="list"], .list-reset { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
address { font-style: normal; }
main:focus { outline: none; }
[id] { scroll-margin-top: calc(var(--header-h) + var(--s3)); }

/* ---------- Toegankelijkheid ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: var(--s2); left: var(--s2); z-index: 200;
  padding: 12px 20px; background: var(--text); color: var(--text-ink);
  border-radius: 999px; font-weight: 500; text-decoration: none;
  transform: translateY(-200%); transition: transform var(--t-fast) ease;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.section--light :focus-visible { outline-color: var(--accent-ink); }

/* ---------- Typografie ---------- */
.display {
  font-size: var(--fs-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
h2, .h2 {
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
h3, .h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
p { max-width: 52ch; }
.lead { font-size: var(--fs-lead); line-height: 1.5; max-width: 40ch; }
.eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: var(--s3);
}
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.stack > * + * { margin-top: var(--s3); }
.stack-lg > * + * { margin-top: var(--s5); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); background: var(--bg); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--light { background: var(--surface); color: var(--text-ink); }
.section--light .eyebrow,
.section--light .muted { color: var(--muted-ink); }
.section--light .accent { color: var(--accent-ink); }
.section--tight { padding-block: calc(var(--section-y) * .6); }

.grid-12 { display: grid; gap: var(--s4); grid-template-columns: repeat(12, minmax(0, 1fr)); }
.section-head { display: grid; gap: var(--s3); margin-bottom: var(--s8); }
.section-head p { color: var(--muted); }
.section--light .section-head p { color: var(--muted-ink); }

@media (min-width: 1024px) {
  .section-head { grid-template-columns: 7fr 5fr; align-items: end; gap: var(--s8); }
  .section-head--single { grid-template-columns: 1fr; }
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s1);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem; font-weight: 500; line-height: 1.2;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  border: 1px solid transparent;
  transition: background-color var(--t-fast) ease, color var(--t-fast) ease,
              border-color var(--t-fast) ease, opacity var(--t-fast) ease;
}
.btn-primary { background: var(--text); color: var(--text-ink); }
.btn-primary:hover { background: rgba(255, 255, 255, .82); }
.btn-secondary { background: transparent; color: var(--text); border-color: rgba(255, 255, 255, .5); }
.btn-secondary:hover { border-color: var(--text); background: rgba(255, 255, 255, .08); }
.section--light .btn-primary { background: var(--text-ink); color: var(--text); }
.section--light .btn-primary:hover { background: #333; }
.section--light .btn-secondary { color: var(--text-ink); border-color: rgba(17, 17, 17, .4); }
.section--light .btn-secondary:hover { border-color: var(--text-ink); background: rgba(17, 17, 17, .05); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s5); }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--s1);
  font-weight: 500; text-decoration: none;
  transition: opacity var(--t-fast) ease;
}
.link-arrow::after { content: "→"; transition: transform var(--t-fast) ease; }
.link-arrow:hover { opacity: .7; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}
.site-header.is-scrolled {
  background: rgba(11, 11, 11, .78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: var(--s4); }

.wordmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.wordmark-mark { width: 28px; height: 20px; fill: currentColor; }
.wordmark-mark .mark-accent { fill: var(--accent); }
/* Echt logo: hoogte stuurt, breedte volgt. Vaste hoogte voorkomt verspringen bij het laden.
   In de header alleen het EB-merk, want de woordregel van het logo is op deze hoogte onleesbaar. */
.wordmark-logo { height: 34px; width: auto; }
.wordmark--footer .wordmark-logo { height: 104px; }
@media (max-width: 480px) { .wordmark-logo { height: 28px; } }
.wordmark-text { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.02em; }
.wordmark-text span { font-weight: 400; color: var(--muted); margin-left: 1px; }

.main-nav { display: none; margin-left: auto; }
.main-nav ul { display: flex; gap: var(--s4); list-style: none; padding: 0; }
.main-nav a {
  font-size: .9375rem; font-weight: 500; text-decoration: none;
  color: var(--muted); padding-block: var(--s1);
  transition: color var(--t-fast) ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--text); }
.main-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: .5em; }
.header-cta { display: none; padding: 10px 22px; font-size: .9375rem; }

.menu-toggle {
  margin-left: auto; width: 48px; height: 48px;
  display: grid; place-content: center; gap: 7px;
  background: transparent; border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
  position: relative; z-index: 120;
}
.menu-toggle-bar { width: 18px; height: 1.5px; background: var(--text); transition: transform 300ms var(--ease); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-of-type(2) { transform: translateY(4.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-of-type(3) { transform: translateY(-4.25px) rotate(-45deg); }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ---------- Mobiel menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--bg);
  padding: calc(var(--header-h) + var(--s6)) var(--gutter) var(--s6);
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; transition: opacity 400ms var(--ease);
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; }
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu li {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.mobile-menu.is-open li { opacity: 1; transform: none; }
.mobile-menu.is-open li:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.is-open li:nth-child(2) { transition-delay: 160ms; }
.mobile-menu.is-open li:nth-child(3) { transition-delay: 240ms; }
.mobile-menu.is-open li:nth-child(4) { transition-delay: 320ms; }
.mobile-menu.is-open li:nth-child(5) { transition-delay: 400ms; }
.mobile-menu nav a {
  display: block; padding-block: var(--s1);
  font-size: clamp(2.25rem, 10vw, 3.5rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.15;
  text-decoration: none; color: var(--muted);
}
.mobile-menu nav a[aria-current="page"], .mobile-menu nav a:hover { color: var(--text); }
.mobile-menu-contact { color: var(--muted); margin-top: var(--s6); }
.mobile-menu-contact a { text-decoration: none; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
}
.hero--page { min-height: 86vh; min-height: 86svh; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, .55) 0%, rgba(11, 11, 11, 0) 22%),
    linear-gradient(0deg, rgba(11, 11, 11, .92) 0%, rgba(11, 11, 11, .55) 38%, rgba(11, 11, 11, 0) 70%);
}
.hero-content { padding-bottom: clamp(56px, 10vh, 120px); padding-top: calc(var(--header-h) + var(--s8)); }
.hero .display { max-width: 16ch; }
.hero-line { font-size: var(--fs-lead); color: rgba(255, 255, 255, .8); margin-top: var(--s3); max-width: 44ch; }
.hero .btn-row { margin-top: var(--s5); }
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: clamp(56px, 10vh, 120px);
  font-size: var(--fs-eyebrow); letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  writing-mode: vertical-rl; display: none;
}
@media (min-width: 1024px) { .hero-scroll { display: block; } }

/* ---------- Statement ---------- */
.statement { font-size: clamp(1.75rem, 3.6vw, 3rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.2; max-width: 30ch; }
.statement .muted { color: rgba(255, 255, 255, .45); }
.section--light .statement .muted { color: rgba(17, 17, 17, .45); }

/* ---------- Split 60/40 ---------- */
.split { display: grid; gap: var(--s5); align-items: center; }
.split-media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body .h2, .split-body h2 { margin-bottom: var(--s3); }
.split-body p + p { margin-top: var(--s2); }
.split-body .muted { color: var(--muted); }
.section--light .split-body .muted { color: var(--muted-ink); }
.split + .split { margin-top: var(--section-y); }

@media (min-width: 1024px) {
  .split { grid-template-columns: 6fr 4fr; gap: clamp(48px, 6vw, 112px); }
  .split--reverse { grid-template-columns: 4fr 6fr; }
  .split--reverse .split-media { order: 2; }
  .split-media { aspect-ratio: 5 / 4; }
}

.checks { list-style: none; padding: 0; margin-top: var(--s4); display: grid; gap: var(--s2); }
.checks li { display: grid; grid-template-columns: 20px 1fr; gap: var(--s2); align-items: baseline; }
.checks li::before { content: ""; width: 12px; height: 6px; border-radius: 1px; background: var(--accent); transform: translateY(-2px); }
.section--light .checks li::before { background: var(--accent-ink); }

/* ---------- Dienstenlijst ---------- */
.service-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.section--light .service-list { border-top-color: var(--line-ink); }
.service-list li { border-bottom: 1px solid var(--line); }
.section--light .service-list li { border-bottom-color: var(--line-ink); }
.service-list a {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s1) var(--s3);
  padding-block: var(--s4); text-decoration: none;
  transition: opacity var(--t-fast) ease;
}
.service-list a:hover { opacity: .7; }
.service-num { font-size: .875rem; color: var(--muted); font-variant-numeric: tabular-nums; padding-top: .6em; }
.section--light .service-num { color: var(--muted-ink); }
.service-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; }
.service-desc { grid-column: 2; color: var(--muted); max-width: 52ch; }
.section--light .service-desc { color: var(--muted-ink); }
@media (min-width: 1024px) {
  .service-list a { grid-template-columns: 80px 5fr 4fr auto; align-items: center; }
  .service-desc { grid-column: auto; }
  .service-list a::after { content: "→"; font-size: 1.5rem; }
}

/* ---------- Tabs ---------- */
.tabs-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; }
.tabs-media img { width: 100%; height: 100%; object-fit: cover; }
.tablist { display: flex; flex-wrap: wrap; gap: var(--s1); margin-top: var(--s5); }
.tab {
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--line-ink); color: var(--muted-ink);
  font-weight: 500; font-size: .9375rem;
  transition: background-color var(--t-fast) ease, color var(--t-fast) ease, border-color var(--t-fast) ease;
}
.section:not(.section--light) .tab { border-color: var(--line); color: var(--muted); }
.tab:hover { color: inherit; }
.tab[aria-selected="true"] { background: var(--text-ink); color: var(--text); border-color: var(--text-ink); }
.section:not(.section--light) .tab[aria-selected="true"] { background: var(--text); color: var(--text-ink); border-color: var(--text); }
.tabpanel { margin-top: var(--s5); display: grid; gap: var(--s3); }
.tabpanel[hidden] { display: none; }
.tabpanel h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
@media (min-width: 1024px) {
  .tabpanel { grid-template-columns: 5fr 7fr; gap: var(--s8); }
}

/* ---------- Parallax ---------- */
.parallax {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 110vh; display: grid; place-items: center;
  background: var(--bg);
}
.parallax-bg {
  position: absolute; inset: -30% 0; z-index: -2;
  will-change: transform;
}
.parallax-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.parallax-fg {
  position: absolute; z-index: -1; will-change: transform;
  width: clamp(160px, 26vw, 380px); aspect-ratio: 3 / 4;
  border-radius: var(--radius); overflow: hidden;
}
.parallax-fg img { width: 100%; height: 100%; object-fit: cover; }
.parallax-fg--a { left: var(--gutter); top: 58%; }
.parallax-fg--b { right: var(--gutter); top: 4%; }
.parallax-text { text-align: left; max-width: 18ch; padding-inline: var(--gutter); }
.parallax-text .display { font-size: clamp(2.5rem, 6vw, 5.25rem); }
@media (max-width: 767px) {
  .parallax-fg { width: 42vw; opacity: .7; }
  .parallax-fg--a { top: 70%; }
  .parallax-fg--b { top: 2%; }
}

/* ---------- Statistieken ---------- */
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s6) var(--s4); }
.stat-num {
  display: block; font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 500;
  letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums;
}
.stat-num small { font-size: .45em; letter-spacing: -0.01em; margin-left: 2px; }
.stat-label { display: block; margin-top: var(--s2); font-size: .9375rem; color: var(--muted); max-width: 22ch; }
.section--light .stat-label { color: var(--muted-ink); }
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Klantverhalen ---------- */
.quotes { display: grid; gap: var(--s8); }
.quote blockquote p {
  font-size: clamp(1.375rem, 2.6vw, 2.125rem); font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.3; max-width: 30ch;
}
.quote figcaption { margin-top: var(--s3); color: var(--muted); font-size: .9375rem; }
.section--light .quote figcaption { color: var(--muted-ink); }
.quote figcaption strong { color: inherit; font-weight: 600; display: block; }
.section--light .quote figcaption strong { color: var(--text-ink); }
.section:not(.section--light) .quote figcaption strong { color: var(--text); }
@media (min-width: 1024px) { .quotes { grid-template-columns: 1fr 1fr; gap: var(--s12); } }

/* ---------- Stappen ---------- */
.steps { list-style: none; padding: 0; counter-reset: stap; }
.step {
  display: grid; gap: var(--s2); padding-block: var(--s6);
  border-top: 1px solid var(--line);
}
.section--light .step { border-top-color: var(--line-ink); }
.step-num { font-size: .875rem; color: var(--accent); font-weight: 600; font-variant-numeric: tabular-nums; }
.section--light .step-num { color: var(--accent-ink); }
.step h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.step p { color: var(--muted); }
.section--light .step p { color: var(--muted-ink); }
@media (min-width: 1024px) {
  .step { grid-template-columns: 2fr 5fr 5fr; gap: var(--s8); align-items: baseline; }
}

/* ---------- Beeldraster ---------- */
.image-row { display: grid; gap: var(--s2); }
.image-row figure { border-radius: var(--radius); overflow: hidden; }
.image-row img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.image-row figcaption { font-size: .875rem; color: var(--muted); padding-top: var(--s1); }
@media (min-width: 768px) {
  .image-row { grid-template-columns: 7fr 5fr; gap: var(--s3); }
  .image-row figure:first-child img { aspect-ratio: 7 / 6; }
  .image-row figure:last-child { margin-top: var(--s12); }
  .image-row figure:last-child img { aspect-ratio: 5 / 6; }
}

.full-bleed { width: 100%; overflow: hidden; }
.full-bleed img { width: 100%; height: clamp(360px, 70vh, 820px); object-fit: cover; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line-ink); }
.section:not(.section--light) .faq { border-top-color: var(--line); }
.faq details { border-bottom: 1px solid var(--line-ink); }
.section:not(.section--light) .faq details { border-bottom-color: var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding-block: var(--s4);
  display: flex; justify-content: space-between; gap: var(--s3);
  font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.015em; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 400; transition: transform var(--t-fast) ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: var(--s4); color: var(--muted-ink); }
.section:not(.section--light) .faq details p { color: var(--muted); }

/* ---------- CTA ---------- */
.cta-block { display: grid; gap: var(--s5); }
.cta-block .display { max-width: 14ch; }
.cta-meta { display: grid; gap: var(--s1); color: var(--muted); }
.cta-meta a { color: var(--text); text-decoration: none; font-size: var(--fs-lead); }
.section--light .cta-meta { color: var(--muted-ink); }
.section--light .cta-meta a { color: var(--text-ink); }
@media (min-width: 1024px) { .cta-block { grid-template-columns: 7fr 5fr; align-items: end; } }

/* ---------- Formulier ---------- */
.contact-grid { display: grid; gap: var(--s10); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 4fr 7fr; gap: var(--s12); } }
.form { display: grid; gap: var(--s4); }
.form-row { display: grid; gap: var(--s4); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: var(--s1); }
.field label { font-size: .9375rem; font-weight: 500; }
.field .optional { color: var(--muted-ink); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  background: #fff; color: var(--text-ink);
  border: 1px solid rgba(17, 17, 17, .28); border-radius: var(--radius);
  transition: border-color var(--t-fast) ease;
}
.field textarea { min-height: 180px; resize: vertical; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%;
  background-size: 6px 6px; background-repeat: no-repeat;
  padding-right: 44px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(17, 17, 17, .5); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--accent-ink); outline-offset: 1px; border-color: var(--accent-ink);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B42318; }
.field-error { color: #B42318; font-size: .875rem; font-weight: 500; }
.form-alert { padding: var(--s2) var(--s3); border-radius: var(--radius); background: #FDECEA; color: #8A1C12; }
.form-note { font-size: .875rem; color: var(--muted-ink); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-list { list-style: none; padding: 0; display: grid; gap: var(--s4); }
.contact-list span { display: block; font-size: var(--fs-eyebrow); letter-spacing: .12em; text-transform: uppercase; color: var(--muted-ink); margin-bottom: 4px; }
.contact-list a { font-size: var(--fs-lead); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-legal { font-size: .875rem; color: var(--muted-ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); color: var(--text); padding-top: var(--s12); padding-bottom: var(--s5); font-size: .9375rem; }
.footer-top { display: grid; gap: var(--s6); padding-bottom: var(--s10); }
.footer-claim { margin-top: var(--s3); color: var(--muted); }
.footer-heading { font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s2); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: var(--s1); }
.footer-col a { text-decoration: none; transition: color var(--t-fast) ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col address { line-height: 1.9; }
.footer-legal { margin-top: var(--s3); color: var(--muted); line-height: 1.9; }
.footer-credit { display: block; margin-top: 4px; }
.footer-credit a { color: var(--text); text-decoration: none; transition: color var(--t-fast) ease; }
.footer-credit a:hover { color: var(--accent); text-decoration: underline; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); justify-content: space-between;
  padding-top: var(--s4); border-top: 1px solid var(--line); color: var(--muted); font-size: .875rem;
}
.socials { list-style: none; padding: 0; display: flex; gap: var(--s3); }
.socials a { text-decoration: none; }
.socials a:hover { color: var(--text); }
@media (min-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 5fr 2fr 2fr 3fr; } }

/* ---------- 404 / bedankt ---------- */
.center-screen { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding-top: var(--header-h); }

/* ---------- Scroll-reveal ---------- */
.js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Breekpunten (mobile-first) ---------- */
@media (min-width: 640px) {
  .btn-row { flex-wrap: nowrap; }
}
@media (min-width: 1280px) {
  :root { --header-h: 88px; }
}

/* ---------- Minder beweging ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; transition-delay: 0ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .mobile-menu li { opacity: 1; transform: none; }
  .parallax-bg, .parallax-fg { transform: none !important; }
}
