/* Junk Removal Brussels: static site design system (green + hi-vis accent) */
:root {
  --av-ground: #144A37;
  --av-ground-deep: #0d3327;
  --av-ivory: #f4f1e9;
  --av-ink: #10241d;
  --av-ink-2: #47615a;
  --av-muted: #b7c7c0;
  --av-red: #e2592b;
  --av-red-deep: #c4461d;
  --av-line: rgb(16 36 29 / 0.1);
  --av-line-light: rgb(244 241 233 / 0.16);
  --av-font: "Outfit", system-ui, sans-serif;
  --av-mono: "IBM Plex Mono", ui-monospace, monospace;
  --av-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --av-r: 6px;
  color-scheme: dark;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--av-font);
  color: var(--av-ivory);
  background: var(--av-ground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
i[class*="ph-"] { line-height: 1; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.wrap--narrow { max-width: 820px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  display: flex; align-items: center; gap: 2rem;
  height: 72px; padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(to bottom, rgb(13 51 39 / 0.85), rgb(13 51 39 / 0));
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.nav__mark { width: 36px; height: 36px; }
.nav__route { display: flex; gap: 1.5rem; margin-left: auto; font-family: var(--av-mono); font-size: 0.78rem; letter-spacing: 0.02em; color: var(--av-muted); }
.nav__route a { padding: 0.35rem 0; border-bottom: 1px solid transparent; transition: color 0.4s var(--av-ease), border-color 0.4s var(--av-ease); }
.nav__route a:hover, .nav__route a.is-active { color: var(--av-ivory); border-bottom-color: var(--av-red); }
.nav__actions { display: flex; align-items: center; gap: 1.25rem; }
.nav__phone { font-family: var(--av-mono); font-size: 0.8rem; color: var(--av-muted); }
.nav__phone:hover { color: var(--av-ivory); }
.burger { display: none; width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 0; background: var(--av-ivory); position: relative; cursor: pointer; }
.burger span { position: absolute; left: 0.75rem; right: 0.75rem; height: 1.5px; background: var(--av-ground-deep); transition: transform 0.6s var(--av-ease); }
.burger span:first-child { top: calc(50% - 4px); }
.burger span:last-child { top: calc(50% + 3px); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 15;
  background: rgb(13 51 39 / 0.985);
  display: flex; flex-direction: column; justify-content: center; padding: 6rem 2rem 3rem;
  opacity: 0; visibility: hidden; transition: opacity 0.6s var(--av-ease), visibility 0.6s;
}
.menu.open { opacity: 1; visibility: visible; }
.menu li { opacity: 0; transform: translateY(2rem); transition: opacity 0.7s var(--av-ease), transform 0.7s var(--av-ease); transition-delay: calc(var(--i) * 60ms + 100ms); }
.menu.open li { opacity: 1; transform: none; }
.menu a { display: block; font-size: 2.1rem; font-weight: 800; letter-spacing: -0.03em; padding: 0.4rem 0; }
.menu__cta { color: var(--av-red); }
.menu__phone { margin-top: auto; font-family: var(--av-mono); color: var(--av-muted); }

/* ---------- CTAs ---------- */
.cta-quote {
  display: inline-flex; align-items: center; gap: 0.9rem; height: 3.25rem;
  padding: 0 0.5rem 0 1.4rem; border-radius: 999px;
  background: var(--av-red); color: var(--av-ivory); font-weight: 600; font-size: 0.98rem;
  transition: transform 0.5s var(--av-ease), background 0.5s var(--av-ease);
}
.cta-quote--compact { height: 2.6rem; font-size: 0.88rem; padding-left: 1.1rem; }
.cta-quote__track { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: 999px; background: var(--av-ground-deep); font-size: 1.1rem; transition: transform 0.5s var(--av-ease); }
.cta-quote--compact .cta-quote__track { width: 1.8rem; height: 1.8rem; font-size: 0.95rem; }
.cta-quote:hover { background: var(--av-red-deep); }
.cta-quote:hover .cta-quote__track { transform: translateX(3px); }
.cta-quote:active { transform: scale(0.98); }

.cta-call {
  display: inline-flex; align-items: center; gap: 0.6rem; height: 3.25rem; padding: 0 1.4rem;
  border: 1px solid var(--av-line-light); border-radius: var(--av-r); color: var(--av-ivory); font-weight: 500; font-size: 0.98rem;
  background: rgb(13 51 39 / 0.55);
  transition: border-color 0.4s var(--av-ease), transform 0.4s var(--av-ease);
}
.cta-call i { font-size: 1.2rem; color: var(--av-red); }
.cta-call:hover { border-color: var(--av-ivory); }
.cta-call:active { transform: translateY(1px); }

.cta-submit {
  display: flex; align-items: center; justify-content: space-between; width: 100%; height: 3.5rem; padding: 0 1.25rem;
  border: 0; border-radius: var(--av-r); background: var(--av-red); color: var(--av-ivory);
  font: inherit; font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: background 0.4s var(--av-ease), transform 0.4s var(--av-ease);
}
.cta-submit i { font-size: 1.5rem; transition: transform 0.6s var(--av-ease); }
.cta-submit:hover { background: var(--av-red-deep); }
.cta-submit:hover i { transform: translateX(6px); }
.cta-submit:active { transform: scale(0.99); }
.cta-submit:disabled { opacity: 0.7; cursor: progress; }

/* ---------- De rit: film + hoofdstukken ---------- */
.journey { position: relative; background: var(--av-ground); }
.journey__stage { position: sticky; top: 0; height: 100dvh; overflow: hidden; z-index: 0; }
.journey__picture, .journey__poster, .journey__video { position: absolute; inset: 0; width: 100%; height: 100%; }
.journey__poster, .journey__video { object-fit: cover; object-position: 50% 50%; }
.journey__video { z-index: 1; opacity: 0; }
.journey[data-video-painted="true"] .journey__video { opacity: 1; }
.journey[data-video-painted="true"] .journey__poster { visibility: hidden; }
.journey__progress { position: absolute; z-index: 5; top: 0; left: 0; right: 0; height: 2px; background: rgb(244 241 233 / 0.14); }
.journey__progress span { display: block; width: 100%; height: 100%; background: var(--av-red); transform: scaleX(0); transform-origin: left center; }

.journey__chapters {
  position: relative; z-index: 2;
  margin-top: -100dvh;
  display: grid; grid-template-rows: repeat(4, 230dvh);
  pointer-events: none;
}
.chapter { position: relative; }
.chapter__pin { position: sticky; top: 0; display: flex; align-items: center; min-height: 100dvh; padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 6vw, 6rem); }
.chapter[data-align="right"] .chapter__pin { justify-content: flex-end; }
.chapter__copy { position: relative; width: min(38rem, 46vw); pointer-events: auto; }
.chapter__copy::before {
  content: ""; position: absolute; z-index: -1; inset: -3rem -5rem;
  background: radial-gradient(ellipse at center, rgb(20 74 55 / 0.9) 0%, rgb(20 74 55 / 0.6) 52%, transparent 76%);
  pointer-events: none;
}
.chapter__title { max-width: 13ch; font-size: clamp(2.6rem, 5.6vw, 5.6rem); font-weight: 800; line-height: 0.96; letter-spacing: -0.04em; text-wrap: balance; color: var(--av-ivory); }
.chapter__body { max-width: 42ch; margin-top: 1.4rem; font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.55; color: var(--av-muted); }
.chapter__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chapter__tags li { padding: 0.45rem 0.75rem; border: 1px solid var(--av-line-light); border-radius: var(--av-r); font-family: var(--av-mono); font-size: 0.78rem; }
.chapter__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* ---------- Secties ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; scroll-margin-top: 4rem; }
.section--ivory { background: var(--av-ivory); color: var(--av-ink); }
.section--petrol { background: var(--av-ground); color: var(--av-ivory); }
.section--petrol-deep { background: var(--av-ground-deep); color: var(--av-ivory); }
.section__title { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; max-width: 18ch; }
.section__lead { margin-top: 1rem; max-width: 52ch; font-size: 1.1rem; line-height: 1.55; color: var(--av-ink-2); }
.section--petrol .section__lead, .section--petrol-deep .section__lead { color: var(--av-muted); }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(190px, auto); gap: 1rem; margin-top: 3rem; }
.bento__cell { display: flex; flex-direction: column; gap: 0.6rem; padding: 1.75rem; border-radius: var(--av-r); background: #fff; border: 1px solid var(--av-line); grid-column: span 4; }
.bento__cell i { font-size: 2rem; color: var(--av-red); margin-bottom: 0.4rem; }
.bento__cell h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.015em; }
.bento__cell p { color: var(--av-ink-2); font-size: 0.95rem; line-height: 1.5; }
.bento__cell--photo { position: relative; grid-column: span 8; grid-row: span 2; padding: 0; overflow: hidden; border: 0; min-height: 320px; background: var(--av-ground); }
.bento__cell--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--av-ease); }
.bento__cell--photo:hover img { transform: scale(1.03); }
.bento__caption { position: absolute; inset: auto 0 0 0; padding: 2rem; color: var(--av-ivory); background: linear-gradient(to top, rgb(13 51 39 / 0.92), rgb(13 51 39 / 0)); }
.bento__caption p { color: var(--av-muted); margin-top: 0.4rem; max-width: 46ch; }
.bento__cell--red { background: var(--av-red); border-color: var(--av-red); color: var(--av-ivory); }
.bento__cell--red i, .bento__cell--red p { color: var(--av-ivory); }

/* Werkwijze */
.process { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.process__sticky { position: sticky; top: 6rem; }
.process__sticky .section__lead { margin-bottom: 2rem; }
.steps { display: grid; gap: 1rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding: 1.75rem; border: 1px solid var(--av-line-light); border-radius: var(--av-r); background: rgb(244 241 233 / 0.04); }
.step__index { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 999px; background: var(--av-red); color: var(--av-ivory); font-family: var(--av-mono); font-size: 0.9rem; }
.step h3 { font-size: 1.2rem; font-weight: 700; }
.step p { margin-top: 0.4rem; color: var(--av-muted); line-height: 1.5; }

/* Reviews */
.quotes { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.quote { color: var(--av-ink); display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; padding: 2rem; border-left: 3px solid var(--av-red); background: #fff; }
.quote blockquote { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.4; }
.quote figcaption { display: grid; gap: 0.15rem; font-size: 0.9rem; }
.quote figcaption span { color: var(--av-ink-2); }

/* Offerte */
.offer { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.offer__copy { display: flex; flex-direction: column; gap: 1rem; }
.offer__line { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 500; }
.offer__line i { font-size: 1.25rem; color: var(--av-red); }
.offer__panel { padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: var(--av-r); background: var(--av-ivory); color: var(--av-ink); color-scheme: light; }
.qform { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: 0.9rem; font-weight: 600; }
.field__opt { font-weight: 400; color: var(--av-ink-2); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--av-ink); padding: 0.8rem 0.95rem;
  border: 1px solid var(--av-line); border-radius: var(--av-r); background: #fff;
  transition: border-color 0.3s var(--av-ease), box-shadow 0.3s var(--av-ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--av-red); box-shadow: 0 0 0 3px rgb(226 89 43 / 0.2); }
.field.invalid input { border-color: var(--av-red); }
.select { position: relative; }
.select select { appearance: none; padding-right: 2.5rem; }
.select i { position: absolute; right: 0.9rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--av-ink-2); }
.field__help { font-family: var(--av-mono); font-size: 0.75rem; color: var(--av-ink-2); }
.field__error { font-size: 0.85rem; color: var(--av-red-deep); }
.qform__note { font-size: 0.82rem; color: var(--av-ink-2); text-align: center; }
.form-done { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: var(--av-r); background: rgb(226 89 43 / 0.08); color: var(--av-ink); }
.form-done i { font-size: 2rem; color: var(--av-red); }
.form-done strong { display: block; }
.form-done span { font-size: 0.9rem; color: var(--av-ink-2); }

/* FAQ */
.faq { display: grid; gap: 0.6rem; margin-top: 2rem; }
.faq__item { background: #fff; border: 1px solid var(--av-line); border-radius: var(--av-r); }
.faq__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem; font-weight: 600; cursor: pointer; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { font-size: 1.2rem; color: var(--av-red); transition: transform 0.5s var(--av-ease); flex: none; }
.faq__item[open] summary i { transform: rotate(180deg); }
.faq__item p { padding: 0 1.4rem 1.3rem; color: var(--av-ink-2); line-height: 1.55; max-width: 65ch; }

/* Footer */
.footer { padding: 4rem 0 2rem; background: var(--av-ground-deep); color: var(--av-muted); border-top: 1px solid var(--av-line-light); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.footer h4 { font-family: var(--av-mono); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--av-ivory); margin-bottom: 0.3rem; }
.footer a:hover { color: var(--av-ivory); }
.footer__tag { max-width: 32ch; margin-top: 0.5rem; }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--av-line-light); font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__route, .nav__phone { display: none; }
  .burger { display: block; }
  .bento__cell--photo { grid-column: span 12; }
  .bento__cell, .bento__cell--red { grid-column: span 6; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .chapter__pin, .chapter[data-align="right"] .chapter__pin {
    align-items: flex-end; justify-content: flex-start;
    padding: 6.5rem 1.25rem calc(4rem + env(safe-area-inset-bottom));
  }
  .chapter__copy { width: min(100%, 36rem); }
  .chapter__copy::before { inset: -3rem -2rem; background: linear-gradient(to top, rgb(20 74 55 / 1) 0%, rgb(20 74 55 / 0.8) 58%, transparent 100%); }
  .chapter__title { max-width: 14ch; font-size: clamp(2.2rem, 10vw, 4rem); }
}
@media (max-width: 768px) {
  .nav { gap: 1rem; height: 64px; }
  .nav__brand span { display: none; }
  .cta-quote--compact { display: none; }
  .process, .offer, .quotes, .field-row, .footer__grid { grid-template-columns: 1fr; }
  .process__sticky { position: static; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento__cell, .bento__cell--red, .bento__cell--photo { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Verminderde beweging: geen video, statisch verhaal ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .journey__stage { position: relative; height: 60dvh; }
  .journey__video, .journey__progress { display: none; }
  .journey__chapters { margin-top: 0; display: block; }
  .chapter__pin { position: static; min-height: 0; padding: 3rem clamp(1.25rem, 6vw, 6rem); }
  .chapter__copy::before { display: none; }
}

/* ---------- Subpagina's: zelfde tokens, extra structuur ---------- */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__dropdown {
  position: absolute; top: calc(100% + 0.6rem); left: -1rem; min-width: 15rem;
  display: grid; gap: 0.15rem; padding: 0.75rem;
  background: var(--av-ground-deep); border: 1px solid var(--av-line-light); border-radius: var(--av-r);
  box-shadow: 0 24px 60px -24px rgb(0 0 0 / 0.6);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.35s var(--av-ease), transform 0.35s var(--av-ease), visibility 0.35s;
}
.nav__dropdown--wide { min-width: 18rem; }
.nav__item:hover .nav__dropdown, .nav__item:focus-within .nav__dropdown { opacity: 1; visibility: visible; transform: none; }
.nav__dropdown a { display: block; padding: 0.5rem 0.75rem; border-bottom: 0; border-radius: 4px; font-family: var(--av-font); font-size: 0.9rem; color: var(--av-ivory); }
.nav__dropdown a:hover { background: rgb(244 241 233 / 0.08); border-bottom: 0; }
.nav__dropdown-label { display: block; margin: 0.6rem 0.75rem 0.2rem; padding-top: 0.6rem; border-top: 1px solid var(--av-line-light); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--av-muted); }
.nav__route a[aria-current="page"] { color: var(--av-ivory); border-bottom-color: var(--av-red); }
.nav__dropdown a[aria-current="page"] { background: rgb(226 89 43 / 0.18); }
.is-page .nav { background: linear-gradient(to bottom, rgb(13 51 39 / 0.98), rgb(13 51 39 / 0.88)); }

.menu { padding: 5.5rem 1.5rem 2rem; justify-content: flex-start; }
.menu__scroll { overflow-y: auto; max-height: 100%; padding-bottom: 2rem; }
.menu__main a { font-size: 1.7rem; padding: 0.3rem 0; }
.menu__label { margin: 1.5rem 0 0.4rem; font-family: var(--av-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--av-muted); }
.menu__sub { display: grid; grid-template-columns: 1fr 1fr; gap: 0.1rem 1rem; }
.menu__sub a { font-size: 1rem; font-weight: 500; padding: 0.3rem 0; color: var(--av-ivory); }
.menu .menu__phone { display: inline-block; margin-top: 1.5rem; }

.page-hero { padding: calc(72px + clamp(3rem, 7vw, 6rem)) 0 clamp(2.5rem, 5vw, 4rem); background: var(--av-ground); color: var(--av-ivory); }
.page-hero__kicker { margin-bottom: 1rem; font-family: var(--av-mono); font-size: 0.78rem; letter-spacing: 0.06em; color: var(--av-red); }
.page-hero__title { font-size: clamp(2.3rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1; text-wrap: balance; max-width: 18ch; }
.page-hero__intro { margin-top: 1.5rem; max-width: 60ch; font-size: clamp(1.05rem, 1.3vw, 1.2rem); line-height: 1.6; color: var(--av-muted); }

.prose { font-size: 1.05rem; line-height: 1.7; color: var(--av-ink); }
.prose h2 { margin-top: 2.75rem; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; font-size: 1.2rem; font-weight: 700; }
.prose p { margin-top: 1rem; color: var(--av-ink-2); }
.prose ul, .prose ol { margin-top: 1rem; padding-left: 1.25rem; color: var(--av-ink-2); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: 0.4rem; }
.prose li::marker { color: var(--av-red); }
.prose a { color: var(--av-red-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--av-red); }
.prose strong { color: var(--av-ink); }
.prose .callout { margin-top: 1.5rem; padding: 1.25rem 1.5rem; border-left: 3px solid var(--av-red); background: #fff; color: var(--av-ink); }
.prose .callout p { margin: 0; color: var(--av-ink); }
.prose .linkrow { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; padding: 0; list-style: none; }
.prose .linkrow li { margin: 0; }
.prose .linkrow a { display: inline-block; padding: 0.45rem 0.85rem; border: 1px solid var(--av-line); border-radius: 999px; background: #fff; text-decoration: none; color: var(--av-ink); font-size: 0.92rem; }
.prose .linkrow a:hover { border-color: var(--av-red); color: var(--av-red-deep); }
.prose-figure { margin-top: 1.75rem; margin-bottom: 0.5rem; }
.prose-figure img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--av-r); border: 1px solid var(--av-line); }
.prose-figure figcaption { margin-top: 0.6rem; font-family: var(--av-mono); font-size: 0.78rem; color: var(--av-ink-2); }
.prose-figure--lead { margin-top: 0; }
.section + .section--ivory.section--tight { padding-top: 0; }
.faq-title { margin-bottom: 0; }
.page-cta .chapter__actions { margin-top: 2rem; }

.footer__grid--5 { grid-template-columns: 1.5fr 1fr 1fr 0.8fr 1.2fr; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; color: var(--av-ink); }
.contact-list i { font-size: 1.4rem; color: var(--av-red); }
.contact-list small { display: block; font-weight: 400; color: var(--av-ink-2); }

@media (max-width: 1280px) { .nav__phone { display: none; } }
@media (max-width: 1100px) { .nav__route { gap: 1.1rem; } }
@media (max-width: 1024px) { .footer__grid--5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer__grid--5, .contact-grid { grid-template-columns: 1fr; } .menu__sub { grid-template-columns: 1fr; } }

/* Regio-pills op de homepage */
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.pills a { display: inline-block; padding: 0.55rem 1rem; border: 1px solid var(--av-line); border-radius: 999px; background: #fff; color: var(--av-ink); font-size: 0.92rem; font-weight: 500; transition: border-color 0.3s var(--av-ease), color 0.3s var(--av-ease); }
.pills a:hover { border-color: var(--av-red); color: var(--av-red-deep); }
.bento__caption h3 a, .bento__cell h3 a { color: inherit; }
.bento__cell h3 a:hover { text-decoration: underline; text-decoration-color: var(--av-red); text-underline-offset: 3px; }

/* Prijzen: drie tijdsblokken, zelfde tokens */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.price { display: flex; flex-direction: column; gap: 0.5rem; padding: 2rem; border-radius: var(--av-r); background: #fff; border: 1px solid var(--av-line); color: var(--av-ink); }
.price--accent { background: var(--av-red); border-color: var(--av-red); color: var(--av-ivory); }
.price__hours { font-family: var(--av-mono); font-size: 0.8rem; letter-spacing: 0.04em; color: var(--av-ink-2); }
.price--accent .price__hours { color: rgb(244 241 233 / 0.8); }
.price__amount { font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price__amount small { font-size: 1rem; font-weight: 600; margin-left: 0.25rem; }
.price__fit { font-size: 0.95rem; color: var(--av-ink-2); }
.price--accent .price__fit { color: rgb(244 241 233 / 0.85); }
.price__incl { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--av-line); display: grid; gap: 0.35rem; font-size: 0.9rem; }
.price--accent .price__incl { border-top-color: rgb(244 241 233 / 0.25); }
.price__incl li { display: flex; align-items: center; gap: 0.5rem; }
.price__incl i { color: var(--av-red); font-size: 1.1rem; }
.price--accent .price__incl i { color: var(--av-ivory); }
.prices__note { margin-top: 1.25rem; max-width: 60ch; font-size: 0.95rem; color: var(--av-ink-2); }
.section--petrol .prices__note, .section--petrol-deep .prices__note { color: var(--av-muted); }
@media (max-width: 900px) { .prices { grid-template-columns: 1fr; } }

/* ---------- Filmtekst: petrol op een lichte, halfdoorzichtige plaat (leesbaar op lichte daglichtbeelden) ---------- */
.chapter__copy { padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 2.5vw, 2.25rem); border-radius: var(--av-r); }
.chapter__copy::before {
  inset: 0; border-radius: var(--av-r);
  background: rgb(244 241 233 / 0.93);
  box-shadow: 0 24px 60px -30px rgb(13 51 39 / 0.45), inset 0 0 0 1px rgb(255 255 255 / 0.5);
}
.chapter__title { color: var(--av-ground-deep); }
.chapter__title em, .chapter__title strong { color: var(--av-red); font-style: normal; }
.chapter__body { color: var(--av-ink-2); }
.chapter__tags li { border-color: rgb(16 36 29 / 0.18); color: var(--av-ink); background: #fff; }
.chapter .cta-call { background: var(--av-ground-deep); border-color: var(--av-ground-deep); color: var(--av-ivory); backdrop-filter: none; -webkit-backdrop-filter: none; }
.chapter .cta-call:hover { background: var(--av-ground); }
.is-home .nav { background: linear-gradient(to bottom, rgb(13 51 39 / 0.92), rgb(13 51 39 / 0.55) 70%, rgb(13 51 39 / 0)); }
.journey__progress { background: rgb(13 51 39 / 0.18); }
@media (max-width: 860px) {
  .chapter__copy::before { inset: 0; background: rgb(244 241 233 / 0.9); }
}
@media (prefers-reduced-motion: reduce) {
  .chapter__copy::before { display: block; }
  .journey__chapters { background: var(--av-ivory); }
}

/* ---------- Areas mega-dropdown (29 communes + towns) ---------- */
.nav__dropdown--areas {
  left: auto; right: -1rem;
  width: min(46rem, 92vw);
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row dense;
  column-gap: 0.4rem;
}
.nav__dropdown--areas .nav__dropdown-label { grid-column: 1 / -1; margin-top: 0; }
.nav__dropdown--areas .nav__dropdown-label:first-child { padding-top: 0; border-top: 0; }
@media (max-width: 1200px) { .nav__dropdown--areas { grid-template-columns: repeat(2, 1fr); width: min(32rem, 92vw); } }

/* Custom-quote price card (no numeric amount) */
.price__amount--custom { font-size: clamp(1.7rem, 2.6vw, 2.2rem); letter-spacing: -0.02em; }
.price__amount small { white-space: nowrap; }

/* "est." estimated indicator next to price amounts */
.price__est { font-family: var(--av-mono); font-size: 0.32em; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; vertical-align: super; margin-left: 0.4rem; color: var(--av-ink-2); opacity: 0.8; }
.price--accent .price__est { color: var(--av-ivory); opacity: 0.85; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem); z-index: 30;
  display: grid; place-items: center; width: 3.6rem; height: 3.6rem; border-radius: 999px;
  background: #25D366; color: #fff; font-size: 1.95rem;
  box-shadow: 0 12px 30px -8px rgb(0 0 0 / 0.5);
  transition: transform 0.4s var(--av-ease), box-shadow 0.4s var(--av-ease);
}
.wa-float i { color: #fff; position: relative; z-index: 2; }
.wa-float:hover { transform: translateY(-2px) scale(1.06); box-shadow: 0 16px 38px -8px rgb(0 0 0 / 0.55); }
.wa-float:active { transform: scale(0.97); }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 999px; background: #25D366; z-index: 1; animation: wa-pulse 2.4s var(--av-ease) infinite; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.55; } 70%, 100% { transform: scale(1.9); opacity: 0; } }
@media (max-width: 768px) { .wa-float { width: 3.25rem; height: 3.25rem; font-size: 1.75rem; } }
@media (prefers-reduced-motion: reduce) { .wa-float__pulse { animation: none; display: none; } }

/* ---------- Photo upload dropzone (quote form) ---------- */
.upload { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem; text-align: center; padding: 1.4rem 1rem; border: 1.5px dashed var(--av-line); border-radius: var(--av-r); background: #fff; cursor: pointer; transition: border-color 0.3s var(--av-ease), background 0.3s var(--av-ease); }
.upload:hover { border-color: var(--av-red); background: rgb(226 89 43 / 0.04); }
.upload i { font-size: 1.9rem; color: var(--av-red); }
.upload__text { font-weight: 600; font-size: 0.95rem; color: var(--av-ink); }
.upload__hint { font-family: var(--av-mono); font-size: 0.72rem; color: var(--av-ink-2); }
.upload--filled { border-color: var(--av-red); border-style: solid; background: rgb(226 89 43 / 0.05); }

/* Ensure [hidden] always wins over class display rules (form success/error toggles) */
[hidden] { display: none !important; }

/* ---------- Services image-tile grid (homepage) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.svc-tile { position: relative; display: block; overflow: hidden; border-radius: var(--av-r); min-height: 300px; background: var(--av-ground-deep); border: 1px solid var(--av-line); }
.svc-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--av-ease); }
.svc-tile:hover img { transform: scale(1.05); }
.svc-tile__cap { position: absolute; inset: auto 0 0 0; padding: 1.5rem; color: var(--av-ivory); background: linear-gradient(to top, rgb(13 51 39 / 0.96), rgb(13 51 39 / 0.55) 55%, rgb(13 51 39 / 0)); }
.svc-tile__cap h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.015em; }
.svc-tile__cap p { margin-top: 0.35rem; font-size: 0.92rem; line-height: 1.45; color: var(--av-muted); max-width: 34ch; }
.svc-tile::after { content: ""; position: absolute; inset: 0; border-radius: var(--av-r); box-shadow: inset 0 0 0 0 var(--av-red); transition: box-shadow 0.4s var(--av-ease); pointer-events: none; }
.svc-tile:hover::after { box-shadow: inset 0 0 0 2px var(--av-red); }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } .svc-tile { min-height: 240px; } }

/* ---------- Location: "in numbers" facts band ---------- */
.section--facts { padding-top: clamp(3rem, 6vw, 5rem); }
.facts__kicker { text-align: center; font-family: var(--av-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--av-red); margin-bottom: 0.75rem; }
.facts__title { text-align: center; margin: 0 auto; max-width: 22ch; }
.facts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.5rem; }
.fact { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.55rem; padding: 1.75rem 1rem; border: 1px solid var(--av-line); border-radius: var(--av-r); background: #fff; }
.fact__ic { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 999px; background: var(--av-red); }
.fact__ic i { font-size: 1.4rem; color: #fff; }
.fact__label { font-family: var(--av-mono); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--av-ink-2); }
.fact__value { font-size: 1.1rem; font-weight: 700; color: var(--av-ink); line-height: 1.2; }
.facts__note { margin: 1.5rem auto 0; text-align: center; max-width: 62ch; font-size: 0.9rem; color: var(--av-ink-2); }
@media (max-width: 900px) { .facts { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .facts { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Location: before / after band ---------- */
.beforeafter .section__title { max-width: 20ch; }
.beforeafter .section__lead { max-width: 64ch; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.ba__item { position: relative; margin: 0; border-radius: var(--av-r); overflow: hidden; border: 1px solid var(--av-line-light); }
.ba__item img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ba__tag { position: absolute; top: 1rem; left: 1rem; padding: 0.35rem 0.9rem; border-radius: 999px; font-family: var(--av-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.ba__tag--before { background: var(--av-ground-deep); color: var(--av-ivory); }
.ba__tag--after { background: var(--av-red); color: #fff; }
@media (max-width: 640px) { .ba { grid-template-columns: 1fr; } }
