:root {
    --black: #0a0a0a;
    --black-soft: #14141a;
    --silver: #b8b8b8;
    --silver-soft: #6b6b6b;
    --white: #ffffff;
    --white-soft: #e8e8e8;
    --accent: #d4af37; /* subtle warm gold for tiny details */
    --line: rgba(255,255,255,0.08);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
  body {
    overflow-x: hidden;
    max-width: 100vw;
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--black);
    color: var(--white-soft);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
  }

  img, video { max-width: 100%; display: block; }

  ::selection { background: var(--white); color: var(--black); }

  /* --- HEADER --- */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 4px 22px;
    min-height: 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background-color .35s ease, padding .35s ease, backdrop-filter .35s ease;
  }
  .nav.scrolled {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(14px);
    padding: 4px 22px;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }
  @media (min-width: 1025px) {
    .nav, .nav.scrolled { min-height: 64px; padding: 6px 40px; }
  }
  .nav__logo {
    display: flex; align-items: center; gap: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.32em;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    z-index: 210;
  }
  .nav__logo img { height: 24px; width: auto; } /* Unterseiten: Logo sichtbar + klickbar. Auf der Startseite blendet das JS es aus (Hero-Logo fliegt rein) */
  @media (max-width: 749px) {
    .nav__logo span { display: none; }
  }
  .nav__links {
    display: flex; gap: 44px;
    list-style: none;
  }
  .nav__links a {
    color: var(--white-soft);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color .2s ease, opacity .2s ease;
    opacity: 0.75;
  }
  .nav__links a:hover { opacity: 1; color: var(--white); }
  .nav__cta {
    padding: 12px 28px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white-soft);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color .25s ease, color .25s ease;
  }
  .nav__cta:hover { background: var(--white); color: var(--black); }
  .nav__burger {
    display: none; background: none; border: 0; cursor: pointer; padding: 2px 6px;
    flex-direction: column-reverse; align-items: center; gap: 4px; color: var(--white);
    font-family: inherit; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
    margin-left: auto;
  }
  .nav__burger-label { display: inline-block; line-height: 1; opacity: 0.92; }
  .nav__burger-icon {
    display: inline-flex; flex-direction: column;
    justify-content: space-between;
    width: 22px; height: 14px;
  }
  .nav__burger-icon span { display: block; width: 22px; height: 1.6px; background: var(--white); transition: all .3s ease; margin: 0; }
  @media (max-width: 1024px) {
    .nav { padding: 18px 22px; }
    .nav.scrolled { padding: 12px 22px; }

    /* nav__links becomes the fullscreen menu itself — no separate overlay */
    .nav__links {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 110px 30px 110px;
      background: rgba(10,10,10,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .35s ease, visibility 0s linear .35s;
      z-index: 1100;
    }
    body.mobile-open .nav__links {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity .35s ease;
    }

    .nav__cta {
      display: none;
    }
    body.mobile-open .nav__cta {
      display: inline-block;
      position: fixed; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      padding: 16px 36px;
      font-size: 11px;
      letter-spacing: 0.24em;
      background: var(--white);
      color: var(--black);
      border-color: var(--white);
      z-index: 1110;
    }

    .nav__burger {
      display: block;
      z-index: 1200;
      position: relative;
    }

    .nav__burger { display: inline-flex; }

    /* Burger animation — open state */
    body.mobile-open .nav__burger-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.mobile-open .nav__burger-icon span:nth-child(2) { opacity: 0; }
    body.mobile-open .nav__burger-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    body.mobile-open .nav__burger-label { opacity: 0; }
    /* Suppress original 1-child rule path */
    .nav__burger > span:not(.nav__burger-label):not(.nav__burger-icon) { display: none !important; }

    .nav__links li {
      width: 100%; max-width: 440px;
      text-align: center;
      list-style: none;
    }
    .nav__links a {
      display: block;
      padding: 22px 0;
      font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
      font-weight: 400;
      font-size: 28px;
      letter-spacing: -0.005em;
      text-transform: none;
      color: var(--white);
      opacity: 0.92;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: color .25s ease, opacity .25s ease;
    }
    .nav__links a:hover,
    .nav__links a:active {
      opacity: 1;
      color: var(--accent);
    }

    /* Logo mittig im Menue-Kopf, auf gleicher Hoehe wie das X (statt Schriftzug) */
    body.mobile-open .nav__links::before {
      content: '';
      display: block;
      position: absolute; top: 14px; left: 50%;
      transform: translateX(-50%);
      width: 150px; height: 26px;
      background: url('assets/oma-logo-standard-white.png') center / contain no-repeat;
      opacity: 0.95;
    }

    /* Lock body scroll while menu open */
    html.mobile-open,
    body.mobile-open {
      overflow: hidden;
      height: 100%;
      overscroll-behavior: contain;
      touch-action: none;
    }
  }

  /* --- HERO --- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: flex-end; justify-content: center;
    overflow: hidden;
    padding: 100px 40px 90px;
  }
  @media (min-width: 1200px) { .hero { padding-bottom: 110px; } }
  @media (max-width: 749px) { .hero { padding: 100px 22px 70px; align-items: flex-end; } }
  .hero__bg {
    position: absolute; inset: 0;
    background-image: url('assets/hero-pano.webp');
    background-size: cover;
    background-position: center center; /* Cayenne sitzt exakt in der Bildmitte des Fotos */
    filter: grayscale(0.05) brightness(0.82) contrast(1.05);
    transform: scale(1.05);
    transition: transform 8s ease;
    animation: heroZoom 14s ease-out forwards;
  }
  @keyframes heroZoom {
    from { transform: scale(1.18); }
    to { transform: scale(1.02); }
  }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(10,10,10,0.10) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.35) 70%, rgba(10,10,10,0.80) 100%);
  }
  .hero__inner {
    position: relative; z-index: 2;
    max-width: 1180px; width: 100%;
    text-align: center;
  }
  .hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--white-soft);
    opacity: 0.8;
    margin-bottom: 32px;
  }
  .hero__eyebrow::before, .hero__eyebrow::after {
    content: ''; display: inline-block; width: 32px; height: 1px;
    background: var(--silver); vertical-align: middle; margin: 0 18px;
  }
  .hero__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-weight: 400;
    font-size: clamp(40px, 7.4vw, 96px);
    color: var(--white);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 0 0 36px;
  }
  .hero__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--white-soft);
  }
  .hero__sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--white-soft);
    max-width: 640px;
    margin: 0 auto 52px;
    line-height: 1.65;
    opacity: 0.85;
  }
  .hero__ctas {
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    transition: all .3s ease;
    cursor: pointer;
  }
  .btn--primary { background: var(--white); color: var(--black); border-color: var(--white); }
  .btn--primary:hover { background: transparent; color: var(--white); }
  .btn--ghost { background: transparent; color: var(--white); border-color: var(--white-soft); }
  .btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
  .btn .arrow { transition: transform .3s ease; }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero__scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    color: var(--white-soft);
    font-size: 10px; letter-spacing: 0.32em;
    text-transform: uppercase; text-decoration: none;
    opacity: 0.55;
    z-index: 2;
  }
  .hero__scroll::after {
    content: ''; display: block;
    width: 1px; height: 36px; margin: 14px auto 0;
    background: linear-gradient(180deg, var(--white-soft), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(0.4); opacity: 1; }
  }
  /* Mobile (Julian 12.06.): zwei Scroll-Striche, links- und rechtsbündig am SCROLL-Wort */
  @media (max-width: 749px) {
    .hero__scroll { position: absolute; }
    .hero__scroll::after {
      position: absolute; right: 3px; top: 100%;
      margin: 14px 0 0 0;
    }
    .hero__scroll::before {
      content: ''; position: absolute; left: 0; top: 100%;
      width: 1px; height: 36px; margin: 14px 0 0 0;
      background: linear-gradient(180deg, var(--white-soft), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
  }

  /* --- HERO SOCIAL BUTTONS --- */
  .hero__socials {
    position: absolute;
    bottom: 115px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 3;
  }
  .hero__socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    transition: all .3s ease;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.04);
  }
  .hero__socials a:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
  }
  @media (max-width: 749px) {
    .hero__socials {
      bottom: 140px;
      gap: 12px;
    }
    .hero__socials a { width: 40px; height: 40px; }
  }

  /* --- MOBILE HERO ZOOM: viel weniger Zoom rein, Manuel sichtbar --- */
  @media (max-width: 749px) {
    .hero__bg {
      animation: heroZoomMobile 9s ease-out forwards;
      background-image: url('assets/hero-hoch.webp'); /* Shooting 12.06.: Hochformat fuer Mobile */
      background-size: cover;
      background-position: center center;
    }
    @keyframes heroZoomMobile {
      from { transform: scale(1.08); }
      to { transform: scale(1.0); }
    }
  }

  /* --- SECTIONS --- */
  .section { padding: 140px 40px; position: relative; }
  .section__inner { max-width: 1280px; margin: 0 auto; }
  .section__eyebrow {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--silver-soft); margin-bottom: 22px;
  }
  .section__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 64px);
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    max-width: 800px;
  }
  .section__title em { font-style: italic; color: var(--silver); font-weight: 500; }
  .section__lead {
    font-size: 17px; color: var(--white-soft);
    max-width: 620px; line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 60px;
  }

  @media (max-width: 749px) {
    .section { padding: 96px 22px; }
  }

  /* --- VIDEO REEL — Phone-Mockup Style --- */
  .reel {
    background: var(--black);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
  }
  .reel__inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 90px; align-items: center;
  }
  .reel__phone {
    display: flex; justify-content: center;
    perspective: 1200px;
  }
  .reel__device {
    width: 280px;
    aspect-ratio: 9 / 19.5;
    background: #0a0a0a;
    border: 10px solid #1a1a1a;
    border-radius: 38px;
    position: relative;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.06),
      0 30px 80px -20px rgba(0,0,0,0.8),
      0 60px 120px -30px rgba(212,175,55,0.04);
    transform: rotate(-2deg);
    transition: transform .6s ease;
  }
  .reel__device:hover { transform: rotate(0deg) scale(1.02); }
  .reel__device::before {
    content: '';
    position: absolute; top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 28px;
    background: #000;
    border-radius: 16px;
    z-index: 3;
  }
  .reel__device video {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 28px;
    filter: contrast(1.05);
  }
  .reel__copy h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 44px);
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
  }
  .reel__copy h2 em { font-style: italic; color: var(--silver); font-weight: 500; }
  .reel__copy p {
    font-size: 16px; color: var(--silver);
    line-height: 1.7; opacity: 0.9;
    max-width: 460px;
  }
  .reel__copy .reel__cta {
    margin-top: 28px;
  }
  @media (max-width: 999px) {
    .reel { padding: 80px 22px; }
    .reel__inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .reel__copy p { margin: 0 auto; }
    .reel__device { width: 240px; transform: rotate(0deg); }
  }

  /* --- ABOUT --- */
  .about {
    background: var(--black);
  }
  .about__grid {
    display: grid; grid-template-columns: 1fr 1.05fr;
    gap: 90px; align-items: center;
  }
  .about__image {
    position: relative; aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--black-soft);
  }
  .about__image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(0.4) contrast(1.05);
    transition: filter .8s ease, transform .8s ease;
  }
  .about__image:hover img { filter: grayscale(0); transform: scale(1.02); }
  .about__image::after {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid var(--line);
    pointer-events: none;
  }
  .about__badge {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--black); color: var(--white);
    padding: 14px 22px;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.32em; text-transform: uppercase;
    border-left: 2px solid var(--accent);
  }
  .about__quote {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.5;
    color: var(--white);
    margin: 32px 0;
    padding-left: 24px;
    border-left: 2px solid var(--accent);
    max-width: 540px;
  }
  .about__signature {
    margin-top: 48px;
    font-size: 12px; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--silver);
  }
  .about__signature strong {
    display: block; font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-style: italic;
    font-size: 22px; letter-spacing: 0;
    text-transform: none; color: var(--white);
    margin-bottom: 4px; font-weight: 400;
  }
  @media (max-width: 999px) {
    .about__grid { grid-template-columns: 1fr; gap: 50px; }
    .about__image { max-width: 480px; margin: 0 auto; }
  }

  /* --- BESTAND --- */
  .stock {
    background: var(--black-soft);
  }
  .stock__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-top: 20px;
  }
  .stock__item {
    position: relative;
    overflow: hidden;
    background: #000;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    transition: transform .5s ease;
  }
  .stock__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease, filter .8s ease;
    filter: grayscale(0.2) contrast(1.05);
  }
  .stock__item:hover img { transform: scale(1.04); filter: grayscale(0); }
  .stock__item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
  }
  .stock__caption {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    z-index: 2;
  }
  .stock__caption h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-weight: 500; font-size: 22px;
    color: var(--white); letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .stock__caption p {
    font-size: 11px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--silver);
  }
  @media (max-width: 999px) { .stock__grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
  @media (max-width: 599px) { .stock__grid { grid-template-columns: 1fr; } }
  .stock__cta { text-align: center; margin-top: 56px; }
  .stock__cta-note {
    color: var(--silver); font-size: 14px;
    margin-bottom: 22px; opacity: 0.8;
  }

  /* --- TRUST / WERTE --- */
  .values {
    background: var(--black);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .values__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    margin-top: 80px;
  }
  .values__item {
    padding: 56px 32px;
    border-right: 1px solid var(--line);
    text-align: center;
    transition: background-color .35s ease;
  }
  .values__item:last-child { border-right: 0; }
  .values__item:hover { background: rgba(255,255,255,0.02); }
  .values__num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-style: italic; font-size: 13px; color: var(--accent);
    letter-spacing: 0.2em; margin-bottom: 22px; opacity: 0.85;
  }
  .values__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-weight: 500; font-size: 22px;
    color: var(--white); margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.005em;
  }
  .values__body {
    font-size: 14px; color: var(--silver);
    line-height: 1.65; opacity: 0.85;
  }
  @media (max-width: 999px) {
    .values__grid { grid-template-columns: 1fr 1fr; }
    .values__item:nth-child(2) { border-right: 0; }
    .values__item:nth-child(1), .values__item:nth-child(2) { border-bottom: 1px solid var(--line); }
  }
  @media (max-width: 599px) {
    .values__grid { grid-template-columns: 1fr; }
    .values__item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .values__item:last-child { border-bottom: 0; }
  }

  /* --- BIG QUOTE --- */
  .bigquote {
    background: var(--black);
    text-align: center;
    padding: 120px 40px;
  }
  .bigquote__text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.35;
    color: var(--white);
    max-width: 920px;
    margin: 0 auto 40px;
    letter-spacing: -0.02em;
  }
  .bigquote__attr {
    font-size: 11px; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--silver-soft);
  }

  /* --- CONTACT --- */
  .contact {
    background: var(--black);
    border-top: 1px solid var(--line);
  }
  .contact__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
    margin-top: 60px;
  }
  .contact__details {
    font-size: 16px;
    line-height: 1.85;
  }
  .contact__row {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    display: grid; grid-template-columns: 110px 1fr;
    gap: 28px;
    align-items: baseline;
  }
  .contact__row:last-child { border-bottom: 0; }
  .contact__label {
    font-size: 10px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--silver-soft);
  }
  .contact__value { color: var(--white-soft); }
  .contact__value a { color: var(--white-soft); text-decoration: none; transition: color .2s ease; }
  .contact__value a:hover { color: var(--white); }
  .contact__map {
    aspect-ratio: 4 / 5;
    background: #000 url('assets/showroom-side.webp') center/cover no-repeat;
    filter: grayscale(0.4) contrast(1.05);
    position: relative;
  }
  .contact__map::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.7) 100%);
  }
  @media (max-width: 999px) {
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .contact__map { aspect-ratio: 16 / 11; }
  }

  /* --- Mobile-only line-break helper --- */
  br.br-mobile { display: none; }
  @media (max-width: 749px) { br.br-mobile { display: initial; } }

  /* --- FOOTER --- */
  footer {
    background: #000;
    padding: 60px 40px 30px;
    border-top: 1px solid var(--line);
  }
  .footer__inner { max-width: 1280px; margin: 0 auto; }
  .footer__top {
    display: grid; grid-template-columns: 1fr auto;
    gap: 40px; align-items: end;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }
  .footer__brand img { height: 42px; opacity: 0.95; margin-bottom: 12px; }
  .footer__brand p { font-size: 12px; color: var(--silver-soft); letter-spacing: 0.18em; text-transform: uppercase; }
  .footer__social { display: flex; gap: 14px; }
  .footer__social a {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: var(--silver);
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
    text-decoration: none;
  }
  .footer__social a:hover {
    color: var(--white);
    border-color: var(--white-soft);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
  }
  .footer__social svg { width: 18px; height: 18px; fill: currentColor; }
  .footer__bottom {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 30px;
    font-size: 11px; color: var(--silver-soft);
    letter-spacing: 0.1em;
    flex-wrap: wrap; gap: 18px;
  }
  .footer__legal { display: flex; gap: 22px; }
  .footer__legal a {
    color: var(--silver); text-decoration: none;
    transition: color .2s ease;
  }
  .footer__legal a:hover { color: var(--white-soft); }
  .footer__vendo {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--silver-soft);
  }
  .footer__vendo a { color: var(--silver); text-decoration: none; }
  .footer__vendo a:hover { color: var(--white); }
  @media (max-width: 749px) {
    footer { padding: 50px 22px 24px; }
    .footer__top {
      grid-template-columns: 1fr;
      gap: 28px; align-items: start;
      padding-bottom: 32px;
    }
    .footer__social { gap: 12px; }
    .footer__social a { width: 42px; height: 42px; }
    .footer__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }
  }

  /* --- SCROLL ANIM --- */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* --- PAGE HERO (subpages) --- */
  .page-hero {
    background: var(--black);
    padding: 180px 40px 80px;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .page-hero::before {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 1px;
    background: var(--accent); opacity: 0.6;
  }
  .page-hero__inner { max-width: 980px; margin: 0 auto; text-align: center; }
  .page-hero__eyebrow {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.42em; text-transform: uppercase;
    color: var(--silver); margin-bottom: 22px;
    opacity: 0.85;
  }
  .page-hero__eyebrow::before, .page-hero__eyebrow::after {
    content: ''; display: inline-block; width: 32px; height: 1px;
    background: var(--silver); vertical-align: middle; margin: 0 18px;
  }
  .page-hero__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-weight: 400;
    font-size: clamp(36px, 5.6vw, 72px);
    color: var(--white); line-height: 1.08;
    letter-spacing: -0.02em;
  }
  .page-hero__title em { font-style: italic; color: var(--silver); font-weight: 500; }
  @media (max-width: 749px) { .page-hero { padding: 130px 22px 50px; } }

  .nav__links a.active { opacity: 1; color: var(--white); }

  /* ============================================
     PREMIUM GIMMICKS
     ============================================ */

  /* --- Scroll Progress Bar --- */
  .scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 2px; width: 100%;
    background: linear-gradient(90deg, var(--accent), var(--white));
    z-index: 1100;
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
  }

  /* --- Counter Section --- */
  .counters {
    background: var(--black);
    padding: 140px 40px;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .counters__inner {
    max-width: 1280px; margin: 0 auto;
  }
  .counters__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 70px;
  }
  .counter {
    text-align: center;
    padding: 40px 24px;
    border-right: 1px solid var(--line);
  }
  .counter:last-child { border-right: 0; }
  .counter__num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 88px);
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    display: inline-block;
  }
  .counter__suffix {
    font-style: italic;
    color: var(--accent);
    margin-left: 4px;
  }
  .counter__label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--silver);
    opacity: 0.75;
  }
  @media (max-width: 999px) {
    .counters { padding: 96px 22px; }
    .counters__grid { grid-template-columns: 1fr 1fr; }
    .counter:nth-child(2) { border-right: 0; }
    .counter:nth-child(1), .counter:nth-child(2) { border-bottom: 1px solid var(--line); }
  }

  /* --- Rotating Word --- */
  .rotator {
    display: inline-block;
    position: relative;
    text-align: left;
    vertical-align: baseline;
  }
  .rotator__word {
    display: inline-block;
    font-style: italic;
    color: var(--accent);
    opacity: 1;
    transition: opacity .4s ease;
    white-space: nowrap;
  }
  .rotator__word.is-leaving {
    opacity: 0;
  }

  /* --- Maps Embed --- */
  .maps-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--black-soft);
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .maps-frame iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
    filter: grayscale(0.6) contrast(1.1) brightness(0.85);
    transition: filter .5s ease;
  }
  .maps-frame:hover iframe { filter: grayscale(0) contrast(1) brightness(1); }
  .maps-frame__overlay {
    position: absolute; bottom: 20px; left: 20px;
    z-index: 2;
    background: var(--black);
    color: var(--white);
    padding: 14px 22px;
    font-size: 10px; letter-spacing: 0.32em;
    text-transform: uppercase;
    border-left: 2px solid var(--accent);
    pointer-events: none;
  }
  @media (max-width: 999px) {
    .maps-frame { aspect-ratio: 16/12; }
  }

  /* --- Magnetic Button effect (hint) --- */
  .btn { will-change: transform; }

  /* --- Image lazy fade-in --- */
  img.lazy-fade {
    opacity: 0;
    transition: opacity .6s ease;
  }
  img.lazy-fade.loaded { opacity: 1; }

  /* --- Sticky WhatsApp Button --- */
  .wa-sticky {
    position: fixed;
    right: 22px;
    bottom: 86px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.32), 0 4px 14px rgba(0,0,0,.32);
    z-index: 90;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
    text-decoration: none;
  }
  .wa-sticky:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.42), 0 6px 18px rgba(0,0,0,.4);
  }
  .wa-sticky svg { width: 30px; height: 30px; fill: #fff; }
  .wa-sticky::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: waPulse 2.4s ease-out infinite;
    pointer-events: none;
  }
  @keyframes waPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
  }
  @media (max-width: 599px) {
    .wa-sticky { right: 16px; bottom: 78px; width: 54px; height: 54px; }
    .wa-sticky svg { width: 28px; height: 28px; }
  }


/* ═══ HERO V2 — Logo Animation + Fade Top ═══ */

/* Hero-Text ausgeblendet (Manuel-Feedback 18.05.2026) — Markup bleibt, falls reaktiviert */
.hero__inner { display: none !important; }

/* Hero-Buttons · Quick-Access zu den wichtigsten Bereichen */
.hero__buttons {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 5;
  padding: 0 22px;
  max-width: 1100px;
  width: 100%;
  opacity: 0;
  animation: heroBtnsReveal 0.9s cubic-bezier(.22,1,.36,1) 1.4s forwards;
}
@keyframes heroBtnsReveal {
  0% { opacity: 0; transform: translate(-50%, 24px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(20,20,20,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.hero__btn:hover {
  background: rgba(40,40,40,0.78);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}
.hero__btn-icon { font-size: 17px; line-height: 1; }
.hero__btn--primary {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.hero__btn--primary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}
@media (max-width: 749px) {
  .hero__buttons {
    bottom: 80px;
    gap: 10px;
  }
  .hero__btn {
    padding: 11px 16px;
    font-size: 13px;
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    justify-content: center;
  }
  .hero__btn-label { font-size: 12.5px; }
}

/* Fade oben im Hero — sanfter Schwarz-Verlauf damit Logo lesbar ist */
.hero__fade-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(180deg,
    #0a0a0a 0%,
    #0a0a0a 30%,
    rgba(10,10,10,0.85) 55%,
    rgba(10,10,10,0.45) 78%,
    rgba(10,10,10,0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero-Logo: FIXED positioniert damit es flüssig fliegen kann */
.hero__logo-wrap {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1100; /* Über nav (1000) damit Logo nicht vom Header-Background überdeckt wird */
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  will-change: transform;
  /* KEINE CSS-Transitions hier — JS setzt transform per Frame */
}

.hero__logo {
  width: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation:
    heroLogoWipe 2.0s cubic-bezier(.55,.02,.3,1) 0.4s forwards;
}

@keyframes heroLogoWipe {
  0%   { opacity: 0; clip-path: inset(0 100% 0 0); }
  12%  { opacity: 1; clip-path: inset(0 100% 0 0); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); }
}

/* Header-Logo: standardmäßig versteckt im "hero-mode" */
.nav.nav--hero-mode .nav__logo img {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.22,1,.36,1);
}
.nav.nav--hero-mode .nav__logo span {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.22,1,.36,1);
}

/* Header-Logo wird sichtbar nach Scroll — nur das Bildlogo, Brand-Text bleibt versteckt */
.nav.nav--scrolled .nav__logo img {
  opacity: 1;
  transform: scale(1) translateX(0);
}
.nav.nav--scrolled .nav__logo span {
  display: none;
}
/* Logo zentriert im Header beim Scrollen */
.nav.nav--scrolled .nav__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Wenn Header-Logo sichtbar ist, wird Hero-Logo unsichtbar (versteckt sich) */
.hero__logo-wrap.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Logo nicht über dem geöffneten Mobile-Menü anzeigen */
body.mobile-open .hero__logo-wrap {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

/* Mobile Anpassungen */
@media (max-width: 749px) {
  .hero__logo-wrap {
    top: 0;
  }
  /* .hero__logo Width wird vom JS direkt inline gesetzt — keine CSS-Override hier */
  /* Hero-Fade Mobile: tiefes Schwarz oben, weich auslaufen */
  .hero__fade-top {
    height: 260px;
    background: linear-gradient(180deg,
      #0a0a0a 0%,
      #0a0a0a 28%,
      rgba(10,10,10,0.82) 55%,
      rgba(10,10,10,0.40) 80%,
      rgba(10,10,10,0) 100%);
  }
  .hero {
    padding-top: 240px !important;
  }
  .hero__title {
    font-size: clamp(26px, 6.8vw, 40px) !important;
    letter-spacing: -0.01em !important;
    line-height: 1.15 !important;
  }
  .hero {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .nav__cta {
    font-size: 11px;
    padding: 8px 14px;
    white-space: nowrap;
  }
}

/* === Social Icons (universell) === */
.reel__socials {
  display: flex; justify-content: center; align-items: center;
  gap: 22px;
  margin: 64px auto 8px;
  flex-wrap: wrap;
  padding: 0 22px;
  position: relative;
  z-index: 5;
}
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
  text-decoration: none;
}
.social-icon svg { width: 18px; height: 18px; display: block; }
.social-icon:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.34);
  transform: translateY(-2px);
}
@media (max-width: 749px) {
  .reel__socials { gap: 16px; margin-top: 30px; }
  .social-icon { width: 38px; height: 38px; }
  .social-icon svg { width: 16px; height: 16px; }
}

/* === Back-to-Top Button === */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(20,20,22,0.85);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, background-color .25s ease, border-color .25s ease, visibility 0s linear .3s;
  z-index: 90;
  box-shadow: 0 8px 22px rgba(0,0,0,0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .3s ease, transform .3s ease, background-color .25s ease, border-color .25s ease;
}
.back-to-top:hover {
  background: rgba(40,40,44,0.95);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.back-to-top svg { width: 20px; height: 20px; display: block; }
@media (max-width: 599px) {
  .back-to-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }
  .back-to-top svg { width: 18px; height: 18px; }
}

/* === OMA Update 08.06.2026: Social ins Menue, WhatsApp-Sticky raus, Hero mobil zentriert === */
/* Social-Icons nur im (mobilen) Menue, nicht in der Desktop-Navigation */
.nav__social-item { display: none; }
.nav__social-row { display: inline-flex; gap: 18px; align-items: center; }
.nav__links .nav__social-row a { color: var(--white-soft); opacity: 0.82; transition: color .25s ease, opacity .25s ease; display: inline-flex; align-items: center; padding: 0; border-bottom: none; width: auto; }
.nav__links .nav__social-row a:hover { opacity: 1; color: var(--accent); }
.nav__links .nav__social-item { border-bottom: none; }

@media (max-width: 1024px) {
  /* im aufklappbaren Mobile-Menue die Social-Icons zeigen */
  .nav__links .nav__social-item { display: flex; justify-content: center; margin-top: 30px; }
  .nav__social-row { gap: 28px; }
  .nav__social-row a svg { width: 26px; height: 26px; }
}

@media (max-width: 749px) {
  /* Hero-Hintergrund Mobile (Shooting 12.06., Hochformat): Manuel zentriert */
  .hero__bg { background-position: center center; }
}

/* === OMA Update 08.06.2026 (2): Desktop-Navigation = Burger-Menue wie Mobile === */
/* Oben nur Logo links + Menue-Burger + Termin-CTA rechts. Horizontale Links wandern ins Overlay. */
@media (min-width: 1025px) {
  /* nav__links wird zum Fullscreen-Overlay (statt horizontaler Leiste) */
  .nav__links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh; height: 100dvh;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 0; padding: 120px 30px;
    overflow-y: auto;
    background: #0a0a0a;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .35s ease, visibility 0s linear .35s;
    z-index: 1100;
  }
  body.mobile-open .nav__links {
    opacity: 1; visibility: visible; pointer-events: auto;
    transition: opacity .35s ease;
  }
  .nav__links li { width: 100%; max-width: 460px; text-align: center; list-style: none; }
  .nav__links a {
    display: block; padding: 20px 0;
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 400;
    font-size: 30px; letter-spacing: -0.005em; text-transform: none;
    color: var(--white); opacity: 0.92;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color .25s ease, opacity .25s ease;
  }
  .nav__links a:hover { opacity: 1; color: var(--accent); }
  body.mobile-open .nav__links::before {
    content: ''; display: block;
    position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
    width: 170px; height: 28px;
    background: url('assets/oma-logo-standard-white.png') center / contain no-repeat;
    opacity: 0.95;
  }
  /* Social-Icons im Desktop-Menue zeigen */
  .nav__links .nav__social-item { display: flex; justify-content: center; margin-top: 30px; }
  .nav__social-row { gap: 28px; }
  .nav__social-row a svg { width: 26px; height: 26px; }

  /* Burger jetzt auch auf Desktop, Termin-CTA im Header entfernt (10.06.2026) */
  .nav__burger { display: inline-flex; order: 2; margin-left: auto; z-index: 1200; position: relative; }
  .nav__cta { display: none; }
  body.mobile-open .nav__burger-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.mobile-open .nav__burger-icon span:nth-child(2) { opacity: 0; }
  body.mobile-open .nav__burger-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  body.mobile-open .nav__burger-label { opacity: 0; }

  /* Scroll-Sperre wenn Menue offen */
  html.mobile-open, body.mobile-open { overflow: hidden; }
}

/* === OMA Update 10.06.2026: WhatsApp-Sticky nur im Kontakt-Bereich === */
.wa-sticky {
  position: fixed; right: 24px; bottom: 100px;
  z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
}
.wa-sticky.is-visible {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .3s ease, transform .3s ease;
}
.wa-sticky:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.5); }
.wa-sticky svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 599px) {
  .wa-sticky { right: 16px; bottom: 78px; width: 52px; height: 52px; }
}

/* === OMA Update 10.06.2026 (2): Hero-Logo klickbar zur Startseite === */
.hero__logo-wrap { pointer-events: none; }
.hero__logo-link { pointer-events: auto; display: block; cursor: pointer; }

/* === OMA Update 12.06.2026: Mobile-Hero unten satt in Schwarz auslaufen lassen.
   Endet in exakt var(--black) #0a0a0a = Hintergrund der Folge-Sektion, damit die
   hellen Schauraum-Fliesen verschwinden und die Social-Icons frei stehen. === */
@media (max-width: 749px) {
  .hero::after {
    background:
      linear-gradient(180deg,
        rgba(10,10,10,0.10) 0%,
        rgba(10,10,10,0)    26%,
        rgba(10,10,10,0.30) 56%,
        rgba(10,10,10,0.80) 78%,
        #0a0a0a             100%);
  }
}

/* === OMA Update 12.06.2026: Live-Bestand von AutoScout24 === */
.stock__caption .stock__version {
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: none; color: var(--silver);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 6px;
}
.stock__caption .stock__specs {
  font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--silver);
}
.stock__price {
  margin-top: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px; font-weight: 700; letter-spacing: 0.01em;
  color: var(--accent);
}
.stock__item--more .stock__caption h3 { color: var(--accent); }
.stock__loading {
  grid-column: 1 / -1;
  padding: 70px 20px; text-align: center;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--silver);
}

/* === OMA Update 12.06.2026: Fahrzeug-Detail-Overlay (AutoScout-Daten on-site) === */
.fz-overlay { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 30px; }
.fz-overlay__back { position: absolute; inset: 0; background: rgba(5,5,5,0.88); backdrop-filter: blur(6px); }
.fz-overlay__box {
  position: relative; z-index: 1;
  width: 100%; max-width: 1240px; max-height: calc(100vh - 60px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: var(--black); border: 1px solid rgba(255,255,255,0.12);
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 0;
}
.fz-overlay__lade { grid-column: 1 / -1; padding: 120px 30px; text-align: center; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--silver); }
.fz-overlay__close {
  position: fixed; top: 42px; right: 46px;
  z-index: 5; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35); background: rgba(10,10,10,0.7);
  color: var(--white); font-size: 26px; line-height: 1; cursor: pointer;
}
.fz-overlay__close:hover { border-color: var(--accent); color: var(--accent); }

.fz-galerie { padding: 26px 0 26px 26px; min-width: 0; }
.fz-info { min-width: 0; }
.fz-galerie__bild { position: relative; aspect-ratio: 4 / 3; background: #000; overflow: hidden; }
.fz-galerie__bild img { width: 100%; height: 100%; object-fit: cover; }
.fz-galerie__pfeil {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4); background: rgba(10,10,10,0.55);
  color: var(--white); font-size: 19px; cursor: pointer; transition: all .2s;
}
.fz-galerie__pfeil:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }
.fz-galerie__pfeil--l { left: 14px; }
.fz-galerie__pfeil--r { right: 14px; }
.fz-galerie__zaehler {
  position: absolute; bottom: 12px; right: 14px;
  font-size: 11px; letter-spacing: 0.18em; color: var(--white);
  background: rgba(10,10,10,0.65); padding: 5px 12px; border-radius: 99px;
}
.fz-galerie__thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 6px; }
.fz-galerie__thumbs img {
  width: 86px; height: 62px; object-fit: cover; flex: 0 0 auto;
  opacity: 0.45; cursor: pointer; border: 1px solid transparent; transition: all .2s;
}
.fz-galerie__thumbs img.aktiv, .fz-galerie__thumbs img:hover { opacity: 1; border-color: var(--accent); }

.fz-info { padding: 34px 30px 40px; }
.fz-info__titel { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; font-weight: 700; letter-spacing: -0.01em; color: var(--white); margin: 8px 0 2px; }
.fz-info__version { font-size: 13px; color: var(--silver); margin-bottom: 14px; }
.fz-info__preis { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.fz-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.10); margin-bottom: 22px; }
.fz-specs__zelle { background: var(--black); padding: 11px 14px; }
.fz-specs__zelle span { display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver); margin-bottom: 3px; }
.fz-specs__zelle b { font-size: 14px; color: var(--white); font-weight: 600; }
.fz-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.fz-info__abschnitt { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; color: var(--white); margin: 24px 0 10px; letter-spacing: 0.02em; }
.fz-beschreibung { font-size: 13.5px; line-height: 1.75; color: var(--silver); max-height: 260px; overflow-y: auto; padding-right: 8px; }
/* Beschreibung 1:1 wie auf AutoScout rendern: neutrale Standard-Bullets,
   keine eigenen Akzent-Striche, damit getippte Bindestriche und echte
   Listenpunkte nicht unterschiedlich aussehen */
.fz-beschreibung ul, .fz-beschreibung ol { margin: 10px 0 10px 0; padding-left: 20px; list-style: disc; }
.fz-beschreibung li { padding: 2px 0; }
.fz-beschreibung b, .fz-beschreibung strong { color: var(--white); font-weight: 600; }
.fz-ausstattung { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fz-ausstattung__block h4 { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.fz-ausstattung__block ul { list-style: none; padding: 0; margin: 0; }
.fz-ausstattung__block li { font-size: 12.5px; color: var(--silver); padding: 3px 0 3px 16px; position: relative; }
.fz-ausstattung__block li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 1px; background: var(--accent); }
.fz-as24 { display: inline-block; margin-top: 26px; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 3px; }
.fz-as24:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 899px) {
  .fz-overlay { padding: 0; }
  .fz-overlay__box { grid-template-columns: 1fr; max-height: 100vh; max-height: 100dvh; border: 0; }
  .fz-galerie { padding: 0; }
  .fz-galerie__thumbs { padding: 0 12px 6px; }
  .fz-info { padding: 22px 20px 50px; }
  .fz-info__titel { font-size: 24px; }
  .fz-info__preis { font-size: 26px; }
  .fz-ausstattung { grid-template-columns: 1fr; }
  .fz-overlay__close { position: fixed; top: 12px; right: 12px; float: none; margin: 0; }
}

/* --- Karte: Klick-zum-Laden (DSGVO/Consent) --- */
.maps-consent {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 24px;
}
.maps-consent__text { color: var(--silver, #b8b8b8); font-size: 14px; max-width: 340px; margin: 0; line-height: 1.6; }
.maps-consent__link { color: var(--white, #fff); font-size: 13px; text-decoration: underline; }

/* --- Deaktivierte Social-Icons (z. B. Facebook, kein aktives Profil) --- */
.social-disabled { cursor: default; opacity: .5; }
.social-disabled:hover { opacity: .5; transform: none; }
