@charset "UTF-8";
/* =============================================================
   Auto-Mobile BV — stylesheet
   Clean, white, Apple-inspired. Blue used sparingly as accent.
   ============================================================= */

/* ---------- Design tokens ---------------------------------- */
:root {
  --blue:        #0064d2;
  --blue-700:    #0a4fa3;
  --blue-300:    #4d9bf0;
  --blue-050:    #eef5fd;
  --blue-100:    #dbe9fb;

  --ink:         #14161c;
  --ink-2:       #3c4049;
  --muted:       #686d78;

  --bg:          #ffffff;
  --bg-soft:     #f5f6f8;
  --bg-soft-2:   #fbfbfd;

  --line:        #e7e8ec;
  --line-2:      #dde0e6;

  --ok:          #1c8a4d;
  --warn:        #b54708;

  --shadow-card:  0 1px 2px rgba(20,22,28,.04), 0 10px 28px rgba(20,22,28,.06);
  --shadow-hover: 0 6px 16px rgba(20,22,28,.09), 0 22px 48px rgba(20,22,28,.13);
  --shadow-pop:   0 12px 40px rgba(20,22,28,.16);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --maxw: 1180px;
  --gut:  clamp(20px, 5vw, 44px);

  --ease: cubic-bezier(.22,.61,.36,1);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "SF Pro Display",
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / base ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-700); }

button { font-family: inherit; cursor: pointer; }

ul { list-style: none; padding: 0; }

input, select, textarea { font-family: inherit; font-size: 16px; }

:focus-visible {
  outline: 3px solid rgba(10,100,210,.45);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Typography ------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 600; letter-spacing: -.022em; }

.h-hero  {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 1.7rem + 4.6vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
}
.h-1     { font-family: var(--font-display); font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.25rem); font-weight: 700; letter-spacing: -.032em; }
.h-2     { font-family: var(--font-display); font-size: clamp(1.45rem, 1.15rem + 1.1vw, 1.95rem); font-weight: 650; }
.h-3     { font-family: var(--font-display); font-size: 1.2rem; font-weight: 650; }

.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.32rem); color: var(--muted); line-height: 1.55; }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--blue);
  margin-bottom: 14px;
}

.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Layout ----------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.container-narrow { max-width: 880px; }

.section { padding-block: clamp(64px, 4rem + 4vw, 132px); }
.section-tight { padding-block: clamp(48px, 3rem + 3vw, 92px); }
.section-soft { background: var(--bg-soft); }
.section-soft-2 { background: var(--bg-soft-2); }

.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.left { margin-inline: 0; }
.section-head p { margin-top: 14px; }

.stack > * + * { margin-top: 1rem; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: .98rem; font-weight: 550;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .12s var(--ease),
              box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 26px rgba(10,100,210,.34); }

.btn-secondary { background: var(--bg-soft); color: var(--ink); border-color: var(--line-2); }
.btn-secondary:hover { background: #ececef; color: var(--ink); transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-card); }

.btn-ghost { background: transparent; color: var(--blue); padding-inline: 6px; }
.btn-ghost:hover { color: var(--blue-700); }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #f1f1f3; color: var(--ink); transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 26px rgba(20,22,28,.18); }

/* press feedback should win over the hover lift */
.btn-primary:active, .btn-secondary:active, .btn-white:active { transform: translateY(0) scale(.97); }

.btn-lg { padding: 16px 32px; font-size: 1.04rem; }
.btn-block { width: 100%; }

.btn-arrow::after { content: "\203A"; font-size: 1.25em; line-height: 0; transform: translateY(1px); }

.link-arrow { font-weight: 550; display: inline-flex; align-items: center; gap: 5px; }
.link-arrow::after { content: "\203A"; font-size: 1.2em; transition: transform .18s var(--ease); }
.link-arrow:hover::after { transform: translateX(3px); }

.btn-arrow::after { transition: transform .18s var(--ease); }
.btn-arrow:hover::after { transform: translate(3px, 1px); }

/* ---------- Micro-interactions (hover) --------------------- */
/* feature cards lift gently and cast a soft shadow when pointed at */
.value-card, .step, .review-card, .rating-pill {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.value-card:hover, .review-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: transparent;
}
.rating-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.step:hover { transform: translateY(-3px); }

/* icons "pop" along with their card / row */
.value-card .ic, .step .num, .info-row .ic { transition: transform .25s var(--ease); }
.value-card:hover .ic { transform: scale(1.08) rotate(-3deg); }
.step:hover .num { transform: scale(1.08); }
.info-row:hover .ic { transform: scale(1.06); }

/* list + footer links nudge sideways */
.footer-col a { display: inline-block; transition: transform .15s var(--ease), color .15s var(--ease); }
.footer-col a:hover { transform: translateX(3px); }

.footer-social a { transition: color .15s var(--ease), border-color .15s var(--ease), transform .15s var(--ease); }
.footer-social a:hover { transform: translateY(-2px); }

/* back-link arrow slides back */
.back-link::before { display: inline-block; transition: transform .18s var(--ease); }
.back-link:hover { color: var(--blue); }
.back-link:hover::before { transform: translateX(-3px); }

/* ---------- Header / navigation ---------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(20,22,28,.06);
  box-shadow: 0 6px 24px rgba(20,22,28,.05);
}
.nav {
  display: flex; align-items: center; gap: 18px;
  height: 66px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; }
.footer-brand .logo-img { height: 48px; }
@media (max-width: 480px) { .logo-img { height: 34px; } }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  color: var(--ink-2); font-weight: 600; font-size: .98rem;
  padding: 8px 6px; margin-inline: 9px;
  transition: color .15s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: 0;
  height: 2px; border-radius: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: center; opacity: 0;
  transition: transform .24s var(--ease), opacity .24s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); opacity: 1; }
.nav-links a.active { color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* language switcher */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--line-2);
  border-radius: var(--r-pill); padding: 8px 12px;
  color: var(--ink-2); font-weight: 550; font-size: .9rem;
}
.lang-btn:hover { background: var(--bg-soft); }
.lang-btn svg { width: 16px; height: 16px; }
.lang-btn .chev { transition: transform .2s var(--ease); }
.lang[aria-expanded="true"] .chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-sm); box-shadow: var(--shadow-pop);
  padding: 6px; min-width: 168px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
.lang[aria-expanded="true"] .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: transparent; border: 0; border-radius: 7px;
  padding: 9px 11px; font-size: .94rem; color: var(--ink); text-align: left;
}
.lang-menu button:hover { background: var(--bg-soft); }
.lang-menu button[aria-current="true"] { color: var(--blue); font-weight: 600; }
.lang-menu button .flag { font-size: 1.05rem; }
.lang-menu button .tick { margin-left: auto; color: var(--blue); opacity: 0; }
.lang-menu button[aria-current="true"] .tick { opacity: 1; }

/* mobile menu */
.menu-toggle {
  display: none;
  width: 44px; height: 44px; border: 1px solid var(--line-2);
  border-radius: var(--r-pill); background: #fff;
  align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; display: block; width: 17px; height: 1.6px;
  background: var(--ink); border-radius: 2px;
  transition: transform .22s var(--ease), opacity .15s var(--ease);
}
.menu-toggle span::before { transform: translateY(-5.5px); }
.menu-toggle span::after  { transform: translateY(4px); }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { transform: rotate(45deg); }
body.menu-open .menu-toggle span::after  { transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 66px 0 0; z-index: 190;
  background: rgba(255,255,255,.98);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 28px var(--gut) 40px;
  flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a.m-link {
  font-size: 1.5rem; font-weight: 600; letter-spacing: -.02em;
  color: var(--ink); padding: 14px 4px; border-bottom: 1px solid var(--line);
}
.mobile-menu a.m-link.active { color: var(--blue); }
.mobile-menu .m-cta { margin-top: 22px; }
.m-lang { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }
.m-lang button {
  border: 1px solid var(--line-2); background: #fff; border-radius: var(--r-pill);
  padding: 9px 16px; font-weight: 550; color: var(--ink-2);
}
.m-lang button[aria-current="true"] { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ---------- Footer ----------------------------------------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; gap: 40px 48px;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  padding-block: clamp(48px, 6vw, 76px);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: .95rem; max-width: 30ch; }
.footer-col h4 {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { color: var(--ink-2); font-size: .96rem; }
.footer-col a:hover { color: var(--blue); }
.footer-hours { display: flex; flex-direction: column; gap: 7px; font-size: .92rem; color: var(--ink-2); }
.footer-hours .row { display: flex; justify-content: space-between; gap: 16px; }
.footer-hours .row.today { color: var(--ink); font-weight: 600; }
.footer-follow { margin-top: 22px; }
.footer-follow h4 {
  font-size: .92rem; font-weight: 600; color: var(--ink);
  margin: 0 0 10px; letter-spacing: .01em;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--r-pill);
  border: 1px solid var(--line-2); background: #fff;
  display: grid; place-items: center; color: var(--ink-2);
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.footer-social a:hover { color: var(--blue); border-color: var(--blue-300); }
.footer-social a[aria-disabled="true"] { cursor: default; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 24px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .86rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }

/* ---------- Hero ------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(560px, 84vh, 800px);
  display: flex; align-items: flex-end;
  padding-block: clamp(120px, 18vh, 200px) clamp(60px, 8vh, 100px);
  color: #fff;
  background-color: #0c1118;
  margin-top: -1px; /* sit flush under sticky header */
}
.hero::before {
  /* the photo (dark fallback if file missing) */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url("../afbeeldingen/hero.jpg");
  background-size: cover; background-position: center 42%;
  filter: contrast(1.05) saturate(1.06) brightness(.76);
}
.hero::after {
  /* cinematic gradient + soft vignette */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(140% 105% at 50% 100%, rgba(6,10,18,.5) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(6,10,18,.18) 0%, rgba(6,10,18,.42) 44%, rgba(6,10,18,.8) 74%, rgba(6,10,18,.96) 100%);
}
.hero > .container { position: relative; z-index: 2; }
.hero-inner { max-width: 980px; margin-inline: auto; text-align: center; }
.hero .eyebrow {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,.28);
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 1px 2px rgba(0,0,0,.45), 0 6px 34px rgba(0,0,0,.6);
}
.hero h1::after {
  content: "";
  display: block;
  width: 72px; height: 4px;
  margin: 18px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #1f8cf0, #4d9bf0);
  -webkit-text-fill-color: initial;
}
.hero .lead { color: rgba(255,255,255,.95); max-width: 620px; margin-inline: auto; text-shadow: 0 1px 12px rgba(0,0,0,.55); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

.hero-badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 34px;
}
.hero-badge {
  display: flex; align-items: center; gap: 9px;
  font-size: .9rem; font-weight: 500; color: #fff;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero-badge svg { width: 18px; height: 18px; color: #fff; flex: none; }
.hero-badge b { font-weight: 700; color: #fff; }
.hero-badge:first-child {
  background: rgba(245,166,35,.18);
  border-color: rgba(245,166,35,.55);
}
.hero-badge:first-child svg { color: #ffc23d; }

/* ---------- Trust strip ------------------------------------ */
.trust-strip { border-block: 1px solid var(--line); background: var(--bg-soft-2); }
.trust-strip .container {
  display: flex; flex-wrap: wrap; gap: 16px 0;
  padding-block: 26px;
}
.trust-item {
  flex: 1 1 200px; text-align: center;
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item .big { font-size: 1.75rem; font-weight: 700; letter-spacing: -.02em; }
.trust-item .big .star { color: #f5a623; }
.trust-item .big .rating-suffix { color: var(--muted); font-weight: 500; font-size: .8em; }
.trust-item .small { font-size: .86rem; color: var(--muted); }

/* ---------- Generic cards / grids -------------------------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px;
}

.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.value-card .ic {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--blue-050); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 18px;
}
.value-card .ic svg { width: 25px; height: 25px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .96rem; }

/* steps */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(3,1fr); }
.step { position: relative; padding-top: 8px; }
.step .num {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff; font-weight: 600;
  display: grid; place-items: center; margin-bottom: 18px; font-size: 1.05rem;
}
.step h3 { margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Car cards / inventory grid --------------------- */
.car-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }

.car-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: transparent; color: inherit; }
.car-media { position: relative; aspect-ratio: 16 / 10; background: var(--bg-soft); overflow: hidden; }
.car-media img { width: 100%; height: 100%; object-fit: cover; }
.car-card:hover .car-media img { transform: scale(1.035); }
.car-media img { transition: transform .4s var(--ease); }
.car-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.94); color: var(--ink);
  font-size: .76rem; font-weight: 600; letter-spacing: .01em;
  padding: 6px 11px; border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.car-tag.sold { background: var(--ink); color: #fff; }
.car-tag.featured { background: var(--blue); color: #fff; }
.car-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.car-title { font-size: 1.12rem; font-weight: 600; letter-spacing: -.02em; }
.car-sub { color: var(--muted); font-size: .9rem; margin-top: 2px; }
.car-specs {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 15px;
}
.car-specs .chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-soft); border-radius: var(--r-pill);
  padding: 6px 11px; font-size: .82rem; color: var(--ink-2);
}
.car-specs .chip svg { width: 14px; height: 14px; color: var(--muted); }
.car-foot {
  margin-top: auto; padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.car-price { font-size: 1.32rem; font-weight: 650; letter-spacing: -.02em; }
.car-price small { display: block; font-size: .72rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.car-foot .link-arrow { font-size: .92rem; }

/* ---------- Filters ---------------------------------------- */
.inv-layout { display: grid; grid-template-columns: 282px 1fr; gap: 34px; align-items: start; }

.filters {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px;
  position: sticky; top: 86px;
}
.filters-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.filters-head h3 { font-size: 1.05rem; }
.filter-reset { background: 0; border: 0; color: var(--blue); font-size: .86rem; font-weight: 550; padding: 4px; }
.filter-group { padding-block: 16px; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border-bottom: 0; padding-bottom: 4px; }
.filter-group > label {
  display: block; font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted); margin-bottom: 9px;
}

.field-input, select.field-input, textarea.field-input {
  width: 100%; background: var(--bg-soft);
  border: 1px solid transparent; border-radius: var(--r-sm);
  padding: 12px 13px; color: var(--ink);
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.field-input:focus, select.field-input:focus, textarea.field-input:focus {
  outline: 0; background: #fff; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10,100,210,.13);
}
select.field-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23686d78' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 34px;
}
.search-wrap { position: relative; }
.search-wrap svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--muted);
}
.search-wrap .field-input { padding-left: 36px; }

.inv-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 22px;
}
.inv-count { color: var(--muted); font-size: .96rem; }
.inv-count b { color: var(--ink); font-weight: 600; }
.inv-sort { display: flex; align-items: center; gap: 9px; }
.inv-sort label { font-size: .9rem; color: var(--muted); }
.inv-sort select { min-width: 190px; }

.filter-toggle { display: none; }

/* empty state */
.empty {
  text-align: center; padding: 70px 20px;
  border: 1px dashed var(--line-2); border-radius: var(--r-lg);
}
.empty .ic {
  width: 58px; height: 58px; border-radius: var(--r-pill);
  background: var(--bg-soft); color: var(--muted);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.empty h3 { margin-bottom: 6px; }
.empty p { color: var(--muted); }

/* ---------- Page header (sub-pages) ------------------------ */
.page-head { padding-block: clamp(40px, 5vw, 76px) clamp(28px, 3vw, 44px); }
.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: .94rem; font-weight: 550; }
.back-link::before { content: "\2039"; font-size: 1.3em; line-height: 0; }

/* ---------- Car detail ------------------------------------- */
.detail-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: start; }

.gallery-main {
  position: relative;
  aspect-ratio: 16 / 10; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main.zoomable { cursor: zoom-in; }
.gallery-main.zoomable::after {
  content: "";
  position: absolute; right: 12px; bottom: 12px;
  width: 38px; height: 38px; border-radius: var(--r-pill);
  background: rgba(8,12,20,.55)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M15 3h6v6'/><path d='M9 21H3v-6'/><path d='M21 3l-7 7'/><path d='M3 21l7-7'/></svg>")
    center / 18px no-repeat;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  pointer-events: none;
}
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 92px; aspect-ratio: 16/10; border-radius: var(--r-sm);
  overflow: hidden; border: 2px solid var(--line); background: var(--bg-soft); padding: 0;
}
.gallery-thumbs button.active { border-color: var(--blue); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.detail-aside {
  position: sticky; top: 86px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
}
.detail-aside .price { font-size: 2rem; font-weight: 700; letter-spacing: -.03em; }
.detail-aside .price small { display:block; font-size:.8rem; font-weight:500; color:var(--muted); }
.detail-aside .btn { margin-top: 6px; }
.detail-contact-line {
  display: flex; align-items: center; gap: 9px;
  margin-top: 16px; font-size: .94rem; color: var(--ink-2);
}
.detail-contact-line svg { width: 17px; height: 17px; color: var(--blue); }

.spec-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
}
.spec-grid .cell { background: #fff; padding: 16px 18px; }
.spec-grid .cell.cell-wide { grid-column: 1 / -1; }
.spec-grid .k { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.spec-grid .k svg { width: 15px; height: 15px; }
.spec-grid .v { font-size: 1.04rem; font-weight: 600; margin-top: 4px; }

.opt-list { columns: 2; column-gap: 30px; }
.opt-list li {
  break-inside: avoid; padding: 8px 0 8px 26px; position: relative;
  border-bottom: 1px solid var(--line); font-size: .96rem;
}
.opt-list li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-050)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230064d2' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center / 11px no-repeat;
}

.detail-main > * + * { margin-top: 40px; }
.detail-head .h-1 { margin-bottom: 8px; }
.detail-section h2 { margin-bottom: 18px; }
.aside-quick { margin: 22px 0; }
.aside-quick .row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .94rem;
}
.aside-quick .row:first-child { border-top: 1px solid var(--line); }
.aside-quick .row .k { color: var(--muted); }
.aside-quick .row .v { font-weight: 600; text-align: right; }
.aside-actions { display: flex; flex-direction: column; gap: 10px; }
.sold-banner {
  display: flex; gap: 10px; align-items: flex-start;
  background: #fdecea; color: #a3231a;
  border-radius: var(--r); padding: 14px 16px;
  font-size: .92rem; margin-bottom: 20px;
}
.sold-banner svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }

/* ---------- Reviews ---------------------------------------- */
.rating-summary {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 40px;
}
.rating-pill {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 14px 20px;
}
.rating-pill .score { font-size: 1.7rem; font-weight: 700; letter-spacing: -.03em; }
.rating-pill .meta { font-size: .85rem; color: var(--muted); }
.rating-pill .meta b { display: block; color: var(--ink); font-size: .95rem; font-weight: 600; }

.stars { display: inline-flex; gap: 1px; color: #f5a623; }
.stars svg { width: 16px; height: 16px; }

.review-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-card .stars { margin-bottom: 2px; }
.review-text { font-size: 1.02rem; line-height: 1.55; }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 42px; height: 42px; border-radius: var(--r-pill);
  background: var(--blue-050); color: var(--blue);
  display: grid; place-items: center; font-weight: 650; font-size: 1rem; flex: none;
}
.review-who b { font-weight: 600; font-size: .95rem; }
.review-who span { display: block; font-size: .82rem; color: var(--muted); }

/* ---------- Stats ------------------------------------------ */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(2.2rem, 1.6rem + 1.6vw, 3rem); font-weight: 700; letter-spacing: -.03em; color: var(--blue); }
.stat .label { color: var(--muted); font-size: .94rem; margin-top: 2px; }

/* ---------- About ------------------------------------------ */
.about-portrait {
  background: linear-gradient(150deg, var(--blue-050), #fff);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  aspect-ratio: 4 / 5; display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.about-portrait .mono {
  font-size: clamp(5rem, 14vw, 9rem); font-weight: 700;
  color: var(--blue); letter-spacing: -.04em; opacity: .9;
}
.about-portrait .cap {
  position: absolute; bottom: 18px; left: 0; right: 0; text-align: center;
  font-size: .84rem; color: var(--muted);
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.prose p + p { margin-top: 1rem; }
.prose p { color: var(--ink-2); }

.recognized {
  background: linear-gradient(150deg, var(--blue-050), #fff);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.recognized .lead { max-width: 640px; margin-inline: auto; margin-top: 8px; }
.recognized-links {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 28px;
}

/* ---------- CTA band --------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, #0a4fa3, #0064d2 55%, #1f8cf0);
  color: #fff; border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; width: 420px; height: 420px;
  right: -120px; top: -160px; border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 540px; margin: 14px auto 28px; }
.cta-band .btn-white { position: relative; }

/* ---------- Contact ---------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: start; }

.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.info-row { display: flex; gap: 15px; padding-block: 18px; border-bottom: 1px solid var(--line); }
.info-row:first-of-type { padding-top: 4px; }
.info-row:last-of-type { border-bottom: 0; padding-bottom: 4px; }
.info-row .ic {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  background: var(--blue-050); color: var(--blue);
  display: grid; place-items: center;
}
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .lbl { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.info-row .val { font-weight: 550; margin-top: 2px; }
.info-row .val a { color: var(--ink); }
.info-row .val a:hover { color: var(--blue); }
.appt-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--blue-050); border-radius: var(--r);
  padding: 14px 16px; margin-top: 20px; font-size: .92rem; color: var(--blue-700);
}
.appt-note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

.social-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 26px; margin-top: 18px;
}
.social-card h3 { margin: 0 0 6px; }
.social-card p { margin: 0 0 14px; font-size: .94rem; }
.social-card .footer-social { margin-top: 0; }

.hours-list { margin-top: 6px; }
.hours-list .row { display: flex; justify-content: space-between; padding: 5px 0; font-size: .92rem; }
.hours-list .row.today { font-weight: 650; }
.hours-list .row .closed { color: var(--muted); }

.map-embed {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; margin-top: 24px;
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }
.map-open {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: flex-end; padding: 14px;
}
.map-open .pin {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--ink); font-weight: 550; font-size: .85rem;
  padding: 9px 14px; border-radius: var(--r-pill); box-shadow: var(--shadow-card);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.map-open .pin svg { width: 15px; height: 15px; }
.map-open:hover .pin { background: var(--blue); color: #fff; }
.map-placeholder {
  min-height: 320px; background: var(--bg-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 32px 24px;
}
.map-placeholder .mp-ic {
  width: 52px; height: 52px; border-radius: var(--r-pill);
  background: var(--blue-050); color: var(--blue); display: grid; place-items: center;
}
.map-placeholder .mp-ic svg { width: 25px; height: 25px; }
.map-placeholder p { color: var(--muted); font-size: .9rem; max-width: 340px; }

/* ---------- Cookie consent banner -------------------------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 260;
  display: flex; justify-content: center; padding: 0 16px 16px;
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-pop);
  max-width: 780px; width: 100%; padding: 20px 24px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.cookie-card .ck-text { flex: 1; min-width: 250px; }
.cookie-card .ck-text h4 { font-size: 1.04rem; margin-bottom: 4px; }
.cookie-card .ck-text p { font-size: .9rem; color: var(--muted); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-link {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--muted); font-size: .86rem; font-family: inherit;
  text-decoration: none;
}
.cookie-link:hover { color: var(--blue); }
.cookie-more {
  display: inline-block; margin-top: 6px; font-size: .85rem;
  font-weight: 550; color: var(--blue);
}
.cookie-more:hover { color: var(--blue-700); }

/* ---------- Long-form prose (policy pages) ---------------- */
.prose h2 { margin-top: 2.2rem; font-size: 1.4rem; letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4rem; font-size: 1.08rem; }
.prose ul { padding-left: 1.25rem; margin-top: .55rem; }
.prose ul li { list-style: disc; margin: .35rem 0; color: var(--ink-2); }
.prose ul li b { color: var(--ink); }
.prose a { color: var(--blue); }
.prose a:hover { color: var(--blue-700); }
.prose code {
  background: var(--bg-soft); padding: 1px 6px; border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86em; color: var(--ink-2);
}
@media (max-width: 560px) {
  .cookie-card { padding: 18px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

.status-line { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; }
.status-line .dot { width: 9px; height: 9px; border-radius: 50%; background: #c0c2c8; flex: none; }
.status-line.is-open { color: var(--ok); }
.status-line.is-open .dot { background: var(--ok); box-shadow: 0 0 0 3px rgba(28,138,77,.16); }
.status-line.is-closed { color: var(--muted); }

/* ---------- Forms ------------------------------------------ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.col-2 { grid-column: span 2; }
.field label { font-size: .9rem; font-weight: 550; }
.field label .req { color: var(--blue); }
.field .hint { font-size: .8rem; color: var(--muted); }
textarea.field-input { resize: vertical; min-height: 120px; }

.check {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .89rem; color: var(--muted); grid-column: span 2;
}
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex: none; }

.form-alert {
  display: none; gap: 12px; align-items: flex-start;
  border-radius: var(--r); padding: 16px 18px; margin-bottom: 20px;
}
.form-alert.show { display: flex; }
.form-alert.ok { background: #e8f6ee; color: #136c3a; }
.form-alert.err { background: #fdecea; color: #a3231a; }
.form-alert svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.form-alert b { display: block; margin-bottom: 2px; }

.field-input.invalid { border-color: #d6443a; box-shadow: 0 0 0 4px rgba(214,68,58,.12); }
.field-error { font-size: .8rem; color: #a3231a; font-weight: 500; }
.field-error:empty { display: none; }

/* ---------- Admin ------------------------------------------ */
.admin-wrap { max-width: 980px; margin-inline: auto; }
.admin-login { max-width: 420px; margin: 8vh auto; }
.admin-login .card { padding: 36px; }
.admin-login .ic {
  width: 54px; height: 54px; border-radius: 16px; margin: 0 auto 18px;
  background: var(--blue-050); color: var(--blue); display: grid; place-items: center;
}
.admin-login .ic svg { width: 26px; height: 26px; }

.admin-bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; margin-bottom: 26px;
}
.admin-bar h1 { font-size: 1.6rem; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-tip {
  display: flex; gap: 11px; background: var(--blue-050); color: var(--blue-700);
  border-radius: var(--r); padding: 14px 16px; font-size: .9rem; margin-bottom: 22px;
}
.admin-tip svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }

.admin-row {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 12px; margin-bottom: 10px;
}
.admin-row .thumb {
  width: 92px; height: 60px; border-radius: 9px; flex: none;
  background: var(--bg-soft); object-fit: cover;
}
.admin-row .info { flex: 1; min-width: 0; }
.admin-row .info b { font-weight: 600; }
.admin-row .info span { display: block; font-size: .85rem; color: var(--muted); }
.admin-row .st {
  font-size: .74rem; font-weight: 600; padding: 4px 9px; border-radius: var(--r-pill);
}
.admin-row .st.available { background: #e8f6ee; color: #136c3a; }
.admin-row .st.sold { background: #f1f1f3; color: var(--muted); }
.admin-row .row-actions { display: flex; gap: 6px; }
.btn-icon {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-2);
  background: #fff; display: grid; place-items: center; color: var(--ink-2);
}
.btn-icon:hover { background: var(--bg-soft); color: var(--ink); }
.btn-icon.danger:hover { background: #fdecea; color: #a3231a; border-color: #f3c2bd; }
.btn-icon svg { width: 17px; height: 17px; }

.admin-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.admin-form h2 { margin-bottom: 4px; }
.admin-form .sub { color: var(--muted); font-size: .94rem; margin-bottom: 24px; }
.fieldset-title {
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); margin: 26px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.lang-tabs { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.lang-tabs button {
  border: 1px solid var(--line-2); background: #fff; color: var(--ink-2);
  border-radius: var(--r-pill); padding: 7px 14px; font-size: .86rem; font-weight: 550;
}
.lang-tabs button.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.modal-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(20,22,28,.5);
  display: none; padding: 4vh 16px; overflow-y: auto;
}
.modal-overlay.show { display: block; }
.modal {
  max-width: 720px; margin-inline: auto; background: #fff;
  border-radius: var(--r-lg); padding: 0;
}
.modal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff; border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.modal-body { padding: 26px; }
.modal-foot {
  display: flex; justify-content: flex-end; gap: 10px;
  padding: 18px 26px; border-top: 1px solid var(--line);
  position: sticky; bottom: 0; background: #fff;
}
.photo-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.photo-item {
  display: flex; gap: 9px; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 11px; padding: 7px 8px;
}
.photo-item.dragging { opacity: .4; }
.photo-item.drop-before { box-shadow: inset 0 3px 0 -1px var(--blue); }
.photo-item.drop-after { box-shadow: inset 0 -3px 0 -1px var(--blue); }
.photo-item img {
  width: 64px; height: 42px; object-fit: cover; border-radius: 7px;
  background: #fff; cursor: grab; flex: none;
}
.photo-item img:active { cursor: grabbing; }
.photo-item .field-input { flex: 1; min-width: 0; }
.pi-main {
  flex: none; font-size: .63rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: #fff; background: var(--blue);
  padding: 4px 8px; border-radius: 6px; white-space: nowrap;
}
.pi-moves { display: flex; gap: 3px; flex: none; }
.pi-btn {
  width: 31px; height: 31px; border-radius: 8px;
  border: 1px solid var(--line-2); background: #fff;
  display: grid; place-items: center; color: var(--ink-2);
}
.pi-btn:hover:not(:disabled) { color: var(--ink); border-color: var(--ink-2); }
.pi-btn:disabled { opacity: .3; cursor: default; }
.pi-btn.danger:hover:not(:disabled) { background: #fdecea; color: #a3231a; border-color: #f3c2bd; }
.pi-btn svg { width: 15px; height: 15px; }
.photo-hint { font-size: .82rem; color: var(--muted); margin-top: 8px; }

.toast {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: var(--r-pill);
  font-size: .92rem; box-shadow: var(--shadow-pop); opacity: 0; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease); z-index: 400;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Curator signature ("Kurt") ----------------------
   Het signature-element van de site: de zaakvoerder tekent
   persoonlijk voor elke wagen. Caveat wordt ALLEEN hier gebruikt. */
.curator-sign {
  font-family: "Caveat", "Bradley Hand", "Segoe Script", cursive;
  font-size: 1.9rem; line-height: 1; font-weight: 600;
  color: var(--ink);
  display: inline-block; transform: rotate(-2deg);
  flex: none;
}
.curator-note {
  display: flex; align-items: center; gap: 14px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.curator-note p { font-size: .88rem; color: var(--muted); margin: 0; }
.curator-line {
  text-align: center; margin-top: clamp(32px, 4vw, 48px);
  font-size: 1.06rem; color: var(--ink-2);
}
.curator-line .curator-sign { font-size: 1.8rem; margin-left: 12px; vertical-align: -5px; }
.curator-note-about { border-top: 0; padding-top: 0; margin-top: 28px; }
.curator-note-about .curator-sign { font-size: 2.4rem; }
.portrait-img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Reveal animation ------------------------------- */
.has-js [data-reveal] { opacity: 0; transform: translateY(22px); }
.has-js [data-reveal].reveal-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.has-js [data-reveal][data-delay="1"].reveal-in { transition-delay: .08s; }
.has-js [data-reveal][data-delay="2"].reveal-in { transition-delay: .16s; }
.has-js [data-reveal][data-delay="3"].reveal-in { transition-delay: .24s; }
.has-js [data-reveal][data-delay="4"].reveal-in { transition-delay: .32s; }
.has-js [data-reveal][data-delay="5"].reveal-in { transition-delay: .40s; }

/* directional / scale reveal variants — used for a bit of variety */
.has-js [data-reveal="left"]  { transform: translateX(-30px); }
.has-js [data-reveal="right"] { transform: translateX(30px); }
.has-js [data-reveal="scale"] { transform: scale(.94); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .has-js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Utilities -------------------------------------- */
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 500;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Power kW/pk pair (admin) ---------------------- */
.power-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pp-input { position: relative; }
.pp-input input { padding-right: 38px; }
.pp-input .pp-unit {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: .85rem; font-weight: 600; pointer-events: none;
}

/* ---------- Fuel combo chip (hybrid) ---------------------- */
.car-specs .chip .fuel-combo { display: inline-flex; align-items: center; gap: 2px; }
.car-specs .chip .fuel-combo svg { width: 13px; height: 13px; }
.car-specs .chip .fuel-sep { color: var(--muted); font-weight: 600; margin: 0 1px; line-height: 1; }

/* ---------- Lightbox ---------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(8, 12, 20, .94);
  display: none; align-items: center; justify-content: center;
  padding: 12px;
}
.lightbox.show { display: flex; }
.lb-img {
  width: 96vw; height: 94vh; object-fit: contain;
  border-radius: 6px; user-select: none; -webkit-user-drag: none;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.lb-btn {
  position: absolute; background: rgba(255,255,255,.14); color: #fff;
  border: 0; border-radius: var(--r-pill); width: 48px; height: 48px;
  display: grid; place-items: center; cursor: pointer;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background .15s var(--ease);
}
.lb-btn:hover { background: rgba(255,255,255,.26); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 22px; right: 24px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.88); font-size: .9rem; font-weight: 550;
  padding: 7px 14px; background: rgba(8,12,20,.6); border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
@media (max-width: 560px) {
  .lightbox { padding: 6px; }
  .lb-img { width: 100vw; height: 92vh; }
  .lb-btn { width: 42px; height: 42px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; }
  .lb-counter { bottom: 14px; }
}

/* ---------- Responsive ------------------------------------- */
@media (max-width: 1024px) {
  .inv-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .filter-toggle {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    width: 100%; padding: 13px; border: 1px solid var(--line-2);
    background: #fff; border-radius: var(--r-sm); font-weight: 550; margin-bottom: 16px;
  }
  .filter-toggle svg { width: 17px; height: 17px; }
  .filters.collapsed { display: none; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions .lang, .nav-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .grid-3, .grid-4, .car-grid, .steps, .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .about-portrait { aspect-ratio: 16 / 11; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .car-grid, .steps, .stat-grid, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.col-2, .check { grid-column: span 1; }
  .spec-grid { grid-template-columns: 1fr; }
  .opt-list { columns: 1; }
  .hero-cta .btn { width: 100%; }
  .trust-item { flex-basis: 50%; border-right: 0; }
  .inv-sort { width: 100%; }
  .inv-sort select { flex: 1; }
  .car-grid { gap: 20px; }
  .footer-bottom { justify-content: flex-start; }
}
