/** Shopify CDN: Minification failed

Line 29:0 All "@import" rules must come first

**/
/* === Vereecke Recup Yellow — Shopify theme === */
/* Visually mirrors https://vereecke-recup-yellow.vercel.app */

:root {
  --night: #161616;
  --carbon: #1f1f1f;
  --graphite: #181818;
  --steel: #222;
  --silver: #c0c0c0;
  --silver-muted: #666;
  --merc: #f4c000;
  --merc-dark: #c99700;
  --merc-glow: rgba(244,192,0,0.18);
  --white: #f0f0f0;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --max-1400: 1400px;
  --max-1200: 1200px;
  --max-820: 820px;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap");

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  background: var(--night);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100%;
}
img { max-width: 100%; height: auto; display: block; image-rendering: -webkit-optimize-contrast; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}
p { margin: 0; }

::selection { background: var(--merc); color: var(--white); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--merc); border-radius: 2px; }

/* === Reveal — fade in up on scroll === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === Glass card === */
.glass {
  background: rgba(15,15,15,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.04);
}

/* === Helpers === */
/* === A11y — visually hidden (skip to content link, screen-reader only) === */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.visually-hidden:focus,
.visually-hidden:active {
  position: fixed !important;
  top: 12px; left: 12px;
  width: auto; height: auto;
  padding: 10px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--night);
  color: var(--merc);
  border: 1px solid var(--merc);
  border-radius: 4px;
  font-size: 14px;
  z-index: 9999;
}

.container-1400 { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.container-1200 { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container-1400, .container-1200 { padding: 0 32px; } }
@media (min-width: 1024px) { .container-1400, .container-1200 { padding: 0 48px; } }

.merc { color: var(--merc); }
.text-white { color: var(--white); }

/* eyebrow row: line + text */
.eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.eyebrow-row .line { width: 24px; height: 1px; background: var(--merc); display: block; }
.eyebrow-row .label { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--merc); }

/* === Header / Nav === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .6s ease, border-color .6s ease, backdrop-filter .6s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(22,22,22,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.03);
}
.header__inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 58px;
}
@media (min-width: 1024px) { .header__inner { height: 72px; padding: 0 56px; } }

.brand { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.04em; }
.brand .b1 { color: var(--white); }
.brand .b2 { color: var(--merc); }
@media (min-width: 1024px) { .brand { font-size: 17px; } }

.nav-desktop { display: none; align-items: center; gap: 0; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  position: relative; padding: 8px 20px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color .3s ease;
}
.nav-desktop a:hover { color: rgba(255,255,255,0.8); }
.nav-desktop a.active { color: var(--merc); }
.nav-desktop a::after {
  content: ""; position: absolute; bottom: 0; left: 20px; height: 1px; background: var(--merc);
  width: 0; transition: width .3s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: calc(100% - 40px); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: none; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
@media (min-width: 1024px) { .lang-switch { display: flex; } }
.lang-switch a { color: rgba(255,255,255,0.35); transition: color .3s; }
.lang-switch a:hover { color: rgba(255,255,255,0.8); }
.lang-switch a.active { color: var(--merc); }
.lang-switch .sep { color: rgba(255,255,255,0.15); }

.btn-call {
  display: none; align-items: center; gap: 8px;
  background: var(--merc); color: var(--night); height: 38px; padding: 0 20px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background .3s ease;
}
.btn-call:hover { background: var(--white); }
@media (min-width: 1024px) { .btn-call { display: inline-flex; } }

.hamburger { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: 0; position: relative; z-index: 60; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 20px; height: 1px; background: var(--white); transition: transform .5s ease, opacity .5s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 40; opacity: 0; pointer-events: none;
  transition: opacity .6s ease;
  background: rgba(22,22,22,0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 26px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.6); letter-spacing: -0.04em; transition: color .3s; }
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--merc); }
.mobile-menu .lang-mobile { display: flex; align-items: center; gap: 12px; margin-top: 40px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.mobile-menu .lang-mobile a { color: rgba(255,255,255,0.4); }
.mobile-menu .lang-mobile a.active { color: var(--merc); }
.mobile-menu .lang-mobile .sep { color: rgba(255,255,255,0.2); }
.mobile-menu .btn-call-mobile { margin-top: 32px; background: var(--merc); color: var(--night); height: 48px; padding: 0 32px; display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  min-height: 52px; padding: 0 32px;
  border: 1px solid transparent;
  transition: background .5s ease, color .5s ease, border-color .5s ease;
}
.btn-primary { background: var(--merc); color: var(--night); }
.btn-primary:hover { background: var(--white); color: var(--night); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.15); }
.btn-outline:hover { border-color: var(--merc); color: var(--merc); }
.btn-outline-merc:hover { background: var(--merc); border-color: var(--merc); color: var(--night); }
.btn-white { background: var(--white); color: var(--night); }
.btn-white:hover { background: var(--merc); color: var(--white); }

/* === HOME: Hero === */
.hero {
  position: relative; height: 100vh; min-height: 750px; overflow: hidden;
  background: var(--night);
}
.hero__img-wrap { position: absolute; inset: 0; }
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero__grad-1 { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(22,22,22,0.8), rgba(22,22,22,0.1) 60%, var(--night)); }
.hero__grad-2 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(22,22,22,0.5), transparent, rgba(22,22,22,0.3)); }
.hero__line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(244,192,0,0.4), transparent); }
.hero__content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 24px 80px; }
@media (min-width: 640px) { .hero__content { padding: 0 40px 112px; } }
@media (min-width: 1024px) { .hero__content { padding: 0 64px 160px; } }
.hero__inner { max-width: 820px; }
.hero__eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero__eyebrow-row .line { width: 32px; height: 1px; background: var(--merc); }
.hero__eyebrow-row p { font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--merc); }
.hero__title { color: var(--white); font-weight: 700; line-height: 0.92; font-size: clamp(48px, 9vw, 110px); }
.hero__title .dot { color: var(--merc); }
.hero__subtitle { color: var(--merc); font-size: 24px; line-height: 1; margin-top: 8px; }
@media (min-width: 640px) { .hero__subtitle { font-size: 32px; } }
@media (min-width: 1024px) { .hero__subtitle { font-size: 40px; } }
.hero__intro { font-weight: 300; color: rgba(240,240,240,0.55); font-size: 15px; line-height: 1.8; margin-top: 32px; max-width: 540px; }
.hero__intro .city { color: var(--merc); font-weight: 500; }
.hero__ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
@media (min-width: 640px) { .hero__ctas { flex-direction: row; } }

/* === Trust strip === */
.trust { position: relative; z-index: 20; margin-top: -64px; padding: 0 20px; }
@media (min-width: 640px) { .trust { padding: 0 32px; } }
@media (min-width: 1024px) { .trust { padding: 0 64px; } }
.trust__inner { max-width: 1200px; margin: 0 auto; }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.trust__card { padding: 20px; transition: border-color .5s ease; }
@media (min-width: 640px) { .trust__card { padding: 24px; } }
.trust__card:hover { border-color: rgba(244,192,0,0.15); }
.trust__icon { width: 20px; height: 20px; color: var(--merc); margin-bottom: 12px; transition: color .3s; }
.trust__card:hover .trust__icon { color: var(--white); }
.trust__num { display: flex; align-items: baseline; gap: 6px; }
.trust__num strong { color: var(--white); font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
@media (min-width: 640px) { .trust__num strong { font-size: 30px; } }
.trust__num span { color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 0.05em; }
.trust__label { color: rgba(255,255,255,0.45); font-size: 11px; margin-top: 6px; letter-spacing: 0.05em; }

/* === Sections — generic === */
.section { padding: 96px 0; }
@media (min-width: 1024px) { .section { padding: 128px 0; } }
.section--carbon { background: var(--carbon); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.section--night { background: var(--night); border-top: 1px solid rgba(255,255,255,0.03); }

/* === Featured (homepage) === */
.featured {
  padding-top: 96px; padding-bottom: 80px;
  background: var(--night);
}
@media (min-width: 1024px) { .featured { padding-top: 128px; padding-bottom: 112px; } }
.featured__head { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
@media (min-width: 640px) { .featured__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
@media (min-width: 1024px) { .featured__head { margin-bottom: 56px; } }
.featured__title { color: var(--white); font-weight: 700; line-height: 0.95; font-size: 32px; }
@media (min-width: 640px) { .featured__title { font-size: 42px; } }
@media (min-width: 1024px) { .featured__title { font-size: 56px; } }
.featured__title .dot { color: var(--merc); }
.featured__viewall { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: inline-flex; align-items: center; gap: 6px; transition: color .3s; }
.featured__viewall:hover { color: var(--merc); }

.featured__hero {
  display: grid; grid-template-columns: 1fr; min-height: 300px;
  background: var(--carbon); border: 1px solid rgba(255,255,255,0.03);
  transition: border-color .7s ease;
  overflow: hidden;
  margin-bottom: 16px;
}
.featured__hero:hover { border-color: rgba(244,192,0,0.3); }
@media (min-width: 640px) { .featured__hero { min-height: 400px; } }
@media (min-width: 1024px) { .featured__hero { grid-template-columns: 3fr 2fr; margin-bottom: 20px; } }
.featured__hero-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
@media (min-width: 1024px) { .featured__hero-img { aspect-ratio: auto; } }
.featured__hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }
.featured__hero:hover .featured__hero-img img { transform: scale(1.03); }
.featured__hero-badge { position: absolute; top: 16px; left: 16px; background: var(--merc); color: var(--night); padding: 6px 16px; font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; }
.featured__hero-body { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 640px) { .featured__hero-body { padding: 32px; } }
@media (min-width: 1024px) { .featured__hero-body { padding: 40px; } }
.featured__hero-cat { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.featured__hero-name { color: var(--white); font-weight: 700; line-height: 1; font-size: 24px; transition: color .3s; }
@media (min-width: 640px) { .featured__hero-name { font-size: 30px; } }
@media (min-width: 1024px) { .featured__hero-name { font-size: 36px; } }
.featured__hero:hover .featured__hero-name { color: var(--merc); }
.featured__hero-price { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1; letter-spacing: -0.02em; margin-top: 24px; }
@media (min-width: 640px) { .featured__hero-price { font-size: 44px; } }
.featured__hero-meta { display: flex; gap: 16px; color: rgba(255,255,255,0.4); font-size: 11px; margin-top: 24px; }
.featured__hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.featured__hero-cta {
  align-self: flex-start; margin-top: 32px;
  background: var(--white); color: var(--night); height: 44px; padding: 0 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.featured__hero:hover .featured__hero-cta { background: var(--merc); color: var(--white); }

.featured__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .featured__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .featured__grid { grid-template-columns: repeat(4, 1fr); } }

/* Ensure equal-width grid cells regardless of card title length */
.featured__grid > * { min-width: 0; }
.featured__grid .card { width: 100%; min-width: 0; }
.featured__grid .card__name { min-width: 0; max-width: 100%; }

.card {
  display: flex; flex-direction: column;
  background: var(--carbon); border: 1px solid rgba(255,255,255,0.03);
  transition: border-color .5s ease;
  overflow: hidden;
  height: 100%;
}
.card:hover { border-color: rgba(244,192,0,0.3); }
.card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.card:hover .card__img img { transform: scale(1.04); }
.card__badge { position: absolute; top: 10px; left: 10px; background: rgba(22,22,22,0.8); backdrop-filter: blur(6px); color: var(--white); padding: 4px 10px; font-size: 8px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.15); }
.card__body { padding: 16px; display: flex; flex-direction: column; }
.card__name { color: var(--white); font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 2px; transition: color .3s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (min-width: 640px) { .card__name { font-size: 14px; } }
.card:hover .card__name { color: var(--merc); }
.card__year { font-size: 10px; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.card__price { color: var(--white); font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
@media (min-width: 640px) { .card__price { font-size: 20px; } }
.card__price--small { font-size: 13px; text-transform: uppercase; }
.card__cta {
  margin-top: 16px;
  background: var(--white); color: var(--night); height: 38px; padding: 0 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.card:hover .card__cta { background: var(--merc); color: var(--white); }

.featured__viewall-wrap { text-align: center; margin-top: 40px; }

/* === Contact trio === */
.trio { padding: 80px 0; }
@media (min-width: 1024px) { .trio { padding: 112px 0; } }
.trio__head { text-align: center; }
.trio__eyebrow-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; }
.trio__eyebrow-row .line { width: 24px; height: 1px; background: var(--merc); display: block; }
.trio__eyebrow-row p { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--merc); }
.trio__title { color: var(--white); font-weight: 700; line-height: 0.98; font-size: 24px; margin-bottom: 8px; }
@media (min-width: 640px) { .trio__title { font-size: 32px; } }
@media (min-width: 1024px) { .trio__title { font-size: 40px; } }
.trio__title .dot { color: var(--merc); }
.trio__sub { color: rgba(255,255,255,0.5); font-size: 14px; max-width: 480px; margin: 0 auto 40px; }
.trio__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .trio__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.trio__card {
  background: var(--night); border: 1px solid rgba(255,255,255,0.06);
  padding: 28px; min-height: 180px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: border-color .5s ease;
}
.trio__card:hover { border-color: rgba(244,192,0,0.4); }
.trio__card-wa:hover { border-color: rgba(37,211,102,0.5); }
.trio__icon { width: 28px; height: 28px; color: var(--merc); margin-bottom: 16px; transition: transform .3s; }
.trio__card-wa .trio__icon { color: #25D366; }
.trio__card:hover .trio__icon { transform: scale(1.1); }
.trio__label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.trio__value { color: var(--white); font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; transition: color .3s; word-break: break-all; }
@media (min-width: 640px) { .trio__value { font-size: 20px; } }
.trio__card:hover .trio__value { color: var(--merc); }
.trio__card-wa:hover .trio__value { color: #25D366; }
.trio__sublabel { color: rgba(255,255,255,0.45); font-size: 11px; margin-top: 8px; }

/* === Models teaser === */
.models { padding: 80px 0; background: var(--night); border-top: 1px solid rgba(255,255,255,0.03); }
@media (min-width: 640px) { .models { padding: 112px 0; } }
.models__head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
@media (min-width: 640px) { .models__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.models__title { color: var(--white); font-weight: 700; line-height: 0.95; font-size: 30px; }
@media (min-width: 640px) { .models__title { font-size: 38px; } }
@media (min-width: 1024px) { .models__title { font-size: 48px; } }
.models__title .dot { color: var(--merc); }
.models__intro { font-weight: 300; color: rgba(255,255,255,0.5); font-size: 14px; max-width: 480px; margin-top: 16px; }
.models__strip { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.models__strip::-webkit-scrollbar { display: none; }
.models__chip {
  flex-shrink: 0; min-width: 160px; padding: 20px 24px;
  background: var(--carbon); border: 1px solid rgba(255,255,255,0.04);
  scroll-snap-align: start;
  transition: border-color .3s ease;
}
.models__chip:hover { border-color: rgba(244,192,0,0.3); }
.models__chip-num { color: var(--merc); font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; transition: color .3s; }
.models__chip:hover .models__chip-num { color: var(--white); }
.models__chip-name { color: rgba(255,255,255,0.8); font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; margin-top: 8px; transition: color .3s; }
.models__chip:hover .models__chip-name { color: var(--merc); }

/* === Oldtimer teaser === */
.oldtimer { padding: 80px 0; background: var(--carbon); border-top: 1px solid rgba(255,255,255,0.03); }
@media (min-width: 640px) { .oldtimer { padding: 112px 0; } }
.oldtimer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .oldtimer__grid { grid-template-columns: repeat(2, 1fr); gap: 64px; } }
.oldtimer__img { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--night); }
@media (min-width: 1024px) { .oldtimer__img { aspect-ratio: 4/3; } }
.oldtimer__img img { width: 100%; height: 100%; object-fit: cover; }
.oldtimer__img::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 120px rgba(0,0,0,0.5); pointer-events: none; }
.oldtimer__badge { position: absolute; top: 12px; left: 12px; background: var(--merc); color: var(--night); padding: 4px 12px; font-size: 9px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; z-index: 1; }
.oldtimer__title { color: var(--white); font-weight: 700; line-height: 0.98; font-size: 28px; }
@media (min-width: 640px) { .oldtimer__title { font-size: 36px; } }
@media (min-width: 1024px) { .oldtimer__title { font-size: 44px; } }
.oldtimer__title .merc { color: var(--merc); }
.oldtimer__text { font-weight: 300; color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.8; margin-top: 24px; max-width: 420px; }
.oldtimer__cta { margin-top: 32px; display: inline-flex; align-items: center; gap: 8px; background: var(--merc); color: var(--night); padding: 14px 32px; font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; min-height: 48px; transition: background .3s; }
.oldtimer__cta:hover { background: var(--white); }

/* === Why split === */
.why { display: grid; grid-template-columns: 1fr; min-height: 600px; }
@media (min-width: 1024px) { .why { grid-template-columns: repeat(2, 1fr); } }
.why__img { position: relative; overflow: hidden; min-height: 400px; }
.why__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.why__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(22,22,22,0.3)); display: none; }
@media (min-width: 1024px) { .why__img::after { display: block; } }
.why__body { background: var(--carbon); display: flex; flex-direction: column; justify-content: center; padding: 64px 32px; }
@media (min-width: 640px) { .why__body { padding: 96px 48px; } }
@media (min-width: 1024px) { .why__body { padding: 96px 80px; } }
.why__title { color: var(--white); font-weight: 700; line-height: 0.95; font-size: 28px; margin-bottom: 40px; }
@media (min-width: 640px) { .why__title { font-size: 36px; } }
@media (min-width: 1024px) { .why__title { font-size: 46px; } }
.why__title .merc { color: var(--merc); }
.why__list { display: flex; flex-direction: column; }
.why__item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: border-color .3s; }
.why__item:hover { border-color: rgba(244,192,0,0.1); }
.why__num { font-family: var(--font-display); color: rgba(244,192,0,0.3); font-size: 20px; font-weight: 700; }
.why__text { font-family: var(--font-sans); color: rgba(255,255,255,0.65); font-size: 14px; transition: color .3s; }
.why__item:hover .why__text { color: rgba(255,255,255,0.9); }

/* === Parts split === */
.parts { padding: 96px 0; background: var(--night); }
@media (min-width: 640px) { .parts { padding: 128px 0; } }
@media (min-width: 1024px) { .parts { padding: 160px 0; } }
.parts__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .parts__grid { grid-template-columns: repeat(2, 1fr); gap: 80px; } }
.parts__img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.parts__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s ease; }
.parts__img-wrap:hover img { transform: scale(1.03); }
.parts__img-wrap::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(244,192,0,0.05); }
.parts__title { color: var(--white); font-weight: 700; line-height: 0.95; font-size: 28px; margin-bottom: 28px; }
@media (min-width: 640px) { .parts__title { font-size: 38px; } }
@media (min-width: 1024px) { .parts__title { font-size: 46px; } }
.parts__title .merc { color: var(--merc); }
.parts__text { color: rgba(255,255,255,0.55); font-weight: 300; font-size: 15px; line-height: 1.85; margin-bottom: 40px; max-width: 420px; }
.parts__ctas { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
@media (min-width: 640px) { .parts__ctas { flex-direction: row; } }
.parts__order-2-lg { order: 1; }
@media (min-width: 1024px) { .parts__order-2-lg { order: 2; } }
.parts__order-1-lg { order: 2; }
@media (min-width: 1024px) { .parts__order-1-lg { order: 1; } }

/* === AMG yellow band === */
.amgband { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--night); }
@media (min-width: 640px) { .amgband { aspect-ratio: 2/1; } }
.amgband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: var(--night); }
.amgband__grad-1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(22,22,22,0.85), rgba(22,22,22,0.3), transparent); }
.amgband__grad-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,22,22,0.7), transparent, rgba(22,22,22,0.3)); }
.amgband__inner { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: center; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 640px) { .amgband__inner { padding: 0 40px; } }
@media (min-width: 1024px) { .amgband__inner { padding: 0 80px; } }
.amgband__eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.amgband__eyebrow-row .line { width: 32px; height: 1px; background: var(--merc); }
.amgband__eyebrow-row p { font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--merc); }
.amgband__title { color: var(--white); font-weight: 700; line-height: 0.92; font-size: clamp(36px, 6vw, 84px); max-width: 760px; }
.amgband__title .merc { color: var(--merc); }
.amgband__text { font-weight: 300; color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.8; margin-top: 24px; max-width: 520px; }
@media (min-width: 640px) { .amgband__text { font-size: 16px; } }
.amgband__cta { margin-top: 32px; align-self: flex-start; }

/* === CTA banner === */
.ctabanner { position: relative; height: 50vh; min-height: 420px; overflow: hidden; }
@media (min-width: 640px) { .ctabanner { height: 60vh; } }
.ctabanner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ctabanner__overlay { position: absolute; inset: 0; background: rgba(22,22,22,0.7); }
.ctabanner__line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(244,192,0,0.5), transparent); }
.ctabanner__inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.ctabanner__title { color: var(--white); font-weight: 700; line-height: 0.95; font-size: 32px; max-width: 760px; margin-bottom: 12px; }
@media (min-width: 640px) { .ctabanner__title { font-size: 46px; } }
@media (min-width: 1024px) { .ctabanner__title { font-size: 58px; } }
.ctabanner__title .merc { color: var(--merc); }
.ctabanner__sub { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 16px; margin-bottom: 32px; }
.ctabanner__ctas { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
@media (min-width: 640px) { .ctabanner__ctas { flex-direction: row; } }
.btn-wa-outline {
  border: 1px solid rgba(37,211,102,0.4); color: #25D366; background: transparent;
  min-height: 54px; padding: 0 40px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background .5s, color .5s;
}
.btn-wa-outline:hover { background: #25D366; color: var(--white); }

/* === Page header (catalogus, faq, etc) === */
.pageheader {
  position: relative; padding: 160px 0 64px;
  background: var(--night);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
@media (min-width: 1024px) { .pageheader { padding: 200px 0 96px; } }
.pageheader__title { color: var(--white); font-weight: 700; line-height: 0.95; font-size: 40px; }
@media (min-width: 640px) { .pageheader__title { font-size: 56px; } }
@media (min-width: 1024px) { .pageheader__title { font-size: 80px; } }
.pageheader__title .merc { color: var(--merc); }
.pageheader__sub { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 16px; max-width: 560px; }

/* === Catalogus / Collection grid === */
.collection { padding: 64px 0; background: var(--night); }
.collection__filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.collection__filter {
  padding: 10px 20px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--carbon); color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color .3s, color .3s, background .3s;
}
.collection__filter:hover { border-color: rgba(244,192,0,0.4); color: var(--merc); }
.collection__filter.active { background: var(--merc); color: var(--night); border-color: var(--merc); }
.collection__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .collection__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .collection__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1280px) { .collection__grid { grid-template-columns: repeat(4, 1fr); } }

/* Equal-width grid cells regardless of card title length (collection grid) */
.collection__grid > * { min-width: 0; }
.collection__grid .card { width: 100%; min-width: 0; }
.collection__grid .card__name { min-width: 0; max-width: 100%; }

.empty-state { padding: 80px 16px; text-align: center; color: rgba(255,255,255,0.45); font-size: 14px; }
.empty-state a { color: var(--merc); }

/* === Product / Vehicle === */
.product { padding-top: 120px; }
@media (min-width: 1024px) { .product { padding-top: 160px; } }
.product__back { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; padding: 0 0 32px; transition: color .3s; }
.product__back:hover { color: var(--merc); }
.product__layout { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 80px; }
@media (min-width: 1024px) { .product__layout { grid-template-columns: 3fr 2fr; gap: 64px; padding-bottom: 128px; } }

/* Gallery */
.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery__main { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--carbon); cursor: zoom-in; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(22,22,22,0.7); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s;
}
.gallery__nav-btn:hover { background: var(--merc); color: var(--night); }
.gallery__nav-prev { left: 12px; }
.gallery__nav-next { right: 12px; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
@media (min-width: 640px) { .gallery__thumbs { grid-template-columns: repeat(6, 1fr); } }
.gallery__thumb { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.04); transition: border-color .3s; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.active { border-color: var(--merc); }
.gallery__thumb:hover { border-color: rgba(244,192,0,0.5); }

/* Product detail panel */
.pdp__cat { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.pdp__title { color: var(--white); font-weight: 700; line-height: 1; font-size: 30px; }
@media (min-width: 640px) { .pdp__title { font-size: 38px; } }
@media (min-width: 1024px) { .pdp__title { font-size: 46px; } }
.pdp__price-row { margin-top: 24px; }
.pdp__price { color: var(--white); font-family: var(--font-display); font-size: 42px; font-weight: 700; letter-spacing: -0.02em; }
.pdp__warranty { display: flex; gap: 16px; flex-wrap: wrap; margin: 20px 0 32px; }
.pdp__warranty span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.5); font-size: 12px; }
.pdp__cta-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
@media (min-width: 640px) { .pdp__cta-row { flex-direction: row; } }
.pdp__specs { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; }
.pdp__specs-title { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--merc); margin-bottom: 24px; }
.pdp__specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pdp__spec dt { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.pdp__spec dd { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); margin: 0; letter-spacing: -0.02em; }
.pdp__desc { margin-top: 32px; color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.85; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.95);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; }
.lightbox__close:hover { background: var(--merc); color: var(--night); border-color: var(--merc); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; }
.lightbox__nav:hover { background: var(--merc); color: var(--night); border-color: var(--merc); }
.lightbox__nav-prev { left: 20px; }
.lightbox__nav-next { right: 20px; }

/* === FAQ === */
.faq { padding: 64px 0 96px; background: var(--night); }
.faq__list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid rgba(255,255,255,0.05); background: var(--carbon); transition: border-color .3s; }
.faq__item:hover, .faq__item[open] { border-color: rgba(244,192,0,0.25); }
.faq__q { padding: 24px 28px; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--white); display: flex; justify-content: space-between; gap: 16px; align-items: center; text-transform: none; letter-spacing: 0; }
.faq__q::-webkit-details-marker { display: none; }
.faq__plus { color: var(--merc); font-size: 24px; line-height: 1; transition: transform .3s; flex-shrink: 0; }
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__a { padding: 0 28px 24px; color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.85; }

/* === Contact page === */
.contactpage { padding: 80px 0; background: var(--night); }
.contactpage__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .contactpage__grid { grid-template-columns: repeat(2, 1fr); gap: 64px; } }
.contactpage__card { padding: 40px; background: var(--carbon); border: 1px solid rgba(255,255,255,0.04); }
.contactpage__sectitle { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--merc); margin-bottom: 24px; }
.contactpage__row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.contactpage__row:last-child { border: 0; }
.contactpage__row dt { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); min-width: 80px; }
.contactpage__row dd { color: var(--white); font-size: 14px; margin: 0; }
.contactpage__row dd a { transition: color .3s; }
.contactpage__row dd a:hover { color: var(--merc); }

/* === Footer === */
.footer { background: var(--night); border-top: 1px solid rgba(255,255,255,0.04); padding: 56px 0 40px; }
@media (min-width: 1024px) { .footer { padding: 80px 0 48px; } }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; } }
.footer__brand { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.footer__brand .b1 { color: var(--white); font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.04em; text-transform: uppercase; }
.footer__brand .b2 { color: var(--merc); font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.04em; text-transform: uppercase; }
.footer__tag { color: rgba(255,255,255,0.25); font-size: 13px; line-height: 1.7; max-width: 320px; font-weight: 300; }
.footer__h4 { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(244,192,0,0.5); margin-bottom: 20px; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 300; }
.footer__contact a { display: inline-flex; align-items: center; gap: 8px; transition: color .3s; }
.footer__contact a:hover { color: var(--merc); }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 13px; color: rgba(255,255,255,0.25); transition: color .3s; }
.footer__nav a:hover { color: var(--merc); }
.footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.12); font-size: 10px; letter-spacing: 0.08em; }
@media (min-width: 640px) { .footer__bottom { flex-direction: row; } }
.footer__bottom a { transition: color .3s; }
.footer__bottom a:hover { color: var(--merc); }
.footer__disclaimer { margin-top: 24px; max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; color: rgba(255,255,255,0.3); font-size: 11px; line-height: 1.6; }
.footer__credit { margin-top: 12px; text-align: center; color: rgba(255,255,255,0.15); font-size: 11px; letter-spacing: 0.06em; }
@media (min-width: 640px) { .footer__credit { text-align: right; } }

/* === Generic page (rich text) === */
.richpage { padding: 64px 0 96px; background: var(--night); max-width: none; }
.richpage__inner { max-width: 880px; margin: 0 auto; padding: 0 20px; color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.85; }
@media (min-width: 640px) { .richpage__inner { padding: 0 32px; } }
.richpage__inner h1, .richpage__inner h2, .richpage__inner h3 { color: var(--white); margin: 32px 0 16px; }
.richpage__inner h2 { font-size: 22px; }
.richpage__inner h3 { font-size: 18px; }
.richpage__inner p { margin-bottom: 16px; }
.richpage__inner a { color: var(--merc); text-decoration: underline; }
.richpage__inner ul, .richpage__inner ol { margin: 16px 0; padding-left: 24px; }

/* === Privacy === */
.privacy { padding: 64px 0 96px; background: var(--night); }
.privacy__inner { max-width: 720px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .privacy__inner { padding: 0 32px; } }
.privacy__section { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.privacy__section:last-child { border-bottom: 0; }
.privacy__section h2 { font-size: 16px; color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em; }
.privacy__section p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; }
.privacy__last { margin-top: 32px; color: rgba(255,255,255,0.3); font-size: 12px; }

/* === AMG page === */
.amghero { position: relative; height: 80vh; min-height: 600px; overflow: hidden; background: var(--night); }
.amghero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.amghero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(22,22,22,0.6), rgba(22,22,22,0.3) 60%, var(--night)); }
.amghero__inner { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 24px 80px; max-width: 1400px; margin: 0 auto; }
@media (min-width: 1024px) { .amghero__inner { padding: 0 64px 128px; } }

.amgwhat { padding: 96px 0; background: var(--carbon); }
.amgwhat__inner { max-width: 880px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .amgwhat__inner { padding: 0 32px; } }
.amgwhat__title { color: var(--white); font-size: 32px; font-weight: 700; line-height: 1; margin-top: 16px; }
@media (min-width: 1024px) { .amgwhat__title { font-size: 48px; } }
.amgwhat__body { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.85; margin-top: 32px; font-weight: 300; }

.amgpillars { padding: 96px 0; background: var(--night); }
.amgpillars__title { color: var(--white); font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 56px; }
@media (min-width: 1024px) { .amgpillars__title { font-size: 38px; } }
.amgpillars__grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 1024px) { .amgpillars__grid { grid-template-columns: repeat(3, 1fr); } }
.amgpillar { padding: 32px; background: var(--carbon); border: 1px solid rgba(255,255,255,0.04); }
.amgpillar__num { color: var(--merc); font-family: var(--font-display); font-size: 36px; font-weight: 700; line-height: 1; margin-bottom: 16px; }
.amgpillar__t { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.amgpillar__d { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.85; font-weight: 300; }

/* === Wisselstukken === */
.wisselgrid { padding: 64px 0 96px; background: var(--night); }
.wisselgrid__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .wisselgrid__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wisselgrid__grid { grid-template-columns: repeat(4, 1fr); } }
.wisselcard { padding: 28px; background: var(--carbon); border: 1px solid rgba(255,255,255,0.04); transition: border-color .3s; }
.wisselcard:hover { border-color: rgba(244,192,0,0.25); }
.wisselcard__name { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 12px; line-height: 1.2; }
.wisselcard__desc { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.7; font-weight: 300; }

/* === Onderdelen === */
.onderdelencards { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0 0 64px; }
@media (min-width: 768px) { .onderdelencards { grid-template-columns: repeat(3, 1fr); } }
.onderdelencard { padding: 32px; background: var(--carbon); border: 1px solid rgba(255,255,255,0.04); }
.onderdelencard__t { color: var(--merc); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.onderdelencard__d { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; font-weight: 300; }

/* === Overname === */
.overnamesteps { padding: 64px 0 96px; background: var(--night); }
.overnamesteps__grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 1024px) { .overnamesteps__grid { grid-template-columns: repeat(3, 1fr); } }
.overnamestep { padding: 32px; background: var(--carbon); border: 1px solid rgba(255,255,255,0.04); }
.overnamestep__num { color: var(--merc); font-family: var(--font-display); font-size: 48px; font-weight: 700; line-height: 1; margin-bottom: 16px; }
.overnamestep__t { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.overnamestep__d { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.85; font-weight: 300; }

.overnameform { padding: 96px 0; background: var(--carbon); }
.overnameform__inner { max-width: 880px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .overnameform__inner { padding: 0 32px; } }
.overnameform__list { list-style: disc; padding-left: 24px; color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin: 24px 0; }
.overnameform__list li { margin-bottom: 8px; }
.overnameform__wabox { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.3); padding: 32px; margin-top: 40px; }

/* === 404 === */
.notfound { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 120px 20px; text-align: center; background: var(--night); }
.notfound__title { color: var(--white); font-size: 64px; font-weight: 700; line-height: 1; margin-bottom: 16px; }
.notfound__title .merc { color: var(--merc); }
.notfound__sub { color: rgba(255,255,255,0.5); font-size: 14px; max-width: 400px; margin: 0 auto 32px; }

/* === Search === */
.searchpage { padding: 64px 0 96px; background: var(--night); }
.searchpage__form { display: flex; gap: 12px; max-width: 640px; margin-bottom: 40px; }
.searchpage__form input { flex: 1; padding: 14px 20px; background: var(--carbon); border: 1px solid rgba(255,255,255,0.06); color: var(--white); font-size: 14px; font-family: var(--font-sans); }
.searchpage__form input:focus { outline: 0; border-color: var(--merc); }

/* === Spacers === */
.spacer-72 { height: 72px; }
.spacer-58 { height: 58px; }

/* Util icons (SVG inline color) */
.icn { width: 16px; height: 16px; flex-shrink: 0; }
.icn-lg { width: 28px; height: 28px; }

/* VERKOCHT banner */
.card__sold {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--merc, #f4c000);
  color: var(--night, #161616);
  font-family: var(--font-display, sans-serif);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
  border-radius: 2px;
}
.card:has(.card__sold) .card__img img { filter: brightness(0.75) saturate(0.95); transition: filter 0.5s; }
.card:has(.card__sold):hover .card__img img { filter: brightness(0.85) saturate(1); }
.card:has(.card__sold) .card__img img { filter: brightness(0.65) saturate(0.95); transition: filter 0.5s; }
.card:has(.card__sold):hover .card__img img { filter: brightness(0.75) saturate(1); }
.card:has(.card__sold) .card__img img { filter: brightness(0.6) saturate(0.9); transition: filter 0.5s; }
.card:has(.card__sold):hover .card__img img { filter: brightness(0.7) saturate(1); }
.pdp__sold {
  display: inline-block;
  background: var(--merc, #f4c000);
  color: var(--night, #161616);
  font-family: var(--font-display, sans-serif);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2em;
  padding: 8px 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* === Vehicle filter bar === */
.vfilter { margin-top: 32px; margin-bottom: 32px; padding: 20px; background: var(--carbon); border: 1px solid rgba(255,255,255,0.04); border-radius: 4px; }
.vfilter__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; align-items: end; }
.vfilter__field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.vfilter__field > span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.vfilter__field select { background: var(--night); color: var(--white); border: 1px solid rgba(255,255,255,0.1); padding: 9px 10px; font-size: 13px; font-family: var(--font-sans); border-radius: 2px; }
.vfilter__field select:focus { outline: 1px solid var(--merc); border-color: var(--merc); }
.vfilter__check { flex-direction: row !important; align-items: center; gap: 8px; }
.vfilter__check > span { letter-spacing: 0; text-transform: none; font-size: 13px; color: var(--white); }
.vfilter__check input { accent-color: var(--merc); width: 16px; height: 16px; }
.vfilter__reset { background: transparent; color: var(--merc); border: 1px solid var(--merc); padding: 9px 16px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: background .2s, color .2s; height: 38px; align-self: end; }
.vfilter__reset:hover { background: var(--merc); color: var(--night); }
.vfilter__count { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* === WhatsApp button === */
.btn-wa { background: #25d366; color: #fff !important; border: 1px solid #25d366; }
.btn-wa:hover { background: #128c7e; border-color: #128c7e; }

/* === Language switcher form (replaces <a href="#"> approach) === */
.lang-switch__form { display: inline-flex; gap: 0; align-items: center; }
.lang-switch__btn { background: transparent; border: 0; color: inherit; font-family: inherit; font-size: inherit; letter-spacing: inherit; padding: 0 4px; cursor: pointer; opacity: 0.5; transition: opacity .2s, color .2s; }
.lang-switch__btn:hover { opacity: 1; color: var(--merc); }
.lang-switch__btn.active { opacity: 1; color: var(--merc); }
.lang-switch__form button:not(:last-child)::after { content: ' · '; opacity: .4; padding-left: 4px; }

/* === VERKOCHT sticker on sold vehicle cards === */
.card__sold {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--merc, #f4c000);
  color: var(--night, #161616);
  font-family: var(--font-display, sans-serif);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
  border-radius: 2px;
}
.card:has(.card__sold) .card__img img { filter: brightness(0.75) saturate(0.95); transition: filter 0.5s; }
.card:has(.card__sold):hover .card__img img { filter: brightness(0.85) saturate(1); }
.card:has(.card__sold) .card__img img { filter: brightness(0.65) saturate(0.95); transition: filter 0.5s; }
.card:has(.card__sold):hover .card__img img { filter: brightness(0.75) saturate(1); }
.card:has(.card__sold) .card__img img { filter: brightness(0.6) saturate(0.9); transition: filter 0.5s; }
.card:has(.card__sold):hover .card__img img { filter: brightness(0.7) saturate(1); }
.card__img { position: relative; }

/* === Pageheader with twilight Mercedes hero (catalogus) === */
.pageheader--hero { padding-top: 220px; padding-bottom: 120px; overflow: hidden; }
@media (min-width: 1024px) { .pageheader--hero { padding-top: 280px; padding-bottom: 160px; } }
.pageheader__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pageheader__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  filter: brightness(0.55) saturate(1.1);
}
.pageheader__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(0,0,0,0.85), rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(22,22,22,0.55) 0%, rgba(22,22,22,0.25) 30%, rgba(22,22,22,0.85) 100%);
}
.pageheader--hero > .container-1400 { position: relative; z-index: 1; }
.pageheader--hero .pageheader__title {
  font-size: clamp(40px, 6vw, 72px);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.pageheader--hero .pageheader__sub { color: rgba(255,255,255,0.85); }
.pageheader--hero .label { color: var(--merc); }

/* ====================================================================== */
/* === PDP2 — redesigned product detail page === */
/* ====================================================================== */
.pdp2 { position: relative; padding-top: 120px; padding-bottom: 96px; }
.pdp2__bg { position: absolute; inset: 0; height: 60vh; max-height: 600px; overflow: hidden; z-index: 0; pointer-events: none; }
.pdp2__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(40px) brightness(0.35) saturate(1.2); transform: scale(1.1); }
.pdp2__bg-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,22,22,0.6) 0%, var(--night) 90%); }
.pdp2__inner { position: relative; z-index: 1; }

.pdp2__back { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 32px; transition: color .2s; }
.pdp2__back:hover { color: var(--merc); }

.pdp2__hero { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 64px; }
@media (min-width: 1024px) { .pdp2__hero { grid-template-columns: 1.2fr 1fr; gap: 64px; } }

.pdp2__cat { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--merc); margin-bottom: 12px; }
.pdp2__title { color: var(--white); font-weight: 700; line-height: 0.98; font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.pdp2__sold { display: inline-block; background: var(--merc); color: var(--night); padding: 6px 14px; font-size: 11px; font-weight: 800; letter-spacing: 0.2em; margin-bottom: 16px; }

.pdp2__price-row { margin-top: 16px; margin-bottom: 24px; }
.pdp2__price { color: var(--white); font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -0.02em; }
.pdp2__price--ask { font-size: clamp(20px, 2.5vw, 28px); color: rgba(255,255,255,0.65); font-weight: 500; letter-spacing: 0.02em; }

.pdp2__btw-toggle { display: inline-flex; margin-top: 14px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.02); }
.pdp2__btw-btn { appearance: none; background: transparent; border: 0; color: rgba(255,255,255,0.55); font-family: inherit; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 10px 16px; cursor: pointer; transition: background 0.25s, color 0.25s; }
.pdp2__btw-btn + .pdp2__btw-btn { border-left: 1px solid rgba(255,255,255,0.14); }
.pdp2__btw-btn:hover { color: var(--white); }
.pdp2__btw-btn.is-active { background: var(--merc); color: var(--night); }
.pdp2__btw-badge { display: inline-block; margin-top: 14px; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 600; }
.pdp2__btw-note { margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.pdp2__warranty { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.pdp2__warranty span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.55); font-size: 12px; }
.pdp2__warranty .icn { width: 14px; height: 14px; color: var(--merc); }

.pdp2__cta-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
@media (min-width: 640px) { .pdp2__cta-row { flex-direction: row; flex-wrap: wrap; } }

.pdp2__quickspecs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.pdp2__qs { display: flex; gap: 12px; align-items: center; padding: 14px; background: rgba(31,31,31,0.6); border: 1px solid rgba(255,255,255,0.04); }
.pdp2__qs-icon { color: var(--merc); flex-shrink: 0; }
.pdp2__qs-icon .icn { width: 22px; height: 22px; }
.pdp2__qs dt { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.pdp2__qs dd { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); margin: 0; }

.pdp2__specs-section { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 16px; }
.pdp2__specs-section .eyebrow-row { margin-bottom: 24px; }
.pdp2__specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
@media (min-width: 768px) { .pdp2__specs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .pdp2__specs-grid { grid-template-columns: repeat(4, 1fr); } }
.pdp2__spec { padding: 0; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 12px; }
.pdp2__spec dt { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.pdp2__spec dd { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); margin: 0; letter-spacing: -0.01em; }

.pdp2__options-section { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.pdp2__options-section .eyebrow-row { margin-bottom: 24px; }
.pdp2__options { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 640px) { .pdp2__options { grid-template-columns: 1fr 1fr; gap: 8px 24px; } }
@media (min-width: 1024px) { .pdp2__options { grid-template-columns: 1fr 1fr 1fr; } }
.pdp2__options li { color: rgba(255,255,255,0.75); font-size: 14px; padding-left: 22px; position: relative; line-height: 1.7; }
.pdp2__options li::before { content: '✓'; color: var(--merc); position: absolute; left: 0; top: 0; font-weight: 700; }

.pdp2__trust { padding: 64px 0; }
.pdp2__trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 768px) { .pdp2__trust-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.pdp2__trust-grid > div { padding: 24px; background: rgba(31,31,31,0.6); border: 1px solid rgba(255,255,255,0.04); text-align: center; display: flex; flex-direction: column; gap: 6px; }
.pdp2__trust-grid strong { font-family: var(--font-display); font-size: 22px; color: var(--merc); letter-spacing: -0.02em; }
.pdp2__trust-grid span { font-size: 12px; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }

.pdp2__bottom-cta { padding: 64px 0; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.pdp2__bottom-cta h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 12px; }
.pdp2__bottom-cta p { color: rgba(255,255,255,0.5); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.pdp2__bottom-cta .pdp2__cta-row { justify-content: center; }

.pdp2__related { padding: 64px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.pdp2__related .eyebrow-row { margin-bottom: 16px; }
.pdp2__related-title { color: var(--white); font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 32px; }
.pdp2__related-title .merc { color: var(--merc); }

/* === Wisselstukken / hero readability fix === */
.amghero__overlay {
  background: linear-gradient(to bottom,
    rgba(22,22,22,0.4) 0%,
    rgba(22,22,22,0.7) 50%,
    rgba(22,22,22,0.95) 100%) !important;
}
.amghero .hero__intro {
  color: rgba(255,255,255,0.92) !important;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  max-width: 640px;
}
.amghero .hero__title {
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
.amghero .hero__eyebrow-row p {
  color: var(--merc);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.amghero p[style*="rgba(244,192,0"] {
  color: var(--merc) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8) !important;
  background: rgba(0,0,0,0.4);
  display: inline-block;
  padding: 8px 14px;
  border-left: 2px solid var(--merc);
}

/* === Contact page — redesigned === */
.contact-hero { position: relative; padding: 220px 0 96px; overflow: hidden; }
@media (min-width: 1024px) { .contact-hero { padding: 280px 0 128px; } }
.contact-hero__bg { position: absolute; inset: 0; z-index: 0; }
.contact-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(1.1); }
.contact-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,22,22,0.45) 0%, rgba(22,22,22,0.7) 50%, var(--night) 100%);
}
.contact-hero__inner { position: relative; z-index: 1; }
.contact-hero__title { color: var(--white); font-weight: 700; line-height: 0.95; font-size: clamp(48px, 7vw, 88px); text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.contact-hero__title .merc { color: var(--merc); }
.contact-hero__sub { color: rgba(255,255,255,0.85); font-size: clamp(15px, 1.6vw, 18px); margin-top: 20px; max-width: 560px; line-height: 1.7; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

.contact-trio { padding: 64px 0; background: var(--night); position: relative; z-index: 1; }
.contact-trio__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .contact-trio__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.contact-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 36px 28px;
  background: var(--carbon);
  border: 1px solid rgba(255,255,255,0.04);
  text-align: left;
  transition: border-color .3s, transform .3s, background .3s;
}
.contact-card:hover { border-color: rgba(244,192,0,0.4); transform: translateY(-3px); }
.contact-card__icon { color: var(--merc); margin-bottom: 12px; }
.contact-card__icon .icn { width: 28px; height: 28px; }
.contact-card__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.contact-card__value { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; color: var(--white); letter-spacing: -0.02em; word-break: break-word; }
.contact-card__sub { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.6; }
.contact-card--wa { background: linear-gradient(135deg, rgba(37,211,102,0.08) 0%, var(--carbon) 60%); border-color: rgba(37,211,102,0.2); }
.contact-card--wa .contact-card__icon { color: #25d366; }
.contact-card--wa:hover { border-color: rgba(37,211,102,0.5); }

.contact-info { padding: 64px 0 96px; background: var(--night); }
.contact-info__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .contact-info__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.contact-info__block { padding: 36px; background: var(--carbon); border: 1px solid rgba(255,255,255,0.04); height: 100%; }
.contact-info__title { color: var(--white); font-weight: 700; font-size: clamp(28px, 3.5vw, 40px); line-height: 1; margin: 12px 0 24px; }
.contact-info__title .dot { color: var(--merc); }
.contact-info__address { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; font-style: normal; margin-bottom: 12px; }
.contact-info__sub { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 24px; }
.contact-info__details { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.contact-info__row { display: flex; justify-content: space-between; padding: 8px 0; gap: 16px; }
.contact-info__row dt { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.contact-info__row dd { color: var(--white); margin: 0; font-size: 13px; text-align: right; }
.contact-info__row dd a { color: var(--merc); }

.contact-hours { list-style: none; padding: 0; margin: 0; }
.contact-hours li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--white); font-size: 16px; font-family: var(--font-display); font-weight: 500; }
.contact-hours li:last-child { border-bottom: 0; }

.contact-map { margin-top: 32px; }
.contact-map iframe { display: block; width: 100%; border-radius: 2px; }

/* === Card body alignment — ensure price + CTA always at bottom === */
.card { height: 100%; }
.card__body { flex: 1; min-height: 0; }
.card__price, .card__price--small { margin-top: auto; }
.card__year { min-height: 14px; }

/* === Hard alignment: all card CTAs at bottom regardless of content === */
.card { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.card__img { flex-shrink: 0; }
.card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card__name { flex-shrink: 0; }
.card__year { flex-shrink: 0; }
/* push price + cta block to bottom of card */
.card__price,
.card__price--small { margin-top: auto; flex-shrink: 0; }
.card__cta { margin-top: 12px !important; flex-shrink: 0; }
/* In the catalogus grid: equal-row heights */
.collection__grid { grid-auto-rows: 1fr; align-items: stretch; }
.collection__grid > * { display: flex; min-height: 0; }
.collection__grid > * > .card { flex: 1; }
/* Featured grid same treatment */
.featured__grid { grid-auto-rows: 1fr; align-items: stretch; }
.featured__grid > * { display: flex; min-height: 0; }
.featured__grid > * > .card { flex: 1; }

/* === FINAL ALIGNMENT — guaranteed equal-height cards === */
/* Force grid items to fill their cell completely */
.collection__grid,
.featured__grid {
  display: grid;
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.collection__grid > .reveal,
.featured__grid > .reveal {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.collection__grid > .reveal > .card,
.featured__grid > .reveal > .card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
/* Body grows, CTA pinned bottom */
.collection__grid .card__body,
.featured__grid .card__body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}
.collection__grid .card__cta,
.featured__grid .card__cta {
  margin-top: auto !important;
}
/* Year/km line gets fixed min-height so absence doesn't shrink card body */
.card__year { min-height: 18px; }

/* === Footer WhatsApp link === */
.footer__contact a.footer__wa { color: #25d366; }
.footer__contact a.footer__wa:hover { color: var(--merc); }

/* === Modellen page — photo cards with overlay === */
.modellen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 640px) { .modellen__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .modellen__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1280px) { .modellen__grid { grid-template-columns: repeat(4, 1fr); } }

.model-card {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color .3s, transform .3s;
}
.model-card:hover { border-color: rgba(244,192,0,0.4); transform: translateY(-3px); }
.model-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.model-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.model-card:hover .model-card__img img { transform: scale(1.05); }
.model-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,22,22,0.25) 0%, rgba(22,22,22,0.85) 100%);
  transition: background .3s;
}
.model-card:hover .model-card__scrim {
  background: linear-gradient(180deg, rgba(22,22,22,0.15) 0%, rgba(22,22,22,0.9) 100%);
}
.model-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.model-card__count {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--merc);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.model-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.modellen__cta {
  text-align: center;
  margin-top: 64px;
  padding: 48px 24px;
  background: var(--carbon);
  border: 1px solid rgba(255,255,255,0.04);
}
.modellen__cta h2 {
  color: var(--white);
  font-size: clamp(22px,2.8vw,32px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modellen__cta p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 28px;
}
.modellen__cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Parts CTAs cleaner row === */
.parts__ctas-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.parts__ctas .btn {
  font-size: 11px;
  padding: 0 16px;
  height: 40px;
}
.parts__more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--merc);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: gap .2s, color .2s;
}
.parts__more-link:hover { gap: 10px; color: var(--white); }
.parts__more-link .icn { width: 14px; height: 14px; }

/* ====================================================================== */
/* === AMG2 — premium showcase page === */
/* ====================================================================== */

/* HERO */
.amg2-hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.amg2-hero__bg { position: absolute; inset: 0; z-index: 0; }
.amg2-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.amg2-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22,22,22,0.4) 0%, rgba(22,22,22,0.2) 40%, rgba(22,22,22,0.92) 100%),
    radial-gradient(60% 90% at 0% 100%, rgba(0,0,0,0.7), rgba(0,0,0,0) 60%);
}
.amg2-hero__inner { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; padding: 0 24px 96px; width: 100%; }
@media (min-width: 1024px) { .amg2-hero__inner { padding: 0 64px 128px; } }

.amg2-hero__eyebrow {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--merc);
  font-weight: 600; margin-bottom: 24px; text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.amg2-hero__title {
  display: flex; flex-direction: column; gap: 0;
  color: var(--white); font-weight: 800; line-height: 0.88;
  text-shadow: 0 6px 30px rgba(0,0,0,0.65);
}
.amg2-hero__title-a { font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.02em; opacity: 0.85; }
.amg2-hero__title-b { font-size: clamp(80px, 14vw, 200px); letter-spacing: -0.06em; line-height: 0.85; }
.amg2-hero__title-c { font-size: clamp(20px, 2.5vw, 32px); letter-spacing: -0.01em; font-weight: 400; opacity: 0.85; margin-top: 12px; }

.amg2-hero__intro {
  color: rgba(255,255,255,0.92); font-size: clamp(15px, 1.6vw, 18px);
  max-width: 600px; line-height: 1.7; margin-top: 28px; font-weight: 300;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.amg2-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.amg2-hero__count {
  position: absolute; top: 50%; right: 24px; transform: translateY(-50%);
  z-index: 1; text-align: right; pointer-events: none;
  display: none;
}
@media (min-width: 1024px) { .amg2-hero__count { display: block; right: 64px; } }
.amg2-hero__count-num {
  display: block;
  font-family: var(--font-display); font-size: 240px; font-weight: 800;
  line-height: 0.9; letter-spacing: -0.07em; color: var(--merc);
  opacity: 0.35; text-shadow: 0 8px 40px rgba(244,192,0,0.2);
}
.amg2-hero__count-label {
  display: block; font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--merc); font-weight: 600; margin-top: 8px;
}

/* STATEMENT */
.amg2-statement { padding: 96px 0; background: var(--carbon); }
.amg2-statement__grid {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 1024px) { .amg2-statement__grid { grid-template-columns: 1fr 1fr; gap: 80px; padding: 0 64px; } }
.amg2-statement__img { aspect-ratio: 4/3; overflow: hidden; }
.amg2-statement__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }
.amg2-statement__img:hover img { transform: scale(1.04); }
.amg2-statement__title {
  color: var(--white); font-size: clamp(32px, 4vw, 56px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 0.98; margin: 16px 0 24px;
  text-transform: uppercase;
}
.amg2-statement__body {
  color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.85; font-weight: 300;
}

/* PHOTO GRID */
.amg2-photogrid { padding: 96px 0; background: var(--night); }
.amg2-photogrid__title {
  color: var(--white); font-size: clamp(32px, 4vw, 56px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 0.98; margin-top: 12px; margin-bottom: 48px;
  text-transform: uppercase;
}
.amg2-photogrid__grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px;
}
@media (min-width: 768px) { .amg2-photogrid__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; } }
.amg2-photogrid__grid--2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .amg2-photogrid__grid--2 { grid-template-columns: 1fr 1fr; } }

.amg2-tile {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color .4s, transform .4s;
}
.amg2-tile--wide { aspect-ratio: 16/9; }
.amg2-tile:hover { border-color: rgba(244,192,0,0.4); transform: translateY(-4px); }
.amg2-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }
.amg2-tile:hover img { transform: scale(1.06); }
.amg2-tile__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,22,22,0.1) 0%, rgba(22,22,22,0.4) 50%, rgba(22,22,22,0.92) 100%);
}
.amg2-tile__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
}
.amg2-tile__eyebrow {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--merc);
  font-weight: 600; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.amg2-tile__title {
  color: var(--white); font-size: clamp(20px, 2.5vw, 30px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.05;
  text-shadow: 0 4px 18px rgba(0,0,0,0.7);
}

/* LINEUP */
.amg2-lineup { padding: 96px 0; background: var(--carbon); }
.amg2-lineup__head { margin-bottom: 48px; }
.amg2-lineup__title { color: var(--white); font-size: clamp(32px, 4vw, 56px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.98; text-transform: uppercase; margin-top: 12px; }
.amg2-lineup__sub { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 12px; }
.amg2-lineup__grid {}

/* FINAL CTA */
.amg2-finalcta { position: relative; padding: 120px 24px; overflow: hidden; text-align: center; }
.amg2-finalcta__bg { position: absolute; inset: 0; z-index: 0; }
.amg2-finalcta__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.amg2-finalcta__scrim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(22,22,22,0.65), rgba(22,22,22,0.95));
}
.amg2-finalcta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.amg2-finalcta__eyebrow {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--merc);
  font-weight: 600; margin-bottom: 16px;
}
.amg2-finalcta__title {
  color: var(--white); font-size: clamp(32px, 5vw, 56px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 0.98; text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.amg2-finalcta__title .merc { color: var(--merc); }
.amg2-finalcta__sub {
  color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.7; margin: 16px 0 32px;
}
.amg2-finalcta__ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* === Overname-specific hero fix: allow content to fit === */
.template-page-overname .amghero {
  height: auto !important;
  padding-top: 140px;
  padding-bottom: 96px;
}
.template-page-overname .amghero__inner {
  height: auto !important;
  padding-bottom: 0;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .template-page-overname .amghero { padding-top: 180px; padding-bottom: 128px; }
}

/* === AMG2 lineup tweaks for 1-2 cards layout === */
.amg2-lineup .amg2-lineup__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .amg2-lineup .amg2-lineup__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
/* If just 1 card, center it */
.amg2-lineup .amg2-lineup__grid > .reveal:only-child {
  max-width: 540px; justify-self: center;
}

/* Bigger cards on AMG lineup */
.amg2-lineup .card__img { aspect-ratio: 16/10; }
.amg2-lineup .card__name { font-size: 18px; white-space: normal; line-height: 1.2; }
.amg2-lineup .card__price { font-size: 24px; }

/* AMG count visible on mobile too — show big number above lineup */
.amg2-lineup__head { text-align: center; padding-bottom: 48px; }
.amg2-lineup__head .eyebrow-row { justify-content: center; }
.amg2-lineup__head .amg2-lineup__title { text-align: center; }
.amg2-lineup__head .amg2-lineup__sub { text-align: center; }

.amg2-stockbadge {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px auto 0;
  padding: 14px 28px;
  background: rgba(244,192,0,0.08);
  border: 1px solid rgba(244,192,0,0.3);
  border-radius: 4px;
}
.amg2-stockbadge__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--merc);
  line-height: 1;
}
.amg2-stockbadge__text {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

/* ==================================================================
   CLVS OVERRIDES — 2026-05-12 (clovis.deviaene@gmail.com)
   1) Brand "BV" suffix in footer
   2) Card badge (type auto, top-left of catalog cards) → yellow
   3) Global grey text → white + one size up
   4) Marge sticker / Car-Pass yellow underline link
   ================================================================== */

/* 1) Footer brand: BV suffix matches first word style */
.footer__brand .b3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-left: 4px;
}

/* 2) "Type auto" badge on catalog cards → yellow */
.card__badge {
  background: rgba(244,192,0,0.14);
  color: var(--merc);
  border: 1px solid rgba(244,192,0,0.55);
  font-weight: 700;
  font-size: 9px;
}

/* 3) Globale tekst-leesbaarheid — alle (half)grijze tekst krijgt
      hoge opacity + één stap groter waar het klein/dim was.
      Override-strategie: alle rgba-witte tekst met opacity < 0.85
      wordt opgetrokken naar 0.95–1, kleine fontsizes worden bumped. */
body,
.footer__tag,
.footer__contact,
.footer__contact a,
.footer__bottom,
.footer__bottom a,
.footer__disclaimer,
.footer__credit,
.contact-card__sub,
.contact-card__label,
.contact-info__address,
.contact-info__sub,
.contact-hours li,
.contact-hours li span,
.pdp2__price--ask,
.pdp2__warranty span,
.pdp2__qs dt,
.pdp2__qs dd,
.pdp2__spec dt,
.pdp2__spec dd,
.pdp2__trust-grid span,
.pdp2__back,
.card__year,
.card__cta,
.card__price--small,
.card__price,
.trust__label,
.trust__num span,
.featured__viewall,
.featured__hero-cat,
.featured__hero-meta,
.featured__hero-meta span,
.trio__label,
.trio__value,
.trio__sublabel,
.trio__sub,
.models__intro,
.models__chip-name,
.models__chip-num,
.oldtimer__text,
.why__text,
.why__num,
.parts__text,
.parts__more-link,
.amgband__text,
.ctabanner__sub,
.eyebrow-row .label,
.hero__intro,
.hero__subtitle,
.hero__eyebrow-row p,
.vfilter__field span,
.vfilter__count,
.empty-state p,
.modellen__cta p {
  color: rgba(255,255,255,0.96) !important;
}

/* Een stap groter waar het te klein was */
.footer__tag        { font-size: 14px !important; line-height: 1.7; }
.footer__contact    { font-size: 14px !important; }
.footer__h4         { font-size: 12px !important; color: var(--merc) !important; }
.footer__bottom     { font-size: 12px !important; letter-spacing: 0.06em; }
.footer__disclaimer { font-size: 12px !important; }
.footer__credit     { font-size: 12px !important; color: rgba(255,255,255,0.7) !important; }
.card__year         { font-size: 12px !important; }
.card__cta          { font-size: 12px !important; }
.card__name         { font-size: 14px !important; }
@media (min-width:640px){ .card__name { font-size: 15px !important; } }
.pdp2__warranty span { font-size: 14px !important; }
.pdp2__quickspecs dt,
.pdp2__spec dt      { font-size: 11px !important; color: var(--merc) !important; letter-spacing:.18em; }
.pdp2__quickspecs dd,
.pdp2__spec dd      { font-size: 16px !important; color: #ffffff !important; }
.eyebrow-row .label { font-size: 12px !important; color: var(--merc) !important; }
.trust__label       { font-size: 13px !important; }
.contact-card__sub  { font-size: 13px !important; }
.contact-hours li,
.contact-hours li span { font-size: 15px !important; }
.contact-info__address { font-size: 16px !important; }
.vfilter__field span { font-size: 12px !important; color: var(--merc) !important; letter-spacing:.16em; }
.vfilter__count     { font-size: 13px !important; }
.hero__intro        { font-size: clamp(15px, 1.6vw, 18px) !important; }

/* 4a) Marge sticker — product page + catalog card */
.pdp2__marge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--merc);
  color: var(--night);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 2px;
}
.card__marge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--merc);
  color: var(--night);
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}

/* 6) Header brand BV — B wit, V geel, B en V dicht tegen elkaar */
.brand .brand__bv { display: inline-flex; }
.brand .brand__bv-b,
.brand .brand__bv-v { letter-spacing: -0.04em; }

/* 7) Lang-switch (NL · EN · FR) op gelijke hoogte/baseline met de nav */
.nav-actions { align-items: center !important; }
.lang-switch,
.lang-switch__form {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1;
}
.lang-switch__btn,
.lang-switch .sep {
  font-size: 12.5px !important;
  letter-spacing: 0.18em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: rgba(255,255,255,0.85) !important;
}
.lang-switch__btn { font-weight: 600 !important; padding: 2px 6px !important; }
.lang-switch__btn.active { color: var(--merc) !important; opacity: 1 !important; }
.lang-switch .sep { color: rgba(255,255,255,0.35) !important; padding: 0 2px; }
/* Verbergen van het CSS-pseudo-separator die naast de echte <span class="sep"> stond */
.lang-switch__form button:not(:last-child)::after { content: none !important; }

/* 5) Desktop nav links — wit + groter (was rgba(.4) + 10px) */
.nav-desktop a {
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em;
  padding: 8px 12px !important;
}
.nav-desktop a:hover { color: var(--merc) !important; }
.nav-desktop a.active { color: var(--merc) !important; }
.nav-desktop a::after { left: 12px !important; }
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: calc(100% - 24px) !important; }

/* "Bekijk wagen" CTA — geel default, wit op hover (op cards en hero featured) */
.card__cta,
.featured__hero-cta {
  color: var(--merc) !important;
}
.card:hover .card__cta,
.featured__hero:hover .featured__hero-cta {
  color: var(--white) !important;
}

/* "Bel ons" button — compacter zodat hij niet wegvalt op smallere schermen */
.btn-call {
  padding: 0 14px !important;
  font-size: 11px !important;
  letter-spacing: 0.12em;
  height: 36px !important;
  flex-shrink: 0;
}
.header__inner { padding: 0 20px !important; }
@media (min-width: 1024px) { .header__inner { padding: 0 32px !important; } }
.nav-actions { gap: 10px !important; flex-shrink: 0; }
.lang-switch__btn,
.lang-switch .sep { font-size: 12px !important; }

/* 4b) Car-Pass yellow underline + link styling */
.pdp2__warranty a.pdp2__carpass-link {
  color: rgba(255,255,255,0.96);
  text-decoration: none;
  border-bottom: 2px solid var(--merc);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.pdp2__warranty a.pdp2__carpass-link:hover {
  color: var(--merc);
  border-bottom-color: var(--merc-dark);
}
.pdp2__carpass-block {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid rgba(244,192,0,0.35);
  background: rgba(244,192,0,0.06);
  border-radius: 4px;
}
.pdp2__carpass-block h3 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--merc);
  margin: 0 0 12px;
}
.pdp2__carpass-block a.pdp2__carpass-bottom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--merc);
  text-decoration: none;
  border-bottom: 2px solid var(--merc);
  padding-bottom: 2px;
  font-weight: 600;
}
.pdp2__carpass-block a.pdp2__carpass-bottom:hover {
  color: var(--merc-dark);
}
