/* =========================================================
   KeijzerElektriciens — design system
   Light theme default (white #f9f9f9). Dark navy used as inserted zones.
   Premium black + gold accents. Mobile-first. Urgency-first.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Color — orange + black palette */
  --c-black: #000000;
  --c-navy: #000000;
  --c-navy-2: #0a0a0a;
  --c-navy-3: #1a1a1a;
  --c-gold: #F9A91C;
  --c-gold-dark: #D08818;
  --c-gold-light: #FDC65D;
  --c-white: #FFFFFF;
  --c-white-90: rgba(255,255,255,0.90);
  --c-white-75: rgba(255,255,255,0.75);
  --c-white-60: rgba(255,255,255,0.60);
  --c-white-15: rgba(255,255,255,0.15);
  --c-white-10: rgba(255,255,255,0.10);
  --c-white-05: rgba(255,255,255,0.05);

  /* Light surfaces */
  --c-bg: #f9f9f9;            /* main body background */
  --c-bg-alt: #ffffff;         /* card / nav surface */
  --c-bg-soft: #f1f3f5;        /* secondary light zone */
  --c-header: #fdfdfd;         /* nav background */
  --c-border-light: #e2e6ec;
  --c-border-soft: #ECEFF3;

  /* Text */
  --c-text-dark: #000000;
  --c-text-body: #1f2937;
  --c-text-muted: #4A5568;
  --c-text-faint: #6B7280;

  --c-error: #E53935;
  --c-success: #2E7D32;

  /* Type */
  --ff-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Size scale (1.25 modular) */
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-30: 1.875rem;
  --fs-36: 2.25rem;
  --fs-48: 3rem;
  --fs-60: 3.75rem;
  --fs-72: 4.5rem;

  /* Spacing (8px grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 80px;
  --s-10: 96px;

  /* Radius */
  --r-btn: 4px;
  --r-card: 10px;
  --r-input: 4px;
  --r-pill: 999px;

  /* Effects */
  --shadow-card: 0 6px 18px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-card-lg: 0 18px 40px rgba(0,0,0,0.10), 0 6px 14px rgba(0,0,0,0.06);
  --shadow-card-dark: 0 12px 32px rgba(0,0,0,0.4);
  --shadow-nav: 0 1px 0 rgba(0,0,0,0.06), 0 4px 14px rgba(0,0,0,0.04);
  --shadow-gold: 0 12px 28px rgba(249,169,28,0.30);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --nav-h: 72px;
  --sticky-bar-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: var(--c-text-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-4);
  color: var(--c-text-dark);
}
h1 { font-size: clamp(2rem, 5.5vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: var(--fs-20); }
p  { margin: 0 0 var(--s-4); color: var(--c-text-body); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-gold);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--s-9) 0; background: var(--c-bg); }
.section--tight { padding: var(--s-7) 0; }
.section--white { background: var(--c-bg-alt); }
.section--soft  { background: var(--c-bg-soft); }
.section--light { background: var(--c-bg-soft); }

/* Dark inserted zones (use sparingly — contrast against white default) */
.section--navy, .section--black {
  background: var(--c-navy);
  color: var(--c-white);
}
.section--black { background: var(--c-black); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
.section--black h1, .section--black h2, .section--black h3, .section--black h4 {
  color: var(--c-white);
}
.section--navy p, .section--black p { color: var(--c-white-75); }
.section--navy .eyebrow, .section--black .eyebrow { color: var(--c-gold); }

@media (max-width: 720px) {
  .section { padding: var(--s-7) 0; }
}

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.split {
  display: grid;
  /* minmax(0, 1fr) prevents grid items with wide content (e.g. a form
     with long inputs) from forcing the column to exceed the container,
     which would otherwise push the .form-card off-centre on mobile. */
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-7);
  align-items: center;
}
.split > * { min-width: 0; }
@media (min-width: 880px) {
  .split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--s-8); }
  .split--reverse > :first-child { order: 2; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 16px 28px;
  border-radius: var(--r-btn);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-16);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible {
  outline: 2px dashed var(--c-gold);
  outline-offset: 3px;
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-black);
  box-shadow: 0 8px 20px rgba(249,169,28,0.30);
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(249,169,28,0.40);
}
.btn--outline-dark {
  background: transparent;
  color: var(--c-text-dark);
  border-color: var(--c-text-dark);
}
.btn--outline-dark:hover { background: var(--c-text-dark); color: var(--c-white); }
.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}
.btn--outline-white:hover { background: var(--c-white); color: var(--c-navy); }

.btn--outline-gold {
  background: transparent;
  color: var(--c-gold-dark);
  border-color: var(--c-gold);
}
.btn--outline-gold:hover { background: var(--c-gold); color: var(--c-black); }
.section--navy .btn--outline-gold, .section--black .btn--outline-gold { color: var(--c-gold); }

.btn--dark {
  background: var(--c-navy);
  color: var(--c-white);
}
.btn--dark:hover { background: var(--c-navy-2); }

.btn--lg { padding: 20px 36px; font-size: var(--fs-18); }
.btn--block { width: 100%; }

/* Gold pill (used in hero) */
.btn--pill {
  border-radius: var(--r-pill);
  padding: 18px 32px;
  font-size: var(--fs-18);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

/* ---------- Spoed badge ---------- */
.spoed-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 16px;
  border: 1px solid var(--c-gold);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  background: rgba(249,169,28,0.10);
}
.section--navy .spoed-badge, .section--black .spoed-badge, .hero .spoed-badge {
  color: var(--c-gold);
  background: rgba(249,169,28,0.10);
}
.spoed-badge svg { width: 14px; height: 14px; }
.spoed-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-gold);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(249,169,28,0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(249,169,28,0); }
}

/* ---------- Navigation (light) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border-light);
  height: var(--nav-h);
  box-shadow: var(--shadow-nav);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.nav__logo img { height: 40px; width: auto; }
.nav__links {
  display: none;
  align-items: center;
  gap: var(--s-6);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--ff-display);
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-dark);
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover, .nav__links a.is-active {
  color: var(--c-gold-dark);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }

.nav__phone {
  display: none;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 22px;
  background: var(--c-gold);
  color: var(--c-black);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-16);
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 14px rgba(249,169,28,0.30);
}
.nav__phone:hover { background: var(--c-gold-dark); transform: translateY(-1px); box-shadow: 0 10px 18px rgba(249,169,28,0.40); }
.nav__phone svg { width: 16px; height: 16px; }

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--c-header);
  padding: var(--s-7) var(--s-5);
  z-index: 99;
  overflow-y: auto;
}
.nav__mobile.is-open { display: block; }
.nav__mobile ul { list-style: none; margin: 0 0 var(--s-6); padding: 0; }
.nav__mobile li { border-bottom: 1px solid var(--c-border-light); }
.nav__mobile a {
  display: block;
  padding: var(--s-3) 0;
  font-family: var(--ff-display);
  font-size: var(--fs-16);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text-dark);
}
.nav__mobile a:hover { color: var(--c-gold-dark); }
.nav__mobile .btn {
  margin-top: var(--s-5);
  padding: 20px 24px;
  font-size: var(--fs-16);
  letter-spacing: 0.04em;
}
.nav__mobile .btn--gold:hover { color: var(--c-black); }

@media (min-width: 960px) {
  .nav__links, .nav__phone { display: inline-flex; }
  .nav__burger { display: none; }
}

/* ---------- Hero (full-bleed photo, dark overlay, centered content) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: var(--s-9) 0 calc(var(--s-9) + 80px);
  background: var(--c-black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Shift focal point to the right so the elektricien's chest logo isn't
     covered by the centered H1 text */
  object-position: 72% center;
}
@media (max-width: 720px) {
  .hero__bg img { object-position: 62% center; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.85) 100%),
    radial-gradient(60% 50% at 50% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}
.hero__content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: var(--c-white);
}
.hero__content .spoed-badge { margin-bottom: var(--s-4); }
.hero h1 {
  color: var(--c-white);
  font-size: clamp(2.25rem, 5.6vw, 4rem);
  margin: 0 0 var(--s-4);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero h1 .accent { color: var(--c-gold); }
.hero__lead {
  color: var(--c-white-90);
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  margin: 0 auto var(--s-6);
  max-width: 56ch;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero__phone-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  background: var(--c-gold);
  color: var(--c-black);
  padding: 18px 32px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  letter-spacing: 0.02em;
  box-shadow: 0 14px 32px rgba(249,169,28,0.45);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hero__phone-pill:hover {
  background: var(--c-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(249,169,28,0.55);
}
.hero__phone-pill svg { width: 22px; height: 22px; }

.hero__trust {
  margin-top: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--c-white);
}
.hero__trust .gold-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-gold);
}
.hero__trust strong { color: var(--c-gold); font-weight: 800; }

/* ---------- Image banner (between sections) ---------- */
.image-banner {
  background: var(--c-bg-alt);
  padding: 0;
}
.image-banner__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: var(--s-5) var(--s-5);
}
.image-banner__inner img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-card);
  border: 1px solid var(--c-border-light);
}
@media (max-width: 720px) {
  .image-banner__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: var(--s-4);
  }
  .image-banner__inner img { aspect-ratio: 16 / 10; }
}

/* ---------- Hero step cards (overlapping bottom of hero) ---------- */
.hero-steps {
  position: relative;
  margin-top: -90px;
  z-index: 5;
  padding: 0 var(--s-5) var(--s-7);
}
.hero-steps__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) {
  .hero-steps__inner { grid-template-columns: repeat(3, 1fr); }
}
.hero-step {
  background: var(--c-bg-alt);
  border-radius: var(--r-card);
  padding: var(--s-6);
  box-shadow: var(--shadow-card-lg);
  border: 1px solid var(--c-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.hero-step__icon {
  width: 56px; height: 56px;
  background: rgba(249,169,28,0.12);
  border-radius: var(--r-card);
  display: grid;
  place-items: center;
  color: var(--c-gold-dark);
}
.hero-step__icon svg { width: 28px; height: 28px; }
.hero-step h3 {
  font-size: var(--fs-18);
  margin: 0;
  color: var(--c-text-dark);
}
.hero-step h3 .num {
  display: block;
  font-size: var(--fs-12);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-step p {
  font-size: var(--fs-14);
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Trust strip (below hero / between sections) */
.trust-strip {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border-light);
  padding: var(--s-5) 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4) var(--s-5);
  align-items: center;
}
@media (min-width: 720px) {
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-14);
  color: var(--c-text-dark);
}
.trust-item svg { width: 22px; height: 22px; color: var(--c-gold-dark); flex: none; }
.trust-item span { display: block; line-height: 1.3; }
.trust-item small {
  display: block;
  font-weight: 400;
  font-size: var(--fs-12);
  color: var(--c-text-muted);
  letter-spacing: 0;
  text-transform: none;
}
/* Trust strip on dark zones */
.section--navy .trust-item, .section--black .trust-item { color: var(--c-white); }
.section--navy .trust-item small, .section--black .trust-item small { color: var(--c-white-60); }
.section--navy .trust-item svg, .section--black .trust-item svg { color: var(--c-gold); }

/* ---------- Section header ---------- */
.section-header { max-width: 720px; margin: 0 auto var(--s-7); text-align: center; }
.section-header--left { text-align: left; margin-left: 0; }
.section-header p { font-size: var(--fs-18); }

/* ---------- Service cards ---------- */
.service-card {
  position: relative;
  padding: var(--s-6);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: var(--c-text-dark);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-card-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-card);
  background: rgba(249,169,28,0.12);
  color: var(--c-gold-dark);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-2);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin: 0; font-size: var(--fs-20); color: var(--c-text-dark); }
.service-card p { margin: 0; font-size: var(--fs-16); color: var(--c-text-muted); }
.service-card__urgent {
  position: absolute;
  top: var(--s-4); right: var(--s-4);
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-black);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--c-gold);
}
.service-card__cta {
  margin-top: auto;
  padding-top: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-14);
  color: var(--c-gold-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card__cta svg { transition: transform 0.2s ease; width: 16px; height: 16px; }
.service-card:hover .service-card__cta svg { transform: translateX(4px); }

/* Service card on dark sections */
.section--navy .service-card, .section--black .service-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: var(--c-white);
  box-shadow: none;
}
.section--navy .service-card h3, .section--black .service-card h3 { color: var(--c-white); }
.section--navy .service-card p, .section--black .service-card p { color: var(--c-white-75); }
.section--navy .service-card:hover, .section--black .service-card:hover {
  background: rgba(249,169,28,0.06);
  border-color: var(--c-gold);
}
.section--navy .service-card__icon, .section--black .service-card__icon { color: var(--c-gold); }
.section--navy .service-card__cta, .section--black .service-card__cta { color: var(--c-gold); }

/* ---------- USP block ---------- */
.usp {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) { .usp { grid-template-columns: repeat(3, 1fr); } }
.usp-item {
  padding: var(--s-6);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}
.usp-item__num {
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  font-weight: 800;
  letter-spacing: 0.20em;
  color: var(--c-gold-dark);
  margin-bottom: var(--s-2);
}
.usp-item h3 { margin: 0 0 var(--s-2); font-size: var(--fs-20); color: var(--c-text-dark); }
.usp-item p { margin: 0; font-size: var(--fs-16); color: var(--c-text-muted); }

.section--navy .usp-item, .section--black .usp-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
}
.section--navy .usp-item h3, .section--black .usp-item h3 { color: var(--c-white); }
.section--navy .usp-item p, .section--black .usp-item p { color: var(--c-white-75); }
.section--navy .usp-item__num, .section--black .usp-item__num { color: var(--c-gold); }

/* ---------- Steps (process — vertical list) ---------- */
.steps { counter-reset: stp; display: grid; gap: var(--s-4); }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}
.step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-black);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: var(--fs-20);
  display: grid;
  place-items: center;
  flex: none;
}
.step h4 { margin: 0 0 var(--s-2); font-size: var(--fs-18); color: var(--c-text-dark); }
.step p { margin: 0; color: var(--c-text-muted); }

.section--navy .step, .section--black .step {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
}
.section--navy .step h4, .section--black .step h4 { color: var(--c-white); }
.section--navy .step p, .section--black .step p { color: var(--c-white-75); }

/* ---------- Certifications strip ---------- */
.certs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 720px) { .certs { grid-template-columns: repeat(4, 1fr); } }
.cert {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}
.cert__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-btn);
  background: var(--c-navy);
  color: var(--c-gold);
  display: grid;
  place-items: center;
  flex: none;
}
.cert__icon svg { width: 22px; height: 22px; }
.cert strong {
  display: block;
  font-family: var(--ff-display);
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--c-text-dark);
  letter-spacing: 0.02em;
}
.cert small { color: var(--c-text-muted); font-size: var(--fs-12); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .gallery > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  aspect-ratio: 1;
  border: 1px solid var(--c-border-light);
  box-shadow: var(--shadow-card);
}
@media (min-width: 720px) { .gallery figure { aspect-ratio: auto; } }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-3) var(--s-4);
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--s-3); max-width: 880px; margin: 0 auto; }
.faq__item {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  width: 100%;
  padding: var(--s-4) var(--s-5);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-18);
  text-align: left;
  color: var(--c-text-dark);
  cursor: pointer;
}
.faq__q::after {
  content: "";
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-gold);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(180deg); }
.faq__a {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--c-text-muted);
}
.faq__a p { color: inherit; margin: 0; }

/* ---------- Testimonial-style trust quote ---------- */
.quote {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--s-6);
  border-left: 4px solid var(--c-gold);
  background: var(--c-bg-alt);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  box-shadow: var(--shadow-card);
}
.quote p {
  font-family: var(--ff-display);
  font-size: var(--fs-20);
  font-weight: 500;
  font-style: italic;
  color: var(--c-text-dark);
  margin-bottom: var(--s-3);
}
.quote cite {
  font-family: var(--ff-body);
  font-style: normal;
  font-size: var(--fs-14);
  color: var(--c-text-faint);
  letter-spacing: 0.04em;
}
.section--navy .quote, .section--black .quote {
  background: rgba(255,255,255,0.05);
  box-shadow: none;
}
.section--navy .quote p, .section--black .quote p { color: var(--c-white); }
.section--navy .quote cite, .section--black .quote cite { color: var(--c-white-60); }

/* ---------- Werkgebied list ---------- */
.areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-2) var(--s-4);
  margin: var(--s-5) 0;
}
@media (min-width: 720px) { .areas { grid-template-columns: repeat(4, 1fr); } }
.areas a {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-btn);
  color: var(--c-text-dark);
  font-family: var(--ff-display);
  font-size: var(--fs-14);
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow-card);
}
.areas a:hover { border-color: var(--c-gold); color: var(--c-gold-dark); }
.areas a::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex: none;
}
.section--navy .areas a, .section--black .areas a {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: var(--c-white);
  box-shadow: none;
}
.section--navy .areas a:hover, .section--black .areas a:hover { color: var(--c-gold); }

/* ---------- Final CTA / urgency banner (always dark) ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-black) 100%);
  color: var(--c-white);
  padding: var(--s-9) 0;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 80% 50%, rgba(249,169,28,0.15), transparent 60%);
}
.cta-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 880px) {
  .cta-banner__inner { grid-template-columns: 1.2fr auto; gap: var(--s-7); }
}
.cta-banner h2 { margin-bottom: var(--s-3); color: var(--c-white); }
.cta-banner p { margin: 0; max-width: 60ch; font-size: var(--fs-18); color: var(--c-white-90); }

/* ---------- Form ---------- */
.form {
  display: grid;
  gap: var(--s-4);
}
.form__row { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 720px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.form__field { display: grid; gap: var(--s-2); }
.form__field label {
  font-family: var(--ff-display);
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-text-dark);
}
.form__field .req { color: var(--c-gold-dark); }
.form__field small { font-size: var(--fs-12); color: var(--c-text-muted); }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-input);
  font-size: var(--fs-16);
  color: var(--c-text-dark);
  font-family: var(--ff-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(249,169,28,0.2);
}
.form input.is-invalid, .form select.is-invalid, .form textarea.is-invalid {
  border-color: var(--c-error);
}
.form textarea { min-height: 140px; resize: vertical; }

.form__error {
  font-size: var(--fs-12);
  color: var(--c-error);
  font-weight: 600;
}
.form__hint--ok { font-size: var(--fs-12); color: var(--c-success); font-weight: 600; }

.form-card {
  background: var(--c-bg-alt);
  padding: var(--s-7);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card-lg);
  border: 1px solid var(--c-border-light);
  color: var(--c-text-dark);
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 720px) {
  .form-card { padding: var(--s-5); }
}
.form-card h3 { color: var(--c-text-dark); margin-bottom: var(--s-2); }
.form-card p { color: var(--c-text-muted); }

/* ---------- Footer (dark — kept) ---------- */
.footer {
  background: var(--c-black);
  border-top: 4px solid var(--c-gold);
  padding: var(--s-8) 0 var(--s-5);
  color: var(--c-white-75);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--c-white-10);
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-card);
  margin-bottom: var(--s-4);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  max-width: 100%;
}
.footer__logo-wrap img {
  display: block;
  width: auto;
  height: 36px;
  max-width: 100%;
  object-fit: contain;
  margin: 0;
}
.footer__brand p { color: var(--c-white); }
.footer h4 {
  font-size: var(--fs-14);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  margin-bottom: var(--s-4);
  font-weight: 800;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); }
.footer a:hover { color: var(--c-gold); }
.footer__nap p { margin-bottom: var(--s-2); font-size: var(--fs-14); color: var(--c-white-75); }
.footer__nap strong { color: var(--c-white); }

.footer__bottom {
  padding-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: var(--fs-12);
  color: var(--c-white-60);
}

/* ---------- Sticky mobile bottom bar (two buttons) ---------- */
.sticky-phone-bar {
  position: fixed;
  inset: auto 0 0 0;          /* anchored explicitly to viewport bottom */
  background: var(--c-bg-alt);
  padding: 10px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: flex;
  align-items: stretch;
  gap: 8px;
  z-index: 100;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  border-top: 1px solid var(--c-border-light);
  /* Force own compositing layer so iOS Safari does not lag during
     scroll / URL-bar resize transitions */
  transform: translateZ(0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sticky-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 52px;
  padding: 0 var(--s-4);
  border-radius: 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-16);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
}
.sticky-bar-btn:active { transform: translateY(1px); }
.sticky-bar-btn svg { width: 20px; height: 20px; flex: none; }
.sticky-bar-btn--call {
  flex: 1.6;
  background: var(--c-gold);
  color: var(--c-black);
  box-shadow: 0 6px 14px rgba(249,169,28,0.30);
}
.sticky-bar-btn--call:hover { background: var(--c-gold-dark); }
.sticky-bar-btn--offerte {
  flex: 1;
  background: var(--c-black);
  color: var(--c-white);
}
.sticky-bar-btn--offerte:hover { background: var(--c-navy-3); }

body { padding-bottom: 0; }
@media (max-width: 959px) {
  body { padding-bottom: var(--sticky-bar-h); }
}
@media (min-width: 960px) {
  .sticky-phone-bar { display: none; }
}

/* On mobile, page-hero CTAs become full-width and stack — centered on screen */
@media (max-width: 720px) {
  .page-hero .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
  }
  .page-hero .btn-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Page hero (internal pages — light) ---------- */
.page-hero {
  background: var(--c-bg-alt);
  padding: var(--s-8) 0 var(--s-7);
  border-bottom: 1px solid var(--c-border-light);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 90% 0%, rgba(249,169,28,0.08), transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 880px; }
.page-hero h1 { margin: var(--s-3) 0 var(--s-4); color: var(--c-text-dark); }
.page-hero p { font-size: var(--fs-18); max-width: 60ch; color: var(--c-text-body); }
.page-hero__crumbs {
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-bottom: var(--s-4);
}
.page-hero__crumbs a { color: var(--c-gold-dark); }
.page-hero__crumbs a:hover { text-decoration: underline; }
.page-hero__crumbs span { color: var(--c-border-light); }

/* ---------- Misc / utilities ---------- */
.lead { font-size: var(--fs-18); color: var(--c-text-body); }
.section--navy .lead, .section--black .lead { color: var(--c-white-90); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-6 { margin-top: var(--s-6); }

/* Image card (replaces hero__visual on internal pages) */
.image-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card-lg);
  border: 1px solid var(--c-border-light);
}
.image-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.image-card__tag {
  position: absolute;
  left: var(--s-4);
  bottom: var(--s-4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  border: 1px solid var(--c-white-15);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-white);
}
.image-card__tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-gold); }

.check-list {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0;
  display: grid;
  gap: var(--s-3);
}
.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
  color: var(--c-text-body);
}
.check-list li::before {
  content: "";
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-gold);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  flex: none;
  margin-top: 2px;
}
.section--navy .check-list li, .section--black .check-list li { color: var(--c-white-90); }

/* check-list with day/value rows (used for openingstijden) */
.row-pair {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  width: 100%;
  line-height: 1.4;
}
.row-pair__value {
  color: inherit;
  opacity: 0.85;
  font-weight: 400;
  white-space: nowrap;
}
.section--navy .row-pair__value, .section--black .row-pair__value { color: var(--c-white-75); opacity: 1; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--s-3);
  background: var(--c-gold);
  color: var(--c-black);
  padding: 10px 16px;
  font-family: var(--ff-display);
  font-weight: 700;
  border-radius: var(--r-btn);
  z-index: 200;
}
.skip-link:focus { left: var(--s-3); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
