/* Huis Leegmaken Antwerpen
   One grotesk (Host Grotesk), one mono for data (JetBrains Mono), cool grey-green ground,
   bottle-green ink panels and one signal lime. Notched frames are the house shape. */

@font-face { font-family: "Host Grotesk"; src: url("assets/fonts/host-grotesk.woff2") format("woff2"); font-weight: 300 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Host Grotesk"; src: url("assets/fonts/host-grotesk-italic.woff2") format("woff2"); font-weight: 300 800; font-style: italic; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("assets/fonts/jetbrains-mono.woff2") format("woff2"); font-weight: 400 500; font-style: normal; font-display: swap; }

:root {
  --bg: #f1f3f0;
  --surface: #f9faf8;
  --ink: #0d1510;
  --ink-2: #333d37;
  --muted: #5b655f;
  --ghost: #c3cac4;
  --line: #d8ddd7;
  --line-2: #bec6bf;
  --deep: #0d1510;
  --deep-2: #17231c;
  --deep-3: #223128;
  --on-deep: #eef2ee;
  --on-deep-2: #a8b6ad;
  --signal: #c9f24b;
  --signal-2: #b9e536;
  --signal-ink: #0d1510;
  --danger: #b3261e;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --font: "Host Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --wrap: 1320px;
  --gutter: clamp(16px, 4vw, 40px);
  --nav-h: 56px;
  --shadow: 0 1px 2px rgb(13 21 16 / 0.06), 0 12px 32px -12px rgb(13 21 16 / 0.18);
  color-scheme: light;
  interpolate-size: allow-keywords;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0b110d;
    --surface: #111a14;
    --ink: #e8eee9;
    --ink-2: #c3ccc5;
    --muted: #93a098;
    --ghost: #34423a;
    --line: #202c25;
    --line-2: #2d3b33;
    --deep: #17231c;
    --deep-2: #1d2b23;
    --deep-3: #28392f;
    --shadow: 0 1px 2px rgb(0 0 0 / 0.3), 0 12px 32px -12px rgb(0 0 0 / 0.6);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0b110d; --surface: #111a14; --ink: #e8eee9; --ink-2: #c3ccc5; --muted: #93a098; --ghost: #34423a;
  --line: #202c25; --line-2: #2d3b33; --deep: #17231c; --deep-2: #1d2b23; --deep-3: #28392f; color-scheme: dark;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--font);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  caret-color: var(--ink);
  overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.2em; text-decoration-thickness: 1px; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-weight: 440; text-wrap: balance; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--signal); color: var(--signal-ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
html { scrollbar-color: var(--line-2) transparent; }
.i { width: 1.2em; height: 1.2em; flex: none; }
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--signal); color: var(--signal-ink); padding: 10px 14px; border-radius: var(--r-sm); font-weight: 600; }
.skip:focus { top: 12px; }

.h1 { font-size: clamp(2.3rem, 1.3rem + 3.2vw, 4.25rem); line-height: 1.02; letter-spacing: -0.035em; font-weight: 440; }
.h2 { font-size: clamp(1.75rem, 1.2rem + 1.9vw, 2.9rem); line-height: 1.06; letter-spacing: -0.03em; font-weight: 440; }
.lead { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem); line-height: 1.5; color: var(--ink-2); max-width: 52ch; letter-spacing: -0.005em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 20px; border-radius: var(--r-sm); border: 1px solid transparent;
  font: 600 0.95rem/1 var(--font); letter-spacing: -0.01em; text-decoration: none; white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 200ms ease, border-color 200ms ease, color 200ms ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn .i { width: 20px; height: 20px; }
.btn--signal { background: var(--signal); color: var(--signal-ink); }
.btn--quiet { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn--glass { color: #fff; background: rgb(255 255 255 / 0.12); border-color: rgb(255 255 255 / 0.24); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.btn--light { background: #e7ece7; color: #0d1510; }
.btn--ghost-dark { color: var(--on-deep); border-color: rgb(255 255 255 / 0.22); }
.btn--sm { min-height: 40px; padding: 0 14px; font-size: 0.88rem; }
.btn--nav { min-height: 36px; padding: 0 12px; gap: 8px; font: 500 0.7rem/1 var(--mono); text-transform: uppercase; letter-spacing: 0.05em; border-radius: 7px; }
.btn--nav .i { width: 16px; height: 16px; }
@media (hover: hover) and (pointer: fine) {
  .btn--signal:hover { background: var(--signal-2); }
  .btn--quiet:hover { background: var(--surface); border-color: var(--ink); }
  .btn--glass:hover { background: rgb(255 255 255 / 0.2); }
  .btn--light:hover { background: #fff; }
  .btn--ghost-dark:hover { border-color: var(--on-deep); }
}

/* ---------- nav ---------- */
.nav { position: fixed; inset: 12px 0 auto; z-index: 50; pointer-events: none; padding-inline: 12px; }
.nav__bar {
  pointer-events: auto; position: relative;
  margin-inline: auto; max-width: 1140px; height: var(--nav-h);
  display: flex; align-items: center; gap: 10px; padding: 0 8px 0 12px;
  background: rgb(13 21 16 / 0.66); color: #eef2ee;
  -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgb(255 255 255 / 0.08); border-radius: 12px;
  box-shadow: 0 10px 30px -12px rgb(0 0 0 / 0.45), inset 0 1px 0 rgb(255 255 255 / 0.06);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 600; letter-spacing: -0.02em; font-size: 0.98rem; white-space: nowrap; }
.brand__mark { width: 28px; height: 28px; border-radius: 7px; }
.brand__name span { font-weight: 400; opacity: 0.72; }
.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; font-size: 0.9rem; }
.nav__links > a, .nav__trigger {
  display: inline-flex; align-items: center; gap: 4px; height: 36px; padding: 0 10px; border-radius: 7px;
  color: rgb(238 242 238 / 0.78); text-decoration: none; background: none; border: 0;
  transition: color 160ms ease, background-color 160ms ease;
}
.nav__links > a[aria-current="page"], .nav__trigger[aria-expanded="true"] { color: #fff; background: rgb(255 255 255 / 0.08); }
@media (hover: hover) and (pointer: fine) { .nav__links > a:hover, .nav__trigger:hover { color: #fff; } }
.nav__caret { width: 12px; height: 12px; transition: transform 200ms var(--ease-out); }
.nav__trigger[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }
.nav__item { position: relative; }
.nav__actions { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.nav__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 7px; border: 1px solid rgb(255 255 255 / 0.14); color: #eef2ee; }
.nav__icon .i { width: 17px; height: 17px; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; min-width: 340px; padding: 8px;
  background: rgb(13 21 16 / 0.92); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid rgb(255 255 255 / 0.08); border-radius: 12px; box-shadow: 0 24px 50px -20px rgb(0 0 0 / 0.6);
  opacity: 0; visibility: hidden; transform: translate(-50%, -6px) scale(0.98); transform-origin: top center;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 0s linear 180ms;
}
.dropdown.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); transition-delay: 0s; }
.dropdown__services { display: grid; }
.dropdown__services a { display: grid; gap: 2px; padding: 10px 12px; border-radius: 8px; text-decoration: none; color: #eef2ee; }
.dropdown__services a small { color: var(--on-deep-2); font-size: 0.8rem; }
.dropdown__services a:hover, .dropdown__services a:focus-visible, .dropdown__services a[aria-current="page"] { background: rgb(255 255 255 / 0.07); }
.dropdown--regio { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; min-width: 520px; padding: 16px; }
.dropdown__label { font-weight: 600; font-size: 0.85rem; color: #fff; margin: 4px 0 8px; }
.dropdown__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown__grid a { padding: 7px 8px; border-radius: 6px; text-decoration: none; color: #eef2ee; font-size: 0.88rem; }
.dropdown__grid a:hover, .dropdown__grid a[aria-current="page"] { background: rgb(255 255 255 / 0.07); }
.dropdown__all { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding: 12px; border-radius: 8px; background: rgb(255 255 255 / 0.05); color: var(--signal); text-decoration: none; font-size: 0.9rem; }
.burger { display: none; width: 40px; height: 40px; border: 0; border-radius: 8px; background: rgb(255 255 255 / 0.08); position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: #eef2ee; transition: transform 240ms var(--ease-out); }
.burger span:first-child { top: 16px; }
.burger span:last-child { top: 23px; }
.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); }

@media (max-width: 1120px) {
  .nav__links { display: none; }
  .nav__actions { margin-left: auto; }
  .burger { display: block; }
}
@media (max-width: 640px) {
  .nav__icon { display: none; }
  .brand__name span { display: none; }
  .btn--nav { padding: 0 10px; }
}
@media (max-width: 360px) { .btn--nav span { display: none; } }

.menu {
  position: fixed; inset: 0; z-index: 45; background: var(--deep); color: var(--on-deep);
  overflow-y: auto; overscroll-behavior: contain;
  clip-path: inset(0 0 100% 0); transition: clip-path 420ms var(--ease-in-out), visibility 0s linear 420ms; visibility: hidden;
}
.menu[hidden] { display: block; }
.menu.is-open { clip-path: inset(0); visibility: visible; transition-delay: 0s; }
.menu__inner { padding: calc(var(--nav-h) + 40px) var(--gutter) 48px; max-width: 720px; margin-inline: auto; }
.menu__main a { display: block; padding: 8px 0; font-size: clamp(1.7rem, 1.3rem + 2vw, 2.4rem); letter-spacing: -0.03em; text-decoration: none; line-height: 1.1; }
.menu__label { font-weight: 600; font-size: 0.95rem; color: var(--on-deep-2); margin: 32px 0 10px; }
.menu__sub a { display: block; padding: 6px 0; color: var(--on-deep); text-decoration: none; }
.menu__sub--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.menu__cta { margin-top: 36px; display: grid; gap: 14px; justify-items: start; }
.menu__mail { color: var(--on-deep-2); }
@media (prefers-reduced-motion: no-preference) {
  .menu.is-open .menu__main li { animation: menuIn 520ms var(--ease-out) both; }
  .menu.is-open .menu__main li:nth-child(2) { animation-delay: 40ms; }
  .menu.is-open .menu__main li:nth-child(3) { animation-delay: 80ms; }
  .menu.is-open .menu__main li:nth-child(4) { animation-delay: 120ms; }
  .menu.is-open .menu__main li:nth-child(5) { animation-delay: 160ms; }
  .menu.is-open .menu__main li:nth-child(6) { animation-delay: 200ms; }
  .menu.is-open .menu__main li:nth-child(7) { animation-delay: 240ms; }
}
@keyframes menuIn { from { opacity: 0; transform: translateY(14px); } }

/* ---------- hero (home) ---------- */
.hero { position: relative; min-height: 100dvh; min-height: max(640px, 100dvh); display: grid; align-items: end; overflow: hidden; background: #0d1510; color: #fff; isolation: isolate; }
.hero__media, .hero__poster, .hero__video, .hero__shade { position: absolute; inset: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 900ms ease; }
.hero__video.is-playing { opacity: 1; }
.hero__shade { background: radial-gradient(70% 55% at 50% 72%, rgb(13 21 16 / 0.5) 0%, transparent 70%), linear-gradient(180deg, rgb(13 21 16 / 0.5) 0%, rgb(13 21 16 / 0.08) 28%, rgb(13 21 16 / 0.4) 58%, rgb(13 21 16 / 0.9) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; text-align: center; padding-bottom: clamp(56px, 11vh, 120px); display: grid; justify-items: center; }
.hero__title { font-size: clamp(2.4rem, 0.9rem + 4.1vw, 4.8rem); line-height: 1.02; letter-spacing: -0.04em; font-weight: 430; text-shadow: 0 2px 30px rgb(0 0 0 / 0.3); }
.hero__line { display: block; }
.hero__line--type { color: #fff; min-height: 1.05em; }
@media (max-width: 760px) { .hero__line--type { min-height: 2.1em; } }
.caret { display: inline-block; width: 0.5em; height: 0.82em; margin-left: 0.06em; background: var(--signal); vertical-align: -0.04em; }
.caret.is-blink { animation: blink 1s steps(1) 3 forwards; }
.caret.is-done { opacity: 0; transition: opacity 400ms ease; }
@keyframes blink { 50% { opacity: 0; } }
.hero__sub { margin: 26px 0 0; max-width: 50ch; text-wrap: balance; font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem); color: rgb(238 242 238 / 0.88); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.hero__toggle { position: absolute; z-index: 3; right: var(--gutter); bottom: 24px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgb(255 255 255 / 0.3); background: rgb(13 21 16 / 0.35); display: grid; place-items: center; }
.hero__toggle-pause { width: 10px; height: 12px; border-inline: 3px solid #fff; }
.hero__toggle.is-paused .hero__toggle-pause { width: 0; height: 0; border: 0; border-left: 10px solid #fff; border-block: 6px solid transparent; margin-left: 3px; }

/* ---------- statement (scroll-inked) ---------- */
.statement { padding-block: clamp(96px, 13vw, 190px) clamp(72px, 9vw, 130px); }
.statement__text { margin: 0 auto; max-width: 30ch; text-align: center; font-size: clamp(1.7rem, 1rem + 2.7vw, 3.5rem); line-height: 1.12; letter-spacing: -0.035em; font-weight: 430; text-wrap: balance; }
.statement--small .statement__text { max-width: 30ch; font-size: clamp(1.5rem, 1rem + 1.8vw, 2.6rem); }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .statement__text { view-timeline: --ink block; }
    .ink-w { color: var(--ghost); animation: ink linear both; animation-timeline: --ink; animation-range: cover calc(18% + var(--p) * 32%) cover calc(24% + var(--p) * 32%); }
  }
}
@keyframes ink { to { color: var(--ink); } }

/* ---------- services bento ---------- */
.services { padding-bottom: clamp(80px, 10vw, 150px); }
.services__title { margin-bottom: 28px; }
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(210px, auto); gap: 12px; }
.tile {
  position: relative; display: flex; flex-direction: column; gap: 10px; padding: 24px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line); text-decoration: none; color: var(--ink);
  transition: transform 260ms var(--ease-out), border-color 200ms ease, box-shadow 260ms var(--ease-out);
}
.tile:active { transform: scale(0.985); }
.tile__hint { font: 500 0.68rem/1.3 var(--mono); text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); max-width: 26ch; }
.tile__name { margin-top: auto; font-size: clamp(1.45rem, 1.1rem + 1vw, 2.05rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 450; }
.tile__text { color: var(--ink-2); max-width: 36ch; font-size: 0.98rem; line-height: 1.5; }
.tile__go { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); transition: transform 260ms var(--ease-out), background-color 200ms ease; }
.tile__go .i { width: 18px; height: 18px; }
@media (hover: hover) and (pointer: fine) {
  .tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
  .tile:hover .tile__go { transform: translate(2px, -2px); background: var(--signal); border-color: var(--signal); color: var(--signal-ink); }
}
.tile--a { grid-column: 1 / 7; grid-row: 1 / 3; padding: 32px; }
.tile--a .tile__name { font-size: clamp(2rem, 1.3rem + 2.2vw, 3.4rem); }
.tile--b { grid-column: 7 / 10; }
.tile--c { grid-column: 10 / 13; }
.tile--d { grid-column: 7 / 10; }
.tile--e { grid-column: 10 / 13; }
.tile--deep { background: var(--deep); border-color: var(--deep); color: var(--on-deep); }
.tile--deep .tile__hint, .tile--deep .tile__text { color: var(--on-deep-2); }
.tile--deep .tile__go { border-color: rgb(255 255 255 / 0.18); }
.tile--signal { background: var(--signal); border-color: var(--signal); color: var(--signal-ink); }
.tile--signal .tile__hint, .tile--signal .tile__text { color: #2c3a12; }
.tile--signal .tile__go { border-color: rgb(13 21 16 / 0.25); }
.tile--line { background: transparent; border-color: var(--line-2); }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(190px, auto); }
  .tile--a { grid-column: 1 / -1; grid-row: auto; min-height: 280px; }
  .tile--b, .tile--c, .tile--d, .tile--e { grid-column: auto; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .tile { min-height: 190px; }
}

/* ---------- frames (the notch) ---------- */
.frame { margin: 0; position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--line); aspect-ratio: 4 / 3;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(50% + 58px), 14px calc(50% + 42px), 14px calc(50% - 42px), 0 calc(50% - 58px)); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--wide { aspect-ratio: 21 / 9; }
.notch-card { clip-path: polygon(0 0, calc(50% - 76px) 0, calc(50% - 60px) 14px, calc(50% + 60px) 14px, calc(50% + 76px) 0, 100% 0, 100% 100%, 0 100%); }
@media (max-width: 700px) {
  .frame { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(50% + 40px), 10px calc(50% + 28px), 10px calc(50% - 28px), 0 calc(50% - 40px)); }
  .frame--wide { aspect-ratio: 4 / 3; }
}

/* ---------- process (home) ---------- */
.process { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; padding-bottom: clamp(80px, 10vw, 150px); align-items: start; }
.process__media { grid-column: 1 / 7; position: sticky; top: 100px; }
.process__media .frame { aspect-ratio: 4 / 4.4; }
.process__text { grid-column: 8 / 13; }
.process__steps { margin-top: 28px; }
.process__step { padding: 26px 0; border-top: 1px solid var(--line); }
.process__h { font-size: clamp(1.3rem, 1.05rem + 0.8vw, 1.7rem); letter-spacing: -0.025em; font-weight: 450; margin-bottom: 8px; line-height: 1.15; }
.process__step p:last-child { color: var(--ink-2); margin: 0; max-width: 46ch; }
.process__step :is(.process__h, p) { transition: color 400ms var(--ease-out); }
.process__steps.is-live .process__step:not(.is-active) :is(.process__h, p) { color: var(--muted); }
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; }
  .process__media, .process__text { grid-column: auto; position: static; }
  .process__media .frame { aspect-ratio: 4 / 3; }
}

/* ---------- sorter ---------- */
.sorter { padding-block: 0 clamp(80px, 10vw, 150px); }
.sorter__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: stretch; }
.sorter__intro { grid-column: 1 / 6; }
.sorter__intro > p { color: var(--ink-2); margin-top: 18px; max-width: 44ch; }
.sorter__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.chip { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--surface); font-size: 0.92rem; transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 160ms var(--ease-out); }
.chip .i { width: 17px; height: 17px; }
.chip:active { transform: scale(0.97); }
.chip[aria-selected="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
@media (hover: hover) and (pointer: fine) { .chip:hover:not([aria-selected="true"]) { border-color: var(--ink); } }
.sorter__card { grid-column: 7 / 13; background: #0d1510; color: var(--on-deep); border-radius: var(--r-lg); padding: 52px clamp(24px, 3.5vw, 44px) 30px; display: flex; flex-direction: column; min-height: 400px;
  background-image: radial-gradient(120% 90% at 100% 0%, #1f3326 0%, transparent 60%); }
.sorter__label { font: 500 0.7rem/1 var(--mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--on-deep-2); margin-bottom: 14px; }
.sorter__dest { font-size: clamp(1.9rem, 1.3rem + 2vw, 3.1rem); line-height: 1.04; letter-spacing: -0.035em; font-weight: 440; margin-bottom: 18px; color: #fff; }
.sorter__text { color: var(--on-deep-2); max-width: 44ch; font-size: 1.05rem; }
.sorter__dest, .sorter__text { transition: opacity 220ms ease, filter 220ms ease, transform 220ms var(--ease-out); }
.sorter__card.is-swapping .sorter__dest, .sorter__card.is-swapping .sorter__text { opacity: 0; filter: blur(4px); transform: translateY(4px); }
.sorter__foot { margin-top: auto; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / 0.1); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sorter__foot p { margin: 0; color: var(--on-deep-2); font-size: 0.92rem; }
@media (max-width: 900px) {
  .sorter__grid { grid-template-columns: 1fr; }
  .sorter__intro, .sorter__card { grid-column: auto; }
  .sorter__card { min-height: 0; }
}

/* ---------- places (home) ---------- */
.places { padding-bottom: clamp(80px, 10vw, 150px); }
.places__intro { color: var(--ink-2); max-width: 60ch; margin-top: 16px; }
.places__cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; margin-top: 32px; }
.places__group { font-weight: 600; font-size: 0.98rem; color: var(--ink); margin-bottom: 12px; }
.places__list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.places__cols > div:last-child .places__list { grid-template-columns: 1fr; }
.places__list a { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); text-decoration: none; transition: border-color 200ms ease, background-color 200ms ease; }
.places__name { font-weight: 500; letter-spacing: -0.01em; }
.places__pc { font: 400 0.78rem/1 var(--mono); color: var(--muted); font-variant-numeric: tabular-nums; }
@media (hover: hover) and (pointer: fine) { .places__list a:hover { border-color: var(--ink); } }
@media (max-width: 900px) { .places__cols { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .places__list { grid-template-columns: 1fr; } }

/* ---------- posts (home) ---------- */
.posts { padding-bottom: clamp(80px, 10vw, 150px); }
.posts__list { margin-top: 26px; border-top: 1px solid var(--line); }
.posts__item { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.posts__name { font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem); letter-spacing: -0.02em; font-weight: 450; }
.posts__text { color: var(--muted); }
.posts__item .i { transition: transform 240ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .posts__item:hover .i { transform: translateX(4px); } .posts__item:hover .posts__name { text-decoration: underline; text-decoration-thickness: 1px; } }
.posts__all { margin-top: 20px; }
@media (max-width: 760px) { .posts__item { grid-template-columns: 1fr auto; gap: 6px 16px; } .posts__text { grid-column: 1; } .posts__item .i { grid-row: 1 / 3; grid-column: 2; } }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; padding-bottom: clamp(80px, 10vw, 140px); }
.faq > .h2 { grid-column: 1 / 5; position: sticky; top: 100px; align-self: start; }
.faq__list { grid-column: 6 / 13; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 0; cursor: pointer; font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem); font-weight: 500; letter-spacing: -0.015em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { width: 22px; height: 22px; transition: transform 260ms var(--ease-out); }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a p { color: var(--ink-2); max-width: 62ch; padding-bottom: 22px; margin: 0; }
.faq__item::details-content { block-size: 0; overflow: hidden; transition: block-size 320ms var(--ease-out), content-visibility 320ms allow-discrete; }
.faq__item[open]::details-content { block-size: auto; }
@media (max-width: 900px) { .faq > .h2, .faq__list { grid-column: 1 / -1; position: static; } }
.faq--group { padding-bottom: 56px; }

/* ---------- CTA band ---------- */
.cta-band { padding-bottom: clamp(24px, 4vw, 40px); }
.cta-band__inner { background: #0d1510; color: var(--on-deep); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 88px) clamp(24px, 5vw, 72px); display: grid; gap: 18px;
  background-image: radial-gradient(90% 120% at 0% 100%, #1e3225 0%, transparent 55%); }
.cta-band__title { margin: 0; font-size: clamp(2rem, 1.2rem + 3vw, 4rem); letter-spacing: -0.04em; line-height: 1.02; font-weight: 440; max-width: 18ch; color: #fff; }
.cta-band__text { margin: 0; color: var(--on-deep-2); max-width: 52ch; font-size: 1.08rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }

/* ---------- page hero ---------- */
.phero { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: center; padding-top: calc(var(--nav-h) + 72px); padding-bottom: clamp(56px, 7vw, 100px); }
.phero__text { grid-column: 1 / 8; }
.phero__text .h1 { margin: 18px 0 22px; }
.phero__media { grid-column: 8 / 13; align-self: center; }
.phero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.phero--compact .phero__media .frame { aspect-ratio: 4 / 3; }
@media (max-width: 900px) {
  .phero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 48px); }
  .phero__text, .phero__media { grid-column: auto; }
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font: 400 0.74rem/1.4 var(--mono); color: var(--muted); letter-spacing: 0.01em; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--line-2); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink-2); }

/* ---------- dossier (location facts) ---------- */
.dossier { padding-bottom: clamp(56px, 7vw, 100px); }
.dossier__grid { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.dossier__cell { background: var(--surface); padding: 18px 20px 20px; }
.dossier__cell dt { font: 500 0.66rem/1.2 var(--mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }
.dossier__cell dd { margin: 0; font-size: 1.02rem; line-height: 1.4; font-variant-numeric: tabular-nums; }
.dossier__cell:first-child { background: #0d1510; color: var(--on-deep); }
.dossier__cell:first-child dt { color: var(--on-deep-2); }
.dossier__cell:first-child dd { font: 500 1.05rem/1.4 var(--mono); color: var(--signal); }
@media (max-width: 900px) { .dossier__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dossier__grid { grid-template-columns: 1fr; } }

/* ---------- prose + aside ---------- */
.prose { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; padding-bottom: clamp(72px, 9vw, 130px); }
.prose__col { grid-column: 1 / 8; }
.prose__col .h2 { font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2.2rem); margin: 56px 0 18px; }
.prose__col .h2:first-child { margin-top: 0; }
.prose__col p { max-width: 68ch; color: var(--ink-2); }
.prose__col a, .article__body a, .where__text a, .places__intro a, .sorter__intro a, .process__step a, .region__intro a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 0.22em; transition: text-decoration-color 160ms ease; }
.prose__col a:hover, .article__body a:hover, .where__text a:hover, .places__intro a:hover, .sorter__intro a:hover, .process__step a:hover { text-decoration-color: var(--ink); }
.prose__aside { grid-column: 9 / 13; display: grid; gap: 16px; align-content: start; position: sticky; top: 100px; align-self: start; }
@media (max-width: 900px) { .prose__col, .prose__aside { grid-column: 1 / -1; position: static; } }

.scope { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.scope__title { font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 14px; }
.scope__title--muted { color: var(--muted); margin-top: 22px; }
.scope__list { display: grid; gap: 10px; }
.scope__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; line-height: 1.45; }
.scope__list .i { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: var(--signal); color: var(--signal-ink); margin-top: 1px; }
.scope__list--muted li { color: var(--muted); }
.scope__list--muted .i { background: var(--line); color: var(--muted); }

.nearby { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; }
.nearby__title { font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 6px; }
.nearby a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; text-decoration: none; border-top: 1px solid var(--line); }
.nearby li:first-child a { border-top: 0; }
.nearby a .i { width: 16px; height: 16px; color: var(--muted); transition: transform 200ms var(--ease-out), color 200ms ease; }
@media (hover: hover) and (pointer: fine) { .nearby a:hover .i { transform: translate(2px, -2px); color: var(--ink); } .nearby a:hover span { text-decoration: underline; } }
.nearby--posts { background: transparent; }

/* ---------- service steps + where ---------- */
.steps { padding-bottom: clamp(72px, 9vw, 130px); }
.steps__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 30px; counter-reset: st; }
.steps__item { padding-top: 20px; border-top: 2px solid var(--ink); counter-increment: st; }
.steps__item::before { content: counter(st); font: 500 0.74rem/1 var(--mono); color: var(--muted); display: block; margin-bottom: 14px; }
.steps__h { font-size: 1.2rem; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 8px; }
.steps__item p:last-child { color: var(--ink-2); font-size: 0.98rem; margin: 0; }
@media (max-width: 900px) { .steps__list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps__list { grid-template-columns: 1fr; } }
.where { padding-bottom: clamp(72px, 9vw, 130px); }
.where__text { color: var(--ink-2); max-width: 62ch; margin-top: 16px; }
.where__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.where__list a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line-2); text-decoration: none; background: var(--surface); transition: border-color 200ms ease; }
.where__list .i { width: 16px; height: 16px; color: var(--muted); }
@media (hover: hover) and (pointer: fine) { .where__list a:hover { border-color: var(--ink); } }

/* ---------- werkwijze timeline ---------- */
.timeline { padding-bottom: clamp(72px, 9vw, 130px); }
.timeline__list { counter-reset: tl; display: grid; gap: 0; border-top: 1px solid var(--line); }
.timeline__item { counter-increment: tl; display: grid; grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1.3fr); gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); align-items: start; }
.timeline__item::before { content: counter(tl, decimal-leading-zero); font: 500 0.95rem/1.2 var(--mono); color: var(--muted); }
.timeline__h { font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.9rem); letter-spacing: -0.03em; line-height: 1.1; }
.timeline__item p { color: var(--ink-2); margin: 0; max-width: 60ch; }
.timeline__item:first-child::before { color: var(--ink); }
@media (max-width: 800px) { .timeline__item { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- kringwinkel flows ---------- */
.flows { padding-bottom: clamp(72px, 9vw, 130px); }
.flows__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.flow { padding: 26px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); display: grid; gap: 8px; align-content: start; min-height: 200px; }
.flow__icon { width: 28px; height: 28px; margin-bottom: 18px; }
.flow__h { font-size: 1.3rem; letter-spacing: -0.02em; font-weight: 500; margin: 0; }
.flow__d { color: var(--ink-2); margin: 0; font-size: 0.98rem; }
.flow--lead { background: var(--signal); border-color: var(--signal); color: var(--signal-ink); grid-column: span 2; }
.flow--lead .flow__d { color: #2c3a12; font-size: 1.1rem; max-width: 46ch; }
.flow--lead .flow__h { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); letter-spacing: -0.035em; }
.flow--deep { background: #0d1510; border-color: #0d1510; color: var(--on-deep); }
.flow--deep .flow__d { color: var(--on-deep-2); }
@media (max-width: 900px) { .flows__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .flows__grid { grid-template-columns: 1fr; } .flow--lead { grid-column: auto; } }

/* ---------- regio ---------- */
.region { padding-bottom: clamp(64px, 8vw, 110px); }
.region__intro { color: var(--ink-2); max-width: 64ch; margin-top: 14px; }
.region__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }
.region__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "name go" "line go" "pc go"; gap: 4px 16px; padding: 20px 22px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); text-decoration: none; transition: border-color 200ms ease, transform 240ms var(--ease-out); }
.region__name { grid-area: name; font-size: 1.3rem; letter-spacing: -0.025em; font-weight: 500; }
.region__line { grid-area: line; color: var(--ink-2); font-size: 0.96rem; }
.region__pc { grid-area: pc; font: 400 0.76rem/1.5 var(--mono); color: var(--muted); margin-top: 6px; }
.region__row .i { grid-area: go; align-self: center; width: 20px; height: 20px; transition: transform 240ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .region__row:hover { border-color: var(--ink); } .region__row:hover .i { transform: translateX(4px); } }
@media (max-width: 760px) { .region__list { grid-template-columns: 1fr; } }

/* ---------- blog ---------- */
.bloglist { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; padding-bottom: clamp(64px, 8vw, 110px); }
.bloglist__lead { grid-column: 1 / 6; display: flex; flex-direction: column; gap: 14px; padding: 32px; min-height: 360px; border-radius: var(--r-lg); background: #0d1510; color: var(--on-deep); text-decoration: none; background-image: radial-gradient(100% 90% at 100% 0%, #1f3326 0%, transparent 60%); }
.bloglist__lead .bloglist__name { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.6rem); line-height: 1.05; letter-spacing: -0.035em; color: #fff; }
.bloglist__lead .bloglist__text { color: var(--on-deep-2); }
.bloglist__go { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--signal); font-weight: 500; }
.bloglist__rest { grid-column: 6 / 13; border-top: 1px solid var(--line); }
.bloglist__rest a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 20px; padding: 20px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.bloglist__rest .bloglist__name { font-size: 1.2rem; font-weight: 500; letter-spacing: -0.02em; }
.bloglist__rest .bloglist__text { color: var(--muted); grid-column: 1; }
.bloglist__rest .i { grid-row: 1 / 3; grid-column: 2; align-self: center; width: 18px; height: 18px; transition: transform 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .bloglist__rest a:hover .i { transform: translate(2px, -2px); } .bloglist__rest a:hover .bloglist__name { text-decoration: underline; } }
@media (max-width: 900px) { .bloglist__lead, .bloglist__rest { grid-column: 1 / -1; } .bloglist__lead { min-height: 260px; } }

/* ---------- article ---------- */
.article__head { padding-top: calc(var(--nav-h) + 72px); max-width: 980px; margin-inline: auto; width: min(100% - 2 * var(--gutter), 980px); }
.article__title { margin: 18px 0 22px; }
.article__media { margin-top: 44px; margin-bottom: clamp(48px, 6vw, 80px); }
.article__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; padding-bottom: clamp(64px, 8vw, 110px); }
.article__aside { grid-column: 1 / 4; }
.toc { position: sticky; top: 100px; }
.toc__title { font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 12px; }
.toc ol { display: grid; gap: 2px; border-left: 1px solid var(--line); }
.toc a { display: block; padding: 6px 0 6px 14px; margin-left: -1px; border-left: 1px solid transparent; color: var(--muted); text-decoration: none; font-size: 0.92rem; line-height: 1.35; transition: color 160ms ease, border-color 160ms ease; }
.toc a:hover, .toc a.is-current { color: var(--ink); border-left-color: var(--ink); }
.article__body { grid-column: 4 / 11; }
.article__body .h2 { font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2.1rem); margin: 56px 0 18px; scroll-margin-top: 100px; }
.article__body .h2:first-child { margin-top: 0; }
.article__body p { color: var(--ink-2); max-width: 68ch; }
.checks { display: grid; gap: 12px; margin: 0 0 1.2em; max-width: 66ch; }
.checks li { position: relative; padding-left: 32px; color: var(--ink-2); }
.checks li::before { content: ""; position: absolute; left: 0; top: 0.2em; width: 20px; height: 20px; border-radius: 50%; background: var(--signal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%230d1510' d='M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E") center / 12px no-repeat; }
.checks--no li::before { background: var(--line) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%235b655f' d='M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z'/%3E%3C/svg%3E") center / 11px no-repeat; }
.checks strong { color: var(--ink); font-weight: 600; }
.article__next { margin-top: 56px; padding: 26px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); }
.article__next-title { font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: 12px; }
.article__next ul { display: grid; gap: 8px; }
@media (max-width: 900px) { .article__aside { display: none; } .article__body { grid-column: 1 / -1; } }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; padding-top: calc(var(--nav-h) + 72px); padding-bottom: clamp(64px, 8vw, 110px); align-items: start; }
.contact__intro { grid-column: 1 / 6; }
.contact__intro .h1 { margin: 18px 0 22px; }
.contact__direct { display: grid; gap: 12px; justify-items: start; margin: 28px 0 32px; }
.contact__line { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin: 0; }
.contact__line .i { width: 20px; height: 20px; color: var(--muted); }
a.contact__line:hover span { text-decoration: underline; }
.contact__img { aspect-ratio: 16 / 10; }
.form { grid-column: 7 / 13; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 48px clamp(20px, 3vw, 40px) 32px; display: grid; gap: 18px; }
.form__title { font-size: 1.5rem; letter-spacing: -0.025em; font-weight: 500; margin: 0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.92rem; font-weight: 500; }
.field__opt { color: var(--muted); font-weight: 400; font-size: 0.82rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border-radius: var(--r-sm); border: 1px solid var(--line-2);
  background: var(--bg); color: var(--ink); font: 400 1rem/1.4 var(--font); transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgb(201 242 75 / 0.55); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field__help { margin: 0; font-size: 0.82rem; color: var(--muted); }
.field__err { margin: 0; font-size: 0.85rem; color: var(--danger); font-weight: 500; }
.form__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.form__note { margin: 0; font-size: 0.84rem; color: var(--muted); }
.form__status { margin: 0; font-size: 0.92rem; font-weight: 500; }
.form__status:empty { display: none; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .field__err { color: #ff8a80; } :root:not([data-theme="light"]) .field [aria-invalid="true"] { border-color: #ff8a80; } }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 48px); } .contact__intro, .form { grid-column: auto; } }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } .form__actions .btn { width: 100%; } }

/* ---------- faq groups ---------- */
.faqgroups { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.faqgroups__nav { grid-column: 1 / 4; position: sticky; top: 100px; align-self: start; display: grid; gap: 6px; }
.faqgroups__nav a { padding: 10px 14px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--surface); text-decoration: none; font-size: 0.95rem; }
.faqgroups__nav a:hover { border-color: var(--ink); }
.faqgroups > div { grid-column: 4 / 13; }
.faqgroups .faq { grid-template-columns: 1fr; gap: 12px; }
.faqgroups .faq > .h2, .faqgroups .faq__list { grid-column: 1 / -1; position: static; }
.faqgroups .faq > .h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); }
@media (max-width: 900px) { .faqgroups__nav { grid-column: 1 / -1; position: static; display: flex; flex-wrap: wrap; } .faqgroups > div { grid-column: 1 / -1; } }

/* ---------- footer ---------- */
.footer { margin-top: clamp(24px, 4vw, 40px); background: #0d1510; color: var(--on-deep); padding-top: clamp(64px, 8vw, 110px); }
.footer a { text-decoration: none; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: end; padding-bottom: 56px; border-bottom: 1px solid rgb(255 255 255 / 0.1); }
.footer__claim { margin: 0; font-size: clamp(2.4rem, 1.2rem + 4.4vw, 5.4rem); line-height: 0.98; letter-spacing: -0.045em; font-weight: 430; color: #fff; }
.footer__reach { display: grid; gap: 14px; justify-items: start; }
.footer__line { display: inline-flex; align-items: center; gap: 10px; color: var(--on-deep); }
.footer__line .i { width: 18px; height: 18px; color: var(--on-deep-2); }
.footer__line:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 28px; padding-block: 48px; }
.footer__grid > div { display: grid; gap: 8px; align-content: start; }
.footer__grid > div > a { color: var(--on-deep-2); font-size: 0.93rem; transition: color 160ms ease; width: fit-content; }
.footer__grid > div > a:hover { color: #fff; }
.footer__h { font-weight: 600; font-size: 0.95rem; color: #fff; margin: 0 0 8px; }
.footer__about p { color: var(--on-deep-2); font-size: 0.93rem; max-width: 36ch; margin: 14px 0 0; }
.footer__addr { display: flex; align-items: center; gap: 8px; }
.footer__addr .i { width: 16px; height: 16px; }
.brand--footer { color: #fff; }
.footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px 28px; border-top: 1px solid rgb(255 255 255 / 0.1); font: 400 0.76rem/1.4 var(--mono); color: var(--on-deep-2); }
@media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__about { grid-column: 1 / -1; } .footer__top { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- floating WhatsApp ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--signal); color: var(--signal-ink); box-shadow: 0 10px 28px -8px rgb(13 21 16 / 0.45); transition: transform 240ms var(--ease-out), opacity 240ms ease; }
.wa-float .i { width: 26px; height: 26px; }
.wa-float:active { transform: scale(0.94); }

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* dark ground: the ink panels need an edge to separate from the page */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) :is(.sorter__card, .cta-band__inner, .bloglist__lead, .flow--deep, .tile--deep) { box-shadow: inset 0 0 0 1px var(--line-2); }
  :root:not([data-theme="light"]) .footer { border-top: 1px solid var(--line); }
}

/* ---------- review fixes ---------- */
.tile__list { display: grid; gap: 10px; max-width: 34ch; }
.tile__list li { display: flex; gap: 10px; align-items: flex-start; color: var(--on-deep); font-size: 0.98rem; line-height: 1.4; }
.tile__list .i { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: var(--signal); color: var(--signal-ink); flex: none; }
@media (max-width: 560px) { .tile__list { display: none; } }
.footer__lead { margin: 18px 0 0; color: var(--on-deep-2); font-size: 1.08rem; max-width: 44ch; }
.frame--wide { clip-path: none; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%235b655f' d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
.field input[type="date"] { font-variant-numeric: tabular-nums; }
.field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.6; cursor: pointer; }
.sorter__card { clip-path: polygon(0 0, calc(100% - 132px) 0, calc(100% - 108px) 24px, 100% 24px, 100% 100%, 0 100%); padding-top: 64px; }

/* ---------- scroll-driven hero film (canvas image sequence) ---------- */
.scrolly { position: relative; height: 100vh; height: 100lvh; min-height: 560px; background: #0d1510; color: #fff; isolation: isolate; }
.scrolly.is-live { height: 520vh; }
@media (max-width: 699px) { .scrolly.is-live { height: 440vh; } }
.scrolly__stage { position: sticky; top: 0; height: 100vh; height: 100lvh; min-height: 560px; overflow: hidden; background: #0d1510 url("assets/scroll/poster-d.webp") center / cover no-repeat; }
@media (max-width: 699px) { .scrolly__stage { background-image: url("assets/scroll/poster-m.webp"); } }
.scrolly__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.scrolly__shade { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgb(13 21 16 / 0.42) 0%, rgb(13 21 16 / 0) 26%, rgb(13 21 16 / 0.18) 60%, rgb(13 21 16 / 0.82) 100%); }
.scrolly__cap { position: absolute; inset: 0; z-index: 2; display: grid; align-items: end; padding-bottom: clamp(88px, 14vh, 150px);
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(26px); filter: blur(8px);
  transition: opacity 600ms var(--ease-out), transform 800ms var(--ease-out), filter 600ms var(--ease-out), visibility 0s linear 600ms; }
.scrolly__cap.is-on { opacity: 1; visibility: visible; pointer-events: auto; transform: none; filter: none; transition-delay: 0s; }
.scrolly__cap--left, .scrolly__cap--right { align-items: center; padding-bottom: 0; }
.scrolly__cap--left::before, .scrolly__cap--right::before { content: ""; position: absolute; inset: 0; pointer-events: none; }
.scrolly__cap--left::before { background: linear-gradient(90deg, rgb(13 21 16 / 0.72) 0%, rgb(13 21 16 / 0.35) 38%, transparent 64%); }
.scrolly__cap--right::before { background: linear-gradient(270deg, rgb(13 21 16 / 0.72) 0%, rgb(13 21 16 / 0.35) 38%, transparent 64%); }
.scrolly__cap > .wrap { position: relative; }
.scrolly__cap--right > .wrap { display: grid; justify-items: end; text-align: right; }
.scrolly__h { margin: 0; font-size: clamp(2.2rem, 0.9rem + 4vw, 4.8rem); line-height: 1.02; letter-spacing: -0.04em; font-weight: 430; color: #fff; text-shadow: 0 2px 30px rgb(0 0 0 / 0.3); }
.scrolly__p { margin: 20px 0 0; max-width: 36ch; font-size: clamp(1.05rem, 1rem + 0.3vw, 1.22rem); color: rgb(238 242 238 / 0.88); }
.scrolly__h--end { text-align: center; }
.scrolly__cap--end { background: radial-gradient(70% 60% at 50% 70%, rgb(13 21 16 / 0.55), transparent 70%); }
.scrolly.is-live @media (max-width: 699px) {
  .scrolly__cap--left, .scrolly__cap--right { align-items: end; padding-bottom: 110px; }
  .scrolly__cap--left::before, .scrolly__cap--right::before { background: linear-gradient(0deg, rgb(13 21 16 / 0.85) 0%, rgb(13 21 16 / 0.4) 45%, transparent 75%); }
  .scrolly__cap--right > .wrap { justify-items: start; text-align: left; }
}

/* ---------- 3D on scroll: photo frames and the sorter card settle into place ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .process__media, .phero__media, .sorter__grid, .article__media { perspective: 1400px; }
    .process__media .frame, .phero__media .frame, .article__media .frame { animation: tiltIn linear both; animation-timeline: view(); animation-range: entry 5% cover 42%; transform-origin: 50% 100%; }
    .sorter__card { animation: swingIn linear both; animation-timeline: view(); animation-range: entry 10% cover 45%; transform-origin: 0% 50%; }
  }
}
@keyframes tiltIn { from { transform: rotateX(16deg) translateY(48px) scale(0.93); opacity: 0.35; } to { transform: none; opacity: 1; } }
@keyframes swingIn { from { transform: rotateY(-14deg) translateX(40px); opacity: 0.4; } to { transform: none; opacity: 1; } }
.scrolly__cap--hero { background: radial-gradient(75% 55% at 50% 66%, rgb(13 21 16 / 0.58), transparent 72%); }

/* ---------- owner feedback 23/09 ---------- */
.btn--ink { background: var(--ink); color: var(--bg); }
@media (hover: hover) and (pointer: fine) { .btn--ink:hover { background: #24362b; } }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .btn--ink:hover { background: #fff; } }
.nav { transform: translateZ(0); }
.scrolly { z-index: 0; }
.scrolly__canvas { transform: translateZ(0); }
/* hero copy sits in the optical middle, clear of the floating nav */
.scrolly__cap--hero { align-items: center; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 48px; }
@media (max-width: 699px) {
  .scrolly__cap { filter: none; transform: translateY(14px); transition: opacity 400ms var(--ease-out), transform 500ms var(--ease-out), visibility 0s linear 400ms; }
  .scrolly__cap.is-on { transform: none; }
  .scrolly__cap--hero { padding-top: calc(var(--nav-h) + 56px); }
  .hero__title { font-size: clamp(2.1rem, 8.6vw, 2.7rem); line-height: 1.04; }
  .hero__sub { font-size: 1rem; margin-top: 18px; }
  .scrolly__h { font-size: clamp(1.9rem, 8vw, 2.4rem); }
}
.wa-float { z-index: 55; }
.scrolly.is-drawn .scrolly__stage { background-image: none; }
.wa-float { bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px)); }

/* ---------- service tiles with photos (home) ---------- */
.tile--photo { overflow: hidden; border: 0; color: #fff; background: #0d1510; min-height: 250px; justify-content: flex-end; isolation: isolate; }
.tile--photo .tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 900ms var(--ease-out); }
.tile--photo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgb(13 21 16 / 0) 30%, rgb(13 21 16 / 0.55) 62%, rgb(13 21 16 / 0.9) 100%); }
.tile--photo .tile__name { margin-top: 0; color: #fff; }
.tile--photo .tile__text { color: rgb(238 242 238 / 0.85); max-width: 34ch; }
.tile--photo .tile__go { border-color: rgb(255 255 255 / 0.35); color: #fff; background: rgb(13 21 16 / 0.25); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.tile--photo.tile--a { min-height: 520px; }
@media (hover: hover) and (pointer: fine) { .tile--photo:hover .tile__img { transform: scale(1.05); } .tile--photo:hover { box-shadow: var(--shadow); } }
@media (max-width: 900px) { .tile--photo.tile--a { min-height: 340px; } }
@media (max-width: 560px) { .tile--photo { min-height: 220px; } .tile--photo.tile--a { min-height: 300px; } .tile--photo .tile__text { display: none; } }
/* desktop hero: bigger headline and sub so the first viewport is filled */
@media (min-width: 900px) {
  .hero__title { font-size: clamp(3.4rem, 1.1rem + 4.2vw, 5.5rem); line-height: 1; }
  .hero__sub { font-size: clamp(1.2rem, 0.9rem + 0.5vw, 1.4rem); max-width: 52ch; margin-top: 28px; }
  .hero__actions { margin-top: 38px; }
  .hero__actions .btn { min-height: 54px; padding: 0 26px; font-size: 1.02rem; }
}
@media (min-width: 900px) { .scrolly__cap--hero { padding-top: calc(var(--nav-h) + 120px); } }

/* =====================================================================
   PREMIUM MOTION LAYER
   One easing family, entrances only on load or first view, everything
   gated behind prefers-reduced-motion: no-preference.
   ===================================================================== */
:root { --ease-expo: cubic-bezier(0.19, 1, 0.22, 1); --ease-quint: cubic-bezier(0.22, 1, 0.36, 1); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* cross-document page transitions: the nav and the floating button stay put, content crossfades */
@view-transition { navigation: auto; }
.nav { view-transition-name: site-nav; }
.wa-float { view-transition-name: wa-float; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vtOut 260ms var(--ease-quint) both; }
  ::view-transition-new(root) { animation: vtIn 520ms var(--ease-expo) both; }
}
@keyframes vtOut { to { opacity: 0; transform: translateY(-10px); filter: blur(4px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(18px); filter: blur(6px); } }

/* nav: compact and more solid once the page moves; thin lime reading-progress line */
.nav__bar { transition: height 500ms var(--ease-expo), max-width 600ms var(--ease-expo), background-color 400ms ease, box-shadow 400ms ease; }
.is-scrolled .nav__bar { height: 50px; max-width: 1080px; background: rgb(13 21 16 / 0.84); box-shadow: 0 18px 40px -18px rgb(0 0 0 / 0.55), inset 0 1px 0 rgb(255 255 255 / 0.06); }
@supports (animation-timeline: scroll()) {
  .nav__bar::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 2px; border-radius: 2px; background: var(--signal); transform-origin: 0 50%; transform: scaleX(0); animation: navProgress linear both; animation-timeline: scroll(root); opacity: 0.9; }
}
@keyframes navProgress { to { transform: scaleX(1); } }

@media (prefers-reduced-motion: no-preference) {
  /* hero intro: first line rises out of a mask, then the typed line, then sub and action */
  .hero__line--mask { overflow: clip; padding-bottom: 0.08em; margin-bottom: -0.08em; }
  .hero__line-in { display: inline-block; animation: riseIn 1200ms var(--ease-expo) 120ms both; }
  .scrolly .hero__sub { animation: fadeUp 1000ms var(--ease-expo) 900ms both; }
  .scrolly__cap--hero .hero__actions { animation: fadeUp 1000ms var(--ease-expo) 1100ms both; }
  .scrolly__canvas { animation: stageIn 1800ms var(--ease-expo) both; }

  /* inner pages: hero copy settles in on load */
  .phero__text > *, .article__head > *, .contact__intro > * { animation: fadeUp 900ms var(--ease-expo) both; }
  .phero__text > :nth-child(2), .article__head > :nth-child(2), .contact__intro > :nth-child(2) { animation-delay: 80ms; }
  .phero__text > :nth-child(3), .article__head > :nth-child(3), .contact__intro > :nth-child(3) { animation-delay: 160ms; }
  .phero__text > :nth-child(4), .contact__intro > :nth-child(4) { animation-delay: 240ms; }
  .contact__intro > :nth-child(5) { animation-delay: 320ms; }
  .form { animation: fadeUp 1000ms var(--ease-expo) 200ms both; }
}
@keyframes riseIn { from { transform: translateY(108%); } to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes stageIn { from { opacity: 0.001; transform: scale(1.06); } to { opacity: 1; transform: none; } }

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    /* section headings rise out of a mask the first time they enter */
    .services__title, .process__text > .h2, .sorter__intro > .h2, .places > .h2, .posts > .h2, .faq > .h2, .steps > .h2, .where > .h2, .flows > .h2, .region > .h2, .prose__col > .h2 {
      animation: maskRise linear both; animation-timeline: view(); animation-range: entry 0% entry 70%;
    }
    .statement__text { animation: fadeUp linear both; animation-timeline: view(); animation-range: entry 0% entry 55%; }
    /* photos drift inside their frame */
    .tile--photo .tile__img { top: -8%; height: 116%; animation: drift linear both; animation-timeline: view(); animation-range: cover 0% cover 100%; }
    .process__media .frame img, .phero__media .frame img, .article__media .frame img { height: 114%; margin-top: -7%; animation: drift linear both; animation-timeline: view(); animation-range: cover 0% cover 100%; }
    .footer__claim { animation: fadeUp linear both; animation-timeline: view(); animation-range: entry 0% entry 60%; }
  }
}
@keyframes maskRise { from { clip-path: inset(-20% 0 100% 0); transform: translateY(40%); } to { clip-path: inset(-20% 0 -30% 0); transform: none; } }
@keyframes drift { from { translate: 0 -5%; } to { translate: 0 5%; } }

/* tiles: hover zoom uses the independent scale property so it composes with the drift */
.tile--photo .tile__img { transition: scale 1100ms var(--ease-expo); }
@media (hover: hover) and (pointer: fine) {
  .tile--photo:hover .tile__img { transform: none; scale: 1.06; }
  .tile--photo .tile__name { transition: transform 600ms var(--ease-expo); }
  .tile--photo:hover .tile__name { transform: translateY(-4px); }
}

/* buttons: a fill sweeps in from the left, the arrow nudges forward */
.btn--signal, .btn--ink { position: relative; overflow: hidden; isolation: isolate; }
.btn--signal::before, .btn--ink::before { content: ""; position: absolute; inset: 0; z-index: -1; clip-path: inset(0 100% 0 0); transition: clip-path 500ms var(--ease-expo); }
.btn--signal::before { background: #e4ff8a; }
.btn--ink::before { background: #1f3326; }
.btn .i { transition: transform 450ms var(--ease-expo); }
@media (hover: hover) and (pointer: fine) {
  .btn--signal:hover { background: var(--signal); }
  .btn--ink:hover { background: var(--ink); }
  .btn--signal:hover::before, .btn--ink:hover::before { clip-path: inset(0); }
  .btn:hover .i:last-child { transform: translateX(3px); }
  .btn--glass:hover { border-color: rgb(255 255 255 / 0.5); }
}
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .btn--ink::before { background: #ffffff; } }

/* dark cards: a soft light follows the pointer */
.sorter__card, .bloglist__lead { position: relative; }
.sorter__card::before, .bloglist__lead::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity 500ms ease;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 30%), rgb(201 242 75 / 0.12), transparent 60%); }
.sorter__card:hover::before, .bloglist__lead:hover::before { opacity: 1; }

/* floating WhatsApp: arrives once, lifts on hover */
@media (prefers-reduced-motion: no-preference) {
  .wa-float { animation: waIn 900ms var(--ease-expo) 1400ms both; }
}
@keyframes waIn { from { opacity: 0; transform: translateY(20px) scale(0.85); } }
@media (hover: hover) and (pointer: fine) { .wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 36px -10px rgb(13 21 16 / 0.55); } }

/* list rows: quieter, more deliberate hovers */
.places__list a, .region__row, .where__list a { transition: border-color 300ms ease, transform 500ms var(--ease-expo), background-color 300ms ease; }
@media (hover: hover) and (pointer: fine) {
  .places__list a:hover, .region__row:hover { transform: translateY(-2px); background: #fff; }
}
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .places__list a:hover, :root:not([data-theme="light"]) .region__row:hover { background: var(--deep-2); } }

/* mobile nav: one "Menu" button with three lines, no separate contact button */
.burger { width: auto; height: 40px; padding: 0 12px 0 14px; display: none; align-items: center; gap: 10px; color: #eef2ee; font: 500 0.72rem/1 var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
.burger span:first-child, .burger span:last-child { position: static; height: auto; background: none; transform: none; }
.burger__lines { position: relative; display: block; width: 18px; height: 12px; }
.burger__lines i { position: absolute; left: 0; right: 0; height: 1.5px; border-radius: 2px; background: #eef2ee; transition: transform 300ms var(--ease-out), opacity 200ms ease, top 300ms var(--ease-out); }
.burger__lines i:nth-child(1) { top: 0; }
.burger__lines i:nth-child(2) { top: 5.25px; }
.burger__lines i:nth-child(3) { top: 10.5px; }
.burger[aria-expanded="true"] .burger__lines i:nth-child(1) { top: 5.25px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__lines i:nth-child(3) { top: 5.25px; transform: rotate(-45deg); }
@media (max-width: 1120px) { .burger { display: inline-flex; } .nav__contact { display: none; } }
.burger .burger__label { position: static; height: auto; background: none; transform: none; }
.burger .burger__lines { position: relative; display: block; width: 18px; height: 12px; background: none; transform: none; }

/* mobile menu trigger: plain text + two-line icon, no button chrome */
.burger { background: none; border: 0; padding: 0 6px; gap: 10px; font: 500 0.95rem/1 var(--font); text-transform: none; letter-spacing: -0.01em; }
.burger .burger__lines { width: 20px; height: 8px; }
.burger__lines i:nth-child(1) { top: 0; }
.burger__lines i:nth-child(2) { top: 6.5px; }
.burger[aria-expanded="true"] .burger__lines i:nth-child(1) { top: 3.25px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines i:nth-child(2) { top: 3.25px; transform: rotate(-45deg); opacity: 1; }
.burger span.burger__label { position: static; left: auto; right: auto; top: auto; height: auto; background: none; transform: none; }
.burger span.burger__lines { position: relative; left: auto; right: auto; top: auto; display: block; width: 20px; height: 8px; background: none; transform: none; }
@media (max-width: 1120px) { .nav__bar { padding-right: 14px; } .burger { padding: 0; } }
/* never let an entrance transform widen the page */
html { overflow-x: clip; }
.sorter { overflow-x: clip; }
@media (max-width: 899px) { .sorter__card { animation: none !important; } }

/* hero: offerte button under "Zo werken we" */
.hero__actions--stack { flex-direction: column; align-items: center; gap: 12px; }
.hero__actions--stack .btn { min-width: 240px; }

/* district rows: the place's own photo runs behind the row under a dark gradient */
.places__list a { position: relative; overflow: hidden; isolation: isolate; min-height: 64px; align-items: center; border: 0; color: #fff; background: #0d1510; }
.places__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: scale 900ms var(--ease-expo, ease); }
.places__list a::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgb(13 21 16 / 0.86) 0%, rgb(13 21 16 / 0.62) 45%, rgb(13 21 16 / 0.35) 100%); transition: opacity 400ms ease; }
.places__name { font-weight: 500; color: #fff; }
.places__pc { color: rgb(238 242 238 / 0.8); }
@media (hover: hover) and (pointer: fine) {
  .places__list a:hover { background: #0d1510; transform: translateY(-2px); box-shadow: var(--shadow); }
  .places__list a:hover .places__img { scale: 1.08; }
  .places__list a:hover::after { opacity: 0.8; }
}

/* hero secondary: transparent, no blur */
.btn--glass { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-color: rgb(255 255 255 / 0.45); }
@media (hover: hover) and (pointer: fine) { .btn--glass:hover { background: rgb(255 255 255 / 0.08); border-color: #fff; } }

/* form: segmented choice, upload, honeypot, states */
.field__label { font-size: 0.92rem; font-weight: 500; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.seg__opt { position: relative; }
.seg__opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.seg__opt span { display: grid; place-items: center; min-height: 48px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--bg); font-weight: 500; transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease; }
.seg__opt input:checked + span { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.seg__opt input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }
.seg__opt input[aria-invalid="true"] + span { border-color: var(--danger); }
.upload { position: relative; display: flex; align-items: center; gap: 14px; padding: 18px; border: 1.5px dashed var(--line-2); border-radius: var(--r-md); background: var(--bg); cursor: pointer; transition: border-color 200ms ease, background-color 200ms ease; }
.upload:hover, .upload:focus-within { border-color: var(--ink); }
.upload.has-files { border-style: solid; border-color: var(--ink); }
.upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload__icon { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--signal); color: var(--signal-ink); flex: none; box-sizing: content-box; }
.upload__text { display: grid; gap: 2px; }
.upload__text small { color: var(--muted); font-size: 0.84rem; }
.upload__list { display: grid; gap: 4px; font-size: 0.86rem; }
.upload__list li { display: flex; justify-content: space-between; gap: 12px; color: var(--ink-2); }
.upload__list small { color: var(--muted); font-variant-numeric: tabular-nums; }
.upload__list:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { width: 100%; min-height: 54px; }
.form.is-sending .form__submit { opacity: 0.7; pointer-events: none; }
.form__status[data-state="ok"] { color: #2c6e2a; }
.form__status[data-state="error"] { color: var(--danger); }

/* credits + footer link */
.credits { padding-bottom: clamp(48px, 6vw, 80px); }
.credits__intro { color: var(--ink-2); margin-top: 12px; }
.credits__list { display: grid; gap: 6px; margin-top: 16px; font-size: 0.86rem; color: var(--muted); }
.credits__list a { color: var(--ink-2); }
.footer__base a { color: var(--on-deep-2); text-decoration: underline; text-underline-offset: 0.2em; }
/* the Menu trigger never changes when the menu opens */
.burger[aria-expanded="true"] span.burger__label,
.burger[aria-expanded="true"] span.burger__lines { transform: none; }
.burger[aria-expanded="true"] .burger__lines i:nth-child(1) { top: 0; transform: none; }
.burger[aria-expanded="true"] .burger__lines i:nth-child(2) { top: 6.5px; transform: none; opacity: 1; }
/* the two lines turn into an X when the menu is open; the label stays put */
.burger[aria-expanded="true"] .burger__lines i:nth-child(1) { top: 3.25px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines i:nth-child(2) { top: 3.25px; transform: rotate(-45deg); opacity: 1; }
