/* ========================================================================
   BijHof — Overkappingen, schuttingen en pergola's op maat
   Strak & modern design system: antraciet + wit + warm oker accent
   ======================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #1d1d1f;   /* near-black antraciet (tekst + donkere secties) */
  --charcoal:   #29292c;
  --charcoal-2: #2f2f33;
  --bg:         #ffffff;
  --bg-soft:    #f6f3ee;   /* warm off-white */
  --bg-soft-2:  #efe9e0;
  --line:       #e6e0d6;
  --line-dark:  #3a3a3e;
  --muted:      #6c6a64;
  --muted-light:#aba79e;

  --accent:     #c0832b;   /* warm hout / oker */
  --accent-dark:#a56d1d;
  --accent-soft:#f3e6d0;

  --white:      #ffffff;

  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(29,29,31,.06);
  --shadow:    0 12px 34px rgba(29,29,31,.12);
  --shadow-lg: 0 24px 60px rgba(29,29,31,.20);

  --ff-head: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --header-h: 86px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }

section { position: relative; }

.section-pad   { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-pad-s { padding-block: clamp(2.5rem, 5vw, 4rem); }

.bg-soft { background: var(--bg-soft); }
.bg-dark { background: var(--ink); color: #e9e7e2; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }

/* ---------- Helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-head);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--accent); display:inline-block; }
.bg-dark .eyebrow { color: var(--accent); }
.bg-dark .eyebrow::before { background: var(--accent); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 60ch; }
.bg-dark .lead { color: #c4c1ba; }

.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.center .eyebrow { justify-content: center; }
.measure { max-width: 62ch; }
.mt-2 { margin-top: 2rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--ff-head); font-weight: 700; font-size: .98rem;
  padding: .85rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bg); border-radius: 50px;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn svg { width: 18px; height: 18px; }

.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); border-color: var(--ink); color:#fff; }

.btn-ghost-light { --btn-bg: transparent; --btn-fg:#fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background:#fff; border-color:#fff; color: var(--ink); }

.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ========================================================================
   HEADER
   ======================================================================== */
.topbar {
  background: var(--ink); color: #cfccc4;
  font-size: .85rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 1rem; }
.topbar a { color: #e7e4dd; font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar-info { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar-info span, .topbar-info a { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.topbar-info svg { width: 15px; height: 15px; color: var(--accent); }
.topbar-region { color: var(--muted-light); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { max-width: 1280px; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: var(--header-h);
}
.brand { flex: none; }
/* Compact CTA inside the header so the full nav fits on one line */
.nav-cta .btn-desktop { padding: .62rem 1.15rem; font-size: .92rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand img { height: 64px; width: auto; }
.brand-name { font-family: var(--ff-head); font-weight: 800; font-size: 1.22rem; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.brand-name small { display:block; font-size: .58rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--accent-dark); margin-top: 3px; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--ff-head); font-weight: 600; font-size: .85rem; color: var(--ink);
  padding: .5rem .46rem; border-radius: 8px; position: relative; white-space: nowrap;
}
/* CTA button lives in the mobile dropdown only; hidden on desktop */
.nav-links .nav-cta-mobile { display: none; }
.nav-links a:hover { color: var(--accent-dark); background: var(--bg-soft); }
.nav-links a.active { color: var(--accent-dark); }
.nav-links a.active::after {
  content:""; position:absolute; left:.8rem; right:.8rem; bottom:.28rem; height:2px; background: var(--accent); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; border-radius: 10px; padding: 10px;
}
.nav-toggle span { display:block; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle span + span { margin-top: 5px; }
.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ========================================================================
   HERO
   ======================================================================== */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,20,22,.55) 0%, rgba(20,20,22,.45) 45%, rgba(20,20,22,.78) 100%);
}
.hero-inner { padding-block: clamp(4.5rem, 13vw, 9rem); max-width: 720px; }
.hero h1 { color:#fff; }
.hero-sub { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: #ece9e3; max-width: 56ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-badges { display:flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.2rem; }
.hero-badge { display:flex; align-items:center; gap:.6rem; font-family: var(--ff-head); font-weight: 600; font-size: .95rem; color:#f1efe9; }
.hero-badge svg { width: 22px; height: 22px; color: var(--accent); flex: none; }

/* Page hero (interior pages) */
.page-hero { position: relative; color:#fff; isolation: isolate; }
.page-hero-media { position:absolute; inset:0; z-index:-2; }
.page-hero-media img { width:100%; height:100%; object-fit: cover; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(20,20,22,.5), rgba(20,20,22,.72)); }
.page-hero-inner { padding-block: clamp(3.2rem, 8vw, 5.5rem); max-width: 760px; }
.page-hero h1 { color:#fff; }
.page-hero p { color:#e9e6e0; font-size: 1.12rem; max-width: 60ch; margin-bottom: 0; }

/* Breadcrumb */
.crumbs { font-size: .85rem; color: #d9d6cf; margin-bottom: 1rem; font-family: var(--ff-head); font-weight: 600; }
.crumbs a { color:#fff; }
.crumbs span { color: var(--accent); }

/* ========================================================================
   USP BAR
   ======================================================================== */
.usp-bar { background: var(--ink); color:#eceae5; }
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.usp-item {
  display:flex; align-items:center; gap: .85rem;
  padding: 1.5rem clamp(1rem,2.2vw,1.8rem);
  border-right: 1px solid var(--line-dark);
}
.usp-item:last-child { border-right: 0; }
.usp-item svg { width: 30px; height: 30px; color: var(--accent); flex: none; }
.usp-item strong { font-family: var(--ff-head); font-weight: 700; display:block; font-size: 1rem; color:#fff; }
.usp-item small { color:#b7b4ac; font-size: .85rem; }

/* ========================================================================
   SECTION HEADINGS
   ======================================================================== */
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* ========================================================================
   INTRO / SPLIT
   ======================================================================== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media .img-tall { aspect-ratio: 4/5; }
.media-frame { position: relative; }
.media-frame::before {
  content:""; position:absolute; inset: 16px -16px -16px 16px; z-index:-1;
  border: 2px solid var(--accent); border-radius: var(--radius);
}

.stat-row { display:flex; gap: 2.2rem; flex-wrap: wrap; margin-top: 1.6rem; }
.stat b { font-family: var(--ff-head); font-size: 2rem; color: var(--accent-dark); display:block; line-height: 1; }
.stat span { font-size: .9rem; color: var(--muted); }

.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .7rem; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before {
  content:""; position:absolute; left:0; top:.15rem; width: 1.3rem; height: 1.3rem;
  background: var(--accent-soft); border-radius: 50%;
  -webkit-mask: var(--check-mask) center/0.85rem no-repeat;
          mask: var(--check-mask) center/0.85rem no-repeat;
}
.check-list li { padding-left: 2rem; }
.check-list li .ico {
  position:absolute; left:0; top:.2rem; width:1.35rem; height:1.35rem; color: var(--accent-dark);
}

/* ========================================================================
   SERVICE CARDS
   ======================================================================== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
@media (max-width: 1080px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card-media { aspect-ratio: 16/11; overflow: hidden; }
.card-media img { width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display:flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .4rem; }
.card-body p { color: var(--muted); font-size: .98rem; }
.card-link {
  margin-top: auto; font-family: var(--ff-head); font-weight: 700; color: var(--accent-dark);
  display: inline-flex; align-items:center; gap: .4rem;
}
.card-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Feature cards (USP grid lower) */
.feature-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2.5vw,1.8rem); }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.bg-soft .feature { background:#fff; }
.feature .f-ico {
  width: 52px; height: 52px; border-radius: 12px; background: var(--accent-soft);
  display:grid; place-items:center; margin-bottom: 1.1rem;
}
.feature .f-ico svg { width: 26px; height: 26px; color: var(--accent-dark); }
.feature h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.feature p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ========================================================================
   GALLERY
   ======================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.6rem, 1.4vw, 1rem); }
.gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 4/3; cursor: pointer; background: var(--bg-soft-2);
}
.g-item.tall { aspect-ratio: 3/4; }
.g-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.g-item img { width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,20,22,.5));
  opacity: 0; transition: opacity .25s ease;
}
.g-item:hover::after { opacity: 1; }
.g-cap {
  position:absolute; left: 0; bottom: 0; z-index: 2;
  padding: .9rem 1rem; color:#fff; font-family: var(--ff-head); font-weight: 700; font-size: .95rem;
  opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease;
}
.g-item:hover .g-cap { opacity: 1; transform: none; }
.g-tag {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-family: var(--ff-head); font-weight: 700; font-size: .72rem; letter-spacing: .04em;
  padding: .28rem .65rem; border-radius: 50px; text-transform: uppercase;
}

/* Filter buttons */
.filters { display:flex; flex-wrap: wrap; gap: .6rem; justify-content:center; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--ff-head); font-weight: 700; font-size: .9rem;
  padding: .55rem 1.2rem; border-radius: 50px; border: 1.5px solid var(--line);
  background:#fff; color: var(--ink); cursor: pointer; transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent-dark); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color:#fff; }
.is-hidden { display: none !important; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vw;
  background: rgba(15,15,17,.92); backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color:#fff;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.6rem;
  display:grid; place-items:center; transition: background .2s ease;
}
.lb-btn:hover { background: var(--accent); }
.lb-close { top: 4vw; right: 4vw; }
.lb-prev { left: 2vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 2vw; top: 50%; transform: translateY(-50%); }
.lb-btn svg { width: 24px; height: 24px; }

/* ========================================================================
   WORK STEPS
   ======================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); counter-reset: step; }
.step { position: relative; }
.step .step-ico {
  width: 64px; height: 64px; border-radius: 16px; background: var(--ink); color:#fff;
  display:grid; place-items:center; margin-bottom: 1.1rem; position: relative;
}
.bg-dark .step .step-ico { background: var(--accent); }
.step .step-ico svg { width: 30px; height: 30px; color: var(--accent); }
.bg-dark .step .step-ico svg { color:#fff; }
.step .step-num {
  position: absolute; top: -10px; right: -10px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color:#fff; font-family: var(--ff-head); font-weight: 800; font-size: .8rem;
  display:grid; place-items:center;
}
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }
.bg-dark .step p { color:#bdbab3; }
.steps.connected .step:not(:last-child) .step-ico::after {
  content:""; position:absolute; left: 78px; top: 50%; width: calc(100% - 14px); height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}

/* ========================================================================
   CTA BAND
   ======================================================================== */
.cta-band { background: var(--ink); color:#fff; border-radius: clamp(16px, 3vw, 26px); padding: clamp(2.2rem, 5vw, 3.6rem); position: relative; overflow: hidden; }
.cta-band::before {
  content:""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(192,131,43,.35), transparent 70%);
}
.cta-band .inner { position: relative; display:flex; align-items:center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color:#fff; margin-bottom: .4rem; }
.cta-band p { color:#c7c4bd; margin: 0; max-width: 48ch; }
.cta-actions { display:flex; gap: .8rem; flex-wrap: wrap; }

/* ========================================================================
   CONTACT
   ======================================================================== */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contact-methods { display: grid; gap: 1rem; }
.contact-card {
  display:flex; align-items:center; gap: 1.1rem; padding: 1.2rem 1.4rem;
  background:#fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.contact-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-card .c-ico { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-soft); display:grid; place-items:center; flex:none; }
.contact-card .c-ico svg { width: 24px; height: 24px; color: var(--accent-dark); }
.contact-card small { display:block; color: var(--muted); font-size: .82rem; }
.contact-card strong { font-family: var(--ff-head); font-size: 1.1rem; color: var(--ink); }

.contact-form { background: var(--bg-soft); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display:block; font-family: var(--ff-head); font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width:100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--ff-body); font-size: 1rem; background:#fff; color: var(--ink); transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .4rem; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ========================================================================
   FAQ
   ======================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; color: var(--ink);
  padding: 1.2rem 2.5rem 1.2rem 0; position: relative; display: block;
}
.faq-q::after { content:"+"; position:absolute; right: .2rem; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--accent); font-weight: 400; transition: transform .2s ease; }
.faq-item.open .faq-q::after { content:"–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--muted); padding-bottom: 1.2rem; margin: 0; }

/* ========================================================================
   REGION / SEO chips
   ======================================================================== */
.chips { display:flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.chip {
  font-family: var(--ff-head); font-weight: 600; font-size: .88rem;
  padding: .45rem 1rem; border-radius: 50px; background: var(--bg-soft); border:1px solid var(--line); color: var(--ink);
}
.bg-dark .chip { background: var(--charcoal); border-color: var(--line-dark); color:#e3e0d9; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer { background: var(--ink); color: #b9b6ae; padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; font-size: .95rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; }
.footer-brand img { display: block; height: 104px; width: auto; margin-bottom: 1.2rem; background: #fff; padding: 10px 14px; border-radius: 14px; }
.footer-brand p { color: #98958e; max-width: 32ch; }
.site-footer h4 { color:#fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-list { list-style:none; padding:0; margin:0; display:grid; gap:.55rem; }
.footer-list a { color:#b9b6ae; }
.footer-list a:hover { color: var(--accent); }
.footer-contact li { display:flex; gap:.6rem; align-items:flex-start; margin-bottom:.6rem; }
.footer-contact svg { width:18px; height:18px; color: var(--accent); flex:none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); margin-top: 2.5rem; padding-top: 1.5rem;
  display:flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color:#8a877f;
}
.footer-bottom a { color:#8a877f; }
.footer-bottom a:hover { color: var(--accent); }

/* ========================================================================
   FLOATING WHATSAPP
   ======================================================================== */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  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 .2s ease;
}
.wa-float:hover { transform: scale(1.08); color:#fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ========================================================================
   REVIEWS placeholder
   ======================================================================== */
.reviews-soon {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: clamp(2rem,4vw,3rem); text-align:center; background: var(--bg-soft);
}
.reviews-soon .stars { color: var(--accent); font-size: 1.4rem; letter-spacing: 3px; margin-bottom: .6rem; }

/* ========================================================================
   REVIEWS / TESTIMONIALS (Werkspot)
   ======================================================================== */
.rating-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.rating-badge { display: flex; align-items: center; gap: .9rem; }
.rating-badge .num { font-family: var(--ff-head); font-weight: 800; font-size: 2.8rem; color: #fff; line-height: 1; }
.rating-badge .stars { color: var(--accent); font-size: 1.2rem; letter-spacing: 3px; line-height: 1; }
.rating-badge small { display: block; color: #b7b4ac; font-size: .85rem; margin-top: .35rem; }
.rating-sep { width: 1px; height: 46px; background: var(--line-dark); }

.review-wall { column-count: 3; column-gap: 1.4rem; }
.review-card {
  break-inside: avoid; -webkit-column-break-inside: avoid;
  background: var(--charcoal); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem; margin: 0 0 1.4rem;
}
.review-card .stars { color: var(--accent); letter-spacing: 2px; font-size: .95rem; margin-bottom: .7rem; }
.review-text { color: #dcd9d2; font-size: .97rem; margin: 0 0 1.1rem; }
.review-foot { display: flex; align-items: center; gap: .75rem; }
.review-ava {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 1rem;
}
.review-ava svg { width: 20px; height: 20px; }
.review-who strong { color: #fff; font-size: .92rem; display: block; line-height: 1.25; }
.review-who small { color: #9b988f; font-size: .8rem; }
.review-job {
  display: inline-block; margin-top: 1rem; font-family: var(--ff-head); font-weight: 600;
  font-size: .72rem; letter-spacing: .03em; color: var(--accent);
  border: 1px solid var(--line-dark); padding: .25rem .7rem; border-radius: 50px;
}
@media (max-width: 980px) { .review-wall { column-count: 2; } }
@media (max-width: 620px) { .review-wall { column-count: 1; } }

/* ========================================================================
   CAROUSEL (schuttingen showcase)
   ======================================================================== */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: clamp(.7rem, 1.4vw, 1rem);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; border-radius: var(--radius);
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  position: relative; flex: 0 0 100%; scroll-snap-align: center;
  aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft-2);
}
@media (min-width: 720px) { .carousel-slide { flex-basis: calc((100% - 2rem) / 3); aspect-ratio: 3 / 4; } }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,20,22,.55));
}
.carousel-cap {
  position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1rem 1.2rem; color: #fff;
  font-family: var(--ff-head); font-weight: 700; font-size: 1rem;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--ink); box-shadow: var(--shadow);
  display: grid; place-items: center; transition: background .2s ease, color .2s ease, transform .2s ease;
}
.carousel-btn:hover { background: var(--accent); color: #fff; }
.carousel-btn:active { transform: translateY(-50%) scale(.94); }
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }
@media (max-width: 600px) { .carousel-btn.prev { left: 6px; } .carousel-btn.next { right: 6px; } }
.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--line); transition: background .2s ease, transform .2s ease;
}
.carousel-dots button.active { background: var(--accent); transform: scale(1.25); }

/* ========================================================================
   SUCCESS MODAL (offerteformulier)
   ======================================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 1.5rem;
  background: rgba(20,20,22,.62); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .25s ease;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: #fff; border-radius: var(--radius); max-width: 440px; width: 100%;
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.4rem, 3vw, 2.2rem); text-align: center;
  box-shadow: var(--shadow-lg); transform: translateY(14px) scale(.97);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.modal-overlay.open .modal { transform: none; }
.modal-ico {
  width: 76px; height: 76px; border-radius: 50%; background: var(--accent-soft);
  display: grid; place-items: center; margin: 0 auto 1.3rem;
}
.modal-ico svg { width: 38px; height: 38px; color: var(--accent-dark); }
.modal h3 { font-size: clamp(1.3rem, 2.4vw, 1.55rem); margin-bottom: .6rem; }
.modal p { color: var(--muted); margin-bottom: 1.6rem; }
.modal .btn { width: 100%; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 980px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(2) { border-right: 0; }
  .usp-item { border-bottom: 1px solid var(--line-dark); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps.connected .step .step-ico::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Nav collapses to a hamburger menu earlier than the content grids,
   because 8 links + CTA need more room than 3-column content does. */
@media (max-width: 1180px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .6rem clamp(1.1rem,4vw,2rem) 1.2rem;
    box-shadow: var(--shadow); transform: translateY(-110%);
    visibility: hidden; opacity: 0;
    transition: transform .3s ease, opacity .25s ease, visibility .3s ease;
    max-height: calc(100vh - var(--header-h)); overflow:auto;
  }
  .nav-open .nav-links { transform: none; visibility: visible; opacity: 1; }
  .nav-links a { display: block; padding: .72rem .4rem; border-radius: 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav-links a:hover { background: transparent; color: var(--accent-dark); }
  .nav-links a.active::after { display:none; }
  .nav-links .nav-cta-mobile { display: block; margin-top: 1rem; }
  .nav-links .nav-cta-mobile a { border-bottom: 0; }
  .nav-cta .btn-desktop { display: none; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .brand img { height: 50px; }
  .topbar-info .topbar-email { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .media-frame::before { inset: 10px -10px -10px 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .gallery, .gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .g-item.wide { grid-column: span 2; }
  .topbar-region { display: none; }
  .topbar .container { justify-content: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { gap: .9rem 1.1rem; }
  .stat b { font-size: 1.4rem; }
  .stat span { font-size: .8rem; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; }
  .topbar-info { gap: .9rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

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

/* ========================================================================
   PROJECTEN — strakke, uniforme tegelgalerij
   ======================================================================== */
.gallery-pro { grid-template-columns: repeat(3, 1fr); gap: clamp(.7rem, 1.3vw, 1.1rem); }
.gallery-pro .g-item,
.gallery-pro .g-item.wide,
.gallery-pro .g-item.tall { grid-column: auto; aspect-ratio: 4 / 3; }
.gallery-pro .g-item { box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.gallery-pro .g-tag {
  top: .8rem; left: .8rem;
  background: rgba(22,22,24,.55); color: #fff;
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(6px);
  font-weight: 600; letter-spacing: .06em;
}
@media (max-width: 900px) { .gallery-pro { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-pro { grid-template-columns: 1fr; } }

/* ========================================================================
   SHOWCASE GRID (uitgelicht project — 2x2 foto's)
   ======================================================================== */
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.55rem, 1.1vw, .85rem); }
.showcase-grid .sc-item { overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 4 / 3; background: var(--charcoal); }
.showcase-grid .sc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.showcase-grid .sc-item:hover img { transform: scale(1.06); }

/* Honeypot-veld voor het offerteformulier — onzichtbaar voor bezoekers, spambots vullen dit vaak wel in */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
