/* ============================================================
   Guus Sierbestratingen - design system
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* brand */
  --ink: #1B1916;          /* anthracite, near-black */
  --ink-700: #2A2723;
  --ink-600: #3C3833;
  --yellow: #F2C200;       /* warm yellow accent */
  --yellow-deep: #E0B000;
  --paper: #FAF8F3;        /* warm white */
  --paper-2: #F2EEE6;      /* warm light grey */
  --line: #E4DED2;         /* hairline */
  --grey-300: #CFC8BB;
  --muted: #6E675D;        /* warm grey text */
  --muted-on-dark: #B7AFA2;
  --white: #ffffff;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(27,25,22,.06), 0 2px 8px rgba(27,25,22,.05);
  --shadow-md: 0 8px 24px rgba(27,25,22,.10);
  --shadow-lg: 0 24px 60px rgba(27,25,22,.18);

  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

/* ---------- type helpers ---------- */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}
.overline::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--yellow);
}
.overline.on-dark { color: var(--white); }
.overline.muted { color: var(--muted); }

.h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 900; }
.h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); }

.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.sec-head { max-width: 720px; }
.sec-head .h2 { margin-top: 16px; }
.sec-head p { margin-top: 18px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --bg: var(--ink);
  --fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  padding: 15px 26px;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bg);
  cursor: pointer;
  transition: transform .25s var(--ease), background .2s var(--ease),
              box-shadow .25s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn--primary { --bg: var(--yellow); --fg: var(--ink); }
.btn--primary:hover { --bg: var(--yellow-deep); }

.btn--dark { --bg: var(--ink); --fg: var(--white); }

.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { --bg: var(--ink); --fg: var(--white); }

.btn--ghost-light {
  --bg: transparent; --fg: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost-light:hover { --bg: var(--white); --fg: var(--ink); border-color: var(--white); }

.btn--whatsapp { --bg: #25D366; --fg: #fff; border-color:#25D366; }
.btn--whatsapp:hover { --bg:#1eb858; border-color:#1eb858; }

.btn--block { width: 100%; }
.btn--lg { padding: 18px 30px; font-size: 1.08rem; }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  color: var(--ink); font-size: .98rem;
}
.btn-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn-link:hover svg { transform: translateX(4px); }
.btn-link .ul { position: relative; }
.btn-link .ul::after {
  content:""; position:absolute; left:0; bottom:-3px; height:2px; width:100%;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.btn-link:hover .ul::after { transform: scaleX(1); }

/* ============================================================
   Image / logo placeholders
   ============================================================ */
.ph {
  position: relative;
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(45deg,
    transparent, transparent 13px,
    rgba(27,25,22,.045) 13px, rgba(27,25,22,.045) 14px);
  overflow: hidden;
  isolation: isolate;
}
.ph--dark {
  background-color: #211f1b;
  background-image: repeating-linear-gradient(45deg,
    transparent, transparent 13px,
    rgba(255,255,255,.04) 13px, rgba(255,255,255,.04) 14px);
}
.ph__tag {
  position: absolute; left: 14px; bottom: 12px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11.5px; letter-spacing: .02em;
  color: var(--muted);
  background: rgba(255,255,255,.86);
  padding: 5px 9px; border-radius: 3px;
  display: inline-flex; align-items: center; gap: 6px;
  backdrop-filter: blur(2px);
  z-index: 2;
}
.ph__tag::before { content:""; width:7px; height:7px; background: var(--yellow); border-radius: 1px; }
.ph--dark .ph__tag { color: #d9d2c6; background: rgba(20,18,16,.7); }
.ph__icon {
  position:absolute; inset:0; display:grid; place-items:center;
  color: rgba(27,25,22,.16);
}
.ph--dark .ph__icon { color: rgba(255,255,255,.12); }
.ph__icon svg { width: 56px; height: 56px; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s var(--ease);
}
.header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.header__bar {
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}
.header__nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.header__nav a {
  padding: 8px 13px; border-radius: var(--radius);
  font-weight: 600; font-size: .96rem; color: rgba(255,255,255,.82);
  position: relative; transition: color .2s var(--ease);
}
.header__nav a::after {
  content:""; position:absolute; left:13px; right:13px; bottom:3px; height:2px;
  background: var(--yellow); transform: scaleX(0); transform-origin:left;
  transition: transform .25s var(--ease);
}
.header__nav a:hover { color: #fff; }
.header__nav a:hover::after { transform: scaleX(1); }
.header__cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.phone-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; color:#fff;
  padding: 11px 16px; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.22);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.phone-btn svg { width: 17px; height: 17px; color: var(--yellow); }
.phone-btn:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); }
.phone-btn .lbl { font-size: .7rem; font-weight:600; color: var(--muted-on-dark); letter-spacing:.04em; text-transform:uppercase; display:block; line-height:1; margin-bottom:3px; }
.phone-btn .num { display:block; line-height:1; font-size:1rem; }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 40px; height: 40px; position: relative; flex: none;
}
.logo__mark i {
  position: absolute; display:block;
}
.logo__mark .b1 { left:0; top:0; width:17px; height:40px; background: var(--yellow); transform: skewX(-12deg); transform-origin: bottom; }
.logo__mark .b2 { right:0; top:0; width:17px; height:40px; background:#8c857a; transform: skewX(-12deg); }
.logo__mark .b3 { left:11px; bottom:0; width:18px; height:20px; background: var(--white); transform: skewX(-12deg); }
.logo__txt { line-height: 1; }
.logo__txt b { font-family: var(--font-display); font-weight: 900; font-size: 1.28rem; color:#fff; letter-spacing:-.02em; display:block; }
.logo__txt span { font-family: var(--font-display); font-weight: 600; font-size: .82rem; color: var(--yellow); letter-spacing:.02em; display:block; }

.hamburger {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border: none; background: transparent; cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.header.open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header.open .hamburger span:nth-child(2) { opacity: 0; }
.header.open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--ink); padding: 28px var(--gutter) 40px;
  display: none; flex-direction: column; gap: 6px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  overflow-y: auto;
}
.header.open .drawer { transform: translateY(0); opacity: 1; pointer-events: auto; }
.drawer a.nav {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer a.nav:last-of-type { border-bottom: none; }
.drawer .drawer__cta { margin-top: 20px; display: grid; gap: 12px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .ph { position: absolute; inset: 0; }
.hero__media::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,18,15,.55) 0%, rgba(20,18,15,.62) 45%, rgba(20,18,15,.86) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(72px, 13vw, 168px);
  max-width: 880px;
}
.hero h1 { color: #fff; margin-top: 22px; }
.hero h1 .hl { color: var(--yellow); }
.hero__sub { color: #E6E0D6; font-size: clamp(1.1rem, 1.8vw, 1.4rem); margin-top: 24px; max-width: 640px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__trust {
  margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px 26px; align-items:center;
  color: #CFC8BB; font-size: .95rem; font-weight: 500;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero__trust svg { width: 18px; height: 18px; color: var(--yellow); flex:none; }
.hero__trust .dot { width:4px; height:4px; border-radius:50%; background: rgba(255,255,255,.3); }

/* ============================================================
   Diensten (services)
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px;
}
.s-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.s-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--grey-300); }
.s-card__img { aspect-ratio: 4/3; position: relative; }
.s-card__img .ph { position:absolute; inset:0; transition: transform .5s var(--ease); }
.s-card:hover .s-card__img .ph { transform: scale(1.05); }
.s-card__num {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: .9rem; border-radius: 3px;
}
.s-card__body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.s-card__body h3 { font-size: 1.32rem; }
.s-card__body p { color: var(--muted); font-size: .98rem; margin-top: 10px; flex: 1; }
.s-card__body .btn-link { margin-top: 20px; }

/* ============================================================
   Waarom Guus (USPs)
   ============================================================ */
.why { background: var(--ink); color: #fff; }
.why .overline { color: #fff; }
.why .h2 { color: #fff; }
.why__top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.why__top p { color: var(--muted-on-dark); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 56px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow:hidden; }
.usp { background: var(--ink); padding: 34px 28px; transition: background .3s var(--ease); }
.usp:hover { background: var(--ink-700); }
.usp__n { font-family: var(--font-display); font-weight: 800; color: var(--yellow); font-size: .9rem; letter-spacing:.1em; }
.usp h3 { color:#fff; font-size: 1.24rem; margin-top: 18px; }
.usp p { color: var(--muted-on-dark); font-size: .96rem; margin-top: 10px; }

/* ============================================================
   Realisaties (gallery + before/after)
   ============================================================ */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip {
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  padding: 9px 18px; border-radius: 100px; border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink); cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 16px; margin-top: 28px; grid-auto-flow: dense;
}
.proj {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  grid-column: span 4; aspect-ratio: 3/2.6;
  transition: transform .25s var(--ease);
}
.proj.wide { grid-column: span 8; aspect-ratio: 3/1.4; }
.proj.tall { aspect-ratio: 3/3.6; }
.proj .ph { position:absolute; inset:0; transition: transform .6s var(--ease); }
.proj:hover .ph { transform: scale(1.06); }
.proj__meta {
  position:absolute; left:0; right:0; bottom:0; z-index: 3;
  padding: 40px 18px 16px; color:#fff;
  background: linear-gradient(180deg, transparent, rgba(20,18,15,.82));
  transform: translateY(8px); opacity: 0; transition: all .3s var(--ease);
}
.proj:hover .proj__meta { transform: translateY(0); opacity: 1; }
.proj__meta b { font-family: var(--font-display); font-weight:800; font-size:1.05rem; display:block; }
.proj__meta span { font-size:.85rem; color: var(--grey-300); }
.proj__cat {
  position:absolute; top:12px; left:12px; z-index:3;
  font-family: var(--font-display); font-weight:700; font-size:.72rem; letter-spacing:.06em; text-transform:uppercase;
  background: rgba(242,194,0,.95); color: var(--ink); padding: 5px 9px; border-radius:3px;
}
.proj.hide { display: none; }

/* before / after */
.ba-block { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; margin-top: 64px; }
.ba {
  position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden;
  user-select: none; touch-action: none; box-shadow: var(--shadow-md);
}
.ba__layer { position:absolute; inset:0; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 0 0 0); }
.ba__lbl {
  position:absolute; top:14px; z-index: 4;
  font-family: var(--font-display); font-weight:700; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase;
  padding: 6px 11px; border-radius: 3px; color:#fff; background: rgba(20,18,15,.7);
}
.ba__lbl.before { left: 14px; }
.ba__lbl.after { right: 14px; background: rgba(242,194,0,.95); color: var(--ink); }
.ba__handle {
  position:absolute; top:0; bottom:0; z-index: 5; width: 3px; background: var(--yellow);
  left: 50%; transform: translateX(-50%); cursor: ew-resize;
}
.ba__grip {
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); color: var(--ink);
  display:grid; place-items:center; box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.ba__grip svg { width: 22px; height: 22px; }
.ba-copy .h3 { margin-top: 14px; }
.ba-copy p { color: var(--muted); margin-top: 14px; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--paper-2); }
.reviews__head { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.gscore { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 22px; box-shadow: var(--shadow-sm); }
.gscore__big { font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; line-height: 1; }
.gscore .stars { color: var(--yellow); }
.gscore small { color: var(--muted); display:block; font-size:.85rem; margin-top:4px; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review p { font-size: 1.05rem; line-height: 1.55; }
.review__who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.review__av { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--yellow); display:grid; place-items:center; font-family: var(--font-display); font-weight:800; flex:none; }
.review__who b { display:block; font-size:.98rem; }
.review__who span { color: var(--muted); font-size:.85rem; }

/* ============================================================
   Werkwijze (3 steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step::before {
  content: ""; position:absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--line);
}
.step.is-yellow::before { background: var(--yellow); }
.step__n { font-family: var(--font-display); font-weight: 900; font-size: 3rem; color: var(--ink); line-height: 1; opacity: .12; }
.step h3 { font-size: 1.35rem; margin-top: 8px; }
.step p { color: var(--muted); margin-top: 12px; }

/* ============================================================
   Final CTA + form
   ============================================================ */
.cta { background: var(--yellow); color: var(--ink); }
.cta__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.cta h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.cta__lead { font-size: 1.2rem; margin-top: 20px; max-width: 460px; color: var(--ink-700); }
.cta__contact { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.cta__call {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink); color: #fff; padding: 16px 22px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  align-self: flex-start;
}
.cta__call:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cta__call svg { width: 24px; height: 24px; color: var(--yellow); }
.cta__call .lbl { font-size:.72rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color: var(--muted-on-dark); display:block; margin-bottom:2px; }
.cta__call .num { font-size: 1.25rem; display:block; line-height:1; }

.form {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
}
.form h3 { font-size: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-top: 16px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .85rem; display: block; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: border-color .2s var(--ease), background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: #fff; }
.field textarea { resize: vertical; min-height: 96px; }
.field.invalid input, .field.invalid textarea { border-color: #C0392B; background: #FDF3F2; }
.field .err { color: #C0392B; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.form__submit { margin-top: 22px; }
.form__note { font-size: .85rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form__success {
  display: none; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  padding: 30px 10px;
}
.form__success.show { display: flex; }
.form__success .ok { width: 64px; height: 64px; border-radius: 50%; background: #25D366; color:#fff; display:grid; place-items:center; }
.form__success .ok svg { width: 32px; height: 32px; }
.form.sent .form__inner { display: none; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--muted-on-dark); padding-block: clamp(56px, 7vw, 88px) 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 1rem; letter-spacing: .02em; margin-bottom: 18px; font-weight: 700; }
.footer a { display: block; padding: 6px 0; color: var(--muted-on-dark); transition: color .2s; }
.footer a:hover { color: var(--yellow); }
.footer__about p { margin-top: 18px; line-height: 1.6; }
.footer__contact div { padding: 4px 0; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius);
  display: grid; place-items: center; padding: 0;
}
.footer__social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bar { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .85rem; }
.footer__logo .logo__txt b { font-size: 1.4rem; }

/* ============================================================
   Floating WhatsApp + mobile sticky CTA bar
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .25s var(--ease);
  animation: wa-pop .4s var(--ease) both;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pop { from { transform: scale(0); } to { transform: scale(1); } }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; grid-template-columns: 1fr 1fr;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px; gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.2);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.mobile-bar .call { background: rgba(255,255,255,.1); color:#fff; }
.mobile-bar .call svg { color: var(--yellow); }
.mobile-bar .offer { background: var(--yellow); color: var(--ink); }
.mobile-bar a svg { width: 19px; height: 19px; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Service page specifics
   ============================================================ */
.breadcrumb { font-size: .9rem; color: var(--muted-on-dark); display:flex; gap:8px; align-items:center; }
.breadcrumb a:hover { color: var(--yellow); }
.subhero { background: var(--ink); color:#fff; padding-block: clamp(40px,6vw,72px); }
.subhero h1 { color:#fff; margin-top: 18px; max-width: 880px; }
.subhero p { color: var(--muted-on-dark); margin-top: 18px; max-width: 620px; font-size: 1.15rem; }
.subhero__actions { margin-top: 30px; display:flex; flex-wrap:wrap; gap: 14px; }

.prose { max-width: 720px; }
.prose .h3 { margin-top: 40px; }
.prose h2.h2 { margin-top: 8px; }
.prose p { margin-top: 16px; color: var(--ink-600); }
.prose ul { margin-top: 18px; padding: 0; list-style: none; display: grid; gap: 12px; }
.prose ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-600); }
.prose ul li svg { width: 22px; height: 22px; color: var(--yellow); flex: none; margin-top: 1px; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px,5vw,72px); align-items: start; }
.split__media { position: sticky; top: 100px; display: grid; gap: 16px; }
.split__media .ph { border-radius: var(--radius-lg); aspect-ratio: 4/3; }
.split__media .ph.sm { aspect-ratio: 16/10; }

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink);
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq__q svg { width: 22px; height: 22px; flex: none; transition: transform .3s var(--ease); color: var(--yellow); }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding-bottom: 22px; color: var(--muted); max-width: 640px; }

/* ============================================================
   Contact page
   ============================================================ */
/* select field - matches .field input */
.field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 42px 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231B1916' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 18px;
  -webkit-appearance: none; appearance: none; cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s;
}
.field select:focus { outline: none; border-color: var(--ink); background-color: #fff; }

/* contact layout: form + direct options */
.contact-layout {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px); align-items: start; margin-top: 8px;
}
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-side > .overline { margin-bottom: 2px; }
.contact-side > p.lead { margin-bottom: 8px; }

/* big call button (dark) */
.call-big {
  display: flex; align-items: center; gap: 16px;
  background: var(--ink); color: #fff; padding: 18px 22px; border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.call-big:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.call-big .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--yellow); color: var(--ink); display: grid; place-items: center; flex: none; }
.call-big .ic svg { width: 24px; height: 24px; }
.call-big .lbl { font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-on-dark); display: block; margin-bottom: 3px; }
.call-big .num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; display: block; }

.btn--whatsapp.btn--lg svg { width: 22px; height: 22px; }

/* secondary contact rows */
.cmeta { display: grid; gap: 2px; border-top: 1px solid var(--line); }
.cmeta__row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 4px; border-bottom: 1px solid var(--line); }
.cmeta__row .ic { width: 38px; height: 38px; border-radius: var(--radius); background: var(--paper-2); color: var(--ink); display: grid; place-items: center; flex: none; }
.cmeta__row .ic svg { width: 19px; height: 19px; }
.cmeta__row .k { font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.cmeta__row .v { font-size: 1.05rem; color: var(--ink); line-height: 1.45; }
.cmeta__row a.v:hover { color: var(--yellow-deep); }
.cmeta__row .v small { display: block; color: var(--muted); font-size: .9rem; }

/* trust strip */
.trust-strip { background: var(--ink); color: #fff; }
.trust-strip .wrap { padding-block: clamp(28px, 4vw, 44px); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; }
.trust-item { background: var(--ink); padding: 24px 24px; display: flex; align-items: center; gap: 14px; transition: background .3s var(--ease); }
.trust-item:hover { background: var(--ink-700); }
.trust-item .ic { width: 40px; height: 40px; border-radius: 50%; background: rgba(242,194,0,.14); color: var(--yellow); display: grid; place-items: center; flex: none; }
.trust-item .ic svg { width: 21px; height: 21px; }
.trust-item b { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #fff; display: block; line-height: 1.2; }
.trust-item span { font-size: .88rem; color: var(--muted-on-dark); }

/* work area */
.workarea { background: var(--paper-2); }
.workarea__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.workarea__map { border-radius: var(--radius-lg); aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.town-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.town {
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  padding: 9px 16px; border-radius: 100px; border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
}
.town::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.town.is-base { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   Realisaties - overzicht
   ============================================================ */
.r-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.r-card .s-card__img { aspect-ratio: 4/3; }
.r-card .s-card__body h3 { font-size: 1.18rem; }
.r-card .s-card__body .loc { color: var(--muted); font-size: .96rem; margin-top: 8px; display: flex; align-items: center; gap: 7px; }
.r-card .s-card__body .loc svg { width: 16px; height: 16px; color: var(--yellow); flex: none; }

/* ============================================================
   Realisatie - detailpagina (single project)
   ============================================================ */
/* project hero */
.phero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.phero__media { position: absolute; inset: 0; z-index: 0; }
.phero__media .ph { position: absolute; inset: 0; }
.phero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,18,15,.45) 0%, rgba(20,18,15,.40) 40%, rgba(20,18,15,.86) 100%);
}
.phero__inner {
  position: relative; z-index: 2;
  min-height: clamp(400px, 56vh, 600px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: clamp(28px, 5vw, 56px);
}
.phero .back {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: #fff;
  padding: 9px 15px 9px 12px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.28);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.phero .back svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.phero .back:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.phero .back:hover svg { transform: translateX(-3px); }
.phero h1 { color: #fff; margin-top: auto; padding-top: 26px; max-width: 16ch; }
.phero__cat {
  display: inline-flex; align-self: flex-start; margin-top: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  background: var(--yellow); color: var(--ink); padding: 6px 12px; border-radius: 3px;
}

/* fact bar */
.factbar { border-bottom: 1px solid var(--line); background: var(--white); }
.factbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { display: flex; align-items: center; gap: 14px; padding: 26px 28px; border-left: 1px solid var(--line); }
.fact:first-child { border-left: none; padding-left: 0; }
.fact .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--paper-2); color: var(--ink); display: grid; place-items: center; flex: none; }
.fact .ic svg { width: 20px; height: 20px; }
.fact .k { font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.fact .v { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink); line-height: 1.2; }

/* project photo gallery */
.pgal { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; grid-auto-flow: dense; }
.pgal figure {
  position: relative; margin: 0; grid-column: span 6; aspect-ratio: 4/3;
  border-radius: var(--radius-lg); overflow: hidden; cursor: zoom-in;
}
.pgal figure.wide { grid-column: span 12; aspect-ratio: 16/8; }
.pgal figure.third { grid-column: span 4; aspect-ratio: 1/1; }
.pgal .ph { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.pgal figure:hover .ph { transform: scale(1.05); }
.pgal .zoom {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(20,18,15,.6); color: #fff;
  display: grid; place-items: center; opacity: 0; transform: scale(.85); transition: all .25s var(--ease);
}
.pgal .zoom svg { width: 18px; height: 18px; }
.pgal figure:hover .zoom { opacity: 1; transform: scale(1); }

.ba-featured { margin-bottom: 16px; }
.ba-featured .ba { aspect-ratio: 16/8; }

/* quote / testimonial block */
.qblock { background: var(--yellow); color: var(--ink); }
.qblock .wrap { max-width: 900px; text-align: center; }
.qblock__mark { font-family: var(--font-display); font-weight: 900; font-size: 5rem; line-height: .6; color: var(--ink); opacity: .18; }
.qblock blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.18; text-wrap: balance;
}
.qblock figcaption { margin-top: 26px; display: inline-flex; align-items: center; gap: 13px; }
.qblock .av { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--yellow); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.qblock .who { text-align: left; }
.qblock .who b { font-family: var(--font-display); font-weight: 800; display: block; line-height: 1.1; }
.qblock .who span { font-size: .9rem; color: var(--ink-700); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,18,15,.93); display: none; }
.lightbox.open { display: grid; place-items: center; }
.lightbox__stage { width: min(92vw, 1100px); aspect-ratio: 3/2; max-height: 82vh; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.lightbox__stage .ph { position: absolute; inset: 0; }
.lightbox__stage > div { position: relative; width: 100%; height: 100%; }
.lightbox__btn {
  position: absolute; z-index: 2; width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.24); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .9rem; letter-spacing: .04em; background: rgba(0,0,0,.4); padding: 7px 14px; border-radius: 100px; }

/* more projects */
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

/* ============================================================
   Blog - overzicht + artikel
   ============================================================ */
/* post meta row */
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; color: var(--muted); font-size: .9rem; font-weight: 500; }
.post-meta .cat {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  background: var(--yellow); color: var(--ink); padding: 5px 10px; border-radius: 3px;
}
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--grey-300); }
.post-meta.on-dark { color: var(--muted-on-dark); }

/* featured post */
.blog-feature { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(28px, 4vw, 52px); align-items: center; margin-top: 4px; }
.blog-feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/11; box-shadow: var(--shadow-md); }
.blog-feature__media .ph { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.blog-feature:hover .blog-feature__media .ph { transform: scale(1.03); }
.blog-feature .flag { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow-deep); }
.blog-feature h2 { margin-top: 14px; font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.blog-feature p { color: var(--muted); margin-top: 16px; font-size: 1.08rem; }
.blog-feature .post-meta { margin-top: 22px; }

/* blog grid (reuses s-card) */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.blog-card .s-card__img { aspect-ratio: 16/10; }
.blog-card .s-card__body .post-meta { font-size: .82rem; }
.blog-card .s-card__body h3 { font-size: 1.22rem; margin-top: 14px; }
.blog-card .s-card__body .excerpt { color: var(--muted); font-size: .98rem; margin-top: 10px; flex: 1; }

/* divider for overview sections */
.blog-divider { border: none; border-top: 1px solid var(--line); margin: clamp(48px, 7vw, 88px) 0 0; }

/* article header */
.article-head { background: var(--ink); color: #fff; padding-block: clamp(40px, 6vw, 72px); }
.article-head h1 { color: #fff; margin-top: 18px; max-width: 18ch; }
.article-head .post-meta { margin-top: 24px; }
.article-head .author { display: inline-flex; align-items: center; gap: 10px; }
.article-head .author .av { width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: .88rem; }
.article-head .author b { color: #fff; font-family: var(--font-display); font-weight: 700; }

/* article body */
.article { max-width: 760px; margin-inline: auto; }
.article__cover { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/8; box-shadow: var(--shadow-md); margin-bottom: clamp(28px, 4vw, 44px); }
.article__cover .ph { position: absolute; inset: 0; }
.article__lead { color: var(--ink); font-weight: 500; }
.article p.article__lead { font-size: clamp(1.18rem, 2vw, 1.42rem); line-height: 1.5; }
.article p { margin-top: 18px; color: var(--ink-600); font-size: 1.08rem; line-height: 1.72; }
.article h2 { margin-top: 42px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.article h3 { margin-top: 30px; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.article ul { margin-top: 18px; padding: 0; list-style: none; display: grid; gap: 12px; }
.article ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-600); font-size: 1.06rem; }
.article ul li svg { width: 22px; height: 22px; color: var(--yellow); flex: none; margin-top: 2px; }
.article figure.inline { margin: 34px 0; }
.article figure.inline .ph { position: relative; border-radius: var(--radius-lg); aspect-ratio: 16/9; overflow: hidden; }
.article figure.inline figcaption { color: var(--muted); font-size: .9rem; margin-top: 10px; text-align: center; }

/* takeaways box */
.takeaways { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 34px); margin: 38px 0; }
.takeaways h3 { margin: 0 0 16px; font-size: 1.2rem; }
.takeaways ul li svg { color: var(--yellow); }

/* inline author/cta block at end of article */
.article-cta { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.article-cta p { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--ink); margin: 0; max-width: 22ch; line-height: 1.2; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .r-grid { grid-template-columns: repeat(2, 1fr); }
  .more-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .factbar__grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: none; padding-left: 0; }
  .fact { border-top: 1px solid var(--line); }
  .fact:nth-child(1), .fact:nth-child(2) { border-top: none; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
  :root { --header-h: 66px; }
  .header__nav, .header__cta .phone-btn .lbl, .header__cta { display: none; }
  .header__cta { display: flex; }
  .header__cta .phone-btn, .header__cta .btn { display: none; }
  .hamburger { display: flex; }
  .drawer { display: flex; }
  .cta__grid { grid-template-columns: 1fr; }
  .why__top { grid-template-columns: 1fr; gap: 20px; }
  .ba-block { grid-template-columns: 1fr; gap: 32px; }
  .split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .workarea__grid { grid-template-columns: 1fr; gap: 32px; }
  .workarea__map { order: -1; }
  .split__media { position: static; order: -1; grid-template-columns: 1fr 1fr; }
  .mobile-bar { display: grid; }
  .wa-float { bottom: 86px; }
  body { padding-bottom: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .proj, .proj.wide, .proj.tall { grid-column: span 1; aspect-ratio: 3/2.4; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .r-grid { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-feature { grid-template-columns: 1fr; gap: 24px; }
  .blog-feature__media { order: -1; }
  .pgal figure, .pgal figure.wide, .pgal figure.third { grid-column: span 12; aspect-ratio: 4/3; }
  .factbar__grid { grid-template-columns: 1fr; }
  .fact { border-left: none; padding-left: 0; border-top: 1px solid var(--line); }
  .fact:first-child { border-top: none; }
  .usp-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .reviews__head { flex-direction: column; align-items: flex-start; }
  .gallery { grid-template-columns: 1fr; }
  .split__media { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
  .trust-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   Echte foto's in placeholders (toegevoegd)
   ============================================================ */
.ph > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; z-index:1; }
.ph.has-img { background:#15110e; }
.ph.has-img .ph__icon, .ph.has-img .ph__tag { display:none; }
.ph.has-map iframe { position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }
.ph.has-map { min-height:340px; }
.ph.has-map .ph__icon, .ph.has-map .ph__tag { display:none; }
