@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #FFC300;
  --accent-dark: #D4A200;
  --dark: #0A0A0A;
  --dark-2: #141414;
  --dark-border: #2A2A2A;
  --light: #F5F4F2;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* ── TYPOGRAFIE ── */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; line-height: 1; }

.label {
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--accent);
}

/* ── KNOPPEN ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem;
  font-family: 'Barlow', sans-serif; font-size: .8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  border: none; cursor: pointer; transition: .2s;
}
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,195,0,.35); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.btn-outline-accent { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline-accent:hover { background: var(--accent); color: var(--dark); }

/* ── ACCENT BAR ── */
.accent-bar { display: block; width: 4rem; height: 4px; background: var(--accent); margin: .75rem 0 1.5rem; }
.accent-bar.center { margin-left: auto; margin-right: auto; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo img { height: 60px; width: auto; }

nav ul { display: flex; gap: .25rem; align-items: center; }
nav a {
  padding: .5rem .85rem;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  transition: color .15s;
}
nav a:hover, nav a.active { color: var(--accent); }

.header-phone {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 500;
  transition: color .15s;
}
.header-phone:hover { color: #fff; }
.header-phone svg { color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 1.25rem; }

/* Hamburger (legacy block, kept for cascade reset only) */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 0; transition: .3s; }

/* Mobiel menu */
.mobile-nav { display: none; background: var(--dark-2); border-top: 1px solid var(--dark-border); }
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: .25rem; }
.mobile-nav a { display: block; padding: .7rem 0; font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.75); border-bottom: 1px solid var(--dark-border); }
.mobile-nav a:last-child { border-bottom: none; }

/* ══════════════════════════════════
   PAGE HERO (voor alle pagina's behalve home)
══════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Sparse diagonal lines */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -58deg,
    transparent 0, transparent 80px,
    rgba(255,255,255,.028) 80px, rgba(255,255,255,.028) 81px
  );
  pointer-events: none;
}

/* Large "SLOOP" watermark — bottom right, gold outline */
.page-hero::after {
  content: 'SLOOP';
  position: absolute;
  right: -.04em;
  bottom: -.18em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(11rem, 21vw, 19rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,195,0,.10);
  letter-spacing: .04em;
  pointer-events: none;
  user-select: none;
  animation: watermarkIn 1.4s .1s cubic-bezier(.22,1,.36,1) both;
}

@keyframes watermarkIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: none; }
}

.page-hero h1 { font-size: clamp(3.5rem, 8vw, 6rem); color: #fff; margin-top: .5rem; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1.1rem; line-height: 1.7; max-width: 580px; margin-top: 1rem; }

/* ══════════════════════════════════
   HOME HERO
══════════════════════════════════ */
/* (see "Hero" block in additions below – single definition) */

/* ══════════════════════════════════
   USP STRIP
══════════════════════════════════ */
.usp-strip { background: var(--dark-2); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--dark-border);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  width: 42px; height: 42px; border-radius: 6px; flex-shrink: 0;
  background: rgba(255,195,0,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.usp-icon svg { width: 20px; height: 20px; }
.usp-item h3 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: .9rem; color: #fff; margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .04em; }
.usp-item p { color: rgba(255,255,255,.5); font-size: .8rem; line-height: 1.5; }

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
section { padding: 5rem 0; }
section.dark { background: var(--dark); }
section.light { background: var(--light); }
section.white { background: #fff; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--dark); margin-top: .5rem; }
.section-header h2.white { color: #fff; }
.section-header p { color: #666; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ── 2-kolom ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.text-col h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--dark); margin-top: .5rem; }
.text-col h2.white { color: #fff; }
.text-col p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.text-col p.white { color: rgba(255,255,255,.65); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: #444; }
.check-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.check-list.white li { color: rgba(255,255,255,.8); }

/* ── Foto ── */
.photo-frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-2);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame::before {
  content: '';
  position: absolute; top: -12px; left: -12px;
  width: 100%; height: 100%;
  border: 2px solid rgba(255,195,0,.25);
  z-index: -1;
}
.stat-badge {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  background: var(--accent); padding: 1.25rem;
  text-align: center;
}
.stat-badge strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: #fff; line-height: 1; }
.stat-badge span { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.85); line-height: 1.3; }

/* ══════════════════════════════════
   DIENSTEN GRID
══════════════════════════════════ */
.diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dienst-card {
  padding: 2rem;
  border: 1px solid #eee;
  transition: .25s;
  cursor: pointer;
}
.dienst-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.dienst-card .emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.dienst-card h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: .6rem; transition: color .2s; }
.dienst-card:hover h3 { color: var(--accent); }
.dienst-card p { color: #666; font-size: .88rem; line-height: 1.6; margin-bottom: 1rem; }
.dienst-card .meer { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); display: flex; align-items: center; gap: .25rem; }

/* ══════════════════════════════════
   PROJECTEN GRID
══════════════════════════════════ */
.projecten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.project-card { background: var(--dark-2); overflow: hidden; }
.project-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-thumb .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75), transparent); }
.project-thumb .badge { position: absolute; bottom: 1rem; left: 1rem; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .3rem .75rem; }
.badge-voor { background: rgba(0,0,0,.7); color: #fff; }
.badge-na { background: var(--accent); color: #fff; }
.project-info { padding: 1.25rem 1.5rem; }
.project-info h3 { font-size: 1.3rem; color: #fff; }
.project-info p { color: rgba(255,255,255,.45); font-size: .8rem; margin-top: .25rem; }

/* ══════════════════════════════════
   BEFORE/AFTER SLIDER
══════════════════════════════════ */
.slider-wrap { border: 1px solid #eee; margin-bottom: 2rem; box-shadow: 0 4px 30px rgba(0,0,0,.08); }
.ba-slider {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--dark-2);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .after { z-index: 1; }
.ba-slider .before-wrap { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.ba-slider .before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-line { position: absolute; top: 0; bottom: 0; width: 2px; background: #fff; z-index: 3; transform: translateX(-50%); }
.ba-handle {
  position: absolute; top: 50%; left: 50%; z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.3);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ba-label {
  position: absolute; bottom: 1rem; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; padding: .3rem .75rem; z-index: 5;
}
.ba-label.voor { left: 1rem; background: rgba(0,0,0,.7); color: #fff; }
.ba-label.na { right: 1rem; background: var(--accent); color: #fff; }
.ba-hint {
  position: absolute; bottom: 4rem; left: 50%; transform: translateX(-50%);
  font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase;
  letter-spacing: .1em; background: rgba(0,0,0,.3); padding: .3rem .75rem;
  border-radius: 999px; z-index: 5; white-space: nowrap; pointer-events: none;
}
.slider-info { padding: 1.5rem 2rem; background: #fff; }
.slider-tags { display: flex; gap: .5rem; margin-bottom: .75rem; flex-wrap: wrap; }
.slider-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .25rem .65rem; background: rgba(255,195,0,.08); color: var(--accent); }
.slider-info h2 { font-size: 2rem; color: var(--dark); }
.slider-info p { color: #666; font-size: .9rem; margin-top: .5rem; line-height: 1.6; }

/* ══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--light); border: 1px solid #e5e5e5; padding: 2rem; display: flex; flex-direction: column; }
.stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: #f59e0b; font-size: 1rem; }
.review-card blockquote { font-style: italic; color: #444; font-size: .9rem; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.review-author strong { font-size: .9rem; color: var(--dark); display: block; }
.review-author span { font-size: .75rem; color: #999; }

.rating-bar { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.rating-bar span { font-size: .85rem; color: #555; width: .75rem; }
.rating-track { flex: 1; height: 6px; background: #e5e5e5; border-radius: 99px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--accent); border-radius: 99px; }
.rating-count { font-size: .8rem; color: #999; width: 1rem; }

/* ══════════════════════════════════
   WERKWIJZE STAPPEN
══════════════════════════════════ */
.stappen { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.stap { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid #eee; align-items: start; }
.stap:last-child { border-bottom: none; }
.stap-nr {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stap-body h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: .6rem; }
.stap-body p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.stap-body ul { display: flex; flex-direction: column; gap: .4rem; }
.stap-body ul li { display: flex; align-items: flex-start; gap: .5rem; font-size: .85rem; color: #666; }
.stap-body ul li::before { content: '—'; color: var(--accent); flex-shrink: 0; }

/* Foto strip werkwijze */
.foto-strip { display: grid; grid-template-columns: repeat(3, 1fr); height: 280px; }
.foto-strip-item { position: relative; overflow: hidden; }
.foto-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.foto-strip-item:hover img { transform: scale(1.05); }
.foto-strip-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.foto-strip-label { position: absolute; bottom: 1rem; left: 1rem; z-index: 1; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: #fff; }

/* ══════════════════════════════════
   OVER ONS – FOTO GALERIJ
══════════════════════════════════ */
.foto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.foto-grid-item { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--dark-2); }
.foto-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.foto-grid-item:hover img { transform: scale(1.05); }

/* ══════════════════════════════════
   DIENSTEN PAGINA – ITEM
══════════════════════════════════ */
.dienst-item { padding: 4rem 0; border-bottom: 1px solid #eee; }
.dienst-item:last-child { border-bottom: none; }
.dienst-item .dienst-foto { aspect-ratio: 4/3; overflow: hidden; background: var(--dark-2); }
.dienst-item .dienst-foto img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════
   CONTACT FORMULIER
══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon { width: 42px; height: 42px; background: rgba(255,195,0,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.contact-info-item .lbl { font-size: .7rem; color: #999; text-transform: uppercase; letter-spacing: .1em; }
.contact-info-item a, .contact-info-item span { font-size: .95rem; color: var(--dark); font-weight: 500; }
.contact-info-item a:hover { color: var(--accent); }

.wa-block {
  display: flex; align-items: center; gap: 1rem;
  border: 2px solid #25D366; padding: 1.25rem; margin: 1.5rem 0;
  transition: .2s;
}
.wa-block:hover { background: #f0fdf4; }
.wa-block svg { color: #25D366; flex-shrink: 0; }
.wa-block strong { font-size: .9rem; color: #155724; display: block; }
.wa-block span { font-size: .8rem; color: #25D366; }

.map-embed { border: 1px solid #eee; overflow: hidden; margin-top: 1.5rem; }

form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
form .form-group { margin-bottom: 1.25rem; }
form label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #666; margin-bottom: .4rem; }
form input, form select, form textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid #ddd;
  font-family: 'Barlow', sans-serif; font-size: .9rem; color: #111;
  outline: none; transition: border .15s; background: #fff;
}
form input:focus, form select:focus, form textarea:focus { border-color: var(--accent); }
form textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .75rem; color: #999; margin-bottom: 1.25rem; line-height: 1.5; }
.form-success { padding: 2rem; text-align: center; background: #f0fdf4; border: 1px solid #bbf7d0; display: none; }
.form-success h3 { font-size: 1.8rem; color: #166534; margin-bottom: .5rem; }
.form-success p { color: #166534; font-size: .9rem; }

/* ══════════════════════════════════
   CTA SECTIE
══════════════════════════════════ */
.cta-section {
  background: var(--dark); padding: 5rem 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, var(--accent) 0, var(--accent) 1px, transparent 1px, transparent 20px);
  opacity: .03;
}
.cta-section h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: #fff; margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-tel { color: rgba(255,255,255,.4); font-size: .85rem; margin-top: 1.5rem; }
.cta-tel a { color: rgba(255,255,255,.7); transition: color .15s; }
.cta-tel a:hover { color: var(--accent); }

/* ══════════════════════════════════
   INFOSTRIP
══════════════════════════════════ */
.info-strip { background: var(--light); border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; padding: 3.5rem 0; }
.info-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.info-strip-grid strong { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--accent); display: block; line-height: 1; }
.info-strip-grid h4 { font-size: 1.2rem; color: var(--dark); margin: .25rem 0 .2rem; }
.info-strip-grid p { color: #888; font-size: .85rem; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background: var(--dark); color: rgba(255,255,255,.6); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; padding: 4rem 0; }
.footer-brand img { height: 60px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; }
.footer-brand a { display: inline-flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 1rem; transition: color .15s; }
.footer-brand a:hover { color: var(--accent); }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: .05em; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; margin-bottom: .6rem; }
.footer-contact li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact li a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-contact li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--dark-border); padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .78rem; }

/* ══════════════════════════════════
   WHATSAPP BUTTON
══════════════════════════════════ */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: .2s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.4); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp-item:nth-child(2) { border-right: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .diensten-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav, .header-phone, .header-right .btn { display: none; }
  .hamburger { display: block; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .two-col.reverse .photo-frame { order: -1; }
  .diensten-grid { grid-template-columns: 1fr; }
  .projecten-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .info-strip-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foto-grid { grid-template-columns: 1fr 1fr; }
  .foto-strip { grid-template-columns: 1fr; height: auto; }
  .foto-strip-item { height: 200px; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .stap { grid-template-columns: 56px 1fr; gap: 1rem; }
  .page-hero { padding: 7rem 0 3rem; }
  .hero-logo { height: 50px; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid var(--dark-border); }
  .usp-item:last-child { border-bottom: none; }
  .foto-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   AANVULLINGEN – nieuwe class-namen
══════════════════════════════════ */

/* Site header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--dark); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.6); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo-link { display: flex; align-items: center; }
.logo-img { height: 60px; width: auto; }
.main-nav ul { display: flex; gap: .25rem; align-items: center; }
.nav-link { padding: .5rem .85rem; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.75); transition: color .15s; }
.nav-link:hover, .nav-link.active { color: var(--accent); }
.header-cta { display: inline-flex; align-items: center; gap: .45rem; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .25rem; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 0; transition: transform .3s, opacity .3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .main-nav {
    display: flex; overflow: hidden; max-height: 0;
    flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0; z-index: 99;
    background: var(--dark-2); border-top: 1px solid var(--dark-border);
    transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
    padding: 0 1.5rem;
  }
  .main-nav.is-open { max-height: 600px; padding: 1rem 1.5rem 1.5rem; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .nav-link { display: block; padding: .75rem 0; border-bottom: 1px solid var(--dark-border); }
  .nav-link:last-child { border-bottom: none; }
  .mobile-cta { display: flex !important; margin-top: 1rem; width: 100%; justify-content: center; }
  .header-cta { display: none !important; }
  .hamburger { display: flex; }
}

/* Page hero */
/* Left gold accent bar */
.page-hero-pattern {
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 100%;
  pointer-events: none;
}
.page-hero-pattern::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; height: 76%;
  width: 3px;
  background: var(--accent);
  opacity: .55;
  transform-origin: top center;
  animation: accentBarGrow .9s .25s cubic-bezier(.22,1,.36,1) both;
}
/* Decorative large circle — upper right */
.page-hero-pattern::after {
  content: '';
  position: absolute;
  right: 8%; top: -30%;
  width: min(460px, 55vw);
  height: min(460px, 55vw);
  border-radius: 50%;
  border: 1px solid rgba(255,195,0,.07);
  animation: circleReveal 1.2s .3s cubic-bezier(.22,1,.36,1) both;
}
@keyframes accentBarGrow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: .55; }
}
@keyframes circleReveal {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}
.page-hero-content { position: relative; z-index: 1; }

/* Label accent */
.label-accent { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--accent); display: block; }

/* Section backgrounds */
.section-light { background: var(--light); padding: 5rem 0; }
.section-dark  { background: var(--dark); padding: 5rem 0; }
.section-white { background: #fff; padding: 5rem 0; }

/* Two-col helpers */
.two-col-reverse { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-text h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--dark); margin-top: .5rem; }
.two-col-text h2 .accent { color: var(--accent); }
.two-col-text p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.two-col-text-dark h2 { color: #fff; }
.two-col-text-dark p { color: rgba(255,255,255,.6); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* Checklist */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.check-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: #444; line-height: 1.5; }
.check-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.check-list-dark li { color: rgba(255,255,255,.75); }

/* Section headers */
.section-header-center { text-align: center; margin-bottom: 3.5rem; }
.section-header-center h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--dark); margin-top: .5rem; }
.section-header-center p { color: #666; max-width: 520px; margin: .75rem auto 0; line-height: 1.7; }
/* Op donkere achtergrond: witte tekst */
.section-dark .section-header-center h2 { color: #fff; }
.section-dark .section-header-center p { color: rgba(255,255,255,.55); }
.section-header-left { margin-bottom: 3rem; }
.section-header-left h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--dark); margin-top: .5rem; }
.section-header-left p { color: #555; max-width: 580px; margin-top: .75rem; line-height: 1.7; }
.section-cta-center { text-align: center; margin-top: 3rem; }
.section-cta-left { margin-top: 2rem; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--dark); padding-top: 70px; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 1; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,.25) 0%, rgba(10,10,10,.55) 50%, rgba(10,10,10,.85) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 4rem 1.5rem; }
.hero-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .25em; color: var(--accent); display: block; margin-bottom: 1rem; }
.hero-content h1 { font-size: clamp(3.5rem, 9vw, 7rem); color: #fff; line-height: 1; margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.hero-content h1 .accent { color: var(--accent); }
.hero-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; line-height: 1.7; max-width: 580px; margin: 0 auto 2.5rem; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* USP strip */
.usp-strip { background: var(--dark-2); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp-item { display: flex; align-items: flex-start; gap: 1rem; padding: 2rem 1.5rem; border-right: 1px solid var(--dark-border); }
.usp-item:last-child { border-right: none; }
.usp-icon { width: 42px; height: 42px; background: rgba(255,195,0,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); border-radius: 6px; }
.usp-item strong { display: block; color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: .2rem; }
.usp-item span { color: rgba(255,255,255,.45); font-size: .8rem; }

/* Diensten */
.diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: .5rem; }
.dienst-card { display: block; padding: 2rem; background: var(--dark-2); border: 1px solid var(--dark-border); transition: .25s; }
.dienst-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,195,0,.15); }
.dienst-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.dienst-emoji-lg { font-size: 3rem; margin-bottom: .75rem; }
.dienst-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: .6rem; transition: color .2s; }
.dienst-card:hover h3 { color: var(--accent); }
.dienst-card p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.6; }

/* Photo frame */
.photo-frame { position: relative; overflow: hidden; background: var(--dark-2); }
.photo-frame.ratio-4-3 { aspect-ratio: 4/3; }
.photo-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.photo-frame:hover img { transform: scale(1.05); }
.photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75), transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem 1.25rem; pointer-events: none; }
.photo-overlay span { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: #fff; letter-spacing: .05em; }
.photo-overlay small { font-size: .7rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* Projects preview */
.projects-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* Project article */
.project-article { display: grid; grid-template-columns: 340px 1fr; align-items: stretch; border: 1px solid #eee; box-shadow: 0 2px 20px rgba(0,0,0,.06); overflow: hidden; margin-bottom: 3rem; }
.project-info { padding: 2.5rem 2.5rem; background: #fff; display: flex; flex-direction: column; justify-content: flex-start; }
@media (max-width: 720px) { .project-article { grid-template-columns: 1fr; } }
.project-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.project-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .25rem .65rem; background: rgba(255,195,0,.08); color: var(--accent); border: 1px solid rgba(255,195,0,.25); }
.project-info h2 { font-size: 1.75rem; color: var(--dark); margin-bottom: .4rem; }
.project-meta { font-size: .82rem; color: #999; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #f0f0f0; }
.project-info p { color: #555; font-size: .9rem; line-height: 1.75; }
.meer-fotos { margin-top: 3rem; }
.meer-fotos h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--dark); margin-bottom: 1.5rem; }

/* Cat filter */
.cat-filter-bar { background: var(--light); border-bottom: 1px solid #e0e0e0; position: sticky; top: 70px; z-index: 50; }
.cat-filter-scroll { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; gap: 1.5rem; overflow-x: auto; padding-top: 1rem; padding-bottom: 1rem; scrollbar-width: none; }
.cat-filter-scroll::-webkit-scrollbar { display: none; }
.cat-btn { flex-shrink: 0; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; background: none; border: none; border-bottom: 2px solid transparent; padding: .25rem 0; cursor: pointer; color: #999; transition: .15s; }
.cat-btn:hover { color: #333; }
.cat-btn.active { color: var(--dark); border-color: var(--accent); }

/* Before/After slider – gebruik OLD definities uit regel 240-280, alleen aanvullingen hier */
.ba-after { z-index: 1; }
.ba-label-before { left: 1rem; background: rgba(0,0,0,.7); color: #fff; }
.ba-label-after { right: 1rem; background: var(--accent); color: var(--dark); }

/* Review summary row */
.review-score-row { display: flex; align-items: center; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: .75rem; }
.stars { display: flex; gap: .2rem; }
.review-score-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--accent); }
.review-score-label { font-size: .78rem; color: #888; }
.section-dark .review-score-label { color: rgba(255,255,255,.45); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.reviews-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
@media (max-width: 640px) { .reviews-grid, .reviews-grid--2 { grid-template-columns: 1fr; } }

/* Review card – leesbaar op zowel lichte als donkere achtergrond */
.review-card { background: #fff; border: 1px solid #e8e8e8; padding: 1.75rem; display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.review-stars { color: var(--accent); font-size: 1rem; letter-spacing: .05em; margin-bottom: .75rem; }
.review-card p { color: #444; font-size: .9rem; line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; flex: 1; }
.review-author { display: flex; flex-direction: column; border-top: 1px solid #f0f0f0; padding-top: .9rem; }
.review-author strong { color: var(--dark); font-size: .88rem; }
.review-author span { color: #999; font-size: .75rem; margin-top: .15rem; }

/* Dark-section variant */
.section-dark .review-card { background: rgba(255,255,255,.05); border-color: var(--dark-border); box-shadow: none; }
.section-dark .review-card p { color: rgba(255,255,255,.75); }
.section-dark .review-author { border-color: rgba(255,255,255,.1); }
.section-dark .review-author strong { color: #fff; }
.section-dark .review-author span { color: rgba(255,255,255,.4); }

/* Review page */
.review-overview { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center; background: #fff; border: 1px solid #eee; padding: 3rem; box-shadow: 0 2px 20px rgba(0,0,0,.05); }
.review-score-big { text-align: center; }
.score-number { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--accent); line-height: 1; }
.score-stars { display: flex; gap: .2rem; justify-content: center; margin: .25rem 0; }
.score-label { font-size: .8rem; color: #888; margin-top: .25rem; }
.score-bars { display: flex; flex-direction: column; gap: .6rem; }
.score-bar-row { display: flex; align-items: center; gap: .75rem; }
.score-bar-label { font-size: .82rem; color: #555; width: 2.5rem; text-align: right; flex-shrink: 0; }
.score-bar-track { flex: 1; height: 8px; background: #eee; border-radius: 99px; overflow: hidden; }
.score-bar-fill { height: 100%; background: var(--accent); border-radius: 99px; }
.score-bar-pct { font-size: .78rem; color: #999; width: 2.5rem; flex-shrink: 0; }
.reviews-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card-full { background: #fff; border: 1px solid #eee; padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; box-shadow: 0 1px 8px rgba(0,0,0,.04); }
.review-card-header { display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-card-header strong { display: block; font-size: .88rem; color: var(--dark); }
.review-plaats { display: block; font-size: .75rem; color: #999; }
.review-google-badge { margin-left: auto; flex-shrink: 0; }
.review-stars-small { font-size: .9rem; color: var(--accent); letter-spacing: .05em; }
.review-text { color: #444; font-size: .88rem; line-height: 1.65; font-style: italic; flex: 1; }
.review-datum { font-size: .72rem; color: #bbb; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card { background: rgba(255,255,255,.04); border: 1px solid var(--dark-border); padding: 2rem; text-align: center; }
.value-icon { width: 56px; height: 56px; background: rgba(255,195,0,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); margin: 0 auto 1.25rem; }
.value-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: .6rem; }
.value-card p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.65; }

/* Garanties */
.garanties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.garantie-item { text-align: center; padding: 2rem; background: rgba(255,255,255,.04); border: 1px solid var(--dark-border); }
.garantie-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.garantie-item strong { display: block; color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
.garantie-item p { color: rgba(255,255,255,.5); font-size: .82rem; line-height: 1.5; }

/* Werkwijze stappen */
.stappen-list { display: flex; flex-direction: column; gap: 5rem; margin-top: 1rem; }
.stap-item { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.stap-item-reverse .stap-left { order: 2; }
.stap-item-reverse .stap-right { order: 1; }
.stap-num { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; color: var(--accent); line-height: 1; opacity: .9; margin-bottom: .5rem; display: block; }
.stap-left h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--dark); margin-bottom: .75rem; }
.stap-left p { color: #555; line-height: 1.8; margin-bottom: 1.25rem; font-size: .95rem; }
.stap-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); transition: gap .15s; }
.stap-link:hover { gap: .65rem; }

/* CTA banner */
.cta-banner { background: var(--dark); padding: 5rem 0; position: relative; overflow: hidden; }
.cta-pattern { position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, var(--accent) 0, var(--accent) 1px, transparent 1px, transparent 20px); opacity: .03; pointer-events: none; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: #fff; margin-bottom: .75rem; }
.cta-content p { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form-wrap h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: .4rem; }
.contact-intro { color: #666; font-size: .92rem; margin-bottom: 2rem; line-height: 1.6; }
.contact-info-card { background: var(--light); border: 1px solid #e5e5e5; padding: 2rem; margin-bottom: 1.5rem; }
.contact-info-card h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: 1.25rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; list-style: none; }
.contact-details li { display: flex; align-items: flex-start; gap: .9rem; }
.contact-icon { width: 38px; height: 38px; background: rgba(255,195,0,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); border-radius: 4px; }
.whatsapp-green { background: rgba(37,211,102,.1) !important; color: #25D366 !important; }
.contact-details strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: #999; margin-bottom: .2rem; }
.contact-details a, .contact-details span { font-size: .9rem; color: var(--dark); }
.contact-details a:hover { color: var(--accent); }
.maps-embed { overflow: hidden; border: 1px solid #e5e5e5; }

/* Form */
form .form-group { margin-bottom: 1.25rem; }
form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
form label { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #666; margin-bottom: .4rem; }
.req { color: var(--accent); }
form input, form select, form textarea { width: 100%; padding: .85rem 1rem; border: 1.5px solid #ddd; font-family: 'Barlow', sans-serif; font-size: .9rem; color: #111; outline: none; transition: border .15s; background: #fff; }
form input:focus, form select:focus, form textarea:focus { border-color: var(--accent); }
form textarea { resize: vertical; min-height: 130px; }
.input-error { border-color: #e53e3e !important; }
.field-error { display: block; font-size: .75rem; color: #e53e3e; margin-top: .3rem; }
.form-success { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; background: #f0fdf4; border: 1px solid #86efac; margin-bottom: 1.5rem; color: #166534; }
.form-success svg { color: #16a34a; flex-shrink: 0; margin-top: 2px; }
.form-success strong { display: block; margin-bottom: .2rem; }
.form-error-global { padding: 1rem 1.25rem; background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; font-size: .88rem; margin-bottom: 1.5rem; }
.btn-full { width: 100%; justify-content: center; }
.form-privacy { font-size: .72rem; color: #aaa; text-align: center; margin-top: .75rem; line-height: 1.5; }

/* Buttons (ensure inline-flex everywhere) */
.btn-primary, .btn-outline-white, .btn-outline-accent {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem;
  font-family: 'Barlow', sans-serif; font-size: .78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  border: none; cursor: pointer; transition: .2s; white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,195,0,.35); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.btn-outline-accent { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline-accent:hover { background: var(--accent); color: var(--dark); }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); margin-top: auto; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-logo { height: 60px; width: auto; margin-bottom: 1.25rem; display: block; }
.footer-brand p { font-size: .85rem; line-height: 1.7; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.07); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: .15s; }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: .05em; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: .7rem; list-style: none; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .84rem; }
.footer-contact-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer-contact-list a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--dark-border); padding: 1.25rem 1.5rem; text-align: center; }
.footer-bottom p { font-size: .75rem; max-width: 1200px; margin: 0 auto; }

/* WhatsApp */
.whatsapp-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: .2s; color: #fff; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.45); }

/* Fade-in */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* Responsive extras */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .garanties-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .reviews-full-grid { grid-template-columns: 1fr 1fr; }
  .review-overview { grid-template-columns: 1fr; gap: 2rem; }
  .projects-preview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .two-col, .two-col-reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .stap-item, .stap-item-reverse { grid-template-columns: 1fr; gap: 1.5rem; }
  .stap-item-reverse .stap-left { order: 1; }
  .stap-item-reverse .stap-right { order: 2; }
  .diensten-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .garanties-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .projects-preview-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-full-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  form .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp-item:nth-child(2) { border-right: none; }
  .usp-item:nth-child(4) { border-right: none; }
}

/* ══════════════════════════════════
   DYNAMISCH & MODERN
══════════════════════════════════ */

/* Hero Ken Burns – subtiele zoom op load */
@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-bg img { animation: kenBurns 8s ease-out forwards; }

/* Hero scroll-down pijl */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.4); font-size: .65rem; text-transform: uppercase;
  letter-spacing: .2em; pointer-events: none;
}
.hero-scroll-arrow {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%       { transform: translateY(6px); opacity: .9; }
}

/* Fade-in met stagger via nth-child */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .3s; }
.fade-in:nth-child(5) { transition-delay: .4s; }
.fade-in:nth-child(6) { transition-delay: .5s; }

/* Dienst cards – goudlijn onderaan bij hover */
.dienst-card { position: relative; }
.dienst-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0; background: var(--accent);
  transition: width .3s ease;
}
.dienst-card:hover::after { width: 100%; }

/* Knoppen – subtiel shimmer effect */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn-primary {
  background-size: 200% auto;
  background-image: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 40%, var(--accent) 60%, var(--accent-dark) 100%);
}
.btn-primary:hover {
  background-image: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 40%, var(--accent) 60%, var(--accent-dark) 100%);
  animation: shimmer .6s linear;
}

/* Nav link – gouden underline op hover */
.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: .85rem; right: .85rem;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .2s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Review cards – lift + border top bij hover */
.review-card-full {
  transition: transform .25s ease, box-shadow .25s ease, border-top-color .25s ease;
  border-top: 2px solid transparent;
}
.review-card-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-top-color: var(--accent);
}

/* Value cards – idem */
.value-card { transition: transform .25s ease, border-color .25s ease; }
.value-card:hover { transform: translateY(-4px); border-color: var(--accent); }

/* Garantie items */
.garantie-item { transition: transform .25s ease, border-color .25s ease; }
.garantie-item:hover { transform: translateY(-3px); border-color: var(--accent); }

/* Page-hero tekst animaties */
.page-hero-content .label-accent {
  animation: heroFadeUp .6s .1s cubic-bezier(.22,1,.36,1) both;
}
.page-hero-content h1 {
  animation: heroFadeUp .7s .2s cubic-bezier(.22,1,.36,1) both;
}
.page-hero-content p {
  animation: heroFadeUp .7s .35s cubic-bezier(.22,1,.36,1) both;
}
.page-hero-content .hero-actions,
.page-hero-content a {
  animation: heroFadeUp .7s .45s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* Stap-num – gouden kleur met glow */
.stap-num {
  display: inline-block;
  text-shadow: 0 0 40px rgba(255,195,0,.3);
  transition: text-shadow .3s;
}
.stap-item:hover .stap-num {
  text-shadow: 0 0 60px rgba(255,195,0,.6);
}

/* Sectie achtergrond – subtiele scheiding */
.section-light { border-top: 1px solid rgba(0,0,0,.05); }

/* CTA banner – goud accent lijn bovenaan */
.cta-banner { border-top: 3px solid var(--accent); }

/* USP strip items hover */
.usp-item { transition: background .2s; }
.usp-item:hover { background: rgba(255,255,255,.03); }

/* Stappen mobile */
@media (max-width: 768px) {
  .stap-item, .stap-item-reverse { grid-template-columns: 1fr; gap: 1.5rem; }
  .stap-item-reverse .stap-left { order: 1; }
  .stap-item-reverse .stap-right { order: 2; }
  .stap-num { font-size: 3.5rem; }
}

/* ======================================================
   Landing pages (geo-targeted)
   ====================================================== */
.lp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.lp-intro-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--dark); margin: .75rem 0 1rem; }
.lp-intro-text p { color: #444; font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }
.lp-check-block { background: #fff; border: 1px solid #e8e8e8; border-radius: 4px; padding: 2rem; box-shadow: 0 2px 20px rgba(0,0,0,.05); }
.lp-check-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--dark); margin-bottom: 1.25rem; }

.lp-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 2rem 0 1rem;
}
.lp-area-tag {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2px;
}
.lp-areas-note {
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  margin-top: .5rem;
}

/* FAQ */
.section-white { background: #fff; padding: 5rem 0; }
.faq-list { max-width: 760px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  background: #fafafa;
  transition: background .15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .2s;
}
details[open] .faq-question { background: #fff; }
details[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 1rem 1.5rem 1.25rem; border-top: 1px solid #f0f0f0; }
.faq-answer p { color: #555; font-size: .9rem; line-height: 1.75; margin: 0; }

/* Landing page photo strip */
.lp-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp-photo-figure { margin: 0; }
@media (max-width: 640px) {
  .lp-photos-grid { grid-template-columns: 1fr; }
}

/* Landing page overview */
.lp-overview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.lp-card { border: 1px solid #e0e0e0; border-radius: 4px; padding: 1.5rem; background: #fff; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: .5rem; transition: box-shadow .15s, border-color .15s; }
.lp-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); border-color: var(--accent); }
.lp-card-city { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); }
.lp-card h3 { font-size: 1rem; color: var(--dark); margin: 0; }
.lp-card p { font-size: .8rem; color: #777; margin: 0; line-height: 1.5; }
.lp-card-url { font-size: .72rem; color: #aaa; font-family: monospace; margin-top: auto; padding-top: .5rem; border-top: 1px solid #f0f0f0; }

@media (max-width: 768px) {
  .lp-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   Projecten grid + kaarten
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
}
.project-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5e7eb;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-pinned { box-shadow: 0 2px 10px rgba(255,195,0,.25), 0 0 0 2px rgba(255,195,0,.4); }
.project-card-pin {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: var(--accent);
  color: #0A0A0A;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .2rem .55rem;
  border-radius: 4px;
}
.project-card-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}
.project-card-cat {
  position: absolute;
  bottom: .6rem;
  left: .6rem;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .25rem .6rem;
  border-radius: 4px;
}
.project-card-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 .4rem;
  line-height: 1.35;
}
.project-card-desc {
  font-size: .84rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 .75rem;
  flex: 1;
}
.project-card-meta {
  font-size: .78rem;
  color: #9ca3af;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}
.project-meta-sep { color: #d1d5db; }

/* Project detailpagina galerij */
.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.project-detail-gallery .photo-frame {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
}
.project-detail-gallery .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Project meta blok */
.project-meta-block {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}
.project-meta-item { display: flex; flex-direction: column; gap: .2rem; }
.project-meta-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; }
.project-meta-item > span:last-child { font-size: .95rem; font-weight: 600; color: var(--dark); }

/* Responsive */
@media (max-width: 1100px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .project-detail-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .projects-grid { grid-template-columns: 1fr; } .project-detail-gallery { grid-template-columns: 1fr; } }

