/* ─────────────────────────────────────────────────────────────
   Abba Automotive — landing page
   ───────────────────────────────────────────────────────────── */

:root {
  /* palette: premium gold (default) */
  --bg:          #0b0e12;
  --bg-1:        #10141a;
  --bg-2:        #161b22;
  --line:        rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --fg:          #f3f1ec;
  --fg-mute:     #9aa0a8;
  --fg-faint:    #5d646d;
  --accent:      #c9a961;
  --accent-ink:  #0b0e12;

  --radius-s: 6px;
  --radius:   12px;
  --radius-l: 20px;

  --font-display: "Bricolage Grotesque", ui-serif, Georgia, serif;
  --font-body:    "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --container: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);
}

/* palette variants set on <body data-palette="..."> */
body[data-palette="silver"] {
  --accent: #c8cdd4;
  --accent-ink: #0b0e12;
}

body[data-display-font="serif"] {
  --font-display: "Instrument Serif", ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}

p { margin: 0; }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 14, 18, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__img {
  display: block;
  width: 140px;
  height: 48px;
  background-color: currentColor;
  -webkit-mask: url("assets/logo.png") no-repeat left center / contain;
          mask: url("assets/logo.png") no-repeat left center / contain;
  transition: opacity 0.2s ease;
}
.logo:hover .logo__img { opacity: 0.85; }

.footer .logo__img { width: 180px; height: 60px; }

@media (max-width: 580px) {
  .logo__img { width: 110px; height: 38px; }
}

/* legacy placeholder bits kept for fallback if image missing */
.logo__mark {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  font-size: 18px;
  letter-spacing: -0.04em;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.logo__word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.logo__word small {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: block;
  margin-top: 2px;
}

.nav__links {
  display: flex; gap: 36px;
  font-size: 14px;
}
.nav__links a {
  position: relative;
  color: var(--fg);
  opacity: 0.78;
  transition: opacity 0.2s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a.active { opacity: 1; color: var(--accent); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__links a.active::after { right: 0; }

.nav__cta {
  display: flex; align-items: center; gap: 12px;
}

/* ─── TAALKIEZER ─────────────────────────────────────────────── */
.langsw { position: relative; }
.langsw__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.langsw__btn:hover { border-color: var(--fg); }
.langsw__btn.open { border-color: var(--accent); color: var(--accent); }
.langsw__btn svg { display: block; }
.langsw__flag {
  display: inline-flex;
  width: 22px; height: 15px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 1px 2px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.langsw__flag svg { display: block; width: 100%; height: 100%; }
.langsw__caret {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0.6;
}
.langsw__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 188px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.langsw__opt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--fg);
  font-size: 14px;
  transition: background 0.15s ease;
  text-align: left;
}
.langsw__opt:hover { background: var(--bg-2); }
.langsw__opt.active { color: var(--accent); }
.langsw__opt-label { flex: 1; }
.langsw__check {
  width: 6px; height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  margin-right: 3px;
  flex-shrink: 0;
}
[dir="rtl"] .langsw__check { margin-right: 0; margin-left: 3px; }
[dir="rtl"] .langsw__menu { left: 0; right: auto; }
[dir="rtl"] .langsw__opt { text-align: right; }
@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px -10px var(--accent);
}
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--fg);
}
.btn--ghost:hover {
  border-color: var(--fg);
  background: rgba(255,255,255,0.03);
}

.btn--sm { padding: 10px 16px; font-size: 13px; }

.btn__arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Actual video — drop your file into ./assets/hero.mp4 */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  /* Even out brightness across the clip so dark frames don't read as a heavier overlay */
  filter: brightness(var(--hero-video-bright, 0.85)) contrast(0.95) saturate(1.05);
}

/* Backup-afbeelding: ligt bovenop de video en verdwijnt pas zodra de video
   echt speelt. Speelt de video niet (bijv. iPhone-energiebesparingsmodus,
   geblokkeerde autoplay of laadfout), dan blijft deze foto staan. */
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.6s ease;
  filter: brightness(var(--hero-video-bright, 0.85)) contrast(0.95) saturate(1.05);
}
.hero__fallback.is-hidden { opacity: 0; pointer-events: none; }

/* Animated CSS fallback — visible while no video file is present */
.hero__motion {
  position: absolute;
  inset: -10%;
  z-index: 1;
  background:
    radial-gradient(ellipse 50% 35% at 20% 30%, rgba(201,169,97,0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(80,120,180,0.16), transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(255,255,255,0.06), transparent 70%),
    linear-gradient(180deg, #1a2028 0%, #0d1015 100%);
  filter: blur(20px);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero__motion::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(255,255,255,0.03) 0 1px,
      transparent 1px 18px
    );
  mix-blend-mode: overlay;
}
@keyframes heroDrift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1.05); }
  50%  { transform: translate3d(2%, 1%, 0)  scale(1.08); }
  100% { transform: translate3d(-1%, 2%, 0) scale(1.04); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, var(--hero-overlay, 0.55));
  pointer-events: none;
}

.hero__label {
  position: absolute;
  z-index: 4;
  bottom: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
}

/* placeholder "photo" — fine diagonal stripes + label */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.025) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(180deg, #1a2028 0%, #0d1015 100%);
  overflow: hidden;
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(201,169,97,0.12), transparent 70%);
  pointer-events: none;
}
.placeholder__label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: 4px 8px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
  border-radius: 3px;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 50%, rgba(0,0,0,0.0), rgba(0,0,0,0.18));
  z-index: 4;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  min-height: calc(100vh - 220px);
}
@media (max-width: 980px) {
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
}

.hero__title {
  font-size: clamp(48px, 7.2vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 12ch;
}
.hero__title em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 400;
}
body[data-display-font="serif"] .hero__title em { font-style: italic; }

.hero__lede {
  font-size: 17px;
  color: var(--fg-mute);
  max-width: 42ch;
  margin-top: 28px;
  line-height: 1.5;
}
.hero__lede strong { color: var(--fg); font-weight: 600; }

.hero__ctas {
  display: flex; gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 14px;
}
.hero__stat {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 500;
}
.hero__stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg-mute);
  max-width: 28ch;
}

/* Hero USP grid (replaces the standalone .usp strip) */
.hero__usps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
  row-gap: 0;
}
.hero__usp {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.hero__usp:nth-child(3), .hero__usp:nth-child(4) { border-bottom: 0; }
.hero__usp:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.hero__usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.hero__usp-icon svg { width: 18px; height: 18px; }
.hero__usp-body { min-width: 0; }
.hero__usp-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.2;
}
.hero__usp-sub {
  margin-top: 3px;
  font-size: 12px;
  color: var(--fg-mute);
  line-height: 1.4;
}
@media (max-width: 980px) {
  .hero__usps { max-width: 520px; }
}
@media (max-width: 480px) {
  .hero__usps { grid-template-columns: 1fr; }
  .hero__usp:nth-child(3) { border-bottom: 1px solid var(--line); }
  .hero__usp:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
}

.hero__pager {
  position: absolute;
  bottom: 40px;
  right: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}
.hero__pager-dots {
  display: flex; gap: 8px;
}
.hero__pager-dot {
  width: 28px; height: 2px;
  background: var(--line-strong);
  transition: background 0.3s ease;
}
.hero__pager-dot.active { background: var(--accent); }
.hero__pager-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.hero__scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: 40px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  z-index: 5;
}
.hero__scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%      { transform: scaleY(0.4); opacity: 1; }
}

@media (max-width: 880px) {
  .hero__pager { display: none; }
  .hero { padding: 120px 0 60px; min-height: 92vh; }
  .hero__scroll { bottom: 32px; }
  .hero__title { font-size: clamp(42px, 11vw, 64px); }
}
@media (max-width: 580px) {
  .hero { padding: 110px 0 48px; min-height: 88vh; }
  .hero__lede { font-size: 15px; margin-top: 22px; }
  .hero__ctas { margin-top: 28px; }
  .hero__stat-value { font-size: 36px; }
  .nav { padding: 14px 0; }
  .logo__word { font-size: 15px; }
  .logo__mark { width: 34px; height: 34px; font-size: 16px; }
}

/* ─── USP STRIP ──────────────────────────────────────────────── */
.usp {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
}
.usp__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.usp__cell {
  padding: 28px var(--pad-x);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.usp__cell:first-child { border-left: 0; }
.usp__cell-title {
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.usp__cell-title svg { color: var(--accent); flex-shrink: 0; }
.usp__cell-sub {
  font-size: 13px;
  color: var(--fg-mute);
}
@media (max-width: 880px) {
  .usp__row { grid-template-columns: repeat(2, 1fr); }
  .usp__cell:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .usp__cell:nth-child(4) { border-top: 1px solid var(--line); }
}

/* ─── MERKEN STRIP ───────────────────────────────────────────── */
.brands {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.brands__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.brands__meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.brands__rail {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 140px;
  animation: brandsScroll 38s linear infinite;
  will-change: transform;
  padding: 0 70px;
}
.brands__rail:hover .brands__track { animation-play-state: paused; }
.brand {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 120px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.82;
}
.brand img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
}
.brand:hover {
  opacity: 1;
  transform: translateY(-2px);
}
/* Donkere logo's (KIA, Peugeot, VW, SEAT, …) puur wit maken zodat ze leesbaar
   zijn op de donkere site-achtergrond — ongeacht originele kleur (zwart of navy).
   brightness(0) maakt alles zwart, invert(1) maakt het vervolgens wit. */
.brand--dark img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
@keyframes brandsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brands__track { animation: none; }
}
@media (max-width: 720px) {
  .brands { padding: 40px 0 48px; }
  .brand { height: 56px; min-width: 90px; }
  .brands__track { gap: 80px; padding: 0 40px; }
  .brands__head { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ─── SECTION SHELL ──────────────────────────────────────────── */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
/* Minder loze ruimte onder de laatste rij van een sectie (o.a. Waarom Abba) */
.section--tight-bottom { padding-bottom: clamp(40px, 5vw, 64px); }
.section__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section__title {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 18ch;
}
.section__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.section__intro {
  color: var(--fg-mute);
  font-size: 16px;
  max-width: 44ch;
  margin-top: 18px;
}
.section__head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── AANBOD ─────────────────────────────────────────────────── */
.aanbod__filters {
  display: flex; gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg-mute);
  transition: all 0.2s ease;
}
.chip:hover { color: var(--fg); border-color: var(--line-strong); }
.chip.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.cars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1080px) { .cars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .cars { grid-template-columns: 1fr; } }

.car {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.car:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.car__media {
  aspect-ratio: 4 / 3;
  position: relative;
}
.car__badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 3px;
  z-index: 2;
}
/* Live "Nieuw binnen" badge met pulserend icoontje (homepage feed-aanvoer) */
.car__badge--live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 11px;
  box-shadow: 0 6px 18px -8px rgba(201,169,97,0.7);
}
.car__badge-pulse {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: currentColor;
  flex-shrink: 0;
}
.car__badge-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: currentColor;
  animation: badgePulse 1.8s ease-out infinite;
}
@keyframes badgePulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(3.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .car__badge-pulse::after { animation: none; }
}
.car__fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(11,14,18,0.55);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--fg);
  z-index: 2;
  transition: all 0.2s ease;
}
.car__fav:hover { color: var(--accent); border-color: var(--accent); }
.car__fav.on { color: var(--accent); border-color: var(--accent); }

.car__body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.car__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.05;
}
.car__sub {
  font-size: 13px;
  color: var(--fg-mute);
  margin-top: 4px;
}
.car__specs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.car__spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.car__spec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.car__spec-value {
  color: var(--fg);
  font-weight: 500;
  font-size: 13px;
}
.car__foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.car__price {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.car__price small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}
.car__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.car__cta:hover .btn__arrow { transform: translateX(4px); }

/* ─── DIENSTEN ───────────────────────────────────────────────── */
.diensten {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 1080px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .services { grid-template-columns: 1fr; } }

.service {
  padding: 36px 32px 36px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  transition: background 0.3s ease;
  cursor: pointer;
}
.service:first-child { border-left: 0; }
@media (max-width: 1080px) {
  .service:nth-child(odd) { border-left: 0; }
  .service:nth-child(3), .service:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 580px) {
  .service { border-left: 0 !important; border-top: 1px solid var(--line); }
  .service:first-child { border-top: 0; }
}
.service:hover { background: var(--bg-2); }
.service__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.service__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-top: 24px;
  line-height: 1.05;
}
.service__desc {
  margin-top: 14px;
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.55;
  max-width: 32ch;
}
.service__cta {
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg);
}
.service__cta .btn__arrow { color: var(--accent); }
.service:hover .service__cta .btn__arrow { transform: translateX(4px); }

/* ─── WAAROM / TRUST ─────────────────────────────────────────── */
.trust__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) { .trust__grid { grid-template-columns: 1fr; gap: 40px; } }

.trust__copy { display: flex; flex-direction: column; gap: 28px; }
.trust__lede {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-weight: 400;
  color: var(--fg);
  max-width: 32ch;
}
.trust__lede em { font-style: italic; color: var(--accent); }
.trust__body { color: var(--fg-mute); max-width: 50ch; }

.trust__points {
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.trust__point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.trust__point-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
  padding-top: 4px;
}
.trust__point-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.trust__point-desc {
  font-size: 14px;
  color: var(--fg-mute);
  max-width: 40ch;
}

/* ─── CONTACT / MAP / NEWSLETTER ─────────────────────────────── */
.contact {
  background: var(--bg);
  position: relative;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--bg-1);
}
@media (max-width: 980px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__info {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 580px) { .contact__info { padding: 36px 28px; } }

.contact__title {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 500;
}
.contact__title em { font-style: italic; color: var(--accent); font-weight: 400; }

.contact__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.contact__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.contact__row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.contact__row-value {
  font-size: 15px;
  font-weight: 500;
}
.contact__row-value a:hover { color: var(--accent); }

.contact__ctas {
  display: flex; gap: 10px;
  flex-wrap: wrap;
}
.contact__cta-wa {
  background: #25D366;
  color: #ffffff;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.contact__cta-wa:hover { transform: translateY(-1px); background: #1fb955; }

.contact__map {
  position: relative;
  min-height: 420px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
}
@media (max-width: 980px) {
  .contact__map { border-left: 0; border-top: 1px solid var(--line); }
}

.map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
}
.map__pin-card {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  margin-bottom: 8px;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.6);
}
.map__pin-card strong { display: block; font-size: 13px; }
.map__pin-card small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: block;
  margin-top: 2px;
}
.map__pin-dot {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(201,169,97,0.18), 0 0 0 14px rgba(201,169,97,0.08);
  animation: pinPulse 2.2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(201,169,97,0.18), 0 0 0 14px rgba(201,169,97,0.08); }
  50%      { box-shadow: 0 0 0 9px rgba(201,169,97,0.22), 0 0 0 20px rgba(201,169,97,0.06); }
}

/* ─── NEWSLETTER STRIP ───────────────────────────────────────── */
.newsletter {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px 48px;
  background:
    radial-gradient(ellipse 80% 100% at 100% 0%, rgba(201,169,97,0.08), transparent 60%),
    var(--bg-1);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) { .newsletter { grid-template-columns: 1fr; padding: 28px; gap: 24px; } }

.newsletter__title {
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
}
.newsletter__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.newsletter__sub {
  margin-top: 8px;
  font-size: 14px;
  color: var(--fg-mute);
  max-width: 44ch;
}
.newsletter__form {
  display: flex;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 6px 6px 6px 18px;
  border-radius: 999px;
  align-items: center;
}
.newsletter__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  min-width: 0;
}
.newsletter__form input::placeholder { color: var(--fg-faint); }
.newsletter__ok {
  font-size: 13px;
  color: var(--accent);
  display: flex; align-items: center; gap: 8px;
}
.newsletter__err {
  font-size: 13px;
  color: #ef6a6a;
  margin-top: 10px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 40px;
  background: var(--bg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.footer__brand-desc {
  margin-top: 18px;
  color: var(--fg-mute);
  font-size: 14px;
  max-width: 38ch;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.footer__bottom a:hover { color: var(--accent); }

/* Footer partner strip */
.footer__partners {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0 24px;
  border-top: 1px solid var(--line);
  margin-bottom: 0;
  flex-wrap: wrap;
}
.footer__partners-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  flex-shrink: 0;
}
.footer__partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.footer__partner {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-1);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer__partner:hover {
  border-color: var(--accent);
  background: var(--bg-2);
}
.footer__partner-mark {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--fg);
}
.footer__partner-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
@media (max-width: 580px) {
  .footer__partner-sub { display: none; }
  .footer__partners { gap: 16px; }
}

/* ─── FLOATING WHATSAPP ──────────────────────────────────────── */
.fab-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 30;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  display: grid; place-items: center;
  box-shadow: 0 16px 36px -10px rgba(37,211,102,0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}
.fab-wa:hover { transform: scale(1.06); background: #1fb955; }
@media (max-width: 580px) {
  .fab-wa { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

/* ─── SYNC / mijnVWE STRIP ───────────────────────────────────── */
.sync {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 48px 0;
}
.sync__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .sync__inner { grid-template-columns: 1fr; gap: 32px; } }

.sync__copy { display: flex; flex-direction: column; gap: 14px; }
.sync__head {
  display: flex; align-items: center; gap: 12px;
}
.sync__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #34d066;
  box-shadow: 0 0 0 4px rgba(52,208,102,0.18);
  animation: syncPulse 1.8s ease-in-out infinite;
}
@keyframes syncPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52,208,102,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(52,208,102,0.05); }
}
.sync__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
}
.sync__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.sync__desc {
  font-size: 14px;
  color: var(--fg-mute);
  max-width: 50ch;
  line-height: 1.55;
}

.sync__flow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: center;
}
.sync__source {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,169,97,0.08), rgba(201,169,97,0.02));
  min-width: 200px;
  position: relative;
}
.sync__source-mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.sync__source-text {
  display: flex; flex-direction: column; gap: 2px;
}
.sync__source-text strong {
  font-size: 14px;
  font-weight: 600;
}
.sync__source-text small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.sync__arrows {
  display: flex; flex-direction: column; gap: 4px;
  align-items: center;
  color: var(--accent);
}
.sync__arrow-line {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.sync__arrow-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--fg), transparent);
  animation: syncFlow 2.2s linear infinite;
}
@keyframes syncFlow {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.sync__channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sync__channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-1);
  font-size: 13px;
  transition: border-color 0.2s ease;
}
.sync__channel:hover { border-color: var(--line-strong); }
.sync__channel-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: #34d066;
  flex-shrink: 0;
}
.sync__channel-name {
  font-weight: 600;
}
.sync__channel-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-left: auto;
}

@media (max-width: 980px) {
  .sync__flow { grid-template-columns: 1fr; }
  .sync__arrows { flex-direction: row; padding: 8px 0; }
  .sync__arrow-line { width: 1px; height: 32px; background: linear-gradient(180deg, var(--accent), transparent); }
}
@media (max-width: 480px) {
  .sync__channels { grid-template-columns: 1fr; }
}

/* ─── LIVE BADGE (aanbod head) ───────────────────────────────── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.live-badge__dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: #34d066;
  box-shadow: 0 0 0 3px rgba(52,208,102,0.2);
  animation: syncPulse 1.8s ease-in-out infinite;
}

/* ─── AANBOD PAGE ────────────────────────────────────────────── */
.page-head {
  position: relative;
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(150px, 21vh, 230px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse 64% 72% at 90% 6%, rgba(201,169,97,0.14), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 78%);
  overflow: hidden;
}
/* fijne diagonale textuur zodat de hero zichtbaar een ander oppervlak is dan de content eronder */
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(125deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
/* accent-gloed onderaan markeert het einde van de hero */
.page-head::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
  pointer-events: none;
}
.page-head > .container { position: relative; z-index: 1; width: 100%; }
@media (max-width: 880px) {
  .page-head { min-height: 48vh; }
}
@media (max-width: 580px) {
  .page-head { min-height: 42vh; padding-top: 124px; }
}
.page-head__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.page-head__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-weight: 500;
}
.page-head__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.page-head__meta {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start;
}
.page-head__count {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.page-head__count small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
}

.crumb {
  display: inline-flex; gap: 10px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 24px;
}
.crumb a:hover { color: var(--fg); }
.crumb__sep { color: var(--fg-faint); }
.crumb__current { color: var(--accent); }

/* ─── FILTER BAR ─────────────────────────────────────────────── */
.filterbar {
  position: relative;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.filterbar__row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}
.filterbar__group {
  display: flex; gap: 7px; flex-wrap: nowrap; align-items: center;
  flex: 1;
  min-width: 0;
}
.filterbar__actions {
  display: flex; gap: 8px; align-items: center;
  margin-left: auto;
}

.fbtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg);
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.fbtn:hover { border-color: var(--line-strong); }
.fbtn.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.fbtn__count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 2px;
}
.fbtn__caret {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.6;
}

.search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  min-width: 0;
  flex: 0 0 160px;
  width: 160px;
}
.search input {
  background: transparent;
  border: 0; outline: 0;
  color: var(--fg);
  font: inherit;
  font-size: 13px;
  flex: 1;
  min-width: 0;
}
.search input::placeholder { color: var(--fg-faint); }

.sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  color: var(--fg);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease;
}
.sort:hover { border-color: var(--line-strong); }
.sort__label { color: var(--fg); }

/* Custom sort dropdown — themed popup that replaces the native <select> */
.sort-drop__panel {
  left: auto;
  right: 0;
  min-width: 200px;
  padding: 8px;
}
.sort-drop__panel .fdrop__opt { white-space: nowrap; }
.fdrop__opt.is-active {
  background: var(--bg-2);
  color: var(--accent);
}
.fdrop__opt.is-active .fdrop__opt-meta { color: var(--accent); }

.view-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 0;
}
.view-toggle button {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--fg-mute);
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s ease;
}
.view-toggle button.active {
  background: var(--fg);
  color: var(--bg);
}

/* ─── ACTIVE FILTERS ROW ─────────────────────────────────────── */
.active-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0 0;
  flex-wrap: wrap;
}
.active-filters__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 14px;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
}
.tag button {
  width: 16px; height: 16px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--fg-mute);
  font-size: 14px;
  line-height: 1;
}
.tag button:hover { color: var(--accent); }

/* ─── RESULTS GRID ───────────────────────────────────────────── */
.results {
  padding: 32px 0 64px;
}
.results__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.results__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.results__count strong {
  color: var(--fg);
  font-weight: 500;
}

.car--sold .car__media,
.car--reserved .car__media {
  opacity: 0.55;
}
.car--sold .car__price,
.car--reserved .car__price {
  text-decoration: line-through;
  color: var(--fg-mute);
}

.badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 2;
}
.badge--new      { background: var(--accent); color: var(--accent-ink); }
.badge--sold     { background: #d94d2e;       color: #fff; }
.badge--reserved { background: var(--bg);     color: var(--fg); border: 1px solid var(--line-strong); }
.badge--featured { background: #1a1a1a;       color: var(--accent); border: 1px solid var(--accent); }

/* Pulserende variant voor de "Nieuw binnen"-badge op de aanbodpagina */
.badge.badge--live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px 6px 10px;
  box-shadow: 0 6px 18px -8px rgba(201,169,97,0.75);
}

/* ─── LIST VIEW (rows) ───────────────────────────────────────── */
.cars--list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cars--list .car {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 32px;
  align-items: stretch;
}
.cars--list .car__media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 200px;
}
.cars--list .car__body {
  padding: 22px 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
}
.cars--list .car__specs {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
  grid-template-columns: repeat(4, 1fr);
  align-self: end;
}
.cars--list .car__foot {
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  border-top: 0;
  border-left: 1px solid var(--line);
  padding: 22px 28px;
  margin: 0;
  gap: 18px;
  min-width: 200px;
}
.cars--list .car__price { font-size: 26px; text-align: right; }
@media (max-width: 880px) {
  .cars--list .car { grid-template-columns: 1fr; }
  .cars--list .car__foot { border-left: 0; border-top: 1px solid var(--line); padding: 18px 22px; flex-direction: row; align-items: center; justify-content: space-between; }
  .cars--list .car__media { min-height: 220px; aspect-ratio: 16 / 9; }
}

/* ─── PAGINATION ─────────────────────────────────────────────── */
.pagi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.pagi__btn {
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--fg);
  background: transparent;
  transition: all 0.2s ease;
}
.pagi__btn:hover:not(:disabled):not(.active) { border-color: var(--line-strong); }
.pagi__btn.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.pagi__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.pagi__ellipsis {
  color: var(--fg-mute);
  padding: 0 4px;
}

/* ─── DROPDOWN PANEL (for filter expand) ─────────────────────── */
.fdrop {
  position: relative;
  display: inline-block;
}
.fdrop__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fdrop__panel h6 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 4px;
  font-weight: 500;
}
.fdrop__opts {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 240px;
  overflow-y: auto;
}
.fdrop__opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--fg);
  transition: background 0.15s ease;
  cursor: pointer;
}
.fdrop__opt:hover { background: var(--bg-2); }
.fdrop__opt input { accent-color: var(--accent); }
.fdrop__opt-meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-mute);
}

.fdrop__range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fdrop__range label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: block;
  margin-bottom: 4px;
}
.fdrop__range input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--fg);
  font: inherit;
  font-size: 13px;
  outline: none;
}
.fdrop__range input:focus { border-color: var(--accent); }

@media (max-width: 1160px) {
  /* Nette opbouw zodra alles niet meer op één regel past:
     zoekveld → filterchips → acties, elk op eigen rij */
  .filterbar__row { flex-direction: column; align-items: stretch; gap: 12px; }
  .filterbar__group { width: 100%; gap: 8px; flex-wrap: wrap; }
  .search { min-width: 0; width: 100%; max-width: none; flex: none; }
  .filterbar__actions { margin-left: 0; width: 100%; gap: 8px; }
  .sort-drop { flex: 1; }
  .sort-drop .sort { width: 100%; justify-content: space-between; }
  .fbtn { padding: 8px 12px; font-size: 12px; }
  /* Filterchips vullen de volle breedte: 3 per rij, gelijk verdeeld —
     geen lege witruimte rechts meer. */
  .filterbar__group .fdrop { flex: 1 1 calc(33.333% - 6px); min-width: 0; }
  .filterbar__group .fdrop .fbtn { width: 100%; justify-content: center; min-height: 44px; }
  /* Filter-dropdownpanelen ankeren aan de balk met een viewport-veilige
     breedte, zodat ze niet buiten het scherm vallen op smalle viewports. */
  .fdrop { position: static; }
  .fdrop__panel {
    left: 16px;
    right: auto;
    width: min(360px, calc(100vw - 32px));
    min-width: 0;
  }
}

/* ─── AUTO DETAIL PAGE ───────────────────────────────────────── */
.detail {
  padding: 110px 0 32px;
}
.detail__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 980px) { .detail__top { grid-template-columns: 1fr; gap: 28px; } }

.detail__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  column-gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}
.detail__main { min-width: 0; }
.detail__main > .detail__gallery { margin-bottom: 52px; }
@media (max-width: 980px) {
  .detail__layout { grid-template-columns: 1fr; row-gap: 40px; }
  .detail__main > .detail__gallery { margin-bottom: 48px; }
}
@media (max-width: 580px) {
  .detail__main > .detail__gallery { margin-bottom: 40px; }
}

/* ─── PHOTO LIGHTBOX ─────────────────────────────────────────── */
.detail__shot { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
  padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(6px);
}
.lightbox__stage {
  grid-column: 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-height: 100%;
  min-width: 0;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: var(--radius-m, 10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__placeholder {
  width: min(80vw, 900px);
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-m, 10px);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 10px, transparent 10px 20px),
    var(--surface, #14161a);
}
.lightbox__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #9aa0a6);
}
.lightbox__caption span { color: var(--accent); }
.lightbox__close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.lightbox__close svg { width: 18px; height: 18px; }
.lightbox__close:hover { background: rgba(255,255,255,0.1); border-color: var(--accent); }
.lightbox__nav {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.1); border-color: var(--accent); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { grid-column: 1; }
.lightbox__nav--prev svg { transform: rotate(180deg); }
.lightbox__nav--next { grid-column: 3; }
@media (max-width: 580px) {
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__img { max-height: calc(100vh - 200px); }
}

.detail__gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.detail__gallery > .detail__shot:first-of-type {
  grid-column: 1 / span 4;
  grid-row: 1;
}
.detail__shot {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  /* Grid-cellen mogen niet meegroeien met de natuurlijke fotohoogte —
     anders verspringt de galerij zodra echte foto's (via de XML-push)
     inladen. min-0 dwingt ze binnen hun 1fr-track. */
  min-height: 0;
  min-width: 0;
}
.detail__shot:hover { opacity: 0.85; }
.detail__shot-count {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  color: #fff;
  z-index: 3;
}
@media (max-width: 580px) {
  .detail__gallery { aspect-ratio: 4 / 5; }
}

.detail__side {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 980px) { .detail__side { position: static; } }

.detail__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg-1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.detail__breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 22px;
}
.detail__breadcrumb a:hover { color: var(--fg); }

.detail__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
}
.detail__subtitle {
  font-size: 14px;
  color: var(--fg-mute);
  margin-top: 4px;
}

.detail__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--line);
}
.detail__price {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.025em;
  line-height: 1;
  font-weight: 500;
}
.detail__price small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
}
.detail__vat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 3px;
}

.detail__keystats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 18px;
}
.detail__keystat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.detail__keystat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.detail__keystat-value {
  font-size: 14px;
  font-weight: 500;
}

.detail__actions {
  display: grid;
  gap: 8px;
}
.detail__actions .btn,
.detail__actions .contact__cta-wa {
  justify-content: center;
  padding: 14px 22px;
}

.detail__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.detail__trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-mute);
}
.detail__trust-row svg { color: var(--accent); flex-shrink: 0; }

.detail__body {
  padding: 56px 0 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) { .detail__body { grid-template-columns: 1fr; gap: 40px; } }

.detail-section { margin-bottom: 56px; }
.detail-section:last-child { margin-bottom: 0; }
.detail-section__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 500;
  margin: 0 0 20px;
}
.detail-section__title em { font-style: italic; color: var(--accent); font-weight: 400; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  gap: 0 32px;
}
@media (max-width: 580px) { .specs-grid { grid-template-columns: 1fr; gap: 0; } }
.specs-grid__row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  gap: 16px;
  align-items: center;
}
.specs-grid__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.specs-grid__value {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.options-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 580px) { .options-list { grid-template-columns: 1fr; } }
.options-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.options-list li svg { color: var(--accent); flex-shrink: 0; }

.detail__desc {
  font-size: 15px;
  color: var(--fg-mute);
  line-height: 1.65;
  max-width: 60ch;
}
.detail__desc p { margin: 0 0 14px; }
.detail__desc p:last-child { margin-bottom: 0; }
.detail__desc strong { color: var(--fg); font-weight: 600; }

.detail__cta-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 28px;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail__cta-block h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 500;
  margin: 0;
}
.detail__cta-block h4 em { font-style: italic; color: var(--accent); font-weight: 400; }
.detail__cta-block p {
  font-size: 14px;
  color: var(--fg-mute);
  margin: 0;
}
.detail__cta-row {
  display: grid;
  gap: 8px;
}
.detail__cta-row .btn,
.detail__cta-row .contact__cta-wa {
  justify-content: center;
  padding: 14px 22px;
}

.similar {
  border-top: 1px solid var(--line);
  padding: 80px 0;
}
.similar__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}
.similar__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 500;
}
.similar__title em { font-style: italic; color: var(--accent); font-weight: 400; }

.notfound {
  padding: 200px 0;
  text-align: center;
}
.notfound h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 500;
}
.notfound p {
  color: var(--fg-mute);
  margin-bottom: 32px;
  font-size: 16px;
}

/* ─── LEAD FORM ──────────────────────────────────────────────── */
.leadform {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg-1);
  padding: 36px 40px;
}
@media (max-width: 580px) { .leadform { padding: 24px; } }

.leadform__head {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 24px;
}
.leadform__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
}
.leadform__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.leadform__sub {
  font-size: 14px;
  color: var(--fg-mute);
  max-width: 50ch;
}

.leadform__type {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.leadform__chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg-mute);
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.leadform__chip:hover { color: var(--fg); border-color: var(--line-strong); }
.leadform__chip.active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.leadform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 780px) { .leadform__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .leadform__grid { grid-template-columns: 1fr; } }

.leadform__field { display: flex; flex-direction: column; gap: 6px; }
.leadform__field--full { grid-column: 1 / -1; }
.leadform__field > span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.leadform__field input,
.leadform__field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.leadform__field input::placeholder,
.leadform__field textarea::placeholder { color: var(--fg-faint); }
.leadform__field input:focus,
.leadform__field textarea:focus { border-color: var(--accent); }

.leadform__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.leadform__note { font-size: 12px; color: var(--fg-faint); }
.leadform__foot .btn:disabled { opacity: 0.5; cursor: progress; }

.leadform__result {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.leadform__result.ok {
  background: rgba(52,208,102,0.1);
  border: 1px solid rgba(52,208,102,0.3);
  color: #6cdb8a;
}
.leadform__result.err {
  background: rgba(217,77,46,0.1);
  border: 1px solid rgba(217,77,46,0.3);
  color: #e08066;
}

/* ─── DIENSTEN PAGE ──────────────────────────────────────────── */
/* Sticky-scope: de balk plakt alleen binnen deze wrapper (de dienstenblokken).
   Voorbij het laatste blok scrolt de balk vanzelf mee weg. */
.diensten-scope { position: relative; }
.service-nav {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 80px;
  z-index: 20;
  background: rgba(11, 14, 18, 0.8);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.service-nav__inner {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-nav__inner::-webkit-scrollbar { display: none; }
.service-nav__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg);
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
  text-decoration: none;
}
.service-nav__chip:hover { border-color: var(--accent); color: var(--accent); }
.service-nav__chip.active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.service-nav__chip.active .service-nav__num {
  color: var(--accent-ink);
  opacity: 0.7;
}
.service-nav__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
}

.service-page__block {
  padding: clamp(64px, 9vw, 120px) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 160px;
}
.service-page__block:nth-child(even) { background: var(--bg-1); }

/* Laatste dienst rendert alleen zijn body binnen de sticky-scope; de stappen
   volgen in .service-page__tail-steps eronder (buiten de scope). De body sluit
   daarom netjes af zonder dubbele lijn of dangling marge. */
.service-page__block--bodyonly { padding-bottom: 0; border-bottom: none; }

/* Stappen van de laatste dienst — buiten de scope, maar visueel een naadloos
   vervolg op het blok erboven (zelfde ritme, divider en sectie-afsluiting). */
.service-page__tail-steps {
  padding-bottom: clamp(64px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
}

.service-page__block-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.service-page__block.is-flip .service-page__block-grid { grid-template-columns: 1.1fr 1fr; }
.service-page__block.is-flip .service-page__visual { order: 2; }
@media (max-width: 980px) {
  .service-page__block-grid,
  .service-page__block.is-flip .service-page__block-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-page__block.is-flip .service-page__visual { order: 0; }
}

.service-page__visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-l);
  overflow: hidden;
}
.service-page__visual--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-page__visual-num {
  position: absolute;
  bottom: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: clamp(140px, 18vw, 240px);
  letter-spacing: -0.06em;
  color: var(--accent);
  opacity: 0.18;
  line-height: 0.8;
  font-weight: 500;
  pointer-events: none;
}

.service-page__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-weight: 500;
  margin: 20px 0 16px;
}
.service-page__pitch {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 20px;
  max-width: 36ch;
}
.service-page__intro {
  font-size: 16px;
  color: var(--fg-mute);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 56ch;
}

.service-page__includes {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.service-page__block:nth-child(even) .service-page__includes { background: var(--bg-2); }
.service-page__includes h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 12px;
  font-weight: 500;
}
.service-page__includes ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
@media (max-width: 580px) { .service-page__includes ul { grid-template-columns: 1fr; } }
.service-page__includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  padding: 2px 0;
}
.service-page__includes li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-page__ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
}

.service-page__steps {
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.service-page__steps-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.service-page__steps-head h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 500;
  margin: 0;
  max-width: 18ch;
}
.service-page__steps-head h3 em { font-style: italic; color: var(--accent); font-weight: 400; }

.service-page__steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .service-page__steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .service-page__steps-grid { grid-template-columns: 1fr; } }

.service-page__step {
  padding: 24px 0 0;
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-page__step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
}
.service-page__step h5 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
}
.service-page__step p {
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.55;
  margin: 0;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq__list {
  border-top: 1px solid var(--line);
  max-width: 880px;
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.015em;
  font-weight: 500;
  text-align: left;
  color: var(--fg);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 60px 24px 0;
  font-size: 15px;
  color: var(--fg-mute);
  line-height: 1.6;
  max-width: 72ch;
}

/* ─── BOTTOM CTA BLOCK ───────────────────────────────────────── */
.cta-block {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 90% 60% at 20% 0%, rgba(201,169,97,0.10), transparent 60%),
    var(--bg);
}
.cta-block__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .cta-block__inner { grid-template-columns: 1fr; gap: 32px; } }
.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 500;
  margin: 22px 0 18px;
}
.cta-block__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.cta-block__desc {
  font-size: 16px;
  color: var(--fg-mute);
  line-height: 1.6;
  max-width: 52ch;
}
.cta-block__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-block__actions .btn,
.cta-block__actions .contact__cta-wa {
  justify-content: center;
  padding: 16px 22px;
}

@media (max-width: 880px) {
  .service-nav { top: 72px; }
}

/* ─── BURGER + MOBILE DRAWER ─────────────────────────────────── */
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav__burger span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 24px; }
.nav__burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
@media (max-width: 880px) {
  .nav__burger { display: inline-block; }
  /* Hide the "Bel ons" pill on mobile — it lives inside the drawer instead */
  .nav__cta .btn--ghost { display: none; }
}

.navdrawer {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.navdrawer.open { opacity: 1; pointer-events: auto; }
.navdrawer__panel {
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 24px var(--pad-x) 32px;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navdrawer.open .navdrawer__panel {
  transform: translateY(0);
  opacity: 1;
}

.navdrawer__links {
  display: flex;
  flex-direction: column;
}
.navdrawer__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s ease;
}
.navdrawer__links a:last-child { border-bottom: 0; }
.navdrawer__links a:hover { color: var(--accent); }
.navdrawer__links a.active { color: var(--accent); }
.navdrawer__arrow {
  color: var(--fg-faint);
  transition: transform 0.2s ease, color 0.2s ease;
}
.navdrawer__links a:hover .navdrawer__arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.navdrawer__foot {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.navdrawer__foot .btn,
.navdrawer__foot .contact__cta-wa {
  justify-content: center;
  padding: 16px 22px;
}

/* Desktop: hide drawer entirely */
@media (min-width: 881px) {
  .navdrawer { display: none; }
}

@media (max-width: 580px) {
  .navdrawer__panel { top: 66px; }
  .navdrawer__links a { font-size: 24px; padding: 16px 0; }
}

/* ─── GOOGLE REVIEW BADGE ────────────────────────────────────── */
.gbadge {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(20, 20, 22, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--fg);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
  position: relative;
}
.gbadge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: rgba(20, 20, 22, 0.7);
}

.gbadge__head { display: flex; align-items: center; gap: 12px; }
.gbadge__logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #ffffff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.gbadge__head-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gbadge__label { font-size: 14px; font-weight: 600; color: var(--fg); letter-spacing: -0.005em; }
.gbadge__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.gbadge__live-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #34d066;
  box-shadow: 0 0 0 3px rgba(52,208,102,0.18);
  animation: gbadgePulse 1.8s ease-in-out infinite;
}
@keyframes gbadgePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52,208,102,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(52,208,102,0.05); }
}

.gbadge__rating {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.gbadge__rating-num {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-weight: 500;
  color: var(--fg);
}
.gbadge__stars {
  --star-fill: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  position: relative;
  padding-bottom: 6px;
}
.gbadge__stars svg { fill: rgba(255,255,255,0.18); }
.gbadge__stars::after {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fbbc05;
  width: calc(var(--star-fill) * 100%);
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.gbadge__count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--fg-mute);
}
.gbadge__cta {
  color: var(--accent);
  font-weight: 500;
  transition: transform 0.2s ease;
}
.gbadge:hover .gbadge__cta { transform: translateX(2px); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── OVER ONS PAGE ──────────────────────────────────────────── */

/* Verhaal / hero */
.over-hero {
  padding: clamp(64px, 9vw, 120px) 0;
  border-bottom: 1px solid var(--line);
}
.over-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .over-hero__grid { grid-template-columns: 1fr; gap: 40px; }
}
.over-hero__copy { display: flex; flex-direction: column; gap: 22px; max-width: 56ch; }
.over-hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 500;
  margin: 18px 0 0;
}
.over-hero__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.over-hero__lede {
  font-size: 16px;
  color: var(--fg-mute);
  line-height: 1.65;
  max-width: 52ch;
}
.over-hero__lede strong { color: var(--fg); font-weight: 600; }
.over-hero__sig {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.over-hero__sig-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.over-hero__sig-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.over-hero__media {
  position: relative;
}
.over-hero__portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  overflow: hidden;
}
.over-hero__portrait--logo {
  display: grid;
  place-items: center;
  padding: clamp(36px, 9%, 80px);
}
.over-hero__logo-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}
.over-hero__tag {
  position: absolute;
  bottom: 22px;
  left: -22px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 18px 22px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 22px 48px -16px rgba(0,0,0,0.6);
}
@media (max-width: 980px) { .over-hero__tag { left: 16px; bottom: 16px; } }
.over-hero__tag-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.75;
}
.over-hero__tag-year {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 500;
}

/* Stats strip */
.over-stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
}
.over-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 880px) { .over-stats__grid { grid-template-columns: repeat(2, 1fr); } }
.over-stats__cell {
  padding: 44px var(--pad-x) 40px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.over-stats__cell:first-child { border-left: 0; }
@media (max-width: 880px) {
  .over-stats__cell:nth-child(odd) { border-left: 0; }
  .over-stats__cell:nth-child(3),
  .over-stats__cell:nth-child(4) { border-top: 1px solid var(--line); }
}
.over-stats__value {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-weight: 500;
  color: var(--accent);
}
.over-stats__label {
  font-size: 13px;
  color: var(--fg-mute);
  max-width: 24ch;
  line-height: 1.4;
}

/* Tijdlijn */
.over-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.over-timeline__item {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: background 0.25s ease;
}
.over-timeline__item:hover { background: linear-gradient(90deg, transparent, rgba(201,169,97,0.04) 30%, transparent); }
@media (max-width: 780px) {
  .over-timeline__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .over-timeline__idx { display: none; }
}
.over-timeline__year {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  padding-top: 6px;
}
.over-timeline__dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(201,169,97,0.18);
  flex-shrink: 0;
}
@media (max-width: 780px) {
  .over-timeline__year { font-size: 22px; padding-top: 0; }
}
.over-timeline__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 8px;
}
.over-timeline__desc {
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.6;
  max-width: 64ch;
}
.over-timeline__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg-faint);
  text-align: right;
  padding-top: 14px;
}

/* Waarden */
.over-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 980px) { .over-values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .over-values__grid { grid-template-columns: 1fr; } }
.over-values__card {
  padding: 36px 32px 40px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  position: relative;
  transition: background 0.3s ease;
}
.over-values__card:first-child { border-left: 0; }
@media (max-width: 980px) {
  .over-values__card:nth-child(odd) { border-left: 0; }
  .over-values__card:nth-child(3),
  .over-values__card:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 580px) {
  .over-values__card { border-left: 0 !important; border-top: 1px solid var(--line); min-height: 0; }
  .over-values__card:first-child { border-top: 0; }
}
.over-values__card:hover { background: var(--bg-1); }
.over-values__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.over-values__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 500;
  margin: 18px 0 4px;
}
.over-values__desc {
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.6;
  max-width: 30ch;
}

/* Team */
.over-team { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.over-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1080px) { .over-team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .over-team__grid { grid-template-columns: 1fr; } }
.over-team__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.over-team__card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.over-team__media {
  aspect-ratio: 4 / 5;
  position: relative;
}
.over-team__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 8px; }
.over-team__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.over-team__name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 500;
  margin: 4px 0 6px;
}
.over-team__bio {
  font-size: 13px;
  color: var(--fg-mute);
  line-height: 1.55;
}
.over-team__tags {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.over-team__tags li {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg-mute);
}

/* Showroom / locatie */
.over-place {
  padding: clamp(64px, 9vw, 120px) 0;
  border-bottom: 1px solid var(--line);
}
.over-place__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 980px) { .over-place__grid { grid-template-columns: 1fr; gap: 32px; } }

.over-place__media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 520px;
}
.over-place__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}
@media (max-width: 980px) { .over-place__media { min-height: 360px; } }
.over-place__pin {
  position: absolute;
  pointer-events: none;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.over-place__pin-card {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 8px;
  white-space: nowrap;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.6);
}
.over-place__pin-card strong { display: block; font-size: 13px; }
.over-place__pin-card small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: block;
  margin-top: 2px;
}
.over-place__pin-dot {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(201,169,97,0.18), 0 0 0 14px rgba(201,169,97,0.08);
  animation: pinPulse 2.2s ease-in-out infinite;
}

.over-place__body { display: flex; flex-direction: column; gap: 22px; padding: 4px 0; }
.over-place__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 500;
  margin: 14px 0 0;
}
.over-place__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.over-place__desc {
  font-size: 15px;
  color: var(--fg-mute);
  line-height: 1.65;
  max-width: 48ch;
}
.over-place__rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.over-place__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.over-place__row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.over-place__row-value {
  font-size: 14px;
  font-weight: 500;
}
.over-place__row-value a:hover { color: var(--accent); }
.over-place__hours {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 18px;
  background: var(--bg-1);
}
.over-place__hour {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.over-place__hour:last-child { border-bottom: 0; }
.over-place__hour span:first-child { color: var(--fg-mute); }
.over-place__hour span:last-child { font-weight: 500; font-variant-numeric: tabular-nums; }
.over-place__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* Partners */
.over-partners {
  padding: clamp(56px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.over-partners__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 56ch;
}
.over-partners__lede {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-weight: 400;
  color: var(--fg);
}
.over-partners__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 980px) { .over-partners__row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px) { .over-partners__row { grid-template-columns: repeat(2, 1fr); } }
.over-partners__cell {
  padding: 32px 20px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  min-height: 140px;
  transition: background 0.25s ease;
}
.over-partners__cell:first-child { border-left: 0; }
@media (max-width: 980px) {
  .over-partners__cell:nth-child(3n+1) { border-left: 0; }
  .over-partners__cell:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 580px) {
  .over-partners__cell:nth-child(odd) { border-left: 0; }
  .over-partners__cell:nth-child(3n+1) { border-left: 1px solid var(--line); }
  .over-partners__cell:nth-child(odd) { border-left: 0; }
  .over-partners__cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}
.over-partners__cell:hover { background: var(--bg-1); }
.over-partners__mark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--fg);
}
.over-partners__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

/* Klanten over ons — testimonial cards */
.over-voices { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.over-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .over-voices__grid { grid-template-columns: 1fr; } }

.over-voices__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg);
  position: relative;
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.over-voices__card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.14;
  font-weight: 500;
  pointer-events: none;
}
.over-voices__card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.over-voices__stars {
  display: inline-flex;
  gap: 3px;
  font-size: 16px;
  color: #fbbc05;
  letter-spacing: 2px;
  line-height: 1;
}

.over-voices__quote {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.45;
  font-weight: 400;
  color: var(--fg);
  max-width: 36ch;
  text-wrap: pretty;
}

.over-voices__foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.over-voices__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.over-voices__meta {
  font-size: 12px;
  color: var(--fg-mute);
  margin-top: 4px;
  line-height: 1.4;
}
.over-voices__source {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────── */

/* — Quick methods grid — */
.contact-methods {
  padding: 48px 0 0;
}
.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) { .contact-methods__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .contact-methods__grid { grid-template-columns: 1fr; } }

.contact-method {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 26px 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.contact-method::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 100% 0%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.contact-method:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--bg-2);
}
.contact-method:hover::before { opacity: 1; }
.contact-method__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  background: rgba(0,0,0,0.18);
  margin-bottom: 6px;
}
.contact-method__icon svg { width: 18px; height: 18px; }
.contact-method__label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.contact-method__value {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-top: 2px;
}
.contact-method__sub {
  font-size: 13px;
  color: var(--fg-mute);
  line-height: 1.45;
}
.contact-method__cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: stretch;
}
.contact-method:hover .contact-method__cta .btn__arrow { transform: translateX(4px); }

/* — Form + aside split — */
.contact-form__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 1080px) {
  .contact-form__grid { grid-template-columns: 1fr; align-items: start; }
}

/* — Conversational form (Contact-pagina) — */
.convo-form {
  display: flex;
  flex-direction: column;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 40px 40px 32px;
  position: relative;
  overflow: hidden;
}
.convo-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 100% 0%, color-mix(in oklab, var(--accent) 10%, transparent), transparent 60%),
    radial-gradient(60% 50% at 0% 100%, color-mix(in oklab, var(--accent) 6%, transparent),  transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}
@media (max-width: 580px) { .convo-form { padding: 28px 22px 22px; } }

.convo-form__head {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.convo-form__step {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.convo-form__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
  margin: 8px 0 0;
}
.convo-form__title em { font-style: italic; color: var(--accent); font-weight: 400; }

.convo-form__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.convo-form__line {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--fg);
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}

.convo-form__input {
  background: transparent;
  border: 0;
  border-bottom: 1.5px dashed color-mix(in oklab, var(--accent) 55%, transparent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: inherit;
  font-weight: 500;
  letter-spacing: -0.015em;
  padding: 2px 6px 4px;
  outline: none;
  min-width: 60px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.convo-form__input::placeholder {
  color: color-mix(in oklab, var(--accent) 50%, transparent);
  font-style: italic;
  font-weight: 400;
}
.convo-form__input:focus,
.convo-form__input:hover {
  border-bottom-style: solid;
  border-bottom-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 6%, transparent);
}
.convo-form__input--name   { min-width: 120px; }
.convo-form__input--handle { min-width: 180px; flex: 0 1 auto; }

.convo-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -4px;
}
.convo-form__chip {
  background: rgba(0,0,0,0.18);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg-mute);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.convo-form__chip:hover {
  border-color: var(--line-strong);
  color: var(--fg);
}
.convo-form__chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 500;
}

.convo-form__prefer {
  display: flex;
  gap: 8px;
  margin-top: -4px;
  flex-wrap: wrap;
}
.convo-form__prefer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--fg-mute);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.convo-form__prefer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
}
.convo-form__prefer-icon svg { width: 16px; height: 16px; }
.convo-form__prefer-btn:hover {
  border-color: var(--line-strong);
  color: var(--fg);
}
.convo-form__prefer-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.convo-form__optional {
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.convo-form__optional-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.convo-form__optional-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.convo-form__textarea {
  width: 100%;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.convo-form__textarea::placeholder {
  color: var(--fg-faint);
}
.convo-form__textarea:focus {
  border-color: var(--accent);
  background: rgba(0,0,0,0.32);
}

.convo-form__foot {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}
.convo-form__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-mute);
  font-size: 12px;
  line-height: 1.4;
  max-width: 32ch;
}
.convo-form__note svg { color: var(--accent); flex-shrink: 0; }
.convo-form__submit { white-space: nowrap; }

.convo-form__result {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
.convo-form__result.ok {
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  color: var(--fg);
}
.convo-form__result.err {
  background: rgba(180, 60, 50, 0.18);
  border: 1px solid rgba(220, 80, 70, 0.4);
  color: var(--fg);
}
.convo-form__result svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* — Aside layout adjustment so map fills remaining height — */
.contact-form__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: static;
  height: 100%;
}
.contact-form__aside .contact-aside__map {
  flex: 1 1 auto;
  min-height: 320px;
}
.contact-aside__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) brightness(0.95);
}

.contact-aside__block {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-aside__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
  margin: 6px 0 0;
}
.contact-aside__title em { font-style: italic; color: var(--accent); font-weight: 400; }

.contact-aside__rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact-aside__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.contact-aside__row:last-child { border-bottom: 0; }
.contact-aside__row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding-top: 3px;
}
.contact-aside__row-value {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}
.contact-aside__row-value a:hover { color: var(--accent); }

.contact-aside__block--hours { gap: 14px; }
.contact-aside__hours {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact-aside__hour {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.contact-aside__hour:last-child { border-bottom: 0; }
.contact-aside__hour span:first-child { color: var(--fg); }
.contact-aside__hour span:last-child  { color: var(--fg-mute); font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em; }
.contact-aside__hour.muted span:first-child { color: var(--fg-mute); }
.contact-aside__hour.muted span:last-child  { color: var(--fg-faint); }
.contact-aside__note {
  margin: 0;
  font-size: 12px;
  color: var(--fg-mute);
  line-height: 1.5;
}

.contact-aside__map {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.contact-aside__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.contact-aside__pin-dot {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 28%, transparent),
              0 0 0 14px color-mix(in oklab, var(--accent) 12%, transparent);
}
.contact-aside__pin-card {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 12.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}
.contact-aside__pin-card strong { font-weight: 600; }
.contact-aside__pin-card small  { color: var(--fg-mute); font-size: 10.5px; letter-spacing: 0.06em; }
.contact-aside__map-cta {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-aside__map-cta:hover { background: var(--accent); color: var(--accent-ink); }
.contact-aside__map-cta:hover .btn__arrow { transform: translateX(3px); }

/* — Route info — */
.contact-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .contact-routes__grid { grid-template-columns: 1fr; } }
.contact-routes__card {
  padding: 32px 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-routes__card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.contact-routes__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  color: var(--accent);
}
.contact-routes__icon svg { width: 22px; height: 22px; }
.contact-routes__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 6px 0 0;
}
.contact-routes__desc {
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.55;
  margin: 0;
  max-width: 38ch;
}

/* — FAQ — */
.contact-faq {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.contact-faq__item {
  border-bottom: 1px solid var(--line);
}
.contact-faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  gap: 16px;
  align-items: center;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 4px;
  cursor: pointer;
  color: inherit;
  transition: background 0.2s ease;
}
.contact-faq__q:hover { background: var(--bg-2); }
.contact-faq__q-num {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.contact-faq__q-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.25;
}
.contact-faq__q-icon {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--accent);
  text-align: center;
  line-height: 1;
}
.contact-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.contact-faq__item.open .contact-faq__a { grid-template-rows: 1fr; }
.contact-faq__a > p {
  overflow: hidden;
  margin: 0;
  padding-left: 72px;
  padding-right: 44px;
  padding-bottom: 0;
  font-size: 15px;
  color: var(--fg-mute);
  line-height: 1.65;
  max-width: 70ch;
}
.contact-faq__item.open .contact-faq__a > p {
  padding-bottom: 24px;
}
@media (max-width: 580px) {
  .contact-faq__q { grid-template-columns: 32px 1fr 24px; gap: 10px; padding: 18px 2px; }
  .contact-faq__q-num { font-size: 10px; letter-spacing: 0.14em; }
  .contact-faq__a > p { padding-left: 42px; padding-right: 0; }
}
