/* ============================================================
   Loodgieter Stef Libbrecht — Nero Sites demo
   Light, modern, clean. Warm-orange brand + deep slate ink.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #17262e;
  --ink-2: #3f4f58;
  --ink-3: #6c7a82;
  --brand: #d9591c;
  --brand-dark: #b3450f;
  --brand-tint: #fbeee6;
  --water: #1f6f8b;
  --water-tint: #e8f1f4;
  --paper: #ffffff;
  --sand: #f7f4f1;
  --sand-2: #efeae4;
  --line: #e7e0d9;
  --dark-bg: #0f1a21;
  --dark-panel: #17262f;
  --dark-line: #2b3b44;
  --ok: #1f9d55;
  --wa: #25d366;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(23, 38, 46, .06), 0 2px 8px rgba(23, 38, 46, .05);
  --shadow-md: 0 6px 20px rgba(23, 38, 46, .10), 0 2px 6px rgba(23, 38, 46, .06);
  --shadow-lg: 0 24px 60px rgba(23, 38, 46, .18);
  --container: 1140px;
  --ease: cubic-bezier(.2, .6, .2, 1);
  --header-h: 84px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem); }
h3 { font-size: 1.28rem; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin: .3em 0; }
strong { color: var(--ink); font-weight: 650; }
:focus-visible { outline: 3px solid var(--water); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container--narrow { max-width: 780px; }
.section { padding: clamp(56px, 4vw + 40px, 96px) 0; }
.section--sand { background: var(--sand); }
.section--tint { background: var(--brand-tint); }
.section--tight { padding: clamp(40px, 3vw + 24px, 64px) 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: .9rem;
}
.section-head { max-width: 640px; margin-bottom: 2.4rem; }
.section-head.center { margin-inline: auto; }
.lead { font-size: 1.2rem; color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .55em;
  padding: .85em 1.5em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  cursor: pointer; text-decoration: none;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--brand { --btn-bg: var(--brand); }
.btn--brand:hover { background: var(--brand-dark); }
.btn--dark { --btn-bg: var(--ink); }
.btn--dark:hover { background: #0c161c; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line); box-shadow: none;
}
.btn--ghost:hover { background: var(--sand); border-color: var(--ink-3); }
.btn--light {
  --btn-bg: #fff; --btn-fg: var(--ink);
}
.btn--wa { --btn-bg: var(--wa); --btn-fg: #06331a; }
.btn--lg { padding: 1.05em 1.9em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn .ico { width: 1.15em; height: 1.15em; flex: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 600; color: var(--brand-dark);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: #fff; color: var(--ink); padding: .7em 1.1em;
  border: 1px solid var(--line); border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; gap: 1.4rem;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; flex: none; }
.brand:hover { text-decoration: none; }
.brand__logo { width: auto; height: 64px; display: block; }
@media (max-width: 940px) { .brand__logo { height: 56px; } }
@media (max-width: 400px) { .brand__logo { height: 48px; } }

.nav__menu { display: flex; align-items: center; gap: .3rem; margin: 0 auto 0 1rem; padding: 0; list-style: none; }
.nav__menu > li { position: relative; margin: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: .35em;
  padding: .6rem .8rem; border-radius: 8px;
  color: var(--ink); font-weight: 550; font-size: .97rem;
}
.nav__link:hover { text-decoration: none; background: var(--sand); }
.nav__link[aria-current="page"] { color: var(--brand-dark); }
.nav__link .chev { width: .7em; height: .7em; transition: transform .2s var(--ease); }

.has-dropdown:hover .nav__link .chev,
.has-dropdown:focus-within .nav__link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 320px; padding: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dropdown a {
  display: flex; gap: .7rem; padding: .7rem .8rem; border-radius: 9px;
  color: var(--ink); align-items: flex-start;
}
.dropdown a:hover { background: var(--sand); text-decoration: none; }
.dropdown a svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--brand); }
.dropdown a b { display: block; font-weight: 600; font-size: .95rem; }
.dropdown a small { color: var(--ink-3); font-size: .82rem; line-height: 1.4; }
.dropdown .is-emergency b { color: var(--brand-dark); }

.nav__actions { display: flex; align-items: center; gap: .9rem; flex: none; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; color: var(--ink); white-space: nowrap;
}
.nav__phone:hover { text-decoration: none; color: var(--brand-dark); }
.nav__phone svg { width: 1.1em; height: 1.1em; color: var(--brand); }

.nav__toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav__toggle svg { width: 22px; height: 22px; color: var(--ink); }
.nav__toggle .x { display: none; }
.nav__toggle[aria-expanded="true"] .burger { display: none; }
.nav__toggle[aria-expanded="true"] .x { display: block; }

/* ---------- Mobile nav ---------- */
@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed;
    top: var(--header-h); right: 0; left: auto;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    width: min(360px, 88vw);
    flex-direction: column; align-items: stretch; gap: 0;
    margin: 0; padding: 14px;
    background: #fff; border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .28s var(--ease);
    overflow-y: auto;
  }
  body.nav-open .nav__menu { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav__menu > li { border-bottom: 1px solid var(--line); }
  .nav__link { width: 100%; padding: .95rem .6rem; font-size: 1.05rem; justify-content: space-between; }
  .nav__link:hover { background: transparent; }
  .dropdown {
    position: static; min-width: 0; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: 0; padding: 0 0 .5rem;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .has-dropdown.open .dropdown { max-height: 640px; }
  .has-dropdown .nav__link .chev { transition: transform .2s var(--ease); }
  .has-dropdown.open .nav__link .chev { transform: rotate(180deg); }
  .nav__actions .nav__phone span { display: none; }
  .nav__actions .btn--offerte { display: none; }
  .mobile-cta { display: flex; flex-direction: column; gap: .6rem; padding: 1rem .3rem 0; }
}
@media (min-width: 941px) { .mobile-cta { display: none; } }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: min(78vh, 660px);
  display: flex; align-items: center;
  background: var(--sand-2);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg picture { display: block; width: 100%; height: 100%; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.7) 34%, rgba(255,255,255,0) 62%);
}
.hero .container { position: relative; z-index: 1; }
.hero__card {
  max-width: 560px;
  background: #fff;
  padding: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero__card h1 { margin-bottom: .55rem; }
.hero__card h1 .accent { color: var(--brand); display: block; }
.hero__rule { width: 54px; height: 4px; background: var(--brand); border-radius: 2px; margin: 1rem 0 1.1rem; }
.hero__card p { font-size: 1.1rem; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem 1.1rem; align-items: center; }
@media (max-width: 560px) {
  .hero__bg::after { background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.94) 55%); }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ---------- USP bar ---------- */
.usp-bar { background: var(--sand); border-bottom: 1px solid var(--line); }
.usp-bar__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
}
.usp-bar__item {
  background: var(--sand); padding: 1.4rem 1.2rem;
  display: flex; gap: .9rem; align-items: flex-start;
}
.usp-bar__item svg { width: 26px; height: 26px; color: var(--brand); flex: none; margin-top: 3px; }
.usp-bar__item b { display: block; color: var(--ink); font-size: 1rem; }
.usp-bar__item span { font-size: .9rem; color: var(--ink-3); }
@media (max-width: 800px) { .usp-bar__grid { grid-template-columns: 1fr; } }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand-2); text-decoration: none; }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-tint); color: var(--brand-dark); display: grid; place-items: center; margin-bottom: .85rem; }
.card__icon svg { width: 22px; height: 22px; }
.card h3 { color: var(--ink); margin-bottom: .4rem; }
.card p { font-size: .96rem; color: var(--ink-2); margin-bottom: 1.1rem; }
.card .link-arrow { margin-top: auto; font-size: .95rem; }

.card--dark { background: var(--ink); border-color: var(--ink); }
.card--dark h3 { color: #fff; }
.card--dark p { color: #b9c4c9; }
.card--dark .card__icon { background: rgba(255,255,255,.08); color: #f2a877; }
.card--dark .link-arrow { color: #f2a877; }

/* Feature list with checks */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 1.9rem; margin: .55rem 0; color: var(--ink-2); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b3450f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- Split / media rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split--portret { grid-template-columns: 360px 1fr; }
@media (max-width: 860px) { .split--portret { grid-template-columns: 1fr; } }
.split__media--circle { text-align: center; }
.split__media--circle img { aspect-ratio: 1; border-radius: 50%; max-width: 360px; margin-inline: auto; box-shadow: var(--shadow-md); }
@media (max-width: 860px) { .split__media--circle img { max-width: 220px; } }
.split__media-tag { display: block; margin-top: .9rem; font-weight: 600; color: var(--ink); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- Troeven VOOR/TIJDENS/NA ---------- */
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .phases { grid-template-columns: 1fr; } }
.phase {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; border-top: 4px solid var(--brand);
}
.phase__tag { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-dark); }
.phase h3 { margin: .3rem 0 .9rem; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .8rem;
}
.stars { display: inline-flex; gap: 2px; color: #e8a33d; }
.stars svg { width: 18px; height: 18px; }
.review p { font-family: var(--serif); font-size: 1.08rem; font-style: italic; color: var(--ink); margin: 0; line-height: 1.55; }
.review__who { font-size: .88rem; color: var(--ink-3); margin-top: auto; }
.review__who b { color: var(--ink); font-style: normal; }
.review-logos { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }
.review-logos a {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .6em 1.1em; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--ink); font-weight: 600; font-size: .9rem;
}
.review-logos a:hover { border-color: var(--brand); text-decoration: none; }
.review-logos svg { width: 1.1em; height: 1.1em; color: #e8a33d; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #dfe6e9; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9c4c9; max-width: 560px; margin-inline: auto; }
.cta-band .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.cta-band--brand { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; }
.cta-band--brand h2 { color: #fff; }
.cta-band--brand p { color: rgba(255,255,255,.9); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--sand); border-bottom: 1px solid var(--line); padding: clamp(2.2rem, 4vw, 3.4rem) 0 clamp(2.4rem, 4vw, 3.6rem); }
.page-hero h1 { margin-bottom: .5rem; }
.page-hero p { max-width: 620px; font-size: 1.15rem; margin-bottom: 0; }
.breadcrumb { font-size: .85rem; color: var(--ink-3); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--brand-dark); }
.breadcrumb span { margin: 0 .4em; }

/* ---------- Service page ---------- */
.svc-banner { margin: 0 0 clamp(2rem, 4vw, 3rem); }
.svc-banner__img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.svc-body { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.svc-aside { position: sticky; top: 100px; display: grid; gap: 1.2rem; }
.svc-aside__card { background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.svc-aside__card h3 { font-size: 1.1rem; }
.svc-aside__card p { font-size: .92rem; color: var(--ink-2); }
@media (max-width: 900px) {
  .svc-body { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
  .svc-banner__img { aspect-ratio: 16 / 9; }
}

/* ---------- Prose ---------- */
.prose { max-width: 720px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.8rem; }
.prose > :first-child { margin-top: 0; }
.prose img { border-radius: var(--radius); margin: 1.6rem 0; }
.pull {
  font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.5;
  color: var(--ink); border-left: 3px solid var(--brand); padding-left: 1.2rem; margin: 1.8rem 0;
}

/* ---------- Region list ---------- */
.region-cols { columns: 4 160px; column-gap: 1.5rem; }
.region-cols li { break-inside: avoid; list-style: none; padding: .35rem 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.region-cols { padding: 0; margin: 0; }

/* ---------- Realisaties gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--sand-2); }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem .9rem .8rem;
  color: #fff; font-size: .88rem; font-weight: 500;
  background: linear-gradient(0deg, rgba(15,26,33,.82), rgba(15,26,33,0));
}

/* ---------- Partner logos ---------- */
.logo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 720px) { .logo-row { grid-template-columns: repeat(2, 1fr); } }
.logo-tile {
  min-height: 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; padding: 1.1rem 1rem;
}
.logo-tile__mark { display: block; width: 100%; max-width: 150px; }
.logo-tile__mark svg { width: 100%; height: 40px; }
.logo-tile small { font-weight: 600; font-size: .68rem; color: var(--ink-3); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; margin-bottom: .4rem; }
.field .req { color: var(--brand-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; font: inherit; font-size: .98rem;
  color: var(--ink); background: var(--sand);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-tint);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-hint { font-size: .85rem; color: var(--ink-3); }
.form-error { color: var(--brand-dark); font-size: .85rem; margin-top: .35rem; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--brand-dark); }
.field.has-error .form-error { display: block; }
.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success svg { width: 56px; height: 56px; color: var(--ok); margin: 0 auto 1rem; }
.form-success h3 { color: var(--ink); }
form.is-sent .form-body { display: none; }
form.is-sent .form-success { display: block; }

/* ---------- Contact aside ---------- */
.contact-methods { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.contact-methods a {
  display: flex; gap: .9rem; align-items: center;
  padding: .95rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); font-weight: 600;
}
.contact-methods a:hover { border-color: var(--brand); text-decoration: none; background: var(--sand); }
.contact-methods svg { width: 22px; height: 22px; color: var(--brand); flex: none; }
.contact-methods small { display: block; font-weight: 400; color: var(--ink-3); font-size: .82rem; }

/* ---------- Emergency (dark) ---------- */
.emergency { background: var(--dark-bg); color: #c9d3d8; }
.emergency h1, .emergency h2, .emergency h3 { color: #fff; }
.emergency .eyebrow { color: #f2a877; }
.emergency-hero { padding: clamp(3rem, 6vw, 5rem) 0; position: relative; overflow: hidden; }
.emergency-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 85% 20%, rgba(217,89,28,.28), transparent 70%);
}
.emergency-hero .container { position: relative; }
.emergency-hero h1 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.5rem); }
.emergency-hero p { font-size: 1.2rem; max-width: 620px; color: #d7dee2; }
.emergency-call {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 1.3rem;
  white-space: nowrap;
  padding: 1rem 1.8rem; border-radius: 999px; margin-top: .5rem;
  box-shadow: 0 10px 40px rgba(217,89,28,.45);
  animation: pulse 2.4s var(--ease) infinite;
}
.emergency-call:hover { background: var(--brand-dark); text-decoration: none; }
@keyframes pulse { 0%, 100% { box-shadow: 0 10px 40px rgba(217,89,28,.4); } 50% { box-shadow: 0 10px 55px rgba(217,89,28,.7); } }
.emergency-panel {
  background: var(--dark-panel); border: 1px solid var(--dark-line);
  border-radius: var(--radius); padding: 1.6rem;
}
.emergency-panel h3 { color: #fff; }
.emergency .checklist li { color: #c9d3d8; }
.emergency .checklist li::before { background-color: rgba(217,89,28,.25); }
.emergency-steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.emergency-steps li { position: relative; padding-left: 3.2rem; color: #c9d3d8; }
.emergency-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -.1em;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 700;
  display: grid; place-items: center;
}
.emergency-steps b { color: #fff; display: block; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.5);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); text-decoration: none; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: "Vraag via WhatsApp";
  position: absolute; right: calc(100% + 12px); white-space: nowrap;
  background: var(--ink); color: #fff; font-size: .82rem; font-weight: 600;
  padding: .5em .8em; border-radius: 8px;
  opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.wa-float:hover::after { opacity: 1; transform: translateX(0); }
@media (max-width: 560px) { .wa-float::after { display: none; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9fb0b7; padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; font-size: .93rem; }
.site-footer a { color: #c8d4d9; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { margin-bottom: 1.1rem; }
.footer-brand img { height: 104px; width: auto; background: #fff; padding: 12px 16px; border-radius: 12px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: .5rem 0; }
.footer-contact p { margin: .35rem 0; }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--dark-line);
  display: grid; place-items: center; color: #c8d4d9;
}
.footer-social a:hover { background: var(--dark-panel); color: #fff; border-color: var(--brand); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--dark-line); margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .84rem; color: #7d8f96;
}

/* ---------- Misc utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-3); }
.tag {
  display: inline-block; padding: .3em .8em; border-radius: 999px;
  background: var(--brand-tint); color: var(--brand-dark);
  font-size: .78rem; font-weight: 650; letter-spacing: .02em;
}
/* Subtle reveal — never hides content unless JS confirms it can reveal it again,
   and only on devices that allow motion. */
@media (prefers-reduced-motion: no-preference) {
  .js .fade-up { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .js .fade-up.in { opacity: 1; transform: none; }
}
.anchor { scroll-margin-top: 100px; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2rem; }
@media (max-width: 620px) { .info-grid { grid-template-columns: 1fr; } }
.info-grid > div { padding: 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.info-grid b { display: block; color: var(--ink); margin-bottom: .2rem; }
