/* ==========================================================================
   KLUSSR. - Stylesheet
   Merk: groen #209D50 (accent), off-black tekst, off-white achtergrond.
   Vormregel: knoppen en velden 12px, kaarten en foto's 20px.
   ========================================================================== */

:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --ink: #141613;
  --ink-2: #3a3d39;
  --muted: #64685f;
  --line: #e1e3dc;
  --green: #209d50;
  --green-dark: #17803f;
  --green-deep: #0f2e1c;
  --green-tint: #e7f4ec;
  --green-tint-2: #cfe9d9;

  --font-display: "Outfit", "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 12px;
  --r-lg: 20px;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --shadow-soft: 0 10px 30px rgba(20, 40, 28, 0.08);
  --shadow-card: 0 18px 50px rgba(20, 40, 28, 0.10);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 3.7rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.1em; }
p.lead { font-size: 1.2rem; color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--muted); }

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

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: var(--r-sm);
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }

.icon { width: 1.25em; height: 1.25em; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* --------------------------------------------------------------------------
   Knoppen
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700; line-height: 1;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn .icon { width: 1.15em; height: 1.15em; }

.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(32, 157, 80, 0.25); }
.btn-primary:hover { background: var(--green-dark); color: #fff; box-shadow: 0 10px 24px rgba(32, 157, 80, 0.32); }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }

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

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--green-tint); color: var(--ink); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); color: #fff; }

.btn-lg { padding: 1.05rem 1.7rem; font-size: 1.05rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--green-dark); }
.link-arrow .icon { transition: transform 0.25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 247, 244, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px rgba(20, 40, 28, 0.06); }

.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }

.brand { display: inline-flex; align-items: center; }
.brand img { height: 26px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav a {
  padding: 0.5rem 0.85rem; border-radius: 8px;
  font-weight: 600; font-size: 0.98rem; color: var(--ink-2);
  transition: background-color 0.2s, color 0.2s;
}
.nav a:hover { background: var(--green-tint); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); background: rgba(20, 22, 19, 0.06); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; color: var(--ink); padding: 0.5rem 0.4rem; }
.header-phone .icon { color: var(--green); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--surface); color: var(--ink); cursor: pointer;
}
.nav-toggle .icon { width: 1.4rem; height: 1.4rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 960px) {
  .header-inner { height: 68px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-actions .btn { display: none; }
  .header-phone { display: none; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    margin: 0; padding: 0.75rem var(--gutter) 1.25rem;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(20, 40, 28, 0.10);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0.9rem; font-size: 1.05rem; }
  .nav .nav-cta { margin-top: 0.5rem; }
}
.nav .nav-cta { display: none; }
@media (max-width: 960px) { .nav .nav-cta { display: inline-flex; } }

/* --------------------------------------------------------------------------
   Secties
   -------------------------------------------------------------------------- */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section-white { background: var(--surface); }

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

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head p { font-size: 1.15rem; color: var(--ink-2); margin: 0; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--green); }
.hero .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; inset: 8% -6% -8% 10%;
  background: var(--green-tint); border-radius: var(--r-lg); z-index: 0;
}
.hero-media .photo { position: relative; z-index: 1; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4 / 5; }
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; }
  .hero-media .photo { aspect-ratio: 4 / 3; }
}

/* --------------------------------------------------------------------------
   USP strook
   -------------------------------------------------------------------------- */
.usp-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp { padding: 1.9rem 1.5rem 1.9rem 0; display: grid; gap: 0.5rem; }
.usp + .usp { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.usp .icon { width: 1.6rem; height: 1.6rem; color: var(--green); margin-bottom: 0.35rem; }
.usp h3 { font-size: 1.1rem; margin: 0; }
.usp p { margin: 0; color: var(--muted); font-size: 0.98rem; }

@media (max-width: 960px) {
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp { padding: 1.5rem 1.25rem 1.5rem 0; }
  .usp + .usp { padding-left: 1.25rem; }
  .usp:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .usp:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .usp-grid { grid-template-columns: 1fr; }
  .usp, .usp + .usp { padding: 1.25rem 0; border-left: 0; border-top: 1px solid var(--line); }
  .usp:first-child { border-top: 0; }
}

/* --------------------------------------------------------------------------
   Diensten (bento)
   -------------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(200px, auto); gap: 1.1rem; }
.tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  padding: 1.75rem; display: flex; flex-direction: column; justify-content: flex-end; gap: 0.35rem;
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.tile h3 { margin: 0; font-size: 1.5rem; }
.tile p { margin: 0; color: var(--muted); max-width: 40ch; }
.tile .icon { width: 2rem; height: 2rem; margin-bottom: auto; color: var(--green); }
.tile .link-arrow { margin-top: 0.75rem; }

.tile-renovatie { grid-column: span 7; grid-row: span 2; min-height: 460px; border: 0; color: #fff; }
.tile-renovatie img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.tile-renovatie::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 14, 0.85) 0%, rgba(10, 20, 14, 0.35) 45%, rgba(10, 20, 14, 0) 70%);
}
.tile-renovatie > * { position: relative; z-index: 1; }
.tile-renovatie p { color: rgba(255, 255, 255, 0.85); }
.tile-renovatie .icon { color: #fff; }
.tile-renovatie .link-arrow { color: #fff; }

.tile-isolatie { grid-column: span 5; background: var(--green-tint); border-color: var(--green-tint-2); }
.tile-schilder { grid-column: span 5; background: var(--green-deep); color: #fff; border: 0; }
.tile-schilder p { color: rgba(255, 255, 255, 0.78); }
.tile-schilder .icon { color: #7fd6a0; }
.tile-schilder .link-arrow { color: #7fd6a0; }

.tile-klein { grid-column: span 12; flex-direction: row; align-items: center; gap: 2rem; padding: 1.75rem 2rem; min-height: 0; }
.tile-klein .tile-text { flex: 1 1 300px; }
.tile-klein .icon { margin-bottom: 0; }
.tile-klein ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; flex: 1 1 380px; }
.tile-klein li { padding: 0.45rem 0.85rem; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); font-size: 0.95rem; font-weight: 600; }

@media (max-width: 860px) {
  .bento { grid-auto-rows: auto; }
  .tile-renovatie, .tile-isolatie, .tile-schilder, .tile-klein { grid-column: span 12; grid-row: auto; }
  .tile-renovatie { min-height: 360px; }
  .tile-isolatie, .tile-schilder { min-height: 220px; }
  .tile-klein { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

/* --------------------------------------------------------------------------
   Over / vakmanschap
   -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.about-grid h2 { margin-bottom: 1rem; }
.about-grid .lead { margin-bottom: 1.5rem; }
.pull {
  margin-top: 2rem; padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--green); background: var(--surface); border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em;
}
.about-copy p { color: var(--ink-2); }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.7rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.check-list .icon { color: var(--green); width: 1.4rem; height: 1.4rem; margin-top: 0.1rem; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Werkwijze
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.75rem 2rem; background: var(--surface); border-radius: var(--r-lg); border: 1px solid var(--line); }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; color: var(--green); letter-spacing: -0.04em; margin-bottom: 1.25rem; }
.step h3 { margin-bottom: 0.5rem; }
.step p { margin: 0; color: var(--muted); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Projecten
   -------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-item { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); aspect-ratio: 4 / 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.is-wide { aspect-ratio: 4 / 3; }
.gallery-caption { padding: 0.9rem 0 0; }
.gallery-caption strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.gallery-caption span { color: var(--muted); font-size: 0.95rem; }

.placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  height: 100%; color: var(--muted); text-align: center; padding: 1.5rem;
  background:
    repeating-linear-gradient(135deg, rgba(20, 40, 28, 0.035) 0 10px, transparent 10px 24px),
    var(--bg);
}
.placeholder .icon { width: 2.2rem; height: 2.2rem; color: var(--green); stroke-width: 1.5; }
.placeholder strong { font-family: var(--font-display); color: var(--ink-2); }
.placeholder span { font-size: 0.9rem; }

.gallery-home { grid-template-columns: 1.1fr 1fr 0.9fr; align-items: start; }
.gallery-home .gallery-item:nth-child(2) { margin-top: 2.5rem; }
.gallery-home .gallery-item:nth-child(3) { margin-top: 5rem; }
@media (max-width: 860px) {
  .gallery, .gallery-home { grid-template-columns: 1fr 1fr; }
  .gallery-home .gallery-item:nth-child(n) { margin-top: 0; }
}
@media (max-width: 560px) { .gallery, .gallery-home { grid-template-columns: 1fr; } }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--ink-2); cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery-item[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Regio
   -------------------------------------------------------------------------- */
.region-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 2.5rem; }
.region-strip h2 { font-size: 1.5rem; margin: 0; }
.region-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-left: auto; }
.region-links a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.7rem 1.1rem; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--line);
  font-weight: 700; transition: border-color 0.2s, transform 0.2s var(--ease);
}
.region-links a:hover { border-color: var(--green); transform: translateY(-2px); color: var(--ink); }
.region-links .icon { color: var(--green); }
@media (max-width: 860px) { .region-links { margin-left: 0; } }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--green-deep); color: #fff; }
.cta-band .container { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 2.5rem; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255, 255, 255, 0.78); font-size: 1.15rem; margin: 0; max-width: 50ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: flex-end; }
@media (max-width: 860px) {
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; font-size: 0.98rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand img { height: 24px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); max-width: 32ch; }
.site-footer h4 { margin-bottom: 0.9rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer li a { color: var(--ink-2); }
.site-footer li a:hover { color: var(--green-dark); }
.contact-list li { display: flex; align-items: center; gap: 0.6rem; }
.contact-list .icon { color: var(--green); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: 0.92rem;
}
.social { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; color: var(--ink); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Pagina-hero (subpagina's)
   -------------------------------------------------------------------------- */
.page-hero { padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 18ch; }
.page-hero .lead { max-width: 58ch; }
.page-hero .hero-actions { margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.95rem; }
.field .hint { color: var(--muted); font-size: 0.88rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--r-sm);
  border: 1px solid #c9ccc4; background: #fff; color: var(--ink);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #8a8e85; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(32, 157, 80, 0.18); }
.field textarea { min-height: 150px; resize: vertical; }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.form-footer .hint { color: var(--muted); font-size: 0.9rem; }

.contact-aside { display: grid; gap: 1.5rem; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.75rem; }
.contact-card h3 { margin-bottom: 1rem; }
.contact-card .contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.8rem; }
.contact-card .contact-list a { font-weight: 700; }
.contact-card.whatsapp { background: var(--green-tint); border-color: var(--green-tint-2); }
.contact-card.whatsapp p { color: var(--ink-2); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Regio-pagina's en over-pagina
   -------------------------------------------------------------------------- */
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.two-col .photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); }
.two-col .photo img { width: 100%; height: 100%; object-fit: cover; }
.two-col.reverse .photo { order: -1; }
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col .photo, .two-col.reverse .photo { order: 0; aspect-ratio: 4 / 3; max-width: 560px; }
}

.service-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.service-list li { display: flex; gap: 0.75rem; align-items: center; padding: 1rem 1.15rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); font-weight: 600; }
.service-list .icon { color: var(--green); }
@media (max-width: 560px) { .service-list { grid-template-columns: 1fr; } }

.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.reason { padding: 1.6rem; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.reason .icon { width: 1.75rem; height: 1.75rem; color: var(--green); margin-bottom: 0.75rem; }
.reason h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.reason p { margin: 0; color: var(--muted); }
@media (max-width: 700px) { .reasons { grid-template-columns: 1fr; } }

.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; align-items: end; }
.photo-duo .photo { border-radius: var(--r-lg); overflow: hidden; }
.photo-duo .photo:first-child { aspect-ratio: 4 / 5; }
.photo-duo .photo:last-child { aspect-ratio: 4 / 5; margin-bottom: 3rem; }
.photo-duo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .photo-duo .photo:last-child { margin-bottom: 0; } }

/* --------------------------------------------------------------------------
   Bedankt-pagina
   -------------------------------------------------------------------------- */
.center-block { text-align: center; max-width: 40rem; margin-inline: auto; padding-block: clamp(4rem, 10vw, 8rem); }
.center-block .icon-big { width: 4rem; height: 4rem; color: var(--green); margin: 0 auto 1.5rem; stroke-width: 1.5; }
.center-block .hero-actions { justify-content: center; margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   Reveal-on-scroll (gedegradeerd bij reduced motion)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.08s; }
  .reveal-delay-2 { transition-delay: 0.16s; }
  .reveal-delay-3 { transition-delay: 0.24s; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   Helpers
   -------------------------------------------------------------------------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.mt-2 { margin-top: 2rem; }
