/* =====================================================================
   RENIBO BOUW — Verschueren-stijl in turquoise
   Topbalk (offerte) → gecentreerd logo → horizontale menubalk →
   content met dienstensidebar links. Klassiek, gevuld, boxy.
   Fonts: Biryani (koppen) + Open Sans (tekst)
   ===================================================================== */

:root {
  --teal:        #0aa3b5;   /* hoofdkleur (logo-turquoise) */
  --teal-bar:    #0a98a9;
  --teal-nav:    #06525c;   /* menubalk + footer (donker turquoise) */
  --teal-deep:   #053f48;   /* koppen-accent */
  --teal-dark:   #0a7f8e;
  --teal-bright: #35cfe0;   /* actief / accent */
  --teal-light:  #e1f6f8;

  /* brons / bruin (tweede logokleur) */
  --brown:       #7c5530;
  --bronze:      #a9803f;
  --bronze-light:#d8b878;

  --ink:    #2b3a37;
  --text:   #3d4d49;
  --muted:  #6d7e7a;
  --line:   #e1e8e6;
  --bg:     #e7edec;        /* paginаachtergrond achter de witte boxen */
  --white:  #ffffff;

  --font-head: "Archivo", "Arial", sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;

  --wrap: 1280px;
  --shadow: 0 2px 16px rgba(11, 30, 28, .08);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 800; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

/* ============================== STICKY HEADER ============================== */
.site-head { position: sticky; top: 0; z-index: 200; background: #fff; transition: box-shadow .25s; }
.site-head.scrolled { box-shadow: 0 6px 22px -10px rgba(11,30,28,.32); }

/* bronzen infobalk — schuift weg bij omlaag scrollen, terug bij omhoog */
.topbar { background: linear-gradient(90deg, var(--teal-dark), var(--teal)); color: #fff; font-size: .92rem; overflow: hidden; max-height: 48px; transition: max-height .32s ease, opacity .25s ease; }
.site-head.hide-top .topbar { max-height: 0; opacity: 0; }
.topbar__inner { max-width: var(--wrap); margin: 0 auto; padding: 11px 20px; display: flex; align-items: center; justify-content: center; gap: 6px 16px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }
.topbar .phone { font-weight: 800; }
.topbar__sep { opacity: .55; }
@media (max-width: 560px) { .topbar__mail, .topbar__sep { display: none; } }

/* witte navbalk: logo links, menu + offerte-knop rechts */
.mainnav { background: #fff; border-bottom: 1px solid var(--line); position: relative; }
.mainnav__inner { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 14px; min-height: 132px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 128px; width: auto; display: block; }
.mainnav__menu { display: flex; gap: 2px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-offerte { margin-left: auto; }
.mainnav__menu a { display: block; padding: 10px 15px; color: var(--ink); font-weight: 700; font-size: 1.02rem; border-radius: 6px; transition: background .2s, color .2s; }
.mainnav__menu a:hover { color: var(--teal-dark); background: var(--teal-light); }
.mainnav__menu a.active { color: var(--teal-dark); }
.nav-offerte { display: inline-block; background: var(--teal); color: #fff !important; padding: 12px 24px; border-radius: 6px; font-family: var(--font-head); font-weight: 800; white-space: nowrap; transition: background .2s, transform .15s; }
.nav-offerte:hover { background: var(--teal-deep); transform: translateY(-2px); }

/* hamburger */
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 9px; background: #fff; position: relative; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav-toggle span { top: 50%; left: 50%; transform: translate(-50%,-50%); }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .brand__logo { height: 92px; }
  .mainnav__inner { min-height: 100px; gap: 12px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-offerte { display: none; }
  .mainnav__menu { display: none; position: absolute; left: 0; right: 0; top: 100%; transform: none; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px 20px 16px; gap: 0; z-index: 50; }
  body.nav-open .mainnav__menu { display: flex; }
  .mainnav__menu a { padding: 14px 8px; border-top: 1px solid var(--line); border-radius: 0; font-size: 1.08rem; }
}

/* ============================== PAGINA + LAYOUT ============================== */
.page {
  padding: 34px 0 56px;
  background-color: var(--bg);
}
.layout { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; display: grid; grid-template-columns: 290px 1fr; gap: 26px; align-items: start; }
.layout--full { grid-template-columns: 1fr; }
@media (max-width: 860px) { .layout { grid-template-columns: 1fr; } }

.box { background: #fff; box-shadow: var(--shadow); padding: 30px; margin-bottom: 24px; }
.box__title { font-size: 1.4rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 3px solid var(--bronze); display: inline-block; }

/* sidebar dienstenlijst */
.svc-list a { display: flex; align-items: center; gap: 9px; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 600; transition: color .2s, padding .2s; }
.svc-list a::before { content: "›"; color: var(--teal); font-weight: 800; font-size: 1.2rem; line-height: 1; }
.svc-list a:last-child { border-bottom: 0; }
.svc-list a:hover { color: var(--teal-deep); padding-left: 5px; }

.sidebar .contact-mini p { margin-bottom: 8px; font-size: .96rem; }
.sidebar .contact-mini b { color: var(--teal-deep); }

/* ============================== CONTENT ============================== */
.content { background: #fff; box-shadow: var(--shadow); padding: clamp(26px, 4vw, 46px); }
.content h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); margin-bottom: 4px; }
.content > h2:first-of-type { color: var(--ink); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-bottom: 20px; }
.content h2 { color: var(--ink); font-weight: 700; font-size: 1.45rem; margin: 30px 0 12px; }
.content h3 { font-size: 1.2rem; margin: 22px 0 8px; }
.content p { margin-bottom: 14px; }
.content a.inline { color: var(--teal-dark); font-weight: 700; }
.content a.inline:hover { text-decoration: underline; }
.content img.banner-img { width: 100%; margin: 6px 0 18px; border-radius: 4px; }

.bullets li { position: relative; padding-left: 28px; margin-bottom: 11px; }
.bullets li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 800; }
.bullets a { color: var(--teal-dark); font-weight: 700; }
.bullets a:hover { text-decoration: underline; }

.divider { height: 1px; background: var(--line); margin: 28px 0; border: 0; }

/* knoppen */
.btn { display: inline-block; background: var(--teal); color: #fff !important; padding: 14px 26px; border-radius: 5px; font-family: var(--font-head); font-weight: 800; letter-spacing: .01em; border: 0; transition: background .2s, transform .15s; }
.btn:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn--block { display: block; text-align: center; width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }

/* CTA-banner (zoals 'Ik draag zorg voor jouw dak') */
.cta-banner {
  background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal) 100%); color: #fff; border-radius: 6px; padding: 30px 34px;
  margin: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; overflow: hidden;
}
.cta-banner::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 6px; background: var(--bronze); }
.cta-banner__text { position: relative; z-index: 2; }
.cta-banner h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.05; }
.cta-banner .phone { display: inline-flex; align-items: center; gap: 11px; margin-top: 14px; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--bronze-light); }
.cta-banner .phone svg { width: 26px; height: 26px; }
.cta-banner__img { position: relative; z-index: 2; flex: none; width: 190px; }
@media (max-width: 600px) { .cta-banner { flex-direction: column; align-items: flex-start; } .cta-banner__img { width: 100%; } }

/* leveranciers */
.suppliers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.suppliers .cell { background: #fff; border: 1px solid var(--line); padding: 18px 10px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #9fadaa; font-size: 1rem; text-align: center; }

/* ============================== FOTO-PLAATSHOUDER ============================== */
.ph { position: relative; overflow: hidden; background: #e3ebe9; border: 1px dashed #bccdc8; border-radius: 5px; }
.ph .ph-label { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 16px; color: #7f9591; font-size: .82rem; font-weight: 700; }
.ph .ph-label svg { width: 28px; height: 28px; opacity: .6; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.ph--banner { aspect-ratio: 16/7; }
.ph--worker { width: 100%; aspect-ratio: 1/1; }

/* ============================== PROJECTEN-GALERIJ ============================== */
.proj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 520px) { .proj-grid { grid-template-columns: 1fr; } }
.proj { background: #fff; border: 1px solid var(--line); }
.proj .ph { aspect-ratio: 4/3; }
.proj__cap { padding: 14px 16px; }
.proj__cap h3 { font-size: 1.1rem; margin-bottom: 2px; }
.proj__cap span { font-size: .88rem; color: var(--muted); }
.proj__cap .tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--teal-dark); background: var(--teal-light); padding: 3px 9px; border-radius: 3px; margin-bottom: 8px; }

/* ============================== CONTACT ============================== */
.info-list li { display: flex; gap: 13px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list .ic { flex: none; width: 42px; height: 42px; border-radius: 6px; background: var(--teal-light); color: var(--teal-dark); display: grid; place-items: center; }
.info-list .ic svg { width: 21px; height: 21px; }
.info-list h4 { font-size: 1rem; margin-bottom: 1px; }
.info-list a, .info-list p { color: var(--text); }
.info-list a:hover { color: var(--teal-dark); }

.form { margin-top: 6px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form .row { grid-template-columns: 1fr; } }
.form label { display: block; font-weight: 700; font-size: .9rem; margin: 14px 0 6px; color: var(--ink); }
.form input, .form select, .form textarea { width: 100%; padding: 12px 14px; border: 1px solid #cdd8d5; border-radius: 5px; font: inherit; background: #fff; color: var(--ink); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
.form textarea { min-height: 130px; resize: vertical; }
.form__success { display: none; background: var(--teal-light); color: var(--teal-deep); font-weight: 700; padding: 14px 16px; border-radius: 5px; margin-bottom: 16px; border-left: 4px solid var(--teal); }
.form__success.show { display: block; }
.form .btn { margin-top: 20px; }
.form .note { font-size: .82rem; color: var(--muted); margin-top: 10px; }

/* ============================== FOOTER (Verschueren-stijl widgets) ============================== */
.site-footer { background: var(--teal-nav); color: #cfeae5; }
.footer-widgets { max-width: var(--wrap); margin-inline: auto; padding: 46px 20px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .footer-widgets { grid-template-columns: 1fr; gap: 28px; } }
.footer-widgets h4 { color: #fff; font-size: 1.15rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--bronze-light); display: inline-block; }
.footer-widgets p, .footer-widgets li { font-size: .96rem; }
.footer-widgets b { color: #fff; }
.footer-widgets a:hover { color: var(--teal-bright); }
.footer-links li { margin-bottom: 9px; }
.footer-links a::before { content: "› "; color: var(--teal-bright); }
.footer-bottom { background: var(--teal-deep); color: #b6ddd8; text-align: center; padding: 16px 20px; font-size: .9rem; }

/* ============================== DIENSTEN-RASTER + LIGHTBOX ============================== */
.dienst-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 24px; margin-top: 26px; }
.dienst-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--teal); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); color: var(--ink); transition: transform .25s ease, box-shadow .25s ease; }
.dienst-card:hover { transform: translateY(-6px); box-shadow: 0 24px 46px -22px rgba(11,30,28,.42); }
.dienst-card__img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.dienst-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dienst-card:hover .dienst-card__img img { transform: scale(1.07); }
.dienst-card__count { position: absolute; top: 10px; right: 10px; background: var(--teal); color: #fff; font-size: .8rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; letter-spacing: .01em; text-shadow: 0 1px 2px rgba(0,0,0,.35); box-shadow: 0 2px 8px rgba(0,0,0,.35); }
.dienst-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.dienst-card__body h3 { font-size: 1.22rem; line-height: 1.12; margin-bottom: 7px; }
.dienst-card__body p { color: var(--muted); font-size: .95rem; flex: 1; }
.dienst-card__more { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; color: var(--teal-dark); font-weight: 700; font-size: .9rem; }
.dienst-card__more svg { transition: transform .25s ease; }
.dienst-card:hover .dienst-card__more svg { transform: translateX(4px); }

/* dienst-detailpagina: bovenfoto + fotogalerij */
.crumbs { font-size: .85rem; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.crumbs a { color: var(--teal-dark); }
.crumbs a:hover { text-decoration: underline; }
.lead-text { font-size: 1.12rem; color: var(--ink); margin-bottom: 18px; }
.dienst-detail__cta { margin-top: 26px; }
.dienst-banner { display: block; width: 100%; border: 0; padding: 0; cursor: pointer; aspect-ratio: 16/9; margin-bottom: 6px; }
.dienst-banner img { object-position: center 55%; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; margin-top: 16px; }
.gallery-grid button { padding: 0; border: 0; cursor: pointer; border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; background: #dde7e4; box-shadow: var(--shadow-sm, 0 2px 8px rgba(11,30,28,.07)); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid button:hover img { transform: scale(1.06); }

.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(6,16,15,.94); display: grid; place-items: center; padding: 78px; }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: min(1100px, 100%); max-height: 84vh; object-fit: contain; border-radius: 6px; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.lightbox__close { position: fixed; top: 18px; right: 22px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.16); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; backdrop-filter: blur(4px); transition: background .2s; }
.lightbox__close:hover { background: var(--teal); }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 0; background: rgba(255,255,255,.16); color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer; backdrop-filter: blur(4px); transition: background .2s; }
.lb-nav:hover { background: var(--teal); }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lightbox__count { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.55); color: #fff; font-size: .85rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
body.lb-open { overflow: hidden; }
@media (max-width: 600px) {
  .lightbox { padding: 64px 6px 80px; }
  .lightbox__img { max-height: 72vh; }
  .lightbox__close { top: 12px; right: 12px; width: 44px; height: 44px; font-size: 1.7rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-nav { width: 44px; height: 44px; }
  .lightbox__count { font-size: .95rem; padding: 6px 16px; bottom: 16px; }
}

/* ============================== HOMEPAGE (landing) ============================== */
.home-hero { position: relative; min-height: clamp(360px, 56vh, 540px); display: flex; align-items: flex-end; overflow: hidden; }
.home-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.home-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,26,24,.85) 0%, rgba(8,26,24,.5) 52%, rgba(8,26,24,.12) 100%); }
.home-hero__inner { position: relative; z-index: 2; max-width: var(--wrap); width: 100%; margin: 0 auto; padding: clamp(30px,5vw,64px) 20px; }
.home-hero h1 { color: #fff; font-size: clamp(2rem, 4.8vw, 3.5rem); line-height: 1.05; max-width: 700px; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.home-hero p { color: rgba(255,255,255,.93); font-size: clamp(1.02rem, 1.7vw, 1.22rem); max-width: 560px; margin-top: 14px; }
.home-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn--ghost-light { background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,.65); }
.btn--ghost-light:hover { background: #fff; color: var(--ink) !important; transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--ink) !important; }
.btn--white:hover { background: var(--teal-light); transform: translateY(-2px); }

.usp { background: var(--teal-nav); }
.usp__inner { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); }
.usp__item { display: flex; align-items: center; gap: 13px; padding: 20px 18px; border-left: 1px solid rgba(255,255,255,.12); }
.usp__item:first-child { border-left: 0; }
.usp__item svg { width: 28px; height: 28px; color: var(--teal-bright); flex: none; }
.usp__item b { display: block; color: #fff; font-family: var(--font-head); font-size: 1.02rem; line-height: 1.1; }
.usp__item span { font-size: .84rem; color: #aacfc9; }
@media (max-width: 760px) { .usp__inner { grid-template-columns: 1fr 1fr; } .usp__item { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); } }

.home-section { padding: clamp(44px, 6vw, 80px) 0; }
.home-section--paper { background: var(--bg); }
.home-head { max-width: 660px; margin-bottom: 28px; }
.home-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.home-head p { color: var(--muted); margin-top: 8px; font-size: 1.05rem; }

.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .why { grid-template-columns: 1fr; } }
.why__card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px; box-shadow: var(--shadow); }
.why__card .ic { width: 50px; height: 50px; border-radius: 12px; background: var(--teal-light); color: var(--teal-dark); display: grid; place-items: center; margin-bottom: 16px; }
.why__card .ic svg { width: 26px; height: 26px; }
.why__card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why__card p { color: var(--text); font-size: .98rem; }

.home-cta { background: var(--teal); }
.home-cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: clamp(36px, 5vw, 58px); }
.home-cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.home-cta p { color: rgba(255,255,255,.9); margin-top: 6px; }

/* Google Maps embed (contact) */
.map-embed { aspect-ratio: 16/7; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 600px) { .map-embed { aspect-ratio: 4/3; } }

/* ============================== KLEINE TELEFOONS (≤480px) ============================== */
html, body { overflow-x: hidden; }

@media (max-width: 480px) {
  /* header / topbalk: nummer niet meer afsnijden */
  .topbar { max-height: 74px; font-size: .85rem; }
  .topbar__inner { padding: 8px 14px; gap: 2px 10px; }
  .brand__logo { height: 70px; }
  .mainnav__inner { min-height: 80px; padding: 0 14px; }

  /* dienstkaarten + leesbare badge */
  .dienst-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 18px; }
  .dienst-card__img { aspect-ratio: 16/10; }
  .dienst-card__body { padding: 16px 16px 18px; }
  .dienst-card__body h3 { font-size: 1.15rem; }
  .dienst-card__more { font-size: .95rem; }
  .dienst-card__count { font-size: .92rem; padding: 6px 13px; top: 8px; right: 8px; }

  /* cta-banner netjes stapelen */
  .cta-banner { padding: 22px 20px; }
  .cta-banner .phone { font-size: 1.3rem; gap: 8px; }
  .cta-banner .phone svg { width: 22px; height: 22px; }
  .cta-banner__img { width: 100%; max-width: 220px; }

  /* galerijen / projecten */
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .proj-grid { grid-template-columns: 1fr; }
  .proj__cap .tag { font-size: .78rem; }
  .crumbs { font-size: .88rem; }
  .content h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  /* footer */
  .footer-bottom { font-size: .85rem; line-height: 1.7; }
  .footer-widgets { padding: 34px 20px; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
