/* ============================================================
   Van Klinken Grondverzet — styles
   Industrieel · Zeeuws · Licht futuristisch
   ============================================================ */

:root {
  --green:        #44974e;
  --green-bright: #58b864;
  --green-dark:   #2b6b33;
  --yellow:       #f3f0a0;
  --yellow-warm:  #e9e36b;

  --ink:          #0d1512;
  --ink-2:        #131d19;
  --steel:        #1c2824;
  --steel-2:      #27332e;
  --line:         rgba(255,255,255,0.08);
  --line-strong:  rgba(255,255,255,0.16);

  --paper:        #f5f3ea;
  --paper-2:      #ebe8db;
  --text:         #11181c;
  --text-mute:    #4d5a5a;
  --text-inv:     #e8efe8;
  --text-inv-m:   rgba(232,239,232,0.72);

  --radius:       4px;
  --radius-lg:    10px;

  --font-display: "Barlow Condensed", "Archivo Black", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --wrap:         1240px;
  --gap:          clamp(16px, 2.2vw, 28px);

  --ease:         cubic-bezier(.2,.8,.2,1);
}

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 3vw, 32px); }

/* ======== Accessibility ======== */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: #fff; padding: 10px 14px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ======== Header ======== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 21, 18, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: var(--text-inv);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { background: rgba(13, 21, 18, 0.94); border-bottom-color: var(--line-strong); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--text-inv);
}
.brand-mark { width: 120px; height: auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: .02em;
  font-size: 22px; text-transform: uppercase;
}
.brand-sub {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--green-bright); margin-top: 4px;
}

.main-nav { display: flex; gap: 22px; justify-content: center; }
.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-inv-m);
  position: relative;
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.main-nav a:hover { color: var(--text-inv); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px; background: var(--green-bright);
  transition: right .3s var(--ease);
}
.main-nav a:hover::after { right: 0; }

.header-cta { display: flex; gap: 10px; align-items: center; }
.btn-label-short { display: none; }
.btn-label-full  { display: inline; }

/* ======== Buttons ======== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; border: 1px solid transparent;
  padding: 10px 16px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; letter-spacing: .01em;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 16px 22px; font-size: 15px; }
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 0 rgba(88,184,100,0.4);
}
.btn-primary:hover { background: var(--green-bright); border-color: var(--green-bright); box-shadow: 0 10px 30px -12px rgba(88,184,100,.55); }
.btn-ghost {
  background: transparent; color: var(--text-inv);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08); color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); }
.btn-text {
  background: transparent; color: var(--green-dark);
  font-weight: 600; padding: 10px 4px; border: 0;
}
.btn-text:hover { color: var(--green); }
.btn-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(243, 240, 160, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(243, 240, 160, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(243, 240, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 240, 160, 0); }
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  color: var(--text-inv);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  filter: saturate(92%) contrast(108%) brightness(72%);
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.0); } }

.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,21,18,.55) 0%, rgba(13,21,18,.25) 35%, rgba(13,21,18,.75) 78%, rgba(13,21,18,.95) 100%),
    radial-gradient(1200px 800px at 15% 30%, rgba(68,151,78,0.22), transparent 60%),
    radial-gradient(900px 700px at 100% 100%, rgba(243,240,160,0.08), transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.9) 60%, rgba(0,0,0,.4) 100%);
}
.hero-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0,
    rgba(255,255,255,0) 3px,
    rgba(255,255,255,0.02) 3px,
    rgba(255,255,255,0.02) 4px
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex; flex-direction: column; gap: 26px;
  padding: clamp(90px, 14vh, 180px) 0 clamp(70px, 10vh, 120px);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-inv-m);
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  width: fit-content;
  background: rgba(0,0,0,0.2);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 10px 2px rgba(88,184,100,.6);
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  max-width: 18ch;
}
.display .line { display: block; }
.display .accent {
  color: var(--green-bright);
  text-shadow: 0 0 32px rgba(88,184,100,.35);
}

.lead {
  max-width: 58ch;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-inv-m);
  margin: 6px 0 4px;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px 14px;
  align-items: center;
  margin-top: 6px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 36px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
  max-width: 680px;
}
.hero-meta div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta dt {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--text-inv-m);
}
.hero-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .02em;
}

/* ======== Trust bar ======== */
.trust {
  background: var(--ink-2);
  color: var(--text-inv);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px clamp(18px, 2.4vw, 28px);
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: 0; }
.trust-num {
  font-family: var(--font-display); font-weight: 700;
  color: var(--green-bright);
  font-size: 14px; letter-spacing: .2em;
}
.trust-item p { margin: 0; font-size: 14px; color: var(--text-inv-m); }

/* ======== Sections (base) ======== */
.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.section-head {
  max-width: 780px;
  margin: 0 0 clamp(32px, 4vw, 56px);
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-tag::before {
  content: ""; width: 24px; height: 2px; background: var(--green);
}
.section-tag.light { color: var(--yellow); }
.section-tag.light::before { background: var(--yellow); }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-mute);
  max-width: 64ch;
  margin: 0;
}
.section-sub.light { color: var(--text-inv-m); }

/* ======== Diensten ======== */
.section-diensten {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative;
  overflow: hidden;
}
.section-diensten::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(13,21,18,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 60%);
  pointer-events: none;
}

.services-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 2px;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(13,21,18,0.08);
  border: 1px solid rgba(13,21,18,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc {
  background: var(--paper);
  padding: 28px 26px 30px;
  position: relative;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.svc::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 0; height: 2px; background: var(--green);
  transition: width .35s var(--ease);
}
.svc:hover { background: #fff; transform: translateY(-2px); }
.svc:hover::before { width: 100%; }

.svc-ix {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: .22em;
  color: var(--green);
  margin-bottom: 14px;
}
.svc h3 {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase;
  font-size: 22px; letter-spacing: .01em;
  line-height: 1.05;
  margin: 0 0 10px;
}
.svc p { margin: 0; font-size: 14.5px; color: var(--text-mute); }

/* ======== Rooien (highlight) ======== */
.rooien {
  background: var(--ink);
  color: var(--text-inv);
  position: relative; overflow: hidden;
}
.rooien::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 10% 0%, rgba(68,151,78,0.25), transparent 60%),
    radial-gradient(700px 500px at 100% 100%, rgba(243,240,160,0.07), transparent 60%);
  pointer-events: none;
}
.rooien::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.rooien-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  position: relative;
}
.rooien-copy { max-width: 58ch; }
.rooien-list {
  list-style: none; padding: 0; margin: 22px 0 28px;
  display: grid; gap: 10px;
}
.rooien-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-inv-m);
  padding-left: 0;
}
.rooien-list li::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--yellow);
  margin-top: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 100%);
  flex-shrink: 0;
}
.rooien-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.rooien-figure {
  position: relative; margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-2deg);
}
.rooien-figure img {
  width: 100%; height: 460px; object-fit: cover;
  filter: saturate(100%) contrast(105%);
}
.rooien-figure figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--yellow);
}

/* ======== Over Pieter ======== */
.section-pieter {
  background: var(--paper);
  position: relative;
}
.pieter-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.pieter-figure {
  position: relative; margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(13,21,18,.25);
}
.pieter-figure img {
  width: 100%; height: 560px; object-fit: cover;
  display: block;
}
.pieter-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--green);
  color: #fff;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 3px;
}
.pieter-copy p { color: var(--text); font-size: 16px; }
.pieter-points {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; gap: 12px;
}
.pieter-points li {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(13,21,18,0.06);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  font-size: 15px; color: var(--text-mute);
}
.pieter-points strong { color: var(--text); margin-right: 4px; }

/* ======== Werkwijze ======== */
.section-werkwijze {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  position: relative;
}
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  counter-reset: s;
}
.step {
  background: #fff;
  border: 1px solid rgba(13,21,18,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px 26px;
  position: relative;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 24px 40px -28px rgba(68,151,78,.4); }
.step-num {
  display: inline-block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 42px; line-height: 1;
  color: var(--green);
  letter-spacing: 0;
  margin-bottom: 16px;
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 26px; height: 2px; background: var(--yellow-warm);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 19px; text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 8px;
}
.step p { margin: 0; font-size: 14px; color: var(--text-mute); }

/* ======== Projecten galerij ======== */
.section-projecten {
  background: var(--ink);
  color: var(--text-inv);
  position: relative; overflow: hidden;
}
.section-projecten::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 80% 20%, rgba(68,151,78,0.18), transparent 60%);
  pointer-events: none;
}
.section-projecten .section-title { color: #fff; }
.section-projecten .section-sub { color: var(--text-inv-m); }
.section-projecten .section-tag { color: var(--yellow); }
.section-projecten .section-tag::before { background: var(--yellow); }

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.g-item {
  position: relative; margin: 0;
  grid-column: span 2;
  grid-row: span 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: #000;
}
.g-item.g-tall { grid-column: span 2; grid-row: span 2; }
.g-item.g-wide { grid-column: span 4; grid-row: span 1; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
  filter: saturate(95%) brightness(88%);
}
.g-item:hover img { transform: scale(1.05); filter: saturate(110%) brightness(100%); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
  color: var(--text-inv);
  transform: translateY(40%);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.g-item figcaption span {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
}
.g-item:hover figcaption, .g-item:focus-within figcaption {
  transform: translateY(0); opacity: 1;
}

/* ======== FAQ ======== */
.section-faq { background: var(--paper); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq {
  display: grid; gap: 10px;
  border-top: 1px solid rgba(13,21,18,0.1);
}
.faq details {
  border-bottom: 1px solid rgba(13,21,18,0.1);
  padding: 6px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .01em;
  position: relative;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 28px; font-weight: 300;
  color: var(--green);
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq details[open] summary { color: var(--green-dark); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p {
  margin: 0 0 18px; padding: 0 4px;
  color: var(--text-mute);
  font-size: 15px; max-width: 72ch;
}

/* ======== Contact ======== */
.section-contact {
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--text-inv);
  position: relative; overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(68,151,78,0.22), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(243,240,160,0.08), transparent 60%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  position: relative;
}

.contact-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 10px; }
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--text-inv);
  text-decoration: none;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-row:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--green);
  transform: translateY(-2px);
}
.contact-row.primary {
  background: var(--green);
  border-color: var(--green);
}
.contact-row.primary:hover { background: var(--green-bright); border-color: var(--green-bright); }
.contact-label {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-inv-m);
}
.contact-row.primary .contact-label { color: rgba(255,255,255,.7); }
.contact-value {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  text-transform: uppercase; letter-spacing: .01em;
}
.contact-arrow { font-size: 22px; color: var(--yellow); transition: transform .2s var(--ease); }
.contact-row:hover .contact-arrow { transform: translateX(4px); }
.contact-row.primary .contact-arrow { color: #fff; }

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.contact-card h3 {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 6px;
  font-weight: 600;
}
.contact-card h3 + p { margin: 0 0 20px; font-size: 16px; color: var(--text-inv); }
.contact-card h3:last-of-type + p { margin-bottom: 0; }

/* ======== Footer ======== */
.site-footer {
  background: #070d0a;
  color: var(--text-inv-m);
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.footer-brand p { margin: 0; font-size: 14px; line-height: 1.6; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 14px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-cols a { text-decoration: none; color: var(--text-inv-m); font-size: 14px; transition: color .2s var(--ease); }
.footer-cols a:hover { color: var(--text-inv); }

.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-inv-m);
  letter-spacing: .06em;
}

/* ======== Mobile sticky CTA ======== */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(13,21,18,0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-strong);
}
.m-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .06em;
}
.m-primary { background: var(--green); color: #fff; }
.m-ghost   { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid var(--line-strong); }

/* ======== Scroll reveals ======== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ======== Responsive ======== */
@media (max-width: 1240px) {
  .header-inner,
  .hero-inner,
  .contact-inner {
    padding-left: calc(20px + env(safe-area-inset-left));
    padding-right: calc(20px + env(safe-area-inset-right));
  }
}

@media (max-width: 1160px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .g-item { grid-column: span 2; }
  .g-item.g-tall { grid-row: span 2; }
  .g-item.g-wide { grid-column: span 4; }

  .main-nav { gap: 16px; }
  .main-nav a { font-size: 13px; }
  .brand-sub { display: none; }
  .header-cta .btn-ghost { display: none; }
  .header-inner { gap: 18px; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; height: 64px; gap: 12px; }
  html { scroll-padding-top: 74px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 18px; white-space: nowrap; }
  .brand-mark { width: 96px; }

  .header-cta .btn-primary { padding: 10px 14px; font-size: 13px; }
  .btn-label-full  { display: none; }
  .btn-label-short { display: inline; }

  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child, .trust-item:nth-child(2) { border-top: 0; }

  .rooien-inner { grid-template-columns: 1fr; }
  .rooien-figure { transform: none; }
  .rooien-figure img { height: 340px; }

  .pieter-inner { grid-template-columns: 1fr; }
  .pieter-figure img { height: 420px; }

  .steps { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item, .g-item.g-tall, .g-item.g-wide { grid-column: span 2; grid-row: span 1; }
  .g-item.g-tall { grid-row: span 2; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 100px 1fr auto; padding: 16px 18px; }
  .contact-value { font-size: 18px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }

  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
  .site-header { top: 0; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 18px 30px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* ======== Reduced motion ======== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg img { transform: none; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
  border-radius: 3px;
}
