/* VolClean - design system
   Palet: Forest (diep groen + bot-wit + amber accent)
   Radius-schaal: knoppen/velden 12px, kaarten/beeld 20px
   Thema: auto (prefers-color-scheme), beide modi volledig gedragen */

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/outfit-var.woff2') format('woff2');
}

:root {
  --green-950: #0d221a;
  --green-900: #123227;
  --green-800: #17402e;
  --green-700: #1e5038;
  --green-600: #2a6a4a;
  --green-500: #3d8862;
  --green-300: #8fc3a8;
  --green-100: #dcebe2;
  --amber-600: #b96a1b;
  --amber-400: #d99a4e;

  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-2: #eef1ec;
  --ink: #16211b;
  --ink-2: #48544d;
  --ink-3: #6d7a72;
  --line: #dde3dc;
  --brand: var(--green-800);
  --brand-strong: var(--green-900);
  --accent: var(--amber-600);
  --on-brand: #f2f6f1;
  --cta-bg: var(--green-800);
  --cta-bg-hover: var(--green-700);
  --cta-text: #f2f6f1;
  --shadow: 0 24px 48px -24px rgba(18, 50, 39, 0.28);

  --r-btn: 12px;
  --r-card: 20px;
  --w-max: 1180px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) { --bg: #0e1712;
    --surface: #15211a;
    --surface-2: #1a281f;
    --ink: #e7ece7;
    --ink-2: #aeb9b0;
    --ink-3: #86928a;
    --line: #26352c;
    --brand: #8fc3a8;
    --brand-strong: #dcebe2;
    --accent: #d99a4e;
    --on-brand: #e7ece7;
    --cta-bg: #2a6a4a;
    --cta-bg-hover: #3d8862;
    --cta-text: #f2f6f1;
    --shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.6); }
}
html[data-theme="dark"] { --bg: #0e1712;
    --surface: #15211a;
    --surface-2: #1a281f;
    --ink: #e7ece7;
    --ink-2: #aeb9b0;
    --ink-3: #86928a;
    --line: #26352c;
    --brand: #8fc3a8;
    --brand-strong: #dcebe2;
    --accent: #d99a4e;
    --on-brand: #e7ece7;
    --cta-bg: #2a6a4a;
    --cta-bg-hover: #3d8862;
    --cta-text: #f2f6f1;
    --shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.6); }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: 'Outfit', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; color: var(--ink-2); max-width: 62ch; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--w-max); margin: 0 auto; padding: 0 24px; }

.icon { display: inline-block; width: 22px; height: 22px; flex: 0 0 auto; }
.icon svg { width: 100%; height: 100%; display: block; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header .wrap {
  height: 100%;
  display: flex; align-items: center; gap: 18px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); text-decoration: none; min-height: 44px;
}
.logo:hover { text-decoration: none; }
.logo-monogram { width: 50px; height: 50px; color: var(--brand); flex: 0 0 auto; }
.logo-monogram .check { stroke: var(--accent); }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text b { font-weight: 700; font-size: 1.3rem; letter-spacing: 0.08em; color: var(--brand); }
.logo-text small { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
@media (max-width: 480px) {
  .logo-monogram { width: 42px; height: 42px; }
  .logo-text b { font-size: 1.12rem; }
  .logo-text small { font-size: 0.58rem; letter-spacing: 0.22em; }
}

.theme-toggle {
  background: none; border: 1px solid var(--line); border-radius: 999px;
  width: 38px; height: 38px; padding: 0; cursor: pointer;
  display: grid; place-items: center; color: var(--ink-2);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
  order: 3;
}
.theme-toggle:hover { border-color: var(--ink-3); color: var(--ink); }
.theme-toggle .icon { width: 19px; height: 19px; }
.theme-toggle .i-sun { display: none; }
.theme-toggle.is-dark .i-moon { display: none; }
.theme-toggle.is-dark .i-sun { display: block; }
.site-header .logo { order: 1; }
.site-header .main-nav { order: 2; margin-left: auto; }
.site-header .nav-toggle { order: 4; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--ink-2); font-weight: 500; font-size: 0.98rem;
  text-decoration: none;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); font-weight: 600; }
.main-nav a.nav-cta {
  background: var(--cta-bg); color: var(--cta-text);
  padding: 10px 20px; border-radius: var(--r-btn); font-weight: 600;
  transition: background 0.25s var(--ease), transform 0.15s var(--ease);
}
.main-nav a.nav-cta:hover { background: var(--cta-bg-hover); }
.main-nav a.nav-cta:active { transform: scale(0.98); }

.nav-meta { display: flex; align-items: center; gap: 12px; }
.theme-toggle.in-nav { display: none; }

.lang-switch {
  display: flex; gap: 2px; border: 1px solid var(--line);
  border-radius: 999px; padding: 3px; margin-left: 4px;
}
.lang-switch a {
  padding: 3px 11px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink-3);
  text-decoration: none;
}
.lang-switch a.on { background: var(--surface-2); color: var(--ink); }
.lang-switch a:hover { text-decoration: none; color: var(--ink); }

.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
  color: var(--ink);
}
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .i-close { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: block; margin-left: auto; }
  .theme-toggle.in-header { display: none; }
  .theme-toggle.in-nav { display: grid; }
  .main-nav {
    position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 39;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    display: none;
  }
  body.nav-open .main-nav { display: flex; }
  body.nav-open .nav-toggle .i-open { display: none; }
  body.nav-open .nav-toggle .i-close { display: block; }
  body.nav-open { overflow: hidden; }
  .main-nav > a { padding: 12px 4px; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
  .main-nav > a.nav-cta { text-align: center; margin-top: 12px; border-bottom: 0; }
  .nav-meta { margin-top: 14px; justify-content: space-between; }
  .lang-switch { margin: 0; }
}

/* ---------- knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--r-btn);
  font-family: inherit; font-size: 1rem; font-weight: 600; line-height: 1;
  text-decoration: none; cursor: pointer; border: 0;
  transition: background 0.25s var(--ease), transform 0.15s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary { background: var(--cta-bg); color: var(--cta-text); }
.btn-primary:hover { background: var(--cta-bg-hover); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-light { background: var(--surface); color: var(--green-800); }
.btn-light:hover { background: var(--green-100); }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .btn-light { color: var(--green-900); }
  html:not([data-theme="light"]) .btn-light:hover { background: #cfe0d5; }
}
html[data-theme="dark"] .btn-light { color: var(--green-900); }
html[data-theme="dark"] .btn-light:hover { background: #cfe0d5; }
.btn .icon { width: 18px; height: 18px; }

/* ---------- secties ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}

.lead { font-size: 1.16rem; line-height: 1.55; }

/* ---------- hero (home) ---------- */
.hero { padding: 48px 0 88px; }
.hero-grid {
  display: grid; grid-template-columns: 6fr 5fr; gap: 56px; align-items: center;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 10 / 11; object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--r-card);
  background: linear-gradient(215deg, transparent 60%, rgba(18, 50, 39, 0.22));
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero { padding: 20px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 10; }
}

/* ---------- trust cards ---------- */
.trust {
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-block: 64px;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 34px 30px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) {
  .trust-card, .trust-card:hover { transform: none; }
}
.trust-badge {
  width: 54px; height: 54px; border-radius: var(--r-btn);
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.trust-badge .icon { width: 27px; height: 27px; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .trust-badge { background: #1c3a2b; color: var(--green-300); }
}
html[data-theme="dark"] .trust-badge { background: #1c3a2b; color: var(--green-300); }
.trust-card h3 { margin-bottom: 8px; font-size: 1.14rem; }
.trust-card p { margin: 0; font-size: 0.96rem; color: var(--ink-2); }
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding-block: 36px; }
  .trust-card { padding: 18px 14px 16px; text-align: center; }
  .trust-badge { width: 42px; height: 42px; margin: 0 auto 12px; }
  .trust-badge .icon { width: 22px; height: 22px; }
  .trust-card h3 { font-size: 1rem; }
  .trust-card p { font-size: 0.86rem; }
  .trust-card:nth-child(3) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 14px;
    text-align: left;
    padding: 14px 16px;
  }
  .trust-card:nth-child(3) .trust-badge { grid-row: 1 / 3; margin: 0; }
  .trust-card:nth-child(3) h3 { margin-bottom: 2px; }
}

/* ---------- diensten preview / feature ---------- */
.feature-grid {
  display: grid; grid-template-columns: 5fr 6fr; gap: 56px; align-items: center;
}
.feature-grid.flip { grid-template-columns: 6fr 5fr; }
.feature-media img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
  border-radius: var(--r-card);
}
.feature-media { position: relative; overflow: hidden; border-radius: var(--r-card); }
.service-rows { display: flex; flex-direction: column; }
.service-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row .icon { width: 24px; height: 24px; color: var(--brand); margin-top: 4px; }
.service-row h3 { margin-bottom: 4px; }
.service-row p { margin: 0; font-size: 0.97rem; }
@media (max-width: 900px) {
  .feature-grid, .feature-grid.flip { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- werkwijze ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.step { padding: 32px 28px 8px 0; position: relative; }
.step + .step { padding-left: 28px; border-left: 1px solid var(--line); }
.step .icon { width: 28px; height: 28px; color: var(--accent); margin-bottom: 16px; }
.step h3 { font-size: 1.06rem; }
.step p { font-size: 0.93rem; margin: 0; color: var(--ink-3); }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; border-top: 0; column-gap: 20px; }
  .step, .step + .step { border-left: 0; border-top: 1px solid var(--line); padding: 20px 0 6px; }
  .step .icon { width: 24px; height: 24px; margin-bottom: 10px; }
  .step h3 { font-size: 1rem; }
  .step p { font-size: 0.87rem; }
}

/* ---------- statband ---------- */
.statband { background: var(--green-900); color: var(--on-brand); }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .statband { background: var(--green-950); }
}
html[data-theme="dark"] .statband { background: var(--green-950); }
.statband-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  padding-block: 72px;
}
.stat b {
  display: block; font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: #fff; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat span { color: var(--green-300); font-size: 1rem; }
@media (max-width: 700px) {
  .statband-grid { gap: 14px; padding-block: 40px; }
  .stat { text-align: center; }
  .stat b { font-size: 1.9rem; margin-bottom: 6px; }
  .stat span { font-size: 0.78rem; display: block; line-height: 1.35; }
}

/* ---------- cta blok ---------- */
.cta-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.cta-block h2 { margin-bottom: 10px; }
.cta-block p { margin: 0; }
.cta-block-actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 800px) {
  .cta-block { grid-template-columns: 1fr; }
  .cta-block-actions { justify-content: flex-start; }
}

/* ---------- page hero (subpaginas) ---------- */
.page-hero {
  padding: 72px 0 40px;
  background: linear-gradient(var(--surface-2), var(--bg));
}
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 56ch; }
@media (max-width: 700px) { .page-hero { padding: 40px 0 24px; } }

/* ---------- waarden (over ons) ---------- */
.values-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px;
}
.values-col { display: grid; gap: 24px; }
.value-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 34px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) {
  .value-card, .value-card:hover { transform: none; }
}
.value-card.value-hero {
  position: relative; overflow: hidden;
  background: var(--green-900); border-color: var(--green-900); color: var(--on-brand);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 340px;
}
.value-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.value-card.value-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13, 34, 26, 0.1) 10%, rgba(11, 28, 21, 0.97) 52%);
}
.value-hero-body { position: relative; z-index: 2; }
.value-card.value-hero h3 { color: #fff; font-size: 1.5rem; }
.value-card.value-hero p { color: var(--green-300); }
.value-card .icon { width: 28px; height: 28px; color: var(--brand); margin-bottom: 18px; }
.value-card.value-hero .icon { color: var(--amber-400); width: 34px; height: 34px; }
.value-card p { margin: 0; font-size: 0.97rem; }
@media (max-width: 800px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card.value-hero { min-height: 260px; }
}

/* ---------- verhaal media + badge ---------- */
.story-media { position: relative; }
.story-badge {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-btn); padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex; gap: 12px; align-items: center;
}
.story-badge b {
  font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--brand-strong); line-height: 1;
}
.story-badge span { font-size: 0.82rem; line-height: 1.3; color: var(--ink-2); }

/* ---------- missie band ---------- */
.mission { background: var(--green-900); }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .mission { background: var(--green-950); }
}
html[data-theme="dark"] .mission { background: var(--green-950); }
.mission blockquote {
  margin: 0; padding-block: 72px;
  text-align: center;
}
.mission blockquote p {
  margin: 0 auto 14px; max-width: 26ch;
  font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.3; color: #fff;
  text-wrap: balance;
}
.mission blockquote footer { color: var(--green-300); font-size: 0.95rem; }
@media (max-width: 700px) {
  .mission blockquote { padding-block: 52px; }
}

/* ---------- waarom kaarten ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 22px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) {
  .why-card, .why-card:hover { transform: none; }
}
.why-badge {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px;
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center;
}
.why-badge .icon { width: 20px; height: 20px; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .why-badge { background: #1c3a2b; color: var(--green-300); }
}
html[data-theme="dark"] .why-badge { background: #1c3a2b; color: var(--green-300); }
.why-card p { margin: 0; font-size: 0.95rem; color: var(--ink); font-weight: 500; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 14px 16px; align-items: center; }
}

/* ---------- checklist ---------- */
.checklist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px;
  padding: 0; margin: 0; list-style: none;
}
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.checklist .icon { width: 21px; height: 21px; color: var(--brand); margin-top: 4px; }
@media (max-width: 700px) { .checklist { grid-template-columns: 1fr; } }

/* ---------- diensten pagina ---------- */
.service-feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.service-feature .feature-media { border-radius: 0; height: 100%; }
.service-feature .feature-media img { height: 100%; aspect-ratio: auto; min-height: 340px; }
.service-feature-body { padding: clamp(32px, 4.5vw, 56px); }
.service-feature-body p:last-of-type { margin-bottom: 0; }
@media (max-width: 800px) {
  .service-feature { grid-template-columns: 1fr; }
  .service-feature .feature-media img { min-height: 240px; aspect-ratio: 16 / 9; }
}

.service-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 32px;
}
.service-card .icon { width: 27px; height: 27px; color: var(--brand); margin-bottom: 18px; }
.service-card p { margin: 0; font-size: 0.96rem; }
.service-card:nth-child(2) { background: var(--surface-2); }
@media (max-width: 800px) {
  .service-cards { grid-template-columns: 1fr; }
}

/* ---------- formulieren ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .field-full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--r-btn); padding: 13px 15px;
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-note {
  border-radius: var(--r-btn); padding: 14px 18px; margin-bottom: 22px;
  font-weight: 500;
}
.form-note.ok { background: var(--green-100); color: var(--green-900); }
.form-note.err { background: #f7e3e0; color: #8a2f22; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .form-note.ok { background: #1c3a2b; color: var(--green-300); }
  html:not([data-theme="light"]) .form-note.err { background: #3d211c; color: #e5a396; }
}
html[data-theme="dark"] .form-note.ok { background: #1c3a2b; color: var(--green-300); }
html[data-theme="dark"] .form-note.err { background: #3d211c; color: #e5a396; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 7fr 5fr; gap: 56px; align-items: start;
}
.contact-aside {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 36px;
}
.contact-line {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.contact-line:first-of-type { border-top: 0; padding-top: 0; }
.contact-line .icon { width: 22px; height: 22px; color: var(--brand); margin-top: 3px; }
.contact-line b { display: block; font-size: 0.88rem; color: var(--ink-3); font-weight: 600; }
.contact-line a, .contact-line span { font-size: 1.04rem; color: var(--ink); font-weight: 500; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--green-950); color: #b9c8be;
  margin-top: 96px;
}
.footer-main {
  display: flex; flex-direction: column; align-items: center;
  gap: 26px; padding-block: 46px 34px;
  text-align: center;
}
.site-footer .logo { color: #fff; }
.site-footer .logo-text b { color: #fff; }
.site-footer .logo-text small { color: var(--green-300); }
.site-footer .logo-monogram { color: var(--green-300); width: 56px; height: 56px; }
.site-footer .logo-monogram .check { stroke: var(--amber-400); }
.footer-nav { display: flex; gap: 14px 34px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: #b9c8be; font-size: 1rem; }
.footer-nav a:hover { color: #fff; text-decoration: none; }
.footer-reach { display: flex; gap: 12px 32px; flex-wrap: wrap; justify-content: center; }
.footer-reach a {
  color: #b9c8be; font-size: 1rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 9px;
}
.footer-reach a:hover { color: #fff; text-decoration: none; }
.footer-reach .icon { width: 18px; height: 18px; color: var(--green-500); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-block: 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
  font-size: 0.9rem; color: #7e948a;
}
.footer-legal { display: flex; gap: 8px 28px; flex-wrap: wrap; justify-content: center; }
.designer-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #7e948a; font-size: 0.9rem; text-decoration: none;
  transition: color 0.2s var(--ease);
}
.designer-link:hover { color: #fff; text-decoration: none; }
.mrtweb-logo-lg { height: 22px; width: auto; display: inline-block; }
@media (max-width: 700px) {
  .site-footer { margin-top: 64px; }
  .footer-main { padding-block: 38px 28px; gap: 20px; }
}

/* ---------- donker thema: fotos natuurlijk en helder ---------- */
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .hero-media::after { background: none; }
}
html[data-theme="dark"] .hero-media::after { background: none; }

/* ---------- mobiel: koppen centreren ---------- */
@media (max-width: 700px) {
  h1, h2 { text-align: center; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .page-hero .lead { margin-inline: auto; text-align: center; }
  .page-hero h1 { margin-inline: auto; }
  .eyebrow { display: block; text-align: center; }
  .step { text-align: center; }
  .cta-block { text-align: center; }
  .cta-block p { margin-inline: auto; }
  .cta-block-actions { justify-content: center; }
}

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.in { opacity: 1; transform: none; }

  .stagger > * {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .stagger.in > * { opacity: 1; transform: none; }
  .stagger > *:nth-child(2) { transition-delay: 0.08s; }
  .stagger > *:nth-child(3) { transition-delay: 0.16s; }
  .stagger > *:nth-child(4) { transition-delay: 0.24s; }
  .stagger > *:nth-child(5) { transition-delay: 0.32s; }
  .stagger > *:nth-child(6) { transition-delay: 0.4s; }
}
