/* ============================================================
   Jonker Klus & Techniek — Website styles
   Production recreation of the Claude Design bundle.
   Design tokens are copied verbatim from the design system
   (tokens/colors, typography, spacing, elevation).
   ============================================================ */

/* Fonts worden zelf gehost (geen externe Google-request -> sneller renderen +
   AVG-vriendelijk). Variabele woff2's, latin-subset. De hero-font wordt apart
   ge-preload in de <head>. */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/archivo.woff2") format("woff2");
}
@font-face {
  font-family: "Spline Sans Mono";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/spline-sans-mono.woff2") format("woff2");
}

/* ---------- Color tokens ---------- */
:root {
  --teal-50:  #e6f2f1;
  --teal-100: #c4e0de;
  --teal-200: #8fc3c0;
  --teal-300: #54a09c;
  --teal-400: #1f7d78;
  --teal-500: #086661;
  --teal-600: #03534f;
  --teal-700: #005050;
  --teal-800: #013a39;
  --teal-900: #02292a;

  --ink-700: #2a2a2a;
  --ink-800: #1c1c1c;
  --ink-900: #111111;

  --orange-50:  #fdf3ea;
  --orange-100: #f9e0c9;
  --orange-200: #f1bd8c;
  --orange-300: #e89a54;
  --orange-400: #de7f2c;
  --orange-500: #c8690f;
  --orange-600: #a4540b;
  --orange-700: #7e400c;
  --orange-800: #5c2f10;

  --stone-0:   #ffffff;
  --stone-50:  #f6f6f4;
  --stone-100: #eeedea;
  --stone-100b:#edece8;
  --stone-200: #e0ded7;
  --stone-300: #cac6bd;
  --stone-400: #a7a097;
  --stone-500: #837c73;
  --stone-600: #635d56;
  --stone-700: #494540;
  --stone-800: #2d2b27;
  --stone-900: #1a1815;

  --green-600: #2e7d52;
  --green-100: #e6f2eb;
  --amber-600: #b5820a;
  --amber-100: #f9efd6;
  --red-600:   #c23b2e;
  --red-100:   #fae7e4;

  /* Semantic aliases */
  --brand-primary:        var(--teal-700);
  --brand-primary-hover:  var(--teal-800);
  --brand-primary-active: var(--teal-900);
  --brand-accent:         var(--orange-400);
  --brand-accent-hover:   var(--orange-500);
  --brand-accent-active:  var(--orange-600);
  --brand-ink:            var(--ink-800);

  --surface-page:    var(--stone-50);
  --surface-card:    var(--stone-0);
  --surface-sunken:  var(--stone-100);
  --surface-inverse: var(--teal-900);
  --surface-accent-soft: var(--orange-50);
  --surface-brand-soft:  var(--teal-50);

  --text-strong:    var(--ink-900);
  --text-body:      var(--stone-700);
  --text-muted:     var(--stone-500);
  --text-subtle:    var(--stone-400);
  --text-on-brand:  var(--stone-0);
  --text-on-accent: var(--ink-900);
  --text-link:      var(--teal-600);

  --border-subtle:  var(--stone-200);
  --border-default: var(--stone-300);
  --border-strong:  var(--stone-400);
  --border-brand:   var(--teal-700);

  --focus-ring: var(--orange-400);

  --success-fg: var(--green-600);
  --success-bg: var(--green-100);
  --warning-fg: var(--amber-600);
  --warning-bg: var(--amber-100);
  --danger-fg:  var(--red-600);
  --danger-bg:  var(--red-100);
  --info-fg:    var(--teal-600);
  --info-bg:    var(--teal-50);

  /* ---------- Typography tokens ---------- */
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Archivo", system-ui, -apple-system, sans-serif;
  --font-mono:    "Spline Sans Mono", ui-monospace, "SFMono-Regular", monospace;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    800;

  --fs-display:  clamp(3rem, 6vw, 5.25rem);
  --fs-h1:       clamp(2.25rem, 4vw, 3.5rem);
  --fs-h2:       clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3:       1.5rem;
  --fs-h4:       1.25rem;

  --fs-lead:     1.25rem;
  --fs-body:     1rem;
  --fs-body-sm:  0.875rem;
  --fs-caption:  0.75rem;
  --fs-label:    0.8125rem;

  --lh-tight:   1.05;
  --lh-snug:    1.2;
  --lh-normal:  1.5;
  --lh-relaxed: 1.65;

  --ls-tight:   -0.02em;
  --ls-normal:  0;
  --ls-label:   0.08em;
  --ls-wide:    0.16em;

  /* ---------- Spacing & layout ---------- */
  --space-0:   0;
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   24px;
  --space-6:   32px;
  --space-7:   48px;
  --space-8:   64px;
  --space-9:   96px;
  --space-10:  128px;

  --container-max: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(56px, 9vw, 128px);

  /* ---------- Elevation, radius, motion ---------- */
  --radius-xs:  4px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 999px;

  --border-hair: 1px;
  --border-thick: 2px;

  --shadow-xs: 0 1px 2px rgba(26, 24, 21, 0.06);
  --shadow-sm: 0 1px 3px rgba(26, 24, 21, 0.08), 0 1px 2px rgba(26, 24, 21, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 24, 21, 0.10), 0 2px 4px rgba(26, 24, 21, 0.05);
  --shadow-lg: 0 12px 28px rgba(26, 24, 21, 0.14), 0 4px 8px rgba(26, 24, 21, 0.06);
  --shadow-brand: 0 10px 24px rgba(16, 44, 58, 0.22);

  --ring: 0 0 0 3px rgba(240, 124, 43, 0.45);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
}

/* ============================================================
   Base / reset
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-page);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--bordered { border-top: 1px solid var(--border-subtle); }

/* ============================================================
   Eyebrow / section label
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--brand-accent-hover);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand-accent);
  display: inline-block;
}
.eyebrow--light { color: var(--orange-300); }

/* ============================================================
   Headings
   ============================================================ */
.h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.lead {
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--text-body);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  border: var(--border-thick) solid transparent;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.btn:active { transform: translateY(1px); }

.btn--sm { padding: 8px 14px; font-size: 0.8125rem; gap: 6px; min-height: 36px; }
.btn--md { padding: 12px 20px; font-size: 0.9375rem; gap: 8px; min-height: 44px; }
.btn--lg { padding: 16px 28px; font-size: 1.0625rem; gap: 10px; min-height: 54px; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: var(--brand-primary);
  color: var(--text-on-brand);
  border-color: var(--brand-primary);
}
.btn--primary:hover { background: var(--brand-primary-hover); border-color: var(--brand-primary-hover); }
.btn--primary:focus-visible { box-shadow: 0 0 0 3px rgba(222, 127, 44, .5); }

.btn--accent {
  background: var(--brand-accent);
  color: var(--text-on-accent);
  border-color: var(--brand-accent);
}
.btn--accent:hover { background: var(--brand-accent-hover); border-color: var(--brand-accent-hover); }
.btn--accent:focus-visible { box-shadow: 0 0 0 3px rgba(0, 80, 80, .45); }

.btn--secondary {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--border-default);
}
.btn--secondary:hover { border-color: var(--brand-primary); background: var(--surface-brand-soft); }
.btn--secondary:focus-visible { box-shadow: 0 0 0 3px rgba(222, 127, 44, .5); }

.btn--ghost {
  background: transparent;
  color: var(--brand-primary);
  border-color: transparent;
}
.btn--ghost:hover { background: var(--surface-sunken); }

.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn:disabled:active { transform: none; }

.btn svg { flex-shrink: 0; }

/* Icon button (mobile menu toggle) */
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  color: var(--brand-primary);
  border: var(--border-hair) solid var(--border-default);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.icon-btn:hover { background: var(--surface-sunken); border-color: var(--border-strong); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand img { height: 42px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name .b1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--brand-ink);
}
.brand-name .b2 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-primary);
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
}
.nav a:hover { color: var(--text-strong); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta a { text-decoration: none; }
.menu-toggle { margin-left: auto; display: none; }

.mobile-drawer {
  border-top: 1px solid var(--border-subtle);
  padding: 12px var(--gutter) 20px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-strong);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-drawer .btn { margin-top: 12px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { background: var(--surface-page); }
.hero-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: var(--space-5); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 5.2vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  text-wrap: balance; /* nettere regelverdeling, minder losse woorden */
}
.hero h1 .accent { color: var(--brand-primary); }
.hero p { max-width: 46ch; font-size: var(--fs-lead); line-height: 1.6; color: var(--text-body); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-ctas a { text-decoration: none; }
.usps { display: flex; gap: 20px; flex-wrap: wrap; margin-top: var(--space-2); }
.usp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}
.usp .ic { color: var(--brand-accent-hover); display: inline-flex; }
.hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--surface-card); }
.section-head { display: flex; flex-direction: column; gap: var(--space-3); }
.services .section-head { max-width: 620px; margin-bottom: var(--space-7); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-decoration: none;
  background: var(--surface-card);
  border: var(--border-hair) solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--surface-brand-soft);
  color: var(--brand-primary);
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.service-card:hover .service-icon { background: var(--brand-primary); color: var(--text-on-brand); }
.service-body { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.service-body h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
  color: var(--text-strong);
  letter-spacing: var(--ls-tight);
}
.service-body p { font-size: 0.9375rem; line-height: var(--lh-relaxed); color: var(--text-body); }
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--brand-accent-hover);
}
.service-more svg { transition: transform var(--dur-base) var(--ease-out); }
.service-card:hover .service-more svg { transform: translateX(4px); }

/* ============================================================
   Projects
   ============================================================ */
.projects { background: var(--surface-page); }
.projects .section-head { margin-bottom: var(--space-6); }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: var(--space-6); }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--text-body);
  background: var(--surface-card);
  border: var(--border-hair) solid var(--border-default);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.tag:hover { background: var(--surface-sunken); }
.tag.is-selected {
  color: var(--text-on-brand);
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
  align-items: start; /* kaarten op eigen hoogte (hele foto), geen uitrek-gat */
}
.project {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  /* reset zodat <button>-kaarten geen native chrome tonen */
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.project-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
/* hele foto tonen op de kaart (natuurlijke verhouding, geen uitsnede) */
.project-media img { width: 100%; height: auto; display: block; }
.project h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-strong);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}
.badge--brand { color: var(--text-on-brand); background: var(--brand-primary); }
.badge--neutral { color: var(--text-on-brand); background: var(--stone-700); }
.project-badge { position: absolute; top: 12px; left: 12px; }
.beforeafter {
  position: absolute;
  bottom: 12px; right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  background: rgba(26, 24, 21, .72);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.is-hidden { display: none !important; }

/* ============================================================
   Over Nick / Werkgebied (dark teal band)
   ============================================================ */
.over { background: var(--teal-800); color: var(--stone-0); }
.over-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
}
.over-photo-wrap { position: relative; }
.over-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-lg);
}
.over-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.over-badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--surface-card);
  color: var(--text-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.over-badge .name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.over-badge .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--text-muted); }
.over-content { display: flex; flex-direction: column; gap: var(--space-5); }
.over-content h2 { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h2); letter-spacing: -0.02em; color: #fff; }
.over-content p { max-width: 52ch; font-size: var(--fs-lead); line-height: 1.65; color: rgba(255, 255, 255, .82); }
.over-points { display: flex; flex-direction: column; gap: 10px; }
.over-points li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: rgba(255, 255, 255, .92); }
.over-points .tick {
  width: 26px; height: 26px;
  border-radius: var(--radius-pill);
  background: var(--brand-accent);
  color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.werkgebied {
  margin-top: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.werkgebied-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .75);
  font-size: 0.875rem; font-weight: 600;
}
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}

/* Avatar */
.avatar {
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--brand-primary);
  color: var(--text-on-brand);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  border: var(--border-thick) solid var(--surface-card);
  box-shadow: var(--shadow-sm);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--surface-card); }
.reviews .section-head { margin-bottom: var(--space-6); }
.reviews-title { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.rating {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: .04em;
}
.stars { display: inline-flex; }
.star { color: var(--brand-accent); fill: var(--brand-accent); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}
.card {
  background: var(--surface-card);
  border: var(--border-hair) solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  overflow: hidden;
}
.review-card { display: flex; flex-direction: column; gap: var(--space-4); }
.review-card p { flex: 1; font-size: 1.0625rem; line-height: 1.6; color: var(--text-body); }
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-subtle);
}
.review-author .name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text-strong); }
.review-author .place { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--text-muted); }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--surface-page); }
.contact-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
}
.contact-left { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-left h2 { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h2); letter-spacing: -0.02em; color: var(--text-strong); }
.contact-left > p { max-width: 42ch; font-size: var(--fs-lead); line-height: 1.6; color: var(--text-body); }
.contact-items { display: flex; flex-direction: column; gap: 12px; margin-top: var(--space-2); }
.contact-item { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.contact-item .ic {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--surface-brand-soft);
  color: var(--brand-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.contact-item .val { font-family: var(--font-body); font-weight: 600; color: var(--text-strong); }
.hours-card { margin-top: var(--space-2); padding: var(--space-4) var(--space-5); }
.hours-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  color: var(--text-strong); font-weight: 700; font-family: var(--font-display);
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9375rem;
}
.hours-row .t { font-family: var(--font-mono); color: var(--text-strong); font-weight: 500; }
.contact-cta {
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--surface-brand-soft);
  border: 1px solid var(--border-subtle);
}
.contact-cta .cta-ic {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--brand-primary);
  color: var(--text-on-brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-cta h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.02em; color: var(--text-strong); }
.contact-cta p { font-size: var(--fs-lead); line-height: 1.6; color: var(--text-body); }
.contact-cta a { text-decoration: none; width: 100%; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--teal-900); color: rgba(255, 255, 255, .78); }
.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-8) var(--gutter) var(--space-6);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-7);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { height: 58px; width: auto; align-self: flex-start; }
.footer-brand p { max-width: 32ch; font-size: 0.9375rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 0.9375rem; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.9375rem; }
.footer-contact a, .footer-contact span { color: inherit; text-decoration: none; display: flex; gap: 10px; align-items: center; }
.footer-contact a:hover { color: #fff; }
.footer-contact .addr { align-items: flex-start; }
.footer-contact .addr svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, .55);
}
.footer-bottom-inner .kvk { font-family: var(--font-mono); letter-spacing: .05em; }

/* ============================================================
   Offerte modal + wizard
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26, 24, 21, .55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: clamp(16px, 4vw, 48px) 16px;
}
.modal-overlay.is-hidden { display: none; }
.modal-shell { position: relative; width: 100%; max-width: 880px; margin: auto; }
.modal-close {
  position: absolute;
  top: -34px; right: 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
}

.wizard { padding: var(--space-6); }
.stepper { display: flex; align-items: center; gap: 8px; margin-bottom: var(--space-6); }
.step { display: flex; align-items: center; gap: 10px; }
.step-num {
  width: 30px; height: 30px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  background: var(--surface-sunken);
  color: var(--text-muted);
  border: 1px solid var(--border-default);
}
.step-label { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }
.step.is-active .step-num { background: var(--brand-accent); color: var(--ink-900); border: none; }
.step.is-active .step-label { color: var(--text-strong); }
.step.is-done .step-num { background: var(--brand-primary); color: #fff; border: none; }
.step.is-done .step-label { color: var(--text-strong); }
.step-line { flex: 1; height: 2px; background: var(--border-default); min-width: 16px; }
.step-line.is-done { background: var(--brand-primary); }

.wizard-step { display: none; }
.wizard-step.is-active { display: block; }
.wizard-step h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--text-strong); margin-bottom: 6px; }
.wizard-step .sub { color: var(--text-muted); margin-bottom: var(--space-5); }

.dienst-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.dienst-opt {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start; text-align: left;
  padding: 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--surface-card);
  border: 2px solid var(--border-default);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.dienst-opt .ic { color: var(--text-muted); }
.dienst-opt .t { font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; color: var(--text-strong); }
.dienst-opt.is-on { background: var(--surface-brand-soft); border-color: var(--brand-primary); }
.dienst-opt.is-on .ic { color: var(--brand-primary); }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-body); font-size: 0.875rem; font-weight: var(--fw-semibold); color: var(--text-strong); }
.field label .req { color: var(--danger-fg); }
.field .hint { font-family: var(--font-body); font-size: 0.8125rem; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-strong);
  background: var(--surface-card);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: var(--border-hair) solid var(--border-default);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { line-height: var(--lh-normal); resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-primary); box-shadow: var(--ring); }
.field-select { position: relative; display: flex; align-items: center; }
.field-select svg { position: absolute; right: 14px; pointer-events: none; }
.wizard-form { display: flex; flex-direction: column; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.photo-drop {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.photo-drop { cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast); }
.photo-drop .link { color: var(--text-link); font-weight: 600; }
.photo-drop.is-drag { border-color: var(--brand-primary); background: var(--surface-brand-soft); color: var(--brand-primary); }
.photo-previews { display: flex; flex-wrap: wrap; gap: 8px; }
.photo-previews:empty { display: none; }
.photo-thumb { position: relative; width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-subtle); }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-thumb button {
  position: absolute; top: 3px; right: 3px;
  width: 20px; height: 20px;
  border-radius: var(--radius-pill);
  border: none; background: rgba(26, 24, 21, .72); color: #fff;
  cursor: pointer; font-size: 15px; line-height: 1;
  display: flex; align-items: center; justify-content: center; padding: 0;
}

.wizard-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
}
.wizard-foot .reassure { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: var(--text-muted); }
.wizard-foot .actions { display: flex; gap: 10px; }

.wizard-success { padding: var(--space-8) var(--space-6); text-align: center; }
.wizard-success .inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.wizard-success .check {
  width: 72px; height: 72px;
  border-radius: var(--radius-pill);
  background: var(--success-bg);
  color: var(--success-fg);
  display: inline-flex; align-items: center; justify-content: center;
}
.wizard-success h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--text-strong); }
.wizard-success p { max-width: 40ch; color: var(--text-body); line-height: 1.6; }
.wizard-success .picks { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.badge-soft {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: var(--ls-label); text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-xs);
  color: var(--text-on-brand); background: var(--brand-primary);
}

body.modal-open { overflow: hidden; }

/* ---------- Project-detail pop-up ---------- */
#gallery-modal { align-items: flex-start; }
.gallery-panel {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: auto;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(20px, 4vw, 44px);
  max-height: 92vh;
  overflow-y: auto;
}
.gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface-sunken);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text-body);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
}
.gallery-close:hover { background: var(--border-subtle); }
.gallery-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  letter-spacing: -0.01em;
  color: var(--text-strong);
  padding-right: 90px;
}
.gallery-panel .gp-text {
  margin: 14px 0 0;
  max-width: 60ch;
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--text-body);
}
/* carrousel: 1 grote foto + pijltjes + thumbnails */
.gallery-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-5);
}
.gallery-main {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.gallery-main img {
  display: block;
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.gallery-main .badge { position: absolute; top: 12px; left: 12px; }
.gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(26, 24, 21, .72);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  color: var(--text-strong);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--dur-fast) var(--ease-out);
}
.gallery-arrow:hover { background: #fff; }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
.gallery-stage.is-single .gallery-arrow,
.gallery-stage.is-single .gallery-counter { display: none; }
.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.is-active { border-color: var(--brand-primary); }

.wizard-error {
  margin-top: var(--space-4);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--danger-bg);
  border: 1px solid rgba(194, 59, 46, .3);
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.wizard-error a { color: var(--text-link); font-weight: 600; }

/* ============================================================
   Dienst- & regio-pagina's
   ============================================================ */
.breadcrumb-bar { background: var(--surface-card); border-bottom: 1px solid var(--border-subtle); }
.breadcrumb {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px var(--gutter);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  white-space: nowrap;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--text-strong); }
.breadcrumb .here { color: var(--brand-accent-hover); }
.breadcrumb .mid { color: var(--text-strong); }

.dienst-hero { background: var(--surface-page); }
.dienst-hero-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.dienst-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.dienst-hero h1 .accent { color: var(--brand-primary); }
.dienst-hero .lead { max-width: 48ch; }
.dienst-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.dienst-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.dienst-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: var(--section-y) var(--gutter); }
.werk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.werk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface-page);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-weight: 500;
  color: var(--text-body);
}
.werk-item .tick {
  width: 26px; height: 26px;
  border-radius: var(--radius-pill);
  background: var(--surface-brand-soft);
  color: var(--brand-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.links-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.region-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.region-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  color: var(--text-body);
  text-decoration: none;
}
.region-chip:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.other-list { display: flex; flex-direction: column; gap: 2px; margin-top: 16px; }
.other-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
  color: var(--text-strong);
  font-weight: 600;
}
.other-list a:hover { color: var(--brand-primary); }
.muted-line { margin: 12px 0 18px; color: var(--text-muted); }

.cta-band { background: var(--teal-800); }
.cta-band-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-8) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.cta-band h2 { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-h2); letter-spacing: -0.02em; color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, .8); font-size: var(--fs-lead); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-strong);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { color: var(--brand-accent-hover); flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out); }
.faq-item[open] summary .chev { transform: rotate(90deg); }
.faq-item p { margin-top: 12px; color: var(--text-body); line-height: 1.6; }

.regio-recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}
.regio-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.regio-photo img { width: 100%; height: 100%; object-fit: cover; }
.regio-photo .project-badge { position: absolute; top: 12px; left: 12px; }

@media (max-width: 900px) {
  .dienst-hero-grid, .links-grid { grid-template-columns: 1fr !important; }
  .dienst-hero-grid > .dienst-hero-media { order: -1; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav, .header-cta { display: none !important; }
  .menu-toggle { display: block !important; margin-left: auto; }
  .hero-grid, .over-grid, .contact-grid { grid-template-columns: 1fr !important; }
  /* Op mobiel eerst de titel/tekst, daarna pas de foto. */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .form-row { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .over-badge { right: 0; }
}
