/* ============================================================
   AANNEMERSBEDRIJF DE JONG — Hoofdstijlblad v2
   Design: Editorial / Constructivistisch
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:wght@400;500;600;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --antraciet:   #1E1E1E;
  --warmwit:     #F8F6F2;
  --lichtgrijs:  #EEECE8;
  --groen:       #1A3F6A;
  --groen-hover: #234F83;
  --zand:        #3A7CB8;
  --tekst:       #3A3A3A;
  --tekst-licht: #6B6B6B;
  --wit:         #FFFFFF;
  --transition:  all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: var(--tekst);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1, h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: var(--antraciet);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--antraciet);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(52px, 7.5vw, 108px); }
h2 { font-size: clamp(32px, 4vw, 54px); }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }

p { color: var(--tekst); max-width: 680px; }

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zand);
  display: block;
  margin-bottom: 16px;
}
.hero .label,
.hero--klein .label {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.18em;
}

/* ============================================================
   CONTAINERS & SECTIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

.section { padding: 120px 0; }
.section--grijs    { background: var(--warmwit); }
.section--antraciet { background: var(--antraciet); }
.section--groen    { background: var(--groen); }
@media (max-width: 768px) { .section { padding: 72px 0; } }

.sectie-kop { margin-bottom: 64px; }
.sectie-kop p { color: var(--tekst-licht); margin-top: 16px; max-width: 560px; }
.sectie-kop--wit h2  { color: var(--warmwit); }
.sectie-kop--wit .label { color: var(--zand); }
.sectie-kop--wit p  { color: rgba(255,255,255,0.55); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 90px;
  display: flex;
  align-items: center;
  background: rgba(248, 246, 242, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.header__logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* Wrapper knipt de onderkant van het logo-PNG af (AANNEMERSBEDRIJF erin) */
.header__logo-wrap {
  height: 88px;
  overflow: hidden;
  flex-shrink: 0;
}

.header__logo-img {
  display: block;
  height: 100px; /* volledig plaatje groter → onderkant (aannemersbedrijf) verdwijnt buiten wrapper */
  width: auto;
}

/* "Aannemersbedrijf" als losse tekst ernaast */
.header__logo-naam {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3A7CB8;
  line-height: 1;
  white-space: nowrap;
}

.logo-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--warmwit);
  line-height: 1;
  transition: color 0.3s;
}
.logo-text span { color: var(--zand); }

.nav { display: flex; align-items: center; gap: 2px; }

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--tekst);
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--groen); }
.nav__link.active { color: var(--groen); font-weight: 600; }

.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wit);
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  padding: 18px 8px 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--tekst);
  border-radius: 4px;
  transition: var(--transition);
}
.nav__dropdown-menu a:hover { background: var(--lichtgrijs); color: var(--groen); }

.header__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 9999px;
  transition: var(--transition);
  border: 1px solid var(--groen);
  color: var(--groen);
  background: transparent;
  white-space: nowrap;
}
.header__cta:hover {
  background: var(--groen);
  color: var(--wit);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--antraciet);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 88px; left: 0; right: 0; bottom: 0;
  background: var(--antraciet);
  z-index: 999;
  padding: 40px 32px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--warmwit); }
.mobile-nav .mobile-cta {
  margin-top: 24px;
  background: var(--groen);
  color: var(--wit) !important;
  text-align: center;
  border: none !important;
  border-radius: 3px;
  font-weight: 600;
  padding: 16px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px !important;
}
.mobile-nav .mobile-sub {
  font-size: 15px !important;
  color: rgba(255,255,255,0.38) !important;
  padding-left: 20px !important;
}

@media (max-width: 960px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .header__inner { padding: 0 24px; }
}

/* ============================================================
   KNOPPEN
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 32px;
  border-radius: 9999px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn--primair { background: var(--groen); color: var(--wit); }
.btn--primair:hover { background: var(--groen-hover); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--wit); border: 1px solid rgba(255,255,255,0.35); }
.btn--ghost:hover { border-color: var(--wit); background: rgba(255,255,255,0.08); }
.btn--ghost-donker { background: transparent; color: var(--antraciet); border: 1px solid var(--antraciet); }
.btn--ghost-donker:hover { background: var(--antraciet); color: var(--wit); }
.btn--wit { background: var(--wit); color: var(--groen); }
.btn--wit:hover { background: var(--warmwit); transform: translateY(-2px); }

.btn-pijl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warmwit);
  background: var(--groen);
  padding: 15px 30px;
  border-radius: 3px;
  transition: var(--transition);
}
.btn-pijl:hover { background: var(--groen-hover); gap: 16px; }
.btn-pijl--antraciet { background: var(--antraciet); }
.btn-pijl--antraciet:hover { background: #2a2a2a; }

.link-pijl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--groen);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.link-pijl:hover { gap: 12px; }
.link-pijl::after { content: '→'; }
.link-pijl--wit { color: rgba(255,255,255,0.6); }
.link-pijl--wit:hover { color: var(--warmwit); }

/* ============================================================
   HERO SPLIT — HOMEPAGE
   ============================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--antraciet);
  overflow: hidden;
  position: relative;
}

.hero-split__tekst {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 64px 80px;
  position: relative;
  z-index: 1;
}

.hero-split__label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zand);
  margin-bottom: 24px;
  margin-top: 40px;
  display: block;
}

.hero-split__kop {
  color: var(--warmwit);
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.hero-split__kop em {
  font-style: italic;
  color: var(--zand);
}

.hero-split__sub {
  font-size: 20px;
  color: rgba(248,246,242,0.80);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-split__acties {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-split__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(248,246,242,0.5);
  transition: color 0.2s;
  border-bottom: 1px solid rgba(248,246,242,0.15);
  padding-bottom: 2px;
}
.hero-split__link:hover { color: var(--warmwit); border-color: rgba(248,246,242,0.5); }

.hero-split__foto {
  position: relative;
  overflow: hidden;
}
.hero-split__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-split__foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,30,30,0.45) 0%, transparent 40%);
}
.hero-split__foto-tag {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: 'DM Serif Display', serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  z-index: 1;
  letter-spacing: 0.03em;
}

.hero-split::before {
  content: '';
  position: absolute;
  top: 88px; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.06);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split__tekst { padding: 140px 32px 60px; order: 2; }
  .hero-split__foto { height: 56vh; order: 1; }
  .hero-split::before { display: none; }
}

/* ============================================================
   HERO FULL-WIDTH (homepage)
   ============================================================ */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--antraciet);
}
.hero-full__bg { position: absolute; inset: 0; z-index: 0; }
.hero-full__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.hero-full__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.60) 45%, rgba(10,10,10,0.15) 100%),
    linear-gradient(to top,    rgba(10,10,10,0.50) 0%, transparent 55%);
}
.hero-full__content { position: relative; z-index: 2; width: 100%; padding-bottom: 100px; }
.hero-full__inner { max-width: 680px; margin-left: clamp(32px, 6vw, 120px); padding: 180px 72px 0; }
.hero-full .hero-split__foto-tag { position: absolute; bottom: 32px; right: 40px; z-index: 3; }
@media (max-width: 900px) {
  .hero-full { min-height: 90vh; align-items: flex-end; }
  .hero-full__inner { padding: 120px 28px 0; margin-left: 0; }
  .hero-full__content { padding-bottom: 60px; }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: var(--groen);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee-inner span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 20px;
}
.marquee-inner .sep { color: var(--zand); opacity: 0.8; padding: 0 4px; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   INTRO SPLIT — moderne half-pagina layout
   ============================================================ */
.intro-split-sectie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 680px;
  overflow: hidden;
}

/* LINKS — tekst */
.intro-split__tekst {
  background: var(--warmwit);
  display: flex;
  align-items: center;
}
.intro-split__tekst-inner {
  padding: 40px clamp(28px, 5vw, 72px);
}
/* Koptekst groot en opvallend */
.intro-split__tekst-inner h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  margin-bottom: 16px;
  color: var(--antraciet);
  line-height: 1.1;
}
.intro-split__tekst-inner p {
  color: var(--tekst-licht);
  margin-bottom: 12px;
  max-width: 440px;
  font-size: 15px;
  line-height: 1.65;
}
.intro-split__tekst-inner .btn-pijl { margin-top: 20px; }

/* RECHTS — foto op vaste hoogte */
.intro-split__foto {
  position: relative;
  overflow: hidden;
  height: 680px;
}
.intro-split__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.intro-split__foto:hover img { transform: scale(1.03); }

@media (max-width: 860px) {
  .intro-split-sectie {
    grid-template-columns: 1fr;
  }
  .intro-split__foto {
    min-height: 320px;
    order: -1; /* foto boven tekst op mobiel */
  }
  .intro-split__tekst-inner {
    padding: 48px 28px;
  }
}

/* ============================================================
   INTRO SECTIE (oud — bewaard voor andere pagina's)
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-grid__tekst h2 { margin-bottom: 20px; }
.intro-grid__tekst p  { color: var(--tekst-licht); margin-bottom: 16px; max-width: 500px; }
.intro-grid__tekst .btn-pijl { margin-top: 12px; }

.intro-grid__foto {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.intro-grid__foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.intro-grid__foto:hover img { transform: scale(1.03); }

/* Stats band */
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--lichtgrijs);
  margin-top: 80px;
}
.stat-blok {
  padding: 40px 0;
  border-right: 1px solid var(--lichtgrijs);
}
.stat-blok:last-child { border-right: none; }
.stat-blok:not(:first-child) { padding-left: 40px; }
.stat-blok strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--antraciet);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-blok span {
  font-size: 13px;
  color: var(--tekst-licht);
  margin-top: 6px;
  display: block;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-stats { margin-top: 48px; }
  .stat-blok { padding: 28px 0; }
  .stat-blok:not(:first-child) { padding-left: 20px; }
}
@media (max-width: 560px) {
  .intro-stats { grid-template-columns: 1fr; }
  .stat-blok { border-right: none; border-top: 1px solid var(--lichtgrijs); padding-left: 0 !important; }
}

/* ============================================================
   DIENSTEN — GENUMMERDE RIJEN (homepage + diensten-sectie)
   ============================================================ */
.diensten-lijst {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.dienst-rij {
  display: grid;
  grid-template-columns: 72px 1fr 1fr auto;
  align-items: center;
  gap: 0 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--warmwit);
  text-decoration: none;
  transition: var(--transition);
}
.dienst-rij:hover .dienst-rij__naam  { color: var(--zand); }
.dienst-rij:hover .dienst-rij__pijl  { transform: translateX(8px); }

.dienst-rij__nr {
  font-family: 'DM Serif Display', serif;
  font-size: 13px;
  color: rgba(255,255,255,0.16);
  letter-spacing: 0.04em;
  font-style: italic;
}
.dienst-rij__naam {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.dienst-rij__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.dienst-rij__pijl {
  font-size: 22px;
  color: var(--zand);
  transition: transform 0.3s ease;
  justify-self: end;
}

@media (max-width: 768px) {
  .dienst-rij { grid-template-columns: 48px 1fr auto; gap: 0 16px; }
  .dienst-rij__desc { display: none; }
}

/* ============================================================
   FOTO BAND — FULL BLEED
   ============================================================ */
.foto-band {
  position: relative;
  height: 78vh;
  min-height: 500px;
  overflow: hidden;
}
.foto-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.foto-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.foto-band__citaat {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 4vw, 52px);
  font-style: italic;
  color: var(--warmwit);
  text-align: center;
  max-width: 860px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.foto-band__citaat em { color: var(--zand); font-style: italic; }

/* Projecten coming soon */
.projecten-coming {
  margin-top: 40px;
  border: 2px dashed var(--lichtgrijs);
  border-radius: 12px;
  padding: 64px 40px;
  text-align: center;
  background: var(--wit);
}
.projecten-coming__inner h3 {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--antraciet);
  margin-bottom: 12px;
}
.projecten-coming__inner p {
  color: var(--tekst-licht);
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto;
}

/* ============================================================
   PROJECTEN GRID
   ============================================================ */
.projecten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.project-kaart {
  border-radius: 2px;
  overflow: hidden;
  background: var(--wit);
  transition: var(--transition);
  display: block;
  text-decoration: none;
}
.project-kaart:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.project-kaart__beeld {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--lichtgrijs);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-kaart__beeld img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-kaart:hover .project-kaart__beeld img { transform: scale(1.05); }

.project-kaart__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--groen);
  color: var(--wit);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.project-kaart__body { padding: 22px 24px; }
.project-kaart__body h3 { font-size: 17px; margin-bottom: 4px; }
.project-kaart__locatie {
  font-size: 13px;
  color: var(--tekst-licht);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.project-kaart__body p { font-size: 14px; color: var(--tekst-licht); margin: 0; }

.beeld-placeholder {
  width: 100%; height: 100%;
  background: var(--lichtgrijs);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--tekst-licht);
  font-size: 13px;
  text-align: center;
  padding: 24px;
}

/* Filter */
.filter-balk {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.filter-knop {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 2px;
  border: 1px solid var(--lichtgrijs);
  background: var(--wit);
  color: var(--tekst-licht);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.filter-knop:hover, .filter-knop.actief { background: var(--groen); color: var(--wit); border-color: var(--groen); }
.project-kaart.verborgen { display: none; }

@media (max-width: 1000px) { .projecten-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .projecten-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA SECTIE
   ============================================================ */
.cta-sectie { text-align: center; padding: 120px 0; }
.cta-sectie h2 { color: var(--wit); margin-bottom: 20px; }
.cta-sectie p  { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 40px; }
.cta-sectie .label { color: var(--zand); }
.cta-sectie__knoppen { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-sectie .kontact-info { margin-top: 32px; font-size: 14px; color: rgba(255,255,255,0.38); }
.cta-sectie .kontact-info a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.cta-sectie .kontact-info a:hover { color: var(--warmwit); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--antraciet); padding: 80px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__merk .logo-text { font-size: 24px; color: var(--warmwit); display: block; margin-bottom: 14px; }
.footer__merk p { font-size: 14px; color: rgba(255,255,255,0.38); max-width: 280px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.42);
  font-size: 14px;
  transition: var(--transition);
}
.footer__social a:hover { background: rgba(255,255,255,0.12); color: var(--warmwit); }

.footer__kolom h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
  margin-bottom: 20px;
}
.footer__kolom ul { display: flex; flex-direction: column; gap: 10px; }
.footer__kolom ul a { font-size: 14px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer__kolom ul a:hover { color: var(--warmwit); }
.footer__contact-item { font-size: 14px; color: rgba(255,255,255,0.52); margin-bottom: 10px; }
.footer__contact-item a { color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--warmwit); }

.footer__wordmark { padding-top: 24px; overflow: hidden; }
.footer__wordmark span {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(72px, 14vw, 192px);
  font-weight: 400;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.025em;
  line-height: 0.85;
  margin-bottom: -0.05em;
  user-select: none;
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom span, .footer__bottom a { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer__bottom a:hover { color: rgba(255,255,255,0.5); }

@media (max-width: 1100px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer__inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   SUBPAGINA HERO (klein)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--antraciet);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(20,20,20,0.75) 0%, rgba(20,20,20,0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 88px;
}
.hero__content .label { color: var(--zand); margin-bottom: 20px; }
.hero__title { color: var(--wit); margin-bottom: 24px; }
.hero__sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255,255,255,0.68);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero--klein { min-height: 306px; padding: 136px 0 68px; }
.hero--klein .hero__title { font-size: clamp(26px, 3.5vw, 42px); }

/* Hero zonder foto — blauwe achtergrond */
.hero--wit { background: var(--groen) !important; }
.hero--wit .hero__bg { display: none; }
.hero--wit .hero__overlay { display: none; }
.hero--wit .label { color: rgba(255,255,255,0.65) !important; }
.hero--wit .hero__title { color: #ffffff !important; }
.hero--wit .hero__sub { color: rgba(255,255,255,0.75) !important; }
.hero--klein.hero--wit { min-height: 0; padding: 64px 0 52px; }
.hero--klein.hero--wit .label { font-size: 10px; letter-spacing: 0.16em; }
.hero--klein.hero--wit .hero__sub { font-size: 15px; margin-bottom: 28px; }
.hero--klein.hero--wit .hero__ctas { gap: 10px; }

/* ============================================================
   DIENST-DETAIL PAGINA
   ============================================================ */
.dienst-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.dienst-detail__beeld {
  min-height: 600px;
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  background: var(--lichtgrijs);
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
}
.dienst-detail__beeld img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dienst-detail__tekst h2 { margin-bottom: 20px; }
.dienst-detail__tekst p  { color: var(--tekst-licht); margin-bottom: 16px; }

/* DIENST SPLIT — foto loopt boven tot onder */
.dienst-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.dienst-split--omgekeerd { direction: rtl; }
.dienst-split--omgekeerd > * { direction: ltr; }
.dienst-split--grijs { background: #ffffff; }
.dienst-split--compact { min-height: 480px; }
.dienst-split__foto {
  overflow: hidden;
  background: var(--lichtgrijs);
}
.dienst-split__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dienst-split__tekst {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.dienst-split__tekst h2 { margin-bottom: 20px; }
.dienst-split__tekst p  { color: var(--tekst-licht); margin-bottom: 16px; }

@media (max-width: 900px) {
  .dienst-split { grid-template-columns: 1fr; }
  .dienst-split__foto { min-height: 320px; }
  .dienst-split--omgekeerd { direction: ltr; }
  .dienst-split__tekst { padding: 48px 24px; }
}

.check-lijst { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--tekst);
}
.check-item::before {
  content: '';
  width: 18px; height: 18px;
  min-width: 18px;
  background: var(--groen);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

@media (max-width: 900px) { .dienst-detail { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   WERKWIJZE PAGINA
   ============================================================ */
.werkwijze-lijst { border-top: 1px solid var(--lichtgrijs); }
.werkwijze-stap {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 40px;
  padding: 52px 0;
  border-bottom: 1px solid var(--lichtgrijs);
  align-items: start;
}
.werkwijze-stap__nr {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--lichtgrijs);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.werkwijze-stap__inhoud h3 { margin-bottom: 12px; }
.werkwijze-stap__inhoud p  { color: var(--tekst-licht); }

@media (max-width: 640px) {
  .werkwijze-stap { grid-template-columns: 48px 1fr; gap: 0 20px; }
  .werkwijze-stap__nr { font-size: 40px; }
}

/* ============================================================
   OVER ONS PAGINA
   ============================================================ */
.waarden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.waarde-kaart { padding: 36px 28px; background: var(--wit); border-radius: 2px; }
.waarde-kaart__icon {
  width: 44px; height: 44px;
  background: var(--lichtgrijs);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.waarde-kaart h3 { margin-bottom: 10px; }
.waarde-kaart p  { font-size: 15px; color: var(--tekst-licht); margin: 0; }

@media (max-width: 900px) { .waarden-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .waarden-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGINA
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-groep { margin-bottom: 24px; }
.form-groep label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--tekst);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-groep input,
.form-groep select,
.form-groep textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--lichtgrijs);
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--tekst);
  background: var(--wit);
  transition: border-color 0.2s;
  outline: none;
}
.form-groep input:focus,
.form-groep select:focus,
.form-groep textarea:focus { border-color: var(--groen); }
.form-groep textarea { min-height: 140px; resize: vertical; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--lichtgrijs);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item__label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tekst-licht); margin-bottom: 4px; }
.contact-item__val { font-size: 16px; font-weight: 500; color: var(--antraciet); }
.contact-item__val a { color: var(--antraciet); transition: color 0.2s; }
.contact-item__val a:hover { color: var(--groen); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 60px; } }

/* ============================================================
   ANIMATIES
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   WERKWIJZE PAGINA — klasse-aliassen
   ============================================================ */
.stappen-lijst { border-top: 1px solid var(--lichtgrijs); }
.stap {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 40px;
  padding: 52px 0;
  border-bottom: 1px solid var(--lichtgrijs);
  align-items: start;
}
.stap__nr {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--lichtgrijs);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.stap__content h3 { margin-bottom: 12px; }
.stap__content p  { color: var(--tekst-licht); }
@media (max-width: 640px) {
  .stap { grid-template-columns: 48px 1fr; gap: 0 20px; }
  .stap__nr { font-size: 40px; }
}

/* ============================================================
   CONTACT FORMULIER — klasse-aliassen
   ============================================================ */
.formulier {
  background: var(--wit);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.formulier h3 { margin-bottom: 28px; font-size: 20px; }
.veld { margin-bottom: 20px; }
.veld-groep { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
@media (max-width: 600px) { .veld-groep { grid-template-columns: 1fr; } }
.veld label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--tekst);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.veld input,
.veld select,
.veld textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--lichtgrijs);
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--tekst);
  background: var(--wit);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.veld input:focus,
.veld select:focus,
.veld textarea:focus { border-color: var(--groen); box-shadow: 0 0 0 3px rgba(26,63,106,0.08); }
.veld textarea { min-height: 130px; resize: vertical; }
.formulier__microcopy {
  font-size: 12px;
  color: var(--tekst-licht);
  margin-top: 12px;
  text-align: center;
}
.formulier__succes {
  display: none;
  background: #e8f5e9;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  font-weight: 600;
  color: #2e7d32;
  line-height: 1.7;
}
.contact-gegevens { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.contact-gegeven { display: flex; gap: 14px; align-items: flex-start; }
.contact-gegeven__icon {
  width: 40px; height: 40px;
  background: var(--lichtgrijs);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-gegeven strong { display: block; font-size: 13px; font-weight: 600; color: var(--antraciet); margin-bottom: 2px; }
.contact-gegeven a,
.contact-gegeven span { font-size: 15px; color: var(--tekst-licht); }
.contact-gegeven a:hover { color: var(--groen); }
.contact-social { margin: 24px 0; }
.contact-social strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--groen); }
.werkgebied { background: var(--lichtgrijs); border-radius: 4px; padding: 20px; margin-top: 8px; }
.werkgebied h4 { font-size: 13px; margin-bottom: 8px; }
.werkgebied p { font-size: 14px; color: var(--tekst-licht); margin: 0; }
.trustband { padding: 32px 0; }
.trustband__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.trustband__item { display: flex; gap: 14px; align-items: center; }
.trustband__item .icon { font-size: 22px; }
.trustband__item strong { display: block; font-size: 14px; font-weight: 600; color: var(--warmwit); }
.trustband__item span { font-size: 13px; color: rgba(255,255,255,0.45); display: block; margin-top: 2px; }
@media (max-width: 900px) { .trustband__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .trustband__inner { grid-template-columns: 1fr; } }

/* Legacy klassen subpagina's */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro__tekst h2 { margin-bottom: 20px; }
.intro__tekst p { color: var(--tekst-licht); margin-bottom: 16px; }
.intro__badge {
  display: inline-block;
  margin-top: 16px;
  background: var(--groen);
  color: var(--wit);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 2px;
}
@media (max-width: 900px) { .intro { grid-template-columns: 1fr; gap: 48px; } }
.filter-balk { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.filter-btn {
  font-size: 13px; font-weight: 600; padding: 8px 18px;
  border-radius: 2px; border: 1px solid var(--lichtgrijs);
  background: var(--wit); color: var(--tekst-licht); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.actief { background: var(--groen); color: var(--wit); border-color: var(--groen); }
.stap-garanties {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
}
@media (max-width: 900px) { .stap-garanties { grid-template-columns: 1fr 1fr; } }
.dienst-kaart {
  display: block; background: var(--wit); border-radius: 4px;
  transition: var(--transition); text-decoration: none;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.dienst-kaart:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.dienst-kaart__foto {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.dienst-kaart__foto img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.dienst-kaart:hover .dienst-kaart__foto img { transform: scale(1.04); }
.dienst-kaart__icon { font-size: 24px; margin-bottom: 12px; }
.dienst-kaart h3 { margin-bottom: 6px; }
.waarde-kaart { padding: 36px 28px; background: var(--wit); border-radius: 2px; }
.waarde-kaart__icon {
  width: 44px; height: 44px; background: var(--lichtgrijs); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.waarde-kaart h3 { margin-bottom: 10px; }
.waarde-kaart p { font-size: 15px; color: var(--tekst-licht); margin: 0; }
.waarden-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
@media (max-width: 900px) { .waarden-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .waarden-grid { grid-template-columns: 1fr; } }
.check-lijst { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--tekst); }
.check-item::before {
  content: ''; width: 18px; height: 18px; min-width: 18px;
  background: var(--groen);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; margin-top: 2px;
}
.cta-sectie.section--groen { background: var(--groen); }

/* ============================================================
   MOBILE FIXES — extra responsive overrides
   ============================================================ */

/* Dienst-split inline padding override op mobiel */
@media (max-width: 900px) {
  .dienst-split__tekst { padding: 40px 24px !important; }
  .dienst-split__foto  { min-height: 280px; }
}
@media (max-width: 560px) {
  .dienst-split__foto  { min-height: 240px; }
}

/* Vacature cards → 1 kolom op mobiel */
@media (max-width: 640px) {
  .vacature-grid { grid-template-columns: 1fr !important; }
}

/* USP grids (3 kolommen inline) */
@media (max-width: 768px) {
  .usp-grid { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
}
@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr !important; }
}

/* Dienst kaarten grid → 1 kolom op mobiel */
@media (max-width: 640px) {
  .dienst-kaarten { grid-template-columns: 1fr !important; }
}

/* Hero werken-bij tekst kleiner op mobiel */
@media (max-width: 640px) {
  .hero-wb h1 { font-size: clamp(32px, 9vw, 52px) !important; }
  .hero-wb p  { font-size: 16px !important; }
  .hero-wb .container { padding-bottom: 48px !important; }
}

/* Hero--klein compacter op kleine schermen */
@media (max-width: 560px) {
  .hero--klein { min-height: 0; padding: 80px 0 40px !important; }
  .hero--klein.hero--wit { padding: 48px 0 36px !important; }
  .hero__title { font-size: clamp(28px, 8vw, 52px) !important; }
  .hero__sub   { font-size: 15px !important; }
}

/* Over-ons intro grid → 1 kolom */
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr !important; }
  .intro__beeld { aspect-ratio: 4/3 !important; }
}

/* Persoonlijk contact grid op over-ons */
@media (max-width: 900px) {
  .contact-grid-over { grid-template-columns: 1fr !important; gap: 48px !important; }
}

/* Header padding op kleine schermen */
@media (max-width: 480px) {
  .header__inner { padding: 0 16px !important; }
}
