/* =========================================================
   GEBRAUCHTWAGENCENTER BEKOND — Premium Stylesheet
   Black · Silver · White — no blues
   ========================================================= */

/* RESET & TOKENS
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  /* Palette */
  --c-bg: #0a0a0a;
  --c-bg-2: #111111;
  --c-bg-3: #161616;
  --c-ink: #ffffff;
  --c-ink-2: #e6e6e6;
  --c-ink-3: #b0b0b0;
  --c-ink-4: #7a7a7a;
  --c-line: rgba(255, 255, 255, 0.08);
  --c-line-strong: rgba(255, 255, 255, 0.18);
  --c-silver-1: #f6f6f6;
  --c-silver-2: #c8c8c8;
  --c-silver-3: #9a9a9a;
  --c-silver-4: #5a5a5a;
  --c-accent: #ffffff;

  /* Gradients */
  --grad-silver: linear-gradient(180deg, #ffffff 0%, #d4d4d4 45%, #8d8d8d 100%);
  --grad-silver-h: linear-gradient(90deg, #ffffff 0%, #b8b8b8 50%, #6a6a6a 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.06) 100%);

  /* Typography */
  --ff-display: 'Playfair Display', 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Sizes */
  --container: 1280px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-xl: 40px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

html, body {
  background: var(--c-bg);
  color: var(--c-ink-2);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100%;
}

body {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(255,255,255,0.03), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: rgba(255,255,255,0.18); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 10px;
  border: 2px solid #050505;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #555, #333); }

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

/* =========================================================
   BACKGROUND STAGE — rotating logo + glassmorphism
   ========================================================= */
.bg-stage {
  position: fixed; inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-noise {
  position: absolute; inset: -200px;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.04) 0px, transparent 2px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.04) 0px, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.025) 0px, transparent 2px);
  background-size: 12px 12px, 18px 18px, 8px 8px;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, transparent 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  mix-blend-mode: screen;
}
.bg-orb--a {
  top: -10%; left: -10%;
  width: 50vmax; height: 50vmax;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  animation: orb-float-a 22s var(--ease) infinite alternate;
}
.bg-orb--b {
  bottom: -20%; right: -10%;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(220,220,220,0.12) 0%, transparent 70%);
  animation: orb-float-b 28s var(--ease) infinite alternate;
}
.bg-orb--c {
  top: 40%; right: 30%;
  width: 30vmax; height: 30vmax;
  background: radial-gradient(circle, rgba(200,200,200,0.08) 0%, transparent 70%);
  animation: orb-float-c 18s var(--ease) infinite alternate;
}

@keyframes orb-float-a {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(8vw, 6vh, 0) scale(1.15); }
}
@keyframes orb-float-b {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-10vw, -8vh, 0) scale(1.2); }
}
@keyframes orb-float-c {
  0% { transform: translate3d(0,0,0) scale(0.9); }
  100% { transform: translate3d(-6vw, 4vh, 0) scale(1.1); }
}

.bg-logo-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120vmin; height: 120vmin;
  pointer-events: none;
  filter:
    drop-shadow(0 0 80px rgba(255,255,255,0.10))
    drop-shadow(0 0 160px rgba(255,255,255,0.06))
    drop-shadow(0 0 300px rgba(255,255,255,0.04));
}
.bg-logo-spin {
  width: 100%; height: 100%;
  animation: logo-rotate 120s linear infinite;
  will-change: transform;
  display: grid;
  place-items: center;
}
.bg-logo {
  width: 100%; height: 100%;
  opacity: 0.15;
  /* Invert black line-art into silver/white for dark background */
  filter: invert(1) brightness(1.1) contrast(0.95) blur(0.4px);
  mix-blend-mode: screen;
}

@keyframes logo-rotate {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.03); }
  50% { transform: rotate(180deg) scale(1.01); }
  75% { transform: rotate(270deg) scale(1.03); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Additional glow halo behind the logo */
.bg-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: logo-pulse 8s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 40% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 40% at 50% 30%, black 30%, transparent 80%);
}

.bg-scanline {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 49.5%, rgba(255,255,255,0.02) 50%, transparent 50.5%, transparent 100%);
  background-size: 100% 6px;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.cursor-glow.is-active { opacity: 1; }

@media (hover: none) {
  .cursor-glow { display: none; }
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.6s var(--ease);
  padding: 18px 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: var(--radius-xl);
  position: relative;
}

.nav.is-scrolled {
  padding: 10px 0;
}
.nav.is-scrolled .nav-inner {
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--c-line);
  padding: 12px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 30px 60px -20px rgba(0,0,0,0.5),
    0 0 80px rgba(0,0,0,0.3);
  max-width: calc(var(--container) - 32px);
  margin: 0 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.nav-brand-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  overflow: hidden;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--c-line-strong);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  padding: 5px;
}
.nav-brand:hover .nav-brand-mark {
  transform: rotate(-8deg);
}
.nav-brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  /* Invert the black logo to silver/white for the dark navbar mark */
  filter: invert(1) brightness(1.05);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-ink-3);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-line);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--ease);
  z-index: -1;
}
.nav-links a:hover { color: var(--c-ink); }
.nav-links a:hover::after { opacity: 1; transform: scale(1); }
.nav-links a.is-active { color: var(--c-ink); }
.nav-links a.is-active::after { opacity: 1; transform: scale(1); background: rgba(255,255,255,0.08); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #d4d4d4);
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.15);
  transition: all 0.35s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s var(--ease);
}
.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--c-line);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.nav.is-scrolled .nav-progress { opacity: 1; }
.nav-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-silver-h);
  transition: width 0.1s linear;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100dvh;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-left: 1px solid var(--c-line);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-inner a {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
  transition: all 0.3s var(--ease);
  transform: translateX(20px);
  opacity: 0;
}
.drawer.is-open .drawer-inner a {
  transform: translateX(0);
  opacity: 1;
}
.drawer.is-open .drawer-inner a:nth-child(1) { transition-delay: 0.1s; }
.drawer.is-open .drawer-inner a:nth-child(2) { transition-delay: 0.15s; }
.drawer.is-open .drawer-inner a:nth-child(3) { transition-delay: 0.2s; }
.drawer.is-open .drawer-inner a:nth-child(4) { transition-delay: 0.25s; }
.drawer.is-open .drawer-inner a:nth-child(5) { transition-delay: 0.3s; }
.drawer-inner a:hover { padding-left: 12px; color: var(--c-silver-1); }
.drawer-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease) 0.4s;
}
.drawer.is-open .drawer-actions { opacity: 1; transform: translateY(0); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  --mag-x: 0px;
  --mag-y: 0px;
}
[data-magnetic] {
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
  transition: transform 0.4s var(--ease);
}
[data-magnetic]:hover {
  transition: transform 0.05s linear;
}
.btn-large {
  padding: 18px 32px;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%);
  color: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.4),
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.6s var(--ease);
}
.btn-primary:hover {
  box-shadow:
    0 16px 36px rgba(0,0,0,0.6),
    0 0 60px rgba(255,255,255,0.15),
    0 1px 0 rgba(255,255,255,0.8) inset;
}
.btn-primary:not([data-magnetic]):hover {
  transform: translateY(-3px) scale(1.02);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:not([data-magnetic]):active { transform: translateY(-1px) scale(1); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--c-ink);
  border: 1px solid var(--c-line-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-ghost:not([data-magnetic]):hover {
  transform: translateY(-3px) scale(1.02);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  max-width: var(--container);
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ====================== HERO EMBLEM (Original Logo behind title) ====================== */
.hero-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -68%);
  width: min(78vmin, 720px);
  height: min(78vmin, 720px);
  pointer-events: none;
  z-index: 1;
  display: grid;
  place-items: center;
}

/* 3D perspective stage — gives the rotateY a real depth feel */
.hero-emblem-stage {
  width: 100%;
  height: 100%;
  perspective: 1800px;
  transform-style: preserve-3d;
}

/* Horizontal rotation around vertical axis (Y-axis) — like a slowly turning emblem */
.hero-emblem-spin {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: emblem-spin-y 28s linear infinite;
  will-change: transform;
}

/* Continuous horizontal rotation — emblem spins 360° around its own vertical axis.
   Two overlapping faces (front + back) ensure the logo is always readable and
   never appears mirrored; see .hero-emblem-face--back below. */
@keyframes emblem-spin-y {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* Both logo faces share all visual styles.
   They are stacked absolutely so they overlap perfectly inside the spin container.
   backface-visibility: hidden makes each face invisible when it points away
   from the viewer — the other face takes over seamlessly at exactly that moment. */
.hero-emblem-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;

  filter:
    invert(1)
    brightness(0.92)
    contrast(0.88)
    drop-shadow(0 0 1px rgba(255,255,255,0.4))
    drop-shadow(0 14px 30px rgba(0,0,0,0.55))
    drop-shadow(0 0 60px rgba(255,255,255,0.18))
    drop-shadow(0 0 140px rgba(255,255,255,0.08));
  opacity: 0.80;
  animation: emblem-breathe 9s ease-in-out infinite;

  /* Critical: hide this face the moment it starts pointing away from the viewer.
     Combined with the back face below, the logo is always shown front-facing. */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Back face: pre-rotated 180° on Y so it starts pointing away from the viewer.
   When the spin container reaches 180°, this face has completed a full 360°
   turn in world space (180° container + 180° own offset) = identity transform —
   it faces the viewer with the logo in correct, non-mirrored orientation.
   The two faces alternate seamlessly every half-revolution. */
.hero-emblem-face--back {
  transform: rotateY(180deg);
}

@keyframes emblem-breathe {
  0%, 100% { opacity: 0.72; }
  50%      { opacity: 0.88; }
}

/* Halo behind the emblem — radial silver glow giving 3D depth */
.hero-emblem-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 75%; height: 75%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%,
      rgba(255,255,255,0.20) 0%,
      rgba(255,255,255,0.08) 25%,
      rgba(255,255,255,0.025) 50%,
      transparent 70%);
  filter: blur(24px);
  animation: halo-pulse 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes halo-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.85; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* Hero text content — bring forward, layer above emblem */
.hero-title { position: relative; z-index: 3; }
.hero-badge, .hero-sub, .hero-meta, .hero-cta, .hero-scroll {
  position: relative;
  z-index: 3;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink-3);
  margin-bottom: 32px;
  transition: all 0.4s var(--ease);
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%, rgba(255,255,255,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}
.hero-badge:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
  box-shadow: 0 0 12px rgba(255,255,255,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 6.8vw, 108px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
  color: var(--c-ink);
  position: relative;
  text-align: center;
}
/* Make "Konz" visually slightly smaller for an elegant subtitle feel */
.hero-title-script {
  font-size: 0.9em;
  margin-top: 0.05em;
}
.hero-title-line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0.02em;
}
.hero-title-line > span {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 40%, #8a8a8a 100%);
  background-size: 100% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 30px rgba(255,255,255,0.12));
  animation: title-shimmer 8s ease-in-out infinite;
}
.hero-title-script {
  font-style: italic;
  font-weight: 600;
}
.hero-title-script > span {
  background: linear-gradient(180deg, #c8c8c8 0%, #888888 50%, #5a5a5a 100%);
  background-size: 100% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-shimmer 8s ease-in-out infinite 0.5s;
}

@keyframes title-shimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
}

.hero-sub {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--c-ink-3);
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}

/* HERO STATS — Apple/Tesla clean.
   No glass container, no blur, no background — just the three values
   with elegant thin silver dividers floating directly on the hero. */
.hero-meta {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 8px 4px;
  margin-bottom: 56px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 4px 0;
}
.hero-meta-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-meta-num small {
  font-size: 0.5em;
  font-weight: 400;
  opacity: 0.6;
}
.hero-meta-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  text-align: center;
  white-space: nowrap;
}
/* Elegant 1px vertical silver gradient dividers */
.hero-meta-sep {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.10) 20%,
    rgba(255,255,255,0.30) 50%,
    rgba(255,255,255,0.10) 80%,
    transparent 100%
  );
  align-self: center;
}

/* HERO CALLOUT — "Wir kaufen Ihr Auto"
   Modern sans-serif (Inter) with refined letter-spacing for elegance.
   Sits centred between the stats row and the CTA buttons. */
.hero-callout {
  display: inline-block;
  margin: 0 auto 36px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink);
  position: relative;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.06) 60%,
    rgba(255,255,255,0) 100%);
  border-top: 1px solid var(--c-line-strong);
  border-bottom: 1px solid var(--c-line-strong);
}
.hero-callout::before,
.hero-callout::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-silver-2), transparent);
  transform: translateY(-50%);
}
.hero-callout::before { left: -40px; }
.hero-callout::after  { right: -40px; }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--c-ink-3), transparent);
  background-size: 100% 200%;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { background-position: 0% 200%; }
  100% { background-position: 0% -200%; }
}

.hero-marquee {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.hero-marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hero-marquee-track span {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink-3);
  letter-spacing: 0.05em;
}
.hero-marquee-track span:nth-child(odd) {
  color: var(--c-silver-1);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS — generic
   ========================================================= */
.section {
  position: relative;
  padding: 140px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #c8c8c8 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, #b0b0b0 0%, #6a6a6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  font-size: 18px;
  color: var(--c-ink-3);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}
.section-lead strong {
  color: var(--c-ink);
  font-weight: 600;
}

.section-foot {
  text-align: center;
  margin-top: 60px;
}

/* =========================================================
   ADVANTAGES
   ========================================================= */
/* RESPONSIVE GRID FOR THE 10 SERVICE CARDS
   Desktop (≥1400px):  5 columns × 2 rows
   Large laptop:        4 columns
   Tablet/laptop:       3 columns
   Phone landscape:     2 columns (also default for mobile portrait)
*/
.advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 600px) {
  .advantages {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 900px) {
  .advantages {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1100px) {
  .advantages {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1400px) {
  .advantages {
    grid-template-columns: repeat(5, 1fr);
  }
}

.advantage-card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  height: 100%; /* equal-height inside grid */
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.advantage-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.advantage-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-line-strong);
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.advantage-card:hover::before { opacity: 1; }
.advantage-card:hover::after { opacity: 1; }

.advantage-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  border: 1px solid var(--c-line-strong);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--c-silver-1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.5s var(--ease);
}
.advantage-card:hover .advantage-icon {
  transform: rotate(-6deg) scale(1.05);
}
.advantage-icon svg {
  width: 26px; height: 26px;
}

.advantage-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.advantage-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-ink-3);
}
.advantage-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-ink-4);
  letter-spacing: 0.1em;
}

/* =========================================================
   VEHICLES
   ========================================================= */
.section-vehicles { padding-bottom: 100px; }

.filter-groups {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.filter-group-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}

.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.chip-category {
  background: rgba(255,255,255,0.06);
  border-color: var(--c-line-strong);
  color: var(--c-ink-2);
}
.chip-empty,
.chip[disabled] {
  opacity: 0.35;
  cursor: not-allowed !important;
  pointer-events: none;
}
.chip-empty::after,
.chip[disabled]::after {
  content: ' · 0';
  font-size: 10px;
  opacity: 0.7;
  margin-left: 2px;
}
.chip {
  position: relative;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-line);
  color: var(--c-ink-3);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.4s var(--ease-elastic),
    box-shadow 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.chip:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--c-line-strong);
  color: var(--c-ink);
  transform: translateY(-2px);
}
.chip:active {
  transform: translateY(0) scale(0.96);
}
.chip.is-active {
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
  color: #0a0a0a;
  border-color: rgba(255,255,255,0.6);
  font-weight: 600;
  box-shadow:
    0 6px 16px rgba(0,0,0,0.4),
    0 0 24px rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.vehicle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-l);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  overflow: hidden;
  transition:
    transform 0.6s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.6s var(--ease),
    background 0.6s var(--ease),
    opacity 0.7s var(--ease);
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  will-change: transform, opacity;
}
.vehicle-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (hover: hover) and (pointer: fine) {
  .vehicle-card.is-visible {
    transform-style: preserve-3d;
    perspective: 1200px;
  }
  .vehicle-card.is-visible:hover {
    transform:
      translateY(-10px)
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg));
    transition: transform 0.25s var(--ease-soft);
  }
}
.vehicle-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  width: 60%;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.vehicle-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% -20%, rgba(255,255,255,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.vehicle-card:hover {
  transform: translateY(-10px);
  border-color: var(--c-line-strong);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.025) 60%, rgba(255,255,255,0.02) 100%);
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 120px rgba(255,255,255,0.06);
}
.vehicle-card:hover::before { opacity: 1; }
.vehicle-card:hover::after { opacity: 1; }

.vehicle-link {
  display: block;
  position: relative;
  z-index: 2;
}

.vehicle-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, #1f1f1f 0%, #0e0e0e 70%, #060606 100%);
  isolation: isolate;
}
.vehicle-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 50% 100%, rgba(255,255,255,0.06), transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.vehicle-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.vehicle-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
  background:
    radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
}
.vehicle-card:hover .vehicle-img {
  transform: scale(1.06);
}

/* Mobile: keep images fully visible (no crop) — premium look */
@media (max-width: 768px) {
  .vehicle-img {
    object-fit: contain;
    padding: 6px;
  }
  .vehicle-card:hover .vehicle-img {
    transform: scale(1.02);
  }
  .vehicle-media {
    aspect-ratio: 16 / 10;
  }
}

.vehicle-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-line-strong);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-silver-1);
  z-index: 2;
}

.vehicle-fav {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-line-strong);
  display: grid;
  place-items: center;
  color: var(--c-ink-3);
  z-index: 2;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.vehicle-fav:hover {
  background: rgba(255,255,255,0.95);
  color: #0a0a0a;
  transform: scale(1.1);
}
.vehicle-fav svg { width: 18px; height: 18px; }
.vehicle-fav.is-fav { color: #fff; background: rgba(255,255,255,0.15); }
.vehicle-fav.is-fav svg { fill: currentColor; }

.vehicle-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.vehicle-title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 49px;
}

.vehicle-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.vehicle-price {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.vehicle-financing {
  font-size: 11.5px;
  color: var(--c-ink-4);
  letter-spacing: 0.02em;
}
.vehicle-financing strong {
  color: var(--c-silver-1);
  font-weight: 600;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}
.vehicle-spec-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--c-silver-2);
}
.vehicle-spec-icon svg { width: 13px; height: 13px; }
.vehicle-spec-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
}
.vehicle-spec-label {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.vehicle-spec-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vehicle-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
  color: #0a0a0a;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.6);
  margin-top: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.7);
}
.vehicle-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  transition: left 0.6s var(--ease);
}
.vehicle-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5), 0 0 30px rgba(255,255,255,0.15);
}
.vehicle-cta:hover::before { left: 100%; }
.vehicle-cta svg {
  transition: transform 0.4s var(--ease);
}
.vehicle-cta:hover svg {
  transform: translateX(3px);
}

/* Loading skeleton (shown while vehicles.json is being fetched) */
.vehicle-skeleton {
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vehicle-skeleton-media {
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.03) 0%,
      rgba(255,255,255,0.06) 50%,
      rgba(255,255,255,0.03) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s linear infinite;
}
.vehicle-skeleton-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vehicle-skeleton-line {
  height: 12px;
  border-radius: 6px;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.04) 0%,
      rgba(255,255,255,0.08) 50%,
      rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s linear infinite;
}
.vehicle-skeleton-line.w70 { width: 70%; }
.vehicle-skeleton-line.w40 { width: 40%; height: 22px; }
.vehicle-skeleton-line.w90 { width: 90%; height: 60px; border-radius: 12px; }

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.vehicle-empty {
  text-align: center;
  padding: 60px 32px;
  color: var(--c-ink-3);
}
.vehicle-empty .link {
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.link {
  color: var(--c-ink-3);
  font-weight: 500;
  transition: color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link:hover { color: var(--c-ink); }

/* =========================================================
   ABOUT
   ========================================================= */
.section-about { padding-top: 100px; }
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-side .section-title {
  text-align: left;
}
.about-side .eyebrow { margin-bottom: 24px; }
.about-side p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-ink-3);
  margin-bottom: 20px;
  max-width: 540px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  max-width: 540px;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stat-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-stat-num small {
  font-size: 0.5em;
  font-weight: 400;
  opacity: 0.6;
}
.about-stat-lbl {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}

.about-cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.about-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 5/7;
  border-radius: var(--radius-l);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--c-line-strong);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 1px 0 rgba(255,255,255,0.1) inset;
  transform-style: preserve-3d;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s var(--ease);
}
.about-card:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

/* Logo as background watermark inside the about card */
.about-card-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130%; height: 130%;
  pointer-events: none;
  display: grid;
  place-items: center;
  z-index: 0;
}
.about-card-bg img {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.07;
  filter: invert(1) brightness(1.1) drop-shadow(0 0 20px rgba(255,255,255,0.1));
  animation: about-bg-rotate 80s linear infinite;
}
@keyframes about-bg-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* All other inner content stays above watermark */
.about-card > *:not(.about-card-bg):not(.about-card-glow):not(.about-card-ring) {
  position: relative;
  z-index: 1;
}

.about-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 4px;
  padding: 0;
}
.about-card-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.about-card-list li:last-child { border-bottom: none; }
.about-card-list li > span {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.about-card-list li > strong {
  font-family: var(--ff-display);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  line-height: 1.35;
}

.about-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 40%);
  pointer-events: none;
  animation: about-glow 8s ease-in-out infinite alternate;
}
@keyframes about-glow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30%, 20%); }
}

.about-card-ring {
  position: absolute;
  bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  pointer-events: none;
}
.about-card-ring::before, .about-card-ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
}
.about-card-ring::after { inset: 40px; }

.about-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.about-card-header > span:first-child {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-card-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-silver-1);
  box-shadow: 0 0 16px rgba(255,255,255,0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

.about-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 12px;
}
.about-card-body h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink-3);
}

.about-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card, .review-rating {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.5s var(--ease);
}
.review-card:hover, .review-rating:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #ffffff;
}
.review-stars svg {
  width: 16px; height: 16px;
}

.review-card blockquote {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--c-ink-2);
  font-style: italic;
  flex: 1;
}
.review-card blockquote::before {
  content: '"';
  display: block;
  font-family: var(--ff-display);
  font-size: 50px;
  line-height: 0.5;
  color: var(--c-silver-3);
  margin-bottom: 8px;
  opacity: 0.5;
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.review-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
}
.review-source {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}

.review-rating {
  align-items: center;
  text-align: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.review-rating-big {
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.review-rating-big span {
  font-size: 0.4em;
  font-weight: 400;
  opacity: 0.5;
}
.review-rating-stars {
  display: flex;
  gap: 4px;
  color: #ffffff;
}
.review-rating-stars svg {
  width: 20px; height: 20px;
}
.review-rating p {
  color: var(--c-ink-3);
  font-size: 14px;
}
.review-rating p strong {
  color: var(--c-ink);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card, .contact-form {
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 36px;
}

/* Two-owner contact card — GK (Yasser Khalife) + OS Cars (Majed Taha) side-by-side
   LARGE premium presentation, suitable for high-trust contact section. */
.contact-owners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: -4px 0 28px;
}
.contact-owner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 26px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--c-line-strong);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow:
    0 12px 30px -16px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  min-height: 160px;
}
.contact-owner:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px -16px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.contact-owner::before {
  content: '';
  position: absolute;
  top: -1px; left: 26px;
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}
/* OS Cars accent: divider on the right side (mirrored) */
.contact-owner--os::before {
  left: auto;
  right: 26px;
}

/* Larger silver brand badge in upper-right corner */
.contact-owner-badge {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}
.contact-owner:hover .contact-owner-badge { opacity: 0.95; }

.contact-owner-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  padding-right: 40px;
  line-height: 1.45;
}
.contact-owner-name {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 10px;
  line-height: 1.1;
}

/* Languages — dedicated row with label + chip-style list */
.contact-owner-langs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}
.contact-owner-langs-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.contact-owner-langs-list {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}

/* Mobile: stack vertically with comfortable padding */
@media (max-width: 600px) {
  .contact-owners {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-owner {
    padding: 22px 22px 20px;
    min-height: 140px;
  }
  .contact-owner-name { font-size: 22px; }
  .contact-owner-badge { font-size: 20px; top: 14px; right: 18px; }
  .contact-owner-label { font-size: 9.5px; padding-right: 32px; }
  .contact-owner-langs { margin-top: 12px; padding-top: 12px; }
  .contact-owner-langs-list { font-size: 13.5px; }
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin: 0 -16px;
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}
.contact-channel:hover {
  background: rgba(255,255,255,0.04);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  border: 1px solid var(--c-line-strong);
  display: grid;
  place-items: center;
  color: var(--c-silver-1);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.contact-channel:hover .contact-icon {
  transform: scale(1.08) rotate(-5deg);
  background: linear-gradient(135deg, #2a2a2a 0%, #151515 100%);
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-channel-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-channel-text small {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.contact-channel-text strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
  word-break: break-word;
}

.contact-hours h4 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.contact-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
}
.contact-hours li:last-child { border-bottom: none; }
.contact-hours li > span:first-child { color: var(--c-ink-3); }
.contact-hours li > span:last-child { color: var(--c-ink); font-weight: 500; }
.contact-hours li .closed { color: var(--c-ink-4); font-style: italic; }
.contact-hours small {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--c-ink-4);
  font-style: italic;
}

.contact-form h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.contact-form > p {
  font-size: 13.5px;
  color: var(--c-ink-3);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  color: var(--c-ink);
  font-size: 14.5px;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.06);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b0b0b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}
.field select option {
  background: #1a1a1a;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 20px;
  font-size: 12.5px;
  color: var(--c-ink-3);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}
.check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  margin-top: 1px;
  border: 1px solid var(--c-line-strong);
  border-radius: 5px;
  background: rgba(0,0,0,0.3);
  display: grid; place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.check input[type="checkbox"]:checked {
  background: linear-gradient(180deg, #ffffff, #d4d4d4);
  border-color: rgba(255,255,255,0.6);
}
.check input[type="checkbox"]:checked::after {
  content: '';
  width: 6px; height: 10px;
  border: solid #0a0a0a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.form-status {
  margin-top: 16px;
  padding: 0 4px;
  font-size: 13px;
  color: var(--c-silver-1);
}
.form-status.is-success {
  color: var(--c-ink);
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-line-strong);
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--c-line);
  height: 420px;
  background: #111;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.85);
  transition: filter 0.5s var(--ease);
}
.map-wrap:hover iframe {
  filter: grayscale(1) invert(0.95) contrast(0.95);
}

/* Click-to-load consent placeholder (DSGVO: load Maps only after explicit consent) */
.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(192,160,98,0.10), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(192,160,98,0.06), transparent 60%),
    linear-gradient(180deg, #131313, #0a0a0a);
}
.map-placeholder iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.85);
  transition: filter 0.5s var(--ease);
}
.map-placeholder.is-loaded { background: #0a0a0a; }
.map-placeholder:hover iframe { filter: grayscale(1) invert(0.95) contrast(0.95); }
.map-consent {
  max-width: 440px;
  padding: 28px 32px;
  text-align: center;
  color: var(--c-fg);
}
.map-consent h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.map-consent p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-mute);
  margin: 0 0 18px;
}
.map-consent .btn { margin: 0 auto 12px; }
.map-consent small {
  display: block;
  font-size: 12px;
  color: var(--c-mute);
}
.map-consent small a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-placeholder.is-loaded .map-consent { display: none; }

/* =========================================================
   STANDORT-GALERIE — Drohnenaufnahmen, Premium Grid
   ========================================================= */
.section-gallery {
  padding-bottom: 100px;
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--c-line);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s var(--ease),
    border-color 0.5s var(--ease);
  cursor: pointer;
}

/* The hero image spans the full left column and full height */
.gallery-item--hero {
  grid-row: 1 / span 2;
  aspect-ratio: 16 / 11;
}
.gallery-item:not(.gallery-item--hero) {
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.95) saturate(0.95);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-50%);
  transition: width 0.6s var(--ease);
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--c-line-strong);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 80px rgba(255,255,255,0.06);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) saturate(1);
}
.gallery-item:hover::after {
  width: 70%;
}

.gallery-item figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 12px;
  pointer-events: none;
  transform: translateY(4px);
  opacity: 0.85;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption-num {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-silver-2);
  flex-shrink: 0;
}

.gallery-caption-text {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.gallery-foot {
  text-align: center;
  margin-top: 40px;
}

/* Tablet down */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .gallery-item--hero {
    grid-row: auto;
    grid-column: 1 / span 2;
    aspect-ratio: 16 / 9;
  }
}

/* Mobile — stack vertically, full-width */
@media (max-width: 640px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-item,
  .gallery-item--hero {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  .gallery-item figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .gallery-caption-text { font-size: 12.5px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 80px 32px 40px;
  border-top: 1px solid var(--c-line);
  max-width: var(--container);
  margin: 80px auto 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  width: 200px;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-silver-2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li, .footer-col ul a {
  font-size: 13.5px;
  color: var(--c-ink-3);
  transition: color 0.3s var(--ease);
}
.footer-col ul a:hover { color: var(--c-ink); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand img {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: contain;
  padding: 4px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--c-line);
  /* Invert the black original logo to silver for dark footer */
  filter: invert(1) brightness(1.05);
}
.footer-brand:hover img {
  filter: invert(1) brightness(1.15);
}
.footer-brand span {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.footer-col p {
  font-size: 13.5px;
  color: var(--c-ink-3);
  line-height: 1.65;
  max-width: 360px;
}

.footer-partner {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px 16px;
  margin-top: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line-strong);
  position: relative;
  transition: all 0.4s var(--ease);
  cursor: default;
}
.footer-partner::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
.footer-partner:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.025) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.4);
}
.footer-partner-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.footer-partner-name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.footer-partner-meta {
  font-size: 12px;
  color: var(--c-ink-3);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.footer-partner-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-ink-2);
  transition: color 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.footer-partner-tel::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-silver-1);
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}
.footer-partner-tel:hover {
  color: var(--c-ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-4);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #d4d4d4);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.6),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.4s var(--ease);
  animation: float-whats 3s ease-in-out infinite;
}
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.float-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.6),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
.float-whatsapp:hover::before { opacity: 1; }

@keyframes float-whats {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-reveal-delay] {
  transition-delay: var(--reveal-delay);
}

/* =========================================================
   RESPONSIVE — MOBILE FIRST PERFECTION
   ========================================================= */

/* Large tablet down */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .about { grid-template-columns: 1fr; gap: 60px; }
  .about-side .section-title, .about-side .eyebrow { text-align: center; display: block; }
  .about-side p { margin-left: auto; margin-right: auto; text-align: center; }
  .about-stats { margin-left: auto; margin-right: auto; }
  .about-cta { justify-content: center; }

  /* On tablet/mobile: disable all 3D tilts so cards display flat and fully centered */
  .section-about { overflow-x: hidden; }
  .about { width: 100%; max-width: 100%; }
  .about-side, .about-visual {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .about-visual {
    perspective: none;
    transform-style: flat;
    padding: 0;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .about-card,
  .about-card--gk,
  .about-card--os {
    transform: none !important;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .about-card:hover,
  .about-card--gk:hover,
  .about-card--os:hover {
    transform: translateY(-4px) !important;
  }

  .contact { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Tablet down */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav.is-scrolled .nav-inner { padding: 10px 16px; margin: 0 12px; }
  .nav-brand-text { display: none; }
  .nav-cta span { display: none; }
  .nav-cta {
    width: 42px; height: 42px;
    padding: 0;
    border-radius: 50%;
  }

  .hero { padding: 120px 20px 80px; }
  .hero-emblem {
    width: min(90vmin, 520px);
    height: min(90vmin, 520px);
    transform: translate(-50%, -70%);
  }
  .hero-emblem-svg { opacity: 0.14; }
  .hero-meta {
    flex-direction: column;
    gap: 16px;
    padding: 20px 28px;
    width: 100%;
    max-width: 360px;
  }
  .hero-meta-sep {
    width: 80%; height: 1px;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta .btn { width: 100%; }
  .hero-marquee { display: none; }

  .section { padding: 100px 20px; }
  .section-head { margin-bottom: 56px; }

  .filter-groups {
    gap: 14px;
    margin-top: 32px;
  }
  .filter-group { align-items: flex-start; gap: 8px; }
  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 4px 20px 8px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .chip { flex-shrink: 0; }
  .filter-group-label { padding: 0 20px; }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* TABLET: 2 cards per row */
  .advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .advantage-card {
    padding: 28px 22px 24px;
  }
  .advantage-card h3 {
    font-size: 18px;
  }
  .advantage-card p {
    font-size: 13.5px;
    line-height: 1.55;
  }
  .advantage-icon {
    width: 48px; height: 48px;
    margin-bottom: 18px;
  }
  .advantage-icon svg {
    width: 22px; height: 22px;
  }
  .advantage-num {
    top: 18px; right: 20px;
    font-size: 12px;
  }

  .reviews { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-card, .contact-form { padding: 28px 24px; }

  .map-wrap { height: 320px; }

  .float-whatsapp {
    bottom: 16px; right: 16px;
    width: 52px; height: 52px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  body { font-size: 15px; }

  .nav { padding: 12px 0; }
  .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-brand-mark { width: 36px; height: 36px; }

  .hero {
    padding: 120px 16px 70px;
    min-height: auto;
  }
  .hero-badge { font-size: 10.5px; padding: 7px 14px 7px 10px; margin-bottom: 30px; }

  /* Mobile title — fits "Gebrauchtwagens Konz" on every iPhone */
  .hero-title {
    font-size: clamp(26px, 8.5vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 28px;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: keep-all;
    hyphens: none;
  }
  .hero-title-line { padding: 0; }

  /* Mobile callout — slim sans-serif badge */
  .hero-callout {
    font-size: 11.5px;
    padding: 10px 18px;
    letter-spacing: 0.18em;
    margin-bottom: 28px;
  }
  .hero-callout::before,
  .hero-callout::after {
    width: 18px;
  }
  .hero-callout::before { left: -24px; }
  .hero-callout::after  { right: -24px; }

  /* Mobile stats — NO container, NO glass, NO background */
  .hero-meta {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 36px;
    width: 100%;
    max-width: 100%;
    gap: 10px;
  }
  .hero-meta-num { font-size: 19px; }
  .hero-meta-lbl { font-size: 8.5px; letter-spacing: 0.12em; }
  .hero-meta-sep { height: 28px; }

  .section { padding: 80px 16px; }
  .section-head { margin-bottom: 48px; }
  .section-title { font-size: clamp(36px, 11vw, 56px); }
  .section-lead { font-size: 15.5px; }

  .vehicle-grid { gap: 16px; }
  .vehicle-body { padding: 20px 20px 22px; gap: 12px; }
  .vehicle-title { font-size: 17px; min-height: auto; }
  .vehicle-price { font-size: 24px; }
  .vehicle-specs { gap: 8px 12px; padding: 14px 0; }
  .vehicle-spec { font-size: 12px; }
  .vehicle-spec-icon { width: 24px; height: 24px; }
  .vehicle-spec-value { font-size: 12.5px; }

  /* SERVICE CARDS — 2 per row on mobile, compact but premium */
  .advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .advantage-card {
    padding: 22px 18px 20px;
  }
  .advantage-card h3 {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .advantage-card p {
    font-size: 12.5px;
    line-height: 1.55;
  }
  .advantage-icon {
    width: 44px; height: 44px;
    margin-bottom: 16px;
    border-radius: 11px;
  }
  .advantage-icon svg { width: 20px; height: 20px; }
  .advantage-num {
    top: 16px; right: 16px;
    font-size: 11.5px;
  }

  /* ABOUT — compact mobile typography so everything fits */
  .section-about .section-title {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -0.025em;
  }
  .section-about .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .about-side p {
    font-size: 14px;
    line-height: 1.65;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 18px 0;
  }
  .about-stat-num {
    font-size: 22px;
    letter-spacing: -0.02em;
  }
  .about-stat-lbl {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .about-card {
    padding: 22px 20px;
    max-width: 100%;
    width: 100%;
    aspect-ratio: auto;
    min-height: auto;
    margin: 0 auto;
  }
  .about-card-header > span:first-child {
    font-size: 24px;
  }
  .about-card-header {
    padding-bottom: 16px;
  }
  .about-card-body { padding: 14px 0 6px; }
  .about-card-body h3 { font-size: 18px; margin-bottom: 6px; line-height: 1.2; }
  .about-card-list { gap: 8px; margin: 10px 0 4px; }
  .about-card-list li { padding-bottom: 8px; }
  .about-card-list li > span { font-size: 8.5px; letter-spacing: 0.15em; }
  .about-card-list li > strong { font-size: 13px; line-height: 1.3; }
  .about-card-footer {
    padding-top: 14px;
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  .contact-card, .contact-form { padding: 24px 20px; }
  .contact-channel { padding: 12px; margin: 0 -12px; gap: 14px; }
  .contact-icon { width: 44px; height: 44px; }
  .contact-channel-text strong { font-size: 14px; word-break: break-word; }
  /* (about-card mobile typography is set higher up in this breakpoint block) */

  .review-card, .review-rating { padding: 28px 24px; }
  .review-card blockquote { font-size: 15px; }
  .review-rating-big { font-size: 60px; }

  .footer { padding: 60px 16px 32px; }

  .field input, .field textarea, .field select {
    padding: 12px 14px;
    font-size: 16px; /* prevent iOS zoom */
  }

  .btn { padding: 13px 22px; font-size: 13.5px; }
  .btn-large { padding: 15px 26px; font-size: 14px; }

  .float-whatsapp { width: 48px; height: 48px; bottom: 14px; right: 14px; }
  .float-whatsapp svg { width: 20px; height: 20px; }
}

/* Very small phones */
@media (max-width: 360px) {
  .hero-title { font-size: 42px; }
  .section-title { font-size: 36px; }
  .vehicle-specs { grid-template-columns: 1fr; }

  /* Service cards: keep 2 per row, just smaller */
  .advantages {
    gap: 10px;
  }
  .advantage-card {
    padding: 20px 16px 18px;
  }
  .advantage-card h3 { font-size: 15px; line-height: 1.25; }
  .advantage-card p { font-size: 12px; line-height: 1.5; }
  .advantage-icon {
    width: 40px; height: 40px;
    margin-bottom: 14px;
    border-radius: 10px;
  }
  .advantage-icon svg { width: 18px; height: 18px; }
  .advantage-num {
    top: 14px; right: 14px;
    font-size: 11px;
  }
}

/* Tall mobiles — iPhone landscape lock */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 100px 20px 60px; }
}

/* Notched iPhones */
@supports (padding: max(0px)) {
  .nav-inner {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .hero, .section, .footer {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .float-whatsapp {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }
}
