/* ═══════════════════════════════════════════════════════════
   Bouwwerken Erlend Dingenen — rustig, licht, mobile-first
   Kleuren: blauw #1A3C6B (kop/merk) · oranje #D24F15 (actie)
   ═══════════════════════════════════════════════════════════ */
:root {
  --blue: #1A3C6B;
  --blue-dark: #122a4d;
  --blue-soft: #eef3f9;
  --orange: #D24F15;
  --orange-dark: #b84310;
  --orange-soft: #fdf0e8;
  --ink: #23272e;
  --muted: #5c6672;
  --line: #e3e6ea;
  --bg: #ffffff;
  --bg-tint: #f6f7f5;
  --ok: #1a7f4b;
  --err: #b42318;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(18, 42, 77, .08);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange); }
h1, h2, h3 { color: var(--blue); line-height: 1.18; letter-spacing: -.01em; margin: 0 0 .6em; font-weight: 800; }
h1 { font-size: clamp(2.05rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
h3 { font-size: 1.16rem; }
p { margin: 0 0 1em; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 3px solid rgba(210, 79, 21, .55); outline-offset: 2px; border-radius: 4px; }

/* ─── Knoppen ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; line-height: 1.2;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease;
  font-family: inherit; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; box-shadow: 0 8px 20px rgba(210, 79, 21, .3); }
.btn-outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { background: var(--blue-soft); color: var(--blue); }
.btn-whatsapp { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-whatsapp:hover { background: var(--blue-soft); color: var(--blue); }
.btn:disabled { opacity: .7; cursor: progress; transform: none; }

/* ─── WIP-banner + sticky chrome ─── */
html { scroll-padding-top: 150px; }
.site-chrome { position: sticky; top: 0; z-index: 50; }
.wip-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  background: var(--blue); color: #fff; font-size: .86rem;
  padding: 7px 16px; text-align: center;
}
.wip-banner strong {
  color: #ffb28a; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
  border: 1.5px solid #ffb28a; border-radius: 999px; padding: 1px 10px;
}
.wip-banner span { opacity: .92; }
.site-header { border-bottom: 1px solid var(--line); }
.site-header {
  position: relative;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 104px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 88px; width: auto; }
.site-nav { display: flex; gap: 6px; margin-left: 8px; flex: 1; }
.site-nav a {
  padding: 8px 13px; border-radius: 999px; font-weight: 600; color: var(--ink); font-size: .98rem;
}
.site-nav a:hover { color: var(--blue); background: var(--blue-soft); }
.site-nav a.is-current { color: var(--blue); background: var(--blue-soft); }
.header-contact { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-hours { color: var(--muted); font-size: .86rem; }
.btn-call { padding: .65rem 1.2rem; font-size: .98rem; white-space: nowrap; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--blue); margin: 5px 0; border-radius: 2px; transition: .2s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── Eyebrow / secties ─── */
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 800;
  color: var(--orange); margin-bottom: .6rem;
}
.section { padding: 84px 0; }
.section-tint { background: var(--bg-tint); }
.section-sub { max-width: 640px; color: var(--muted); font-size: 1.06rem; margin-bottom: 2.4rem; }
.section-cta { text-align: center; margin-top: 2.4rem; }
.disclaimer { color: var(--muted); font-size: .86rem; margin-top: 1.4rem; text-align: center; }

/* ─── Hero ─── */
.hero { background: linear-gradient(180deg, #f3f5f7 0%, #fff 100%); padding: 64px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin-bottom: .5em; }
.hero-sub { font-size: 1.14rem; color: #3c4550; max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.6rem 0 1.2rem; }
.hero-points { list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: .95rem; }
.hero-points li { padding-left: 26px; position: relative; margin-bottom: .35rem; }
.hero-points li::before {
  content: ""; position: absolute; left: 2px; top: .42em; width: 8px; height: 14px;
  border: solid var(--orange); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.hero-points strong { color: var(--ink); }
.hero-media img { border-radius: 22px; box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ─── Trustbar ─── */
.trustbar { border-block: 1px solid var(--line); background: #fff; }
.trustbar-inner { display: flex; gap: 24px; justify-content: space-between; padding-block: 18px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { color: var(--blue); font-size: .95rem; }
.trust-item span { color: var(--muted); font-size: .85rem; }

/* ─── Kaarten ─── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card, .project-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  color: inherit;
}
.service-card:hover, .project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c9d4e2; color: inherit; }
.service-card h3, .project-card h2 { margin: 14px 0 6px; }
.service-card p, .project-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 16px; background: var(--blue-soft); color: var(--blue);
}
.service-icon svg { width: 28px; height: 28px; }
.service-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .92rem; color: var(--blue); margin-top: 14px; }
.service-more svg { transition: transform .15s ease; }
.service-card:hover .service-more, .project-card:hover .service-more { color: var(--orange); }
.service-card:hover .service-more svg, .project-card:hover .service-more svg { transform: translateX(4px); }
.project-media { border-radius: 12px; overflow: hidden; margin: -8px -8px 4px; }
.project-media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.project-cat { display: inline-block; font-size: .78rem; font-weight: 800; color: var(--orange); background: var(--orange-soft); border-radius: 999px; padding: .2rem .75rem; margin-bottom: 4px; }

/* ─── Stappenplan ─── */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px 20px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: #fff;
  font-weight: 800; font-size: 1.05rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ─── Prijzen ─── */
.card-grid-prices { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; background: #fff; }
.price-card-featured { background: var(--blue); border-color: var(--blue); color: #fff; }
.price-card-featured h3, .price-card-featured a { color: #fff; }
.price-card-featured .price-note { color: rgba(255, 255, 255, .82); }
.price { font-size: 1.5rem; font-weight: 800; color: var(--orange); margin: 4px 0 10px; }
.price-card-featured .price { color: #ffb28a; }
.price-note { color: var(--muted); font-size: .92rem; flex: 1; }
.price-card a { font-weight: 700; font-size: .92rem; }
.price-card-featured a { text-decoration: underline; text-underline-offset: 3px; }

/* ─── Waarom ─── */
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.why-media img { border-radius: 22px; aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.checklist { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.checklist li { padding-left: 32px; position: relative; margin-bottom: .55rem; }
.checklist li::before {
  content: ""; position: absolute; left: 2px; top: .32em; width: 9px; height: 16px;
  border: solid var(--orange); border-width: 0 3px 3px 0; transform: rotate(45deg);
}

/* ─── CTA band ─── */
.cta-band { background: var(--blue); color: #fff; padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255, 255, 255, .85); margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Pagehead / generiek ─── */
.pagehead { padding: 56px 0 34px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #f3f5f7, #fff); }
.pagehead h1 { margin-bottom: .4em; }
.pagehead-sub { color: var(--muted); font-size: 1.1rem; max-width: 46em; margin: 0; }
.pagehead a { color: var(--orange); }
.prose { max-width: 780px; padding-bottom: 80px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose blockquote {
  margin: 1.6em 0; padding: 1.1em 1.4em; border-left: 4px solid var(--orange);
  background: var(--orange-soft); border-radius: 0 12px 12px 0; font-size: 1.02rem;
}
.prose blockquote p { margin: 0; }
.prose ul { padding-left: 1.2em; }

/* ─── Diensten ─── */
.dienst-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.dienst-row {
  display: flex; align-items: center; gap: 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px; transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.dienst-row:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #c9d4e2; color: inherit; }
.dienst-row-body { flex: 1; }
.dienst-row-body h2 { font-size: 1.2rem; margin: 0 0 2px; }
.dienst-row-body p { color: var(--muted); font-size: .93rem; margin: 0; }
.dienst-row-price { font-weight: 800; color: var(--orange); white-space: nowrap; font-size: .95rem; }
.dienst-row-arrow { color: var(--blue); display: flex; }
.dienst-head { display: flex; justify-content: space-between; gap: 24px; align-items: flex-end; flex-wrap: wrap; }
.dienst-head-price {
  display: inline-block; margin-top: 1rem; background: var(--orange-soft); color: var(--orange-dark);
  font-weight: 800; border-radius: 999px; padding: .45rem 1.1rem; font-size: .98rem;
}
.dienst-head-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.dienst-body { display: grid; grid-template-columns: 1fr 340px; gap: 48px; padding: 48px 24px 64px; }
.dienst-prose h2 { margin-top: .8em; }
.dienst-prose h2:first-of-type { margin-top: 0; }
.faqbox { align-self: start; position: sticky; top: 96px; background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.faqbox h2 { font-size: 1.2rem; }
.faq-item { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
.faq-item h3 { font-size: 1rem; }
.faq-item p { color: var(--muted); font-size: .92rem; }
.faq-item .checklist { margin: .6rem 0 .8rem; }
.faq-item .checklist li { font-size: .9rem; margin-bottom: .3rem; }
.faq-note { font-size: .82rem !important; color: #8a939e !important; }
.cta-inline {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--blue-soft); border: 1px solid #dbe5f1; border-radius: var(--radius);
  padding: 24px 28px; margin: 40px 0 64px;
}
.section > .container > .cta-inline { margin-bottom: 0; }
.cta-inline p { margin: 0; max-width: 40em; }
.cta-inline-stack { flex-direction: column; align-items: flex-start; margin: 0; }
.cta-inline-stack p { margin-bottom: .4em; }

/* ─── Realisaties ─── */
.project-facts { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.project-facts li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .35rem 1rem; font-size: .88rem; color: var(--muted); }
.project-facts strong { color: var(--ink); font-weight: 700; }
.project-single-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; padding-top: 44px; padding-bottom: 80px; }
.project-prose h2 { font-size: 1.45rem; }
.project-prose h3 { font-size: 1.12rem; }
.project-prose blockquote { background: var(--blue-soft); border-left-color: var(--blue); }
.project-aside { align-self: start; }
.project-aside img { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; padding: 48px 24px 90px; align-items: start; }
.offerte-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--blue); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid #ccd4dd; border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .12s ease, box-shadow .12s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26, 60, 107, .12);
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-status { min-height: 1.4em; font-weight: 600; margin: 12px 0 0; font-size: .95rem; }
.form-status-ok { color: var(--ok); }
.form-status-err { color: var(--err); }
.form-consent { font-size: .8rem; color: var(--muted); margin: 14px 0 0; }
.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-block { background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.contact-block h2 { font-size: 1.05rem; margin-bottom: 12px; }
.contact-block p { color: var(--muted); font-size: .93rem; }
.contact-block .btn { margin-bottom: 10px; }
.contact-hours { font-weight: 600; color: var(--ink) !important; }
.mini-steps { margin: 0; padding-left: 1.2em; color: var(--muted); font-size: .93rem; }
.mini-steps li { margin-bottom: .3rem; }

/* ─── Footer ─── */
.site-footer { background: var(--blue-dark); color: #c7d2e0; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 40px; padding-block: 56px 36px; }
.footer-logo { filter: brightness(0) invert(1); opacity: .96; height: 40px; width: auto; margin-bottom: 16px; }
.footer-title { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #c7d2e0; }
.footer-links a:hover { color: #fff; }
.footer-about p { color: #c7d2e0; }
.footer-legal { color: #8fa0b5; font-size: .85rem; }
.site-footer .btn { margin-top: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 20px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .83rem; color: #8fa0b5; }
.footer-bottom-links { display: inline-flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer-bottom-links a { color: #c7d2e0; }
.demo-credit { color: #6e7f94; font-style: italic; }

/* ─── Mobiele callbar ─── */
.callbar { display: none; }

/* ─── Responsive ─── */
@media (max-width: 1000px) {
  .card-grid, .card-grid-prices { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dienst-body, .contact-grid, .project-single-grid { grid-template-columns: 1fr; }
  .faqbox { position: static; }
  .dienst-body, .contact-grid, .project-single-grid { padding-top: 36px; }
}

@media (max-width: 820px) {
  /* WIP-banner op mobiel: zelfde banner-uitstraling, netjes gecentreerd */
  .wip-banner {
    flex-direction: column; gap: 5px;
    padding: 9px 18px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
  .wip-banner strong { font-size: .72rem; padding: 2px 12px; }
  .wip-banner span { font-size: .8rem; line-height: 1.35; max-width: 34em; }
  html { scroll-padding-top: 170px; }
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 52px; }
  .hero-grid, .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .header-contact .header-hours { display: none; }
  .btn-call { padding: .6rem .95rem; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 20px 20px; box-shadow: var(--shadow);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 12px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .header-contact { display: none; }
  /* mobiele callbar */
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    box-shadow: 0 -6px 20px rgba(18, 42, 77, .14);
  }
  .callbar-item {
    display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px;
    font-weight: 800; font-size: .98rem;
  }
  .callbar-call { background: var(--orange); color: #fff; }
  .callbar-call:hover { background: var(--orange-dark); color: #fff; }
  .callbar-offerte { background: var(--blue); color: #fff; }
  .callbar-offerte:hover { color: #fff; background: var(--blue-dark); }
  body { padding-bottom: 58px; }
  .trustbar-inner { gap: 14px; }
}

@media (max-width: 620px) {
  .card-grid, .card-grid-prices, .steps, .footer-grid, .field-row { grid-template-columns: 1fr; }
  .dienst-row { flex-wrap: wrap; gap: 10px; }
  .dienst-row-price { order: 3; }
  .dienst-row-arrow { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions .btn { width: 100%; }
  .brand-logo { height: 64px; }
  .header-inner { min-height: 80px; }
  .footer-bottom { flex-direction: column; }
}
