/* ================================================================
   BOUWBEDRIJF WESTERMAN — Stylesheet
   Groen kleurenschema · Licht & Donker modus
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABELEN — Licht modus (standaard)
   ---------------------------------------------------------------- */
:root {
  /* Brand groen (afgeleid van logo) */
  --g:        #1D8A35;      /* Primair groen */
  --g-l:      #25A844;      /* Lichter groen */
  --g-d:      #146428;      /* Donkerder groen */
  --g-dim:    rgba(29,138,53,.10);

  /* Achtergronden */
  --bg:       #FFFFFF;
  --bg-alt:   #F0F8F2;      /* Heel licht groen */
  --surface:  #FFFFFF;
  --card:     #F0F8F2;

  /* Tekst */
  --text:     #142018;
  --text-m:   #4A6A52;

  /* Randen & schaduwen */
  --border:   rgba(29,138,53,.13);
  --border-m: rgba(29,138,53,.22);
  --sh-xs:    0 1px 4px  rgba(0,0,0,.06);
  --sh-sm:    0 2px 10px rgba(0,0,0,.08);
  --sh-md:    0 8px 28px rgba(0,0,0,.10);
  --sh-lg:    0 20px 60px rgba(0,0,0,.15);

  /* Navigatie donkere achtergrond (hero/scrolled) */
  --nav-dark: rgba(18,52,30,.95);
  --hero-bg1: #132E1C;
  --hero-bg2: #1A3D26;
  --hero-bg3: #1F4D2E;

  /* Typografie */
  --fh: 'Space Grotesk', system-ui, sans-serif;
  --fb: 'Inter', system-ui, sans-serif;

  /* Overige */
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    all .32s cubic-bezier(.4,0,.2,1);
}

/* ----------------------------------------------------------------
   CSS VARIABELEN — Donker modus
   ---------------------------------------------------------------- */
[data-theme="dark"] {
  --g:        #2CC455;      /* Feller groen op donker bg */
  --g-l:      #38D96A;
  --g-d:      #1D8A35;
  --g-dim:    rgba(44,196,85,.12);

  --bg:       #0C1810;
  --bg-alt:   #112016;
  --surface:  #182C1E;
  --card:     #1B3022;

  --text:     #DDF0E4;
  --text-m:   #7AAF88;

  --border:   rgba(44,196,85,.16);
  --border-m: rgba(44,196,85,.28);
  --sh-xs:    0 1px 4px  rgba(0,0,0,.25);
  --sh-sm:    0 2px 10px rgba(0,0,0,.30);
  --sh-md:    0 8px 28px rgba(0,0,0,.40);
  --sh-lg:    0 20px 60px rgba(0,0,0,.55);

  --nav-dark: rgba(8,18,12,.97);
  --hero-bg1: #070E09;
  --hero-bg2: #0C1A10;
  --hero-bg3: #102215;
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .3s var(--ease), color .3s var(--ease);
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: color .2s; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
strong { font-weight: 700; }

/* ----------------------------------------------------------------
   TYPOGRAFIE & HULPKLASSEN
   ---------------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--g);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--fh);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}
.section-title--light { color: #fff; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-m);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-sub--light { color: rgba(255,255,255,.6); }
.body-text {
  color: var(--text-m);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .97rem;
}
.section-header { text-align: center; margin-bottom: 56px; }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section {
  padding: 96px 0;
  position: relative;
}
/* Heel subtiel rasterpatroon op alle lichte secties — dezelfde sfeer als donkere secties */
.section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29,138,53,.072) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,138,53,.072) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none; z-index: 0;
}
/* Donkere modus: raster iets sterker zodat het zichtbaar blijft op donkere achtergrond */
[data-theme="dark"] .section::before {
  background-image:
    linear-gradient(rgba(44,196,85,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,196,85,.07) 1px, transparent 1px);
}
.section > .container { position: relative; z-index: 1; }
.section--alt  { background: var(--bg-alt); }
.section--dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--hero-bg1) 0%, var(--hero-bg2) 100%);
  color: #fff;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Zelfde rasterpatroon als hero: 22 kolommen × 16 rijen verhoudingen */
  background-color: rgba(29,138,53,.03);
  background-image:
    linear-gradient(rgba(29,138,53,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,138,53,.07) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none;
  z-index: 0;
}
.section--dark > .container {
  position: relative;
  z-index: 1;
}

/* Hammer puls animatie */
.hammer-pulse {
  display: inline-block;
  animation: hammerPulse 2.6s ease-in-out infinite;
  transform-origin: 80% 80%;
}
@keyframes hammerPulse {
  0%,68%,100% { transform: rotate(0deg) scale(1); }
  74%          { transform: rotate(-28deg) scale(1.1); }
  82%          { transform: rotate(6deg) scale(1.05); }
  90%          { transform: rotate(-10deg) scale(1.08); }
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 9px;
  font-weight: 600;
  font-size: .92rem;
  transition: var(--t);
  cursor: pointer;
  letter-spacing: .015em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--g);
  color: #fff;
  box-shadow: 0 4px 18px rgba(29,138,53,.32);
}
.btn-primary:hover {
  background: var(--g-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,138,53,.45);
  color: #fff;
}
.btn-ghost {
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
  color: #fff;
}
.btn-outline {
  border: 2px solid var(--g);
  color: var(--g);
  background: transparent;
}
.btn-outline:hover {
  background: var(--g);
  color: #fff;
}
.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: .98rem; }
.btn-sm {
  padding: 8px 18px;
  font-size: .82rem;
  background: var(--g);
  color: #fff;
  border-radius: 7px;
}
.btn-sm:hover { background: var(--g-l); color: #fff; }

/* ----------------------------------------------------------------
   LOGO AFBEELDING (echte PNG)
   ---------------------------------------------------------------- */
.logo-img               { display: block; width: auto; user-select: none; }
.logo-img.logo-svg--nav  {
  height: 34px;
  /* Wit logo in donkere navigatiebalk */
  filter: brightness(0) invert(1);
}
.logo-img.logo-svg--page {
  height: clamp(110px, 18vw, 200px);
  /* Originele groene kleuren — logo zit op witte achtergrondstrook */
}
[data-theme="dark"] .hero-logo-band .logo-img {
  /* Donkere modus: wit logo op donkere band */
  filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(255,255,255,.12));
}
.logo-img.logo-svg--foot { height: 44px; }

/* ----------------------------------------------------------------
   NAVIGATIE
   ---------------------------------------------------------------- */
/* ---- Witte navigatiebalk ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  /* Zelfde verloop als hero — visueel één doorlopend geheel */
  background: linear-gradient(135deg, var(--hero-bg1) 0%, var(--hero-bg2) 55%, var(--hero-bg3) 100%);
  box-shadow: 0 1px 0 rgba(0,0,0,.25);
  transition: var(--t);
}
/* Rasterpatroon over de navigatiebalk — identiek aan hero/donkere secties */
#navbar::before {
  content: '';
  position: absolute; inset: 0;
  background-color: rgba(29,138,53,.03);
  background-image:
    linear-gradient(rgba(29,138,53,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,138,53,.07) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none;
  z-index: 0;
}
#navbar.scrolled {
  background: linear-gradient(135deg, var(--hero-bg2) 0%, var(--hero-bg3) 100%);
  box-shadow: 0 2px 28px rgba(0,0,0,.30);
}
/* Donkere modus: iets dieper */
[data-theme="dark"] #navbar {
  background: linear-gradient(135deg, rgba(7,14,9,.98) 0%, rgba(10,22,13,.98) 100%);
  box-shadow: 0 1px 0 rgba(0,0,0,.4);
}
[data-theme="dark"] #navbar.scrolled {
  background: linear-gradient(135deg, rgba(5,11,7,.99) 0%, rgba(8,18,10,.99) 100%);
  box-shadow: 0 2px 28px rgba(0,0,0,.55);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
  position: relative; /* boven het rasterpatroon ::before */
  z-index: 1;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0;
  transition: opacity .2s ease;
}
.nav-logo:hover { opacity: .82; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .87rem;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--g-l);
  transition: width .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-highlight { font-weight: 600; }
.nav-cta {
  /* Wit CTA-knop op donkere nav — maximaal contrast */
  background: #fff !important;
  color: var(--g-d) !important;
  padding: 9px 18px !important;
  border-radius: 7px;
  font-weight: 600;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--g-l) !important; color: #fff !important; }

/* Modus toggle */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.80);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--t);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--g-l);
  border-color: var(--g-l);
  color: #fff;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ----------------------------------------------------------------
   HERO SECTIE (hoofdpagina)
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--hero-bg1) 0%, var(--hero-bg2) 45%, var(--hero-bg3) 100%);
  overflow: hidden;
}
.hero-bricks {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  grid-template-rows: repeat(16, 1fr);
  pointer-events: none;
  z-index: 0;
}
.brick-cell {
  border: 1px solid rgba(29,138,53,.07);
  background: rgba(29,138,53,.03);
  opacity: 0;
  animation: brickIn .7s var(--ease) forwards;
}
@keyframes brickIn { to { opacity: 1; } }
.hero-crane {
  position: absolute;
  right: 7%; top: 8%;
  width: 180px;
  opacity: .12;
  animation: craneRock 7s ease-in-out infinite;
  transform-origin: bottom center;
  z-index: 0;
  pointer-events: none;
}
@keyframes craneRock {
  0%,100% { transform: rotate(-1deg); }
  50%      { transform: rotate(1.5deg); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(7,14,9,.65) 0%, transparent 70%),
    linear-gradient(to top, rgba(7,14,9,.85) 0%, transparent 55%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  /* padding-top = nav (68px) + logo-band padding-bottom (32px) + logo-hoogte (~200px) + ademruimte (56px) */
  padding: 356px 28px 200px;
  max-width: min(680px, calc((100vw - 1200px)/2 + 680px + 28px));
  margin-left: max(28px, calc((100vw - 1200px)/2 + 28px));
}
.hero-logo-band {
  /* Witte strook van navigatiebalk af — origineel logo + sleutelcijfers rechts */
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  background: #fff;
  padding: 68px max(28px, calc((100vw - 1200px)/2 + 28px)) 32px;
  border-bottom: 3px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  opacity: 0;
  animation: fadeUp .6s var(--ease) .15s both;
  overflow: hidden;
}
.hero-logo-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29,138,53,.072) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,138,53,.072) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none; z-index: 0;
}
.hero-logo-band > * { position: relative; z-index: 1; }
.hlb-stats {
  display: flex;
  gap: 0;
  align-items: center;
  flex-shrink: 0;
}
.hlb-stat {
  text-align: center;
  padding: 0 36px;
  border-left: 1px solid rgba(29,138,53,.15);
}
.hlb-stat:first-child { border-left: none; }
.hlb-stat strong {
  display: block;
  font-family: var(--fh);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--g);
  line-height: 1;
  letter-spacing: -.03em;
}
.hlb-stat span {
  display: block;
  font-size: .7rem;
  color: var(--text-m);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-top: 5px;
}
[data-theme="dark"] .hlb-stat strong { color: var(--g-l); }
[data-theme="dark"] .hlb-stat span   { color: var(--text-m); }
[data-theme="dark"] .hlb-stat        { border-left-color: rgba(44,196,85,.18); }
[data-theme="dark"] .hero-logo-band {
  background: var(--surface);
  border-bottom-color: rgba(44,196,85,.22);
}
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .5s both;
}
.hero-tagline strong { color: var(--g-l); }
.hero-title {
  font-family: var(--fh);
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 28px;
}
.hero-t1 {
  display: block;
  font-size: .38em;
  font-weight: 400;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  opacity: 0; animation: fadeUp .8s var(--ease) .7s both;
}
.hero-t2 {
  display: block;
  color: var(--g-l);
  opacity: 0; animation: fadeUp .8s var(--ease) .9s both;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 38px;
  opacity: 0; animation: fadeUp .7s var(--ease) 1.1s both;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s var(--ease) 1.25s both;
}
.hero-scroll {
  position: absolute;
  bottom: 110px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s ease 2.2s both;
}
.scroll-hammer { font-size: 1.6rem; animation: hammerHero 2s ease-in-out infinite; transform-origin: 80% 80%; }
@keyframes hammerHero {
  0%,35%,100% { transform: rotate(0deg); }
  45%          { transform: rotate(-32deg); }
  55%          { transform: rotate(5deg); }
}
.bounce-arrow { animation: bounceY 1.7s ease-in-out infinite; }
@keyframes bounceY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.09);
}
.hero-stat {
  flex: 1; padding: 22px 16px;
  text-align: center; color: #fff;
  font-family: var(--fh);
  font-size: 1.9rem; font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  border-right: 1px solid rgba(255,255,255,.09);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .stat-label {
  display: block;
  font-family: var(--fb);
  font-size: .65rem; font-weight: 500;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .09em;
  margin-top: 4px;
}

/* ----------------------------------------------------------------
   HERO RECHTER DIENSTEN-PANEL (homepage)
   ---------------------------------------------------------------- */
.hero-right {
  position: absolute;
  right: max(28px, calc((100vw - 1200px)/2 + 28px));
  /* gecentreerd in het donkere hero-gedeelte (onder de witte band) */
  top: 340px;
  bottom: 110px;
  z-index: 3;
  width: clamp(260px, 28vw, 340px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .65s both;
}
.hero-services-panel {
  background: rgba(10,24,14,.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(44,196,85,.18);
  border-radius: var(--r-xl);
  padding: 28px 24px 22px;
  box-shadow: 0 12px 48px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
}
.hsp-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--g-l);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hsp-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.hsp-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 12px;
  border-radius: var(--r);
  transition: background .18s;
  color: #fff;
  text-decoration: none;
}
.hsp-item:hover { background: rgba(255,255,255,.07); }
.hsp-icon {
  width: 38px; height: 38px;
  background: rgba(29,138,53,.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--g-l);
  font-size: .9rem;
  flex-shrink: 0;
  transition: background .18s;
}
.hsp-item:hover .hsp-icon { background: rgba(29,138,53,.4); }
.hsp-info { flex: 1; }
.hsp-info strong { display: block; font-size: .88rem; font-weight: 600; color: #fff; line-height: 1.2; }
.hsp-info span   { font-size: .74rem; color: rgba(255,255,255,.48); }
.hsp-arrow { color: rgba(255,255,255,.28); font-size: .62rem; transition: transform .18s, color .18s; }
.hsp-item:hover .hsp-arrow { transform: translateX(3px); color: var(--g-l); }
.hsp-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: rgba(29,138,53,.14);
  border: 1px solid rgba(29,138,53,.28);
  border-radius: var(--r);
  color: var(--g-l);
  font-size: .76rem;
  font-weight: 600;
}
.hsp-cert i { font-size: .95rem; flex-shrink: 0; }
@media (max-width: 900px) { .hero-right { display: none; } }

/* ----------------------------------------------------------------
   PAGINA HEADER (subpagina's)
   ---------------------------------------------------------------- */
.page-header {
  padding: 140px 28px 72px;
  background: linear-gradient(135deg, var(--hero-bg2) 0%, var(--hero-bg3) 55%, #275E3E 100%);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(7,14,9,.5));
  pointer-events: none;
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--g-l); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: .6rem; }
.page-header h1 {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.02;
  letter-spacing: -.03em;
}
.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 560px;
}

/* Decoratief bakstenen patroon achtergrond page-header */
.page-header-bricks {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  grid-template-rows: repeat(8, 1fr);
  opacity: 1; pointer-events: none; z-index: 0;
}
.page-header-bricks .brick-cell {
  animation-duration: .4s;
  border-color: rgba(44,196,85,.13) !important;
  background: rgba(44,196,85,.04) !important;
}

/* ----------------------------------------------------------------
   ABOUT TEASER (hoofdpagina)
   ---------------------------------------------------------------- */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
/* Bedrijfsfoto op Over Ons pagina */
.about-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-xl);
  margin-bottom: 24px;
  box-shadow: var(--sh-md);
  border: 3px solid var(--g);
}
.about-visual {
  background: linear-gradient(135deg, var(--hero-bg1), var(--hero-bg2));
  border-radius: var(--r-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: rgba(29,138,53,.08);
  border-radius: 50%;
}
.about-year {
  font-family: var(--fh);
  font-size: 6rem; font-weight: 700;
  letter-spacing: -.05em;
  color: var(--g); opacity: .18;
  position: absolute; top: 16px; right: 24px;
  line-height: 1;
}
.about-brick-wall {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  height: 100px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.bw-brick {
  background: #1D8A35; border-radius: 3px;
  opacity: 0; transform: translateX(-28px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.bw-brick.in { opacity: .7; transform: none; }
.about-icons-row {
  display: flex; gap: 20px;
  position: relative; z-index: 1;
}
.about-icon-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .07em; color: rgba(255,255,255,.45);
}
.about-icon-item i { font-size: 1.5rem; color: var(--g-l); }
.badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 24px 0;
}
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border-m);
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  color: var(--text);
  box-shadow: var(--sh-xs);
}
.badge i { color: var(--g); }

/* ----------------------------------------------------------------
   DIENSTEN GRID
   ---------------------------------------------------------------- */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dienst-card {
  padding: 34px 26px;
  background: var(--card);
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.dienst-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--g);
  transition: width .4s var(--ease);
}
.dienst-card:hover {
  background: var(--surface);
  border-color: var(--border-m);
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.dienst-card:hover::after { width: 100%; }
.dienst-icon {
  width: 52px; height: 52px;
  background: var(--g-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--g);
  margin-bottom: 18px;
  transition: var(--t);
}
.dienst-card:hover .dienst-icon { background: var(--g); color: #fff; }
.dienst-card h3 {
  font-family: var(--fh);
  font-size: 1.15rem; color: var(--text);
  margin-bottom: 10px;
}
.dienst-card p { color: var(--text-m); font-size: .875rem; line-height: 1.7; }
.dienst-card a {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
  font-size: .8rem; font-weight: 600;
  color: var(--g);
}
.dienst-card a:hover { color: var(--g-l); }

/* ----------------------------------------------------------------
   PROJECTEN GALERIJ
   ---------------------------------------------------------------- */
.project-filters {
  display: flex; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: .84rem; font-weight: 500;
  color: var(--text-m);
  background: var(--surface);
  border: 1px solid var(--border-m);
  transition: var(--t); cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--g);
  color: #fff;
  border-color: var(--g);
  box-shadow: 0 4px 14px rgba(29,138,53,.3);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
  margin-bottom: 44px;
}
.project-card {
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.project-card--tall { grid-row: span 2; }
.project-card--wide { grid-column: span 2; }
.project-card.hidden { display: none; }
.project-img-link { display: block; height: 100%; }
.project-img {
  width: 100%; height: 100%;
  position: relative;
  transition: transform .5s var(--ease);
  overflow: hidden;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.project-card:hover .project-img img { transform: scale(1.04); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,14,.92) 0%, rgba(10,22,14,.2) 55%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 22px;
  opacity: 0; transition: opacity .3s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-cat {
  display: inline-block;
  background: var(--g); color: #fff;
  padding: 3px 10px; border-radius: 100px;
  font-size: .67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 8px; align-self: flex-start;
}
.project-overlay h3 { font-family: var(--fh); font-size: 1.05rem; color: #fff; margin-bottom: 5px; }
.project-overlay p  { font-size: .78rem; color: rgba(255,255,255,.6); }
.project-overlay p i { margin-right: 4px; }
.project-expand {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem;
  opacity: 0; transition: opacity .3s ease;
}
.project-card:hover .project-expand { opacity: 1; }
.projects-cta { text-align: center; }
.projects-cta p { color: var(--text-m); margin-bottom: 20px; font-size: 1.05rem; }

/* ----------------------------------------------------------------
   VERHUUR KAARTEN
   ---------------------------------------------------------------- */
.verhuur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.verhuur-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--t);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.verhuur-card:hover { border-color: var(--g); transform: translateY(-5px); box-shadow: var(--sh-md); }
.verhuur-card--featured {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--hero-bg1) 0%, var(--hero-bg2) 55%, var(--hero-bg3) 100%);
  border-color: rgba(44,196,85,.35);
  border-width: 1.5px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(29,138,53,.30), 0 2px 0 rgba(44,196,85,.2);
}
/* Heldere groene accentlijn bovenaan */
.verhuur-card--featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--g-l) 30%, #5FE88A 50%, var(--g-l) 70%, transparent 100%);
  z-index: 2;
}
/* Subtiel rasterpatroon over de kaart */
.verhuur-card--featured::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none; z-index: 0;
}
.verhuur-card--featured > * { position: relative; z-index: 1; }
.verhuur-card--featured:hover {
  border-color: rgba(44,196,85,.55);
  box-shadow: 0 20px 64px rgba(29,138,53,.45), 0 2px 0 rgba(44,196,85,.3);
  transform: translateY(-8px);
}
.verhuur-card.verhuur-card--featured h3 {
  color: #fff;
  font-size: 1.55rem;
  letter-spacing: -.02em;
}
.verhuur-card.verhuur-card--featured p  { color: rgba(255,255,255,.88); }
.verhuur-card.verhuur-card--featured .verhuur-features li { color: rgba(255,255,255,.92); }
.verhuur-card.verhuur-card--featured .verhuur-features li i { color: var(--g-l); }
.verhuur-card--cta {
  background: var(--g);
  border-color: transparent;
  color: #fff;
  justify-content: center; align-items: center;
  text-align: center;
}
.verhuur-card.verhuur-card--cta h3 { color: #fff; }
.verhuur-card.verhuur-card--cta p  { color: rgba(255,255,255,.92); }
.verhuur-icon {
  width: 58px; height: 58px;
  background: var(--g-dim);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--g);
}
.verhuur-card--featured .verhuur-icon {
  background: rgba(255,255,255,.15);
  color: #fff;
  width: 76px; height: 76px;
  font-size: 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.verhuur-card--cta .verhuur-icon { background: rgba(255,255,255,.15); color: #fff; }
.verhuur-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--g); color: #fff;
  padding: 4px 13px; border-radius: 100px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  align-self: flex-start;
}
.verhuur-card--featured .verhuur-badge {
  background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.14));
  border: 1px solid rgba(255,255,255,.25);
  font-size: .72rem; padding: 5px 14px;
  backdrop-filter: blur(4px);
}
.verhuur-card h3 { font-family: var(--fh); font-size: 1.2rem; color: var(--text); margin: 0; }
.verhuur-card p  { font-size: .875rem; color: var(--text-m); line-height: 1.7; margin: 0; }
.verhuur-features { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.verhuur-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; color: var(--text-m);
}
.verhuur-features li i { color: var(--g); font-size: .75rem; }

/* Verhuur detail-secties (uitgelichte producten) */
.verhuur-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.verhuur-detail-grid:last-child { margin-bottom: 0; }
/* Foto's in verhuur detail panelen */
.detail-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
  position: absolute; inset: 0;
}
.verhuur-detail-visual {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(44,196,85,.22);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  overflow: hidden;
}
/* Subtiel rasterpatroon in visueel vlak */
.verhuur-detail-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.visual-icon {
  font-size: 7rem;
  color: var(--g-l);
  opacity: .85;
  position: relative;
  filter: drop-shadow(0 8px 24px rgba(44,196,85,.35));
}
.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 20px 0 28px;
}
.detail-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem;
}
.detail-feature i { font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
/* Expliciete tekst-overrides voor de verhuur-detail context */
.verhuur-detail-text h2 {
  color: #fff !important;
  font-family: var(--fh);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.025em;
  margin-bottom: 14px;
  line-height: 1.08;
}
.verhuur-detail-text .body-text   { color: rgba(255,255,255,.72) !important; }
.verhuur-detail-text .section-label { color: var(--g-l) !important; }
.verhuur-detail-text .detail-feature { color: rgba(255,255,255,.85); }
.verhuur-detail-text .detail-feature i { color: var(--g-l); }

/* ----------------------------------------------------------------
   WERKEN BIJ
   ---------------------------------------------------------------- */
.waarom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.waarom-card {
  text-align: center; padding: 30px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  transition: var(--t);
}
.waarom-card:hover { background: rgba(255,255,255,.1); border-color: var(--g); transform: translateY(-4px); }
.waarom-card i { font-size: 2rem; color: var(--g-l); display: block; margin-bottom: 14px; }
.waarom-card h4 { font-family: var(--fh); font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.waarom-card p  { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.65; }
/* Lichte variant: waarom-cards op witte sectieachtergrond */
.section:not(.section--dark) .waarom-card {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--sh-sm);
}
.section:not(.section--dark) .waarom-card:hover {
  background: var(--bg-alt);
  border-color: var(--g);
  box-shadow: var(--sh-md);
}
.section:not(.section--dark) .waarom-card i  { color: var(--g); }
.section:not(.section--dark) .waarom-card h4 { color: var(--text); }
.section:not(.section--dark) .waarom-card p  { color: var(--text-m); }
.vacature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-bottom: 56px;
}
.vacature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  transition: var(--t);
}
.vacature-item:hover { background: rgba(255,255,255,.1); border-color: var(--g); }
.vacature-icon {
  width: 44px; height: 44px;
  background: var(--g-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--g-l); font-size: 1.2rem; flex-shrink: 0;
}
.vacature-details { flex: 1; }
.vacature-details h4 { color: #fff; font-weight: 600; margin-bottom: 4px; }
.vacature-meta { display: flex; gap: 12px; font-size: .75rem; color: rgba(255,255,255,.45); }
.vacature-meta i { margin-right: 4px; color: var(--g-l); }

/* ----------------------------------------------------------------
   SOLLICITATIE / CONTACT FORMULIEREN
   ---------------------------------------------------------------- */
.form-wrap--dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl); padding: 48px;
  backdrop-filter: blur(8px);
}
.form-wrap--light {
  background: var(--surface);
  border-radius: var(--r-xl); padding: 40px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.form-wrap-header { text-align: center; margin-bottom: 36px; }
.form-wrap-header h3 {
  font-family: var(--fh); font-size: 1.75rem;
  color: #fff; margin-bottom: 8px;
}
.form-wrap-header.light h3 { color: var(--text); }
.form-wrap-header p { color: rgba(255,255,255,.55); }
.form-wrap-header.light p { color: var(--text-m); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,.7); }
.form-group--light label { color: var(--text); }

/* Donkere formulier inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 8px;
  font-family: var(--fb); font-size: .9rem;
  color: #fff; background: rgba(255,255,255,.07);
  outline: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--g);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(29,138,53,.22);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.form-group select option { background: #1A3D26; color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.optional { font-weight: 400; color: rgba(255,255,255,.35); font-size: .78rem; }

/* Lichte formulier inputs */
.form-group--light input,
.form-group--light select,
.form-group--light textarea {
  background: var(--bg);
  border-color: var(--border-m);
  color: var(--text);
}
.form-group--light input::placeholder,
.form-group--light textarea::placeholder { color: #AABFB0; }
.form-group--light input:focus,
.form-group--light select:focus,
.form-group--light textarea:focus {
  border-color: var(--g);
  background: var(--bg);
  box-shadow: 0 0 0 3px var(--g-dim);
  color: var(--text);
}
.form-group--light select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6A52' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
.form-group--light select option { background: var(--bg); color: var(--text); }
.form-group--light .optional { color: var(--text-m); }

/* File upload */
.file-drop {
  position: relative;
  border: 1.5px dashed rgba(255,255,255,.2);
  border-radius: 8px; padding: 24px;
  text-align: center; cursor: pointer;
  transition: var(--t); color: rgba(255,255,255,.45);
}
.file-drop:hover { border-color: var(--g); background: rgba(29,138,53,.07); }
.file-drop input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  background: none; border: none;
  width: 100%; height: 100%;
}
.file-drop i { font-size: 1.8rem; color: var(--g); margin-bottom: 8px; display: block; }
.file-drop p { font-size: .875rem; }
.file-drop p strong { color: var(--g-l); }
.file-types { font-size: .72rem; color: rgba(255,255,255,.3); margin-top: 4px; display: block; }

/* Succes bericht */
.form-succes {
  text-align: center; padding: 48px 24px; color: #22C55E;
}
.form-succes i { font-size: 3.5rem; display: block; margin-bottom: 16px; }
.form-succes h4 { font-size: 1.3rem; margin-bottom: 8px; color: #fff; }
.form-succes p  { font-size: .9rem; color: rgba(255,255,255,.55); }
.form-succes--light h4 { color: var(--text); }
.form-succes--light p  { color: var(--text-m); }

/* ----------------------------------------------------------------
   CONTACT SECTIE
   ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}
.contact-info h3 {
  font-family: var(--fh); font-size: 1.6rem;
  color: var(--text); line-height: 1.25;
  margin-bottom: 30px;
}
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.contact-item  { display: flex; gap: 15px; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px;
  background: var(--g-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--g); flex-shrink: 0; margin-top: 2px;
}
.ci-text strong {
  display: block; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--text-m); margin-bottom: 4px;
}
.ci-text p { font-size: .9rem; color: var(--text); line-height: 1.5; }
.ci-text a { color: var(--g); }
.ci-text a:hover { color: var(--g-l); }
.small-text { font-size: .8rem; color: var(--text-m) !important; }
.social-btns { display: flex; gap: 10px; margin-bottom: 20px; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--card); color: var(--text-m);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; border: 1px solid var(--border-m);
  transition: var(--t);
}
.social-btn:hover { background: var(--g); color: #fff; border-color: var(--g); transform: translateY(-2px); }
.kvk-info { font-size: .75rem; color: var(--text-m); border-top: 1px solid var(--border); padding-top: 16px; }

/* ----------------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--g-d) 0%, var(--g) 100%);
  padding: 72px 28px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='20' fill='rgba(255,255,255,.03)'/%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: var(--fh); font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
}
.cta-banner p {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  margin-bottom: 32px; position: relative; z-index: 1;
}
.cta-banner .cta-btns {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-white {
  background: #fff; color: var(--g-d);
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); }

/* ----------------------------------------------------------------
   TESTIMONIAL / QUOTE
   ---------------------------------------------------------------- */
.quote-strip {
  background: var(--g);
  padding: 56px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none; z-index: 0;
}
.quote-strip blockquote,
.quote-strip cite { position: relative; z-index: 1; }
.quote-strip blockquote {
  font-family: var(--fh); font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-style: italic; color: #fff;
  max-width: 740px; margin: 0 auto 16px;
  line-height: 1.4;
}
.quote-strip cite { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ----------------------------------------------------------------
   STATISTIEKEN GRID
   ---------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 56px;
}
.stat-card {
  background: var(--surface);
  padding: 36px 24px;
  text-align: center;
}
.stat-card .stat-num-big {
  font-family: var(--fh); font-size: 3rem; font-weight: 900;
  color: var(--g); line-height: 1;
  display: block; margin-bottom: 8px;
}
.stat-card .stat-label-big { font-size: .83rem; color: var(--text-m); font-weight: 500; }

/* ----------------------------------------------------------------
   TIJDLIJN (over-ons)
   ---------------------------------------------------------------- */
.timeline {
  position: relative; max-width: 800px; margin: 0 auto;
  padding: 24px 0;
}
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--border-m);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0; margin-bottom: 48px; align-items: start;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-content { padding: 0 32px; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-dot   { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-empty  { grid-column: 1; grid-row: 1; }
.timeline-item:nth-child(odd)  .timeline-content { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-item:nth-child(odd)  .timeline-dot    { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(odd)  .timeline-empty  { grid-column: 3; grid-row: 1; }
.timeline-dot {
  display: flex; align-items: center; justify-content: center;
  padding-top: 4px;
}
.timeline-dot::after {
  content: '';
  width: 16px; height: 16px;
  background: var(--g); border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--g);
}
.timeline-content h4 { font-family: var(--fh); font-size: 1.1rem; color: var(--text); margin-bottom: 6px; }
.timeline-content .year { font-size: .8rem; color: var(--g); font-weight: 700; margin-bottom: 6px; display: block; }
.timeline-content p { font-size: .875rem; color: var(--text-m); line-height: 1.65; }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #132E1C 0%, #1A3D26 100%);
  color: rgba(255,255,255,.6);
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(29,138,53,.03);
  background-image:
    linear-gradient(rgba(29,138,53,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,138,53,.07) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none;
  z-index: 0;
}
.footer-inner { position: relative; z-index: 1; padding: 72px 0 48px; }
.footer-bottom { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  display: inline-block;
  background: rgba(255,255,255,.95);
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.footer-tagline { font-size: .88rem; line-height: 1.65; margin-bottom: 20px; }
.footer-tagline strong { color: var(--g-l); }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,.6);
  transition: var(--t);
}
.footer-social a:hover { background: var(--g); color: #fff; }
.footer-col h4 { font-family: var(--fh); color: #fff; font-size: .95rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li,
.footer-col ul a { font-size: .84rem; }
.footer-col ul a:hover { color: var(--g-l); }
.footer-contact-col p {
  font-size: .84rem; display: flex; align-items: flex-start;
  gap: 9px; margin-bottom: 9px; line-height: 1.4;
}
.footer-contact-col i { color: var(--g); width: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-col a:hover { color: var(--g-l); }
.cert-chips { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: rgba(255,255,255,.07);
  border-radius: 100px; font-size: .7rem; font-weight: 600;
}
.cert-chip i { color: var(--g); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bottom p { font-size: .78rem; text-align: center; }

/* ----------------------------------------------------------------
   TERUG NAAR BOVEN
   ---------------------------------------------------------------- */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--g); color: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  opacity: 0; transform: translateY(16px);
  transition: var(--t);
  box-shadow: 0 4px 18px rgba(29,138,53,.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--g-l); transform: translateY(-3px); }

/* ----------------------------------------------------------------
   ANIMATIES
   ---------------------------------------------------------------- */
@keyframes fadeUp  { from { opacity:0; transform:translateY(28px);  } to { opacity:1; transform:none; } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes fadeDown{ from { opacity:0; transform:translateY(-22px); } to { opacity:1; transform:none; } }

/* ----------------------------------------------------------------
   HOMEPAGE TEASERS — extra grids
   ---------------------------------------------------------------- */
.werken-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.werken-teaser-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.werken-teaser-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.verhuur-teaser-cta { text-align: center; margin-top: 44px; }
.projects-grid--home { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; }
.stats-grid--about   { grid-template-columns: 1fr 1fr; margin-bottom: 0; }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .verhuur-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .projects-grid,
  .projects-grid--home { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .project-card--wide { grid-column: span 2; }
  .project-card--tall { grid-row: span 1; }
  .waarom-grid { grid-template-columns: repeat(2, 1fr); }
  .vacature-list { grid-template-columns: 1fr; }
  .werken-teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2; grid-row: 1; text-align: left; padding: 0 0 0 20px;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; grid-row: 1; }
  .timeline-empty { display: none; }
}

/* ===== MOBIEL — alles onder 768px ===== */
@media (max-width: 768px) {
  /* === NAVIGATIE ============================================== */
  .nav-container {
    padding: 0 18px;
    height: 60px;
    gap: 10px;
  }
  /* logo links, theme-toggle en hamburger samen rechts (hamburger uiterst rechts) */
  .nav-logo { margin-right: auto; }
  .nav-logo .logo-img.logo-svg--nav { height: 30px; }
  .nav-right { order: 2; gap: 8px; }
  .hamburger {
    display: flex;
    order: 3;
  }
  .theme-toggle { width: 36px; height: 36px; font-size: .95rem; }

  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(8,18,12,.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 26px; z-index: 1000;
    padding: 60px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.35rem; }
  .nav-cta {
    background: transparent !important;
    color: #fff !important;
    font-size: 1.35rem !important;
    padding: 0 !important;
  }

  /* === HERO ==================================================== */
  .hero { min-height: auto; }
  .hero-logo-band {
    padding: 60px 18px 22px;
    border-bottom-width: 2px;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .logo-img.logo-svg--page { height: clamp(78px, 22vw, 130px); }
  .hlb-stats { display: none; }
  .hero-crane { display: none; }
  .hero-content {
    padding: 200px 22px 150px;
    margin-left: 0;
    max-width: 100%;
  }
  .hero-tagline { font-size: 1rem; }
  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 22px;
  }
  .hero-t1 { font-size: .42em; }
  .hero-desc {
    font-size: .94rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-buttons { gap: 10px; }
  .hero-buttons .btn {
    padding: 12px 18px;
    font-size: .85rem;
    flex: 1 1 auto;
    justify-content: center;
  }
  .hero-stats-bar { flex-wrap: wrap; }
  .hero-stat {
    flex: 1 1 50%;
    padding: 14px 8px;
    font-size: 1.4rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
  .hero-stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.09); }
  .hero-stat:last-child      { border-right: none; }
  .hero-stat .stat-label { font-size: .58rem; }
  .hero-scroll { display: none; }

  /* === SECTIES algemeen ======================================== */
  .section { padding: 56px 0; }
  .container { padding: 0 22px; }
  .section-header { margin-bottom: 36px; }
  .section-label { font-size: .65rem; letter-spacing: .15em; }
  .section-title { font-size: clamp(1.55rem, 6vw, 2.2rem); }
  .section-sub { font-size: .92rem; }
  .body-text { font-size: .92rem; line-height: 1.7; }

  /* === ABOUT TEASER ============================================ */
  .about-visual { padding: 30px 24px; }
  .about-year { font-size: 4.2rem; top: 12px; right: 18px; }
  .about-icons-row { gap: 14px; flex-wrap: wrap; justify-content: space-between; }
  .about-icon-item { font-size: .65rem; }
  .about-icon-item i { font-size: 1.3rem; }
  .about-photo { height: 220px; }
  .badges { gap: 8px; }
  .badge { font-size: .72rem; padding: 6px 12px; }

  /* === DIENSTEN ================================================ */
  .diensten-grid { grid-template-columns: 1fr; gap: 14px; }
  .dienst-card { padding: 26px 22px; }
  .dienst-card h3 { font-size: 1.08rem; }

  /* === PROJECTS ================================================ */
  .projects-grid,
  .projects-grid--home {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 12px;
  }
  .project-card--wide { grid-column: span 2; }
  .project-card--tall { grid-row: span 1; }
  /* Op mobiel: overlay altijd zichtbaar (geen hover) */
  .project-overlay { opacity: 1; }
  .project-overlay h3 { font-size: .95rem; }
  .project-overlay p  { font-size: .72rem; }
  .project-overlay { padding: 14px; }
  .project-cat { font-size: .6rem; padding: 2px 8px; }
  .project-expand { display: none; }
  .project-filters { gap: 7px; margin-bottom: 24px; }
  .filter-btn { padding: 7px 14px; font-size: .78rem; }

  /* === VERHUUR ================================================= */
  .verhuur-grid { grid-template-columns: 1fr; gap: 16px; }
  .verhuur-card { padding: 26px 22px; gap: 12px; }
  .verhuur-card--featured {
    grid-row: span 1;
  }
  .verhuur-card.verhuur-card--featured h3 { font-size: 1.3rem; }
  .verhuur-icon { width: 50px; height: 50px; font-size: 1.4rem; }
  .verhuur-card--featured .verhuur-icon { width: 60px; height: 60px; font-size: 1.6rem; }
  .verhuur-detail-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .verhuur-detail-visual { min-height: 240px; }
  .visual-icon { font-size: 5rem; }
  .detail-features { grid-template-columns: 1fr; gap: 10px; }
  .verhuur-teaser-cta { margin-top: 32px; }

  /* === WERKEN BIJ ============================================== */
  .waarom-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .waarom-card { padding: 24px 16px; }
  .waarom-card i { font-size: 1.6rem; margin-bottom: 10px; }
  .waarom-card h4 { font-size: .98rem; }
  .waarom-card p  { font-size: .78rem; }
  .vacature-list { grid-template-columns: 1fr; gap: 10px; }
  .vacature-item { padding: 14px 16px; gap: 12px; flex-wrap: wrap; }
  .vacature-icon { width: 40px; height: 40px; font-size: 1.05rem; }
  .vacature-details h4 { font-size: .95rem; }
  .vacature-meta { gap: 8px; flex-wrap: wrap; font-size: .7rem; }
  .vacature-item .btn-sm { padding: 7px 14px; font-size: .76rem; }

  /* Werken-bij teaser homepage */
  .werken-teaser-grid { grid-template-columns: 1fr; gap: 36px; }
  .werken-teaser-cards { gap: 12px; }
  .werken-teaser-cards .dienst-card { padding: 22px 16px; }

  /* === STATS GRID (over-ons) =================================== */
  .stats-grid,
  .stats-grid--about { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 26px 18px; }
  .stat-card .stat-num-big { font-size: 2.2rem; }
  .stat-card .stat-label-big { font-size: .75rem; }

  /* === TIMELINE ================================================ */
  .timeline { padding: 12px 0; }
  .timeline-item { margin-bottom: 36px; }
  .timeline-content h4 { font-size: 1rem; }
  .timeline-content .year { font-size: .75rem; }
  .timeline-content p { font-size: .82rem; }

  /* === QUOTE STRIP ============================================= */
  .quote-strip { padding: 44px 22px; }
  .quote-strip blockquote { font-size: clamp(1.05rem, 4.5vw, 1.4rem); }
  .quote-strip cite { font-size: .78rem; }

  /* === PAGE HEADER ============================================= */
  .page-header { padding: 100px 22px 50px; }
  .page-header h1 { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  .page-header p { font-size: .92rem; line-height: 1.6; }
  .breadcrumb { font-size: .72rem; margin-bottom: 12px; }

  /* === FORMULIEREN ============================================= */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-wrap--dark, .form-wrap--light { padding: 26px 18px; border-radius: var(--r-lg); }
  .form-wrap-header { margin-bottom: 24px; }
  .form-wrap-header h3 { font-size: 1.4rem; }
  .form-group { margin-bottom: 14px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 13px; font-size: .92rem; }
  .file-drop { padding: 18px; }
  .file-drop i { font-size: 1.5rem; }

  /* === CONTACT ================================================= */
  .contact-info h3 { font-size: 1.3rem; margin-bottom: 22px; }
  .contact-items { gap: 18px; }
  .ci-icon { width: 36px; height: 36px; font-size: .9rem; }
  .ci-text strong { font-size: .68rem; }
  .ci-text p { font-size: .85rem; }

  /* === CTA BANNER ============================================== */
  .cta-banner { padding: 56px 22px; }
  .cta-banner h2 { font-size: clamp(1.4rem, 6.5vw, 2rem); margin-bottom: 12px; }
  .cta-banner p { font-size: .94rem; margin-bottom: 24px; }
  .cta-banner .cta-btns { gap: 10px; flex-direction: column; align-items: stretch; }
  .cta-banner .btn { justify-content: center; }

  /* === FOOTER ================================================== */
  .footer-inner { padding: 48px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand .footer-logo { padding: 8px 16px; }
  .logo-img.logo-svg--foot { height: 36px; }
  .footer-col h4 { font-size: .92rem; margin-bottom: 14px; }
  .footer-col ul { gap: 7px; }
  .footer-col ul li,
  .footer-col ul a { font-size: .82rem; }
  .footer-bottom p { font-size: .72rem; padding: 0 8px; line-height: 1.5; }

  /* === BACK TO TOP ============================================= */
  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: .85rem;
  }

  /* === BTN globaal ============================================= */
  .btn { padding: 12px 22px; font-size: .88rem; }
  .btn-full { padding: 14px; }

  /* === CONTACT KAARTEN ========================================= */
  .map-placeholder { aspect-ratio: 4/3; margin-top: 32px; }
  .map-placeholder i { font-size: 2rem; }
  .map-placeholder p { font-size: .82rem; padding: 0 16px; text-align: center; }
}

/* ===== KLEINE TELEFOONS — onder 480px ===== */
@media (max-width: 480px) {
  .nav-container { padding: 0 14px; }
  .nav-logo .logo-img.logo-svg--nav { height: 26px; }

  .container { padding: 0 18px; }
  .section { padding: 48px 0; }

  .hero-content { padding: 180px 18px 130px; }
  .hero-title { font-size: clamp(1.85rem, 9.5vw, 2.6rem); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }

  .projects-grid,
  .projects-grid--home { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 10px; }
  .project-card--wide { grid-column: span 1; }

  .hero-stat { flex: 1 1 100%; border-right: none !important; }

  .waarom-grid { grid-template-columns: 1fr; }
  .stats-grid,
  .stats-grid--about { grid-template-columns: 1fr; }

  .badges { flex-direction: column; align-items: flex-start; }

  .form-wrap--dark, .form-wrap--light { padding: 22px 14px; }

  .verhuur-card.verhuur-card--featured h3 { font-size: 1.2rem; }
  .verhuur-card h3 { font-size: 1.1rem; }

  .page-header h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  .timeline-content { padding: 0 0 0 16px !important; }
  .timeline { padding-left: 0; }
}
