/* ============================================================
   VANTAGE — Farbwelt "Guards"
   Rot wird sparsam eingesetzt: Buttons, ein Wort pro Headline,
   Marker. Getragen wird die Seite von Schwarz und Alu.
   ============================================================ */

:root {
  --bg:        #0B0B0D;
  --surface:   #141417;
  --surface-2: #1B1B20;
  --line:      #26262B;
  --line-2:    #33333B;

  --text:      #F2F2F3;
  --muted:     #8E8E96;

  --red:       #D5001C;
  --red-hi:    #F0102E;
  --red-dim:   #7E0011;

  --alu:       #C9CCD1;
  --alu-dim:   #7E8288;

  --display: 'Archivo', system-ui, sans-serif;
  --body: 'Space Grotesk', system-ui, sans-serif;

  --pad: clamp(20px, 5vw, 64px);
  --r: 14px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 0;
}

h1 { font-size: clamp(44px, 9vw, 104px); }
h2 { font-size: clamp(32px, 5.4vw, 62px); }
h3 { font-size: 20px; letter-spacing: -0.01em; line-height: 1.2; }

p { margin: 0; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--alu);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: min(1240px, 100% - calc(var(--pad) * 2)); margin-inline: auto; }
.container-narrow { width: min(820px, 100% - calc(var(--pad) * 2)); }

/* ---------- Bausteine ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--alu);
  margin-bottom: 20px;
}
.tick { width: 7px; height: 7px; background: var(--red); flex: none; }

.accent { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.btn:hover { background: var(--red-hi); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.05); border-color: var(--alu-dim); }

.btn-alu { background: var(--alu); color: #0B0B0D; }
.btn-alu:hover { background: #fff; }

.btn-sm { min-height: 40px; padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(11,11,13,.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(1240px, 100% - calc(var(--pad) * 2));
  margin-inline: auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.24em;
}
.logo-mark { width: 22px; height: 22px; flex: none; }
.logo-mark svg { width: 100%; height: 100%; fill: none; stroke: var(--red); stroke-width: 4.5; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.btn { color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: transform .22s ease, opacity .22s ease, width .22s ease; }
.nav-toggle span:last-child { width: 16px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { width: 24px; transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 0;
  overflow: hidden;
}

.stage { position: absolute; inset: 0; }

.stage-floor {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #0B0B0D 0%, #101015 48%, #08080A 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 2px, transparent 2px 5px);
}
.stage-pool {
  position: absolute;
  left: 50%; bottom: 8%;
  width: min(1500px, 140vw); height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 70%, rgba(201,204,209,.16) 0%, rgba(201,204,209,.05) 38%, transparent 68%);
  filter: blur(6px);
}
.stage-rim {
  position: absolute;
  left: 50%; bottom: 20%;
  width: min(1100px, 120vw); height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 22% 60%, rgba(213,0,28,.34) 0%, transparent 60%);
  filter: blur(26px);
}
.stage-car {
  position: absolute;
  left: 50%; bottom: 14%;
  width: min(1160px, 118vw);
  transform: translateX(-50%);
  opacity: .96;
}
.stage-grain {
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: .16;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-photo {
  position: absolute; inset: 0;
  background: url("../media/hero.jpg") center 42% / cover no-repeat;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: .12;
  mix-blend-mode: overlay;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-video.is-ready { opacity: 1; }

.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,.88) 0%, rgba(11,11,13,.28) 34%, rgba(11,11,13,.82) 82%, #0B0B0D 100%);
}

.hero-content {
  position: relative;
  width: min(1240px, 100% - calc(var(--pad) * 2));
  margin-inline: auto;
  padding-bottom: 54px;
}
.hero-content h1 { margin-bottom: 26px; }
.hero-sub {
  max-width: 52ch;
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--muted);
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-facts {
  position: relative;
  width: min(1240px, 100% - calc(var(--pad) * 2));
  margin: 0 auto;
  padding: 24px 0 30px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
}
.hero-facts strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 2.1vw, 24px);
  letter-spacing: -0.01em;
}
.hero-facts span { font-size: 12.5px; color: var(--muted); }

/* ---------- Laufband ---------- */

.marquee {
  border-block: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding: 15px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--alu-dim);
  white-space: nowrap;
}
.marquee-track i { width: 5px; height: 5px; background: var(--red); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Abschnitte ---------- */

.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }

.section-head { margin-bottom: 52px; max-width: 760px; }
.section-head h2 { margin-bottom: 18px; }
.section-lead { color: var(--muted); font-size: clamp(15px, 1.6vw, 17px); max-width: 60ch; }

/* ---------- Arbeiten ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter {
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.filter:hover { color: var(--text); border-color: var(--alu-dim); }
.filter.is-active { background: var(--text); border-color: var(--text); color: #0B0B0D; font-weight: 700; }

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

.tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.tile:hover { border-color: var(--alu-dim); transform: translateY(-3px); }
.tile.is-tall { grid-row: span 2; }

.tile-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #0E0E11; }
.tile.is-tall .tile-media { aspect-ratio: 9 / 13; }
.tile-media img, .tile-media video { width: 100%; height: 100%; object-fit: cover; }

/* Grafikflächen, solange kein eigenes Material hinterlegt ist */
.tile-art { position: absolute; inset: 0; --a: #D5001C; --b: #C9CCD1; }
.tile-art::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 22% 12%, color-mix(in srgb, var(--a) 46%, transparent) 0%, transparent 58%),
    radial-gradient(100% 80% at 88% 96%, color-mix(in srgb, var(--b) 24%, transparent) 0%, transparent 62%),
    linear-gradient(162deg, #191920 0%, #0C0C0F 62%);
}
.tile-art::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(104deg, transparent 32%, rgba(255,255,255,.14) 46%, transparent 56%),
    var(--grain);
  background-size: auto, 180px 180px;
  opacity: .5;
  mix-blend-mode: screen;
}
.tile-art-2 { --a: #C9CCD1; --b: #D5001C; }
.tile-art-3 { --a: #7E8288; --b: #D5001C; }
.tile-art-4 { --a: #D5001C; --b: #7E0011; }
.tile-art-5 { --a: #C9CCD1; --b: #7E8288; }
.tile-art-6 { --a: #7E0011; --b: #C9CCD1; }

.tile-ghost {
  position: absolute;
  right: 14px; bottom: -14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 108px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,.07);
  pointer-events: none;
}

.tile-play {
  position: absolute;
  left: 16px; bottom: 16px;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(11,11,13,.62);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
}
.tile-play svg { width: 15px; height: 15px; fill: #fff; }

.tile-body { padding: 16px 18px 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.tile-title { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -0.005em; }
.tile-meta { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.tile-cat {
  flex: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--alu);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 4px 10px;
}
.tile-hint {
  position: absolute;
  left: 16px; top: 16px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  background: rgba(11,11,13,.55);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 4px 10px;
  backdrop-filter: blur(6px);
}

/* ---------- Pakete ---------- */

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  align-items: start;
}

.package {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.package.is-featured {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(213,0,28,.09) 0%, rgba(213,0,28,0) 46%), var(--bg);
}
.badge {
  position: absolute;
  top: -11px; left: 28px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.package-icon { width: 34px; height: 34px; }
.package-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--alu); stroke-width: 1.5; stroke-linejoin: round; }
.package-desc { color: var(--muted); font-size: 14px; }
.price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  padding-block: 6px 12px;
  border-bottom: 1px solid var(--line);
}
.price small { font-family: var(--body); font-size: 12px; font-weight: 400; color: var(--muted); margin-right: 8px; letter-spacing: 0; }

.checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.checks li { position: relative; padding-left: 22px; font-size: 14px; color: var(--muted); }
.checks li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 9px; height: 2px;
  background: var(--red);
}

.addons {
  margin-top: 22px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
}
.addons h3 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--alu); margin-bottom: 14px; font-family: var(--body); font-weight: 500; }
.addons ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2px 28px; }
.addons li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.addons li span { color: var(--muted); }
.addons li strong { font-weight: 700; white-space: nowrap; }

/* ---------- Drohne, coming soon ---------- */

.soon {
  margin-top: clamp(40px, 6vw, 68px);
  padding: 36px 32px;
  border: 1px dashed var(--line-2);
  border-radius: var(--r);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  gap: 36px;
}
.soon-art { width: 132px; flex: none; opacity: .8; }
.soon-art svg { width: 100%; height: auto; fill: none; stroke: var(--alu-dim); stroke-width: 1.2; }
.soon-art .dot { fill: var(--red); stroke: none; }
.soon-body { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.soon-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--alu);
  border: 1px solid var(--alu-dim);
  border-radius: 999px;
  padding: 5px 12px;
}
.soon-body h3 { font-size: clamp(22px, 3vw, 30px); }
.soon-body p { color: var(--muted); font-size: 14.5px; max-width: 62ch; }

/* ---------- Flotten ---------- */

.fleet { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.fleet-text h2 { margin-bottom: 18px; }
.fleet-note { margin: 18px 0 26px; font-size: 13.5px; color: var(--alu-dim); }
.fleet-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.fleet-list li {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color .18s ease, background .18s ease;
}
.fleet-list li:hover { border-color: var(--alu-dim); background: var(--surface-2); }
.fleet-list strong { display: block; font-family: var(--display); font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.fleet-list span { font-size: 14px; color: var(--muted); }

/* ---------- Ablauf ---------- */

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2px; }
.step { padding: 30px 26px 34px; border-top: 2px solid var(--line); position: relative; }
.step::after { content: ""; position: absolute; left: 0; top: -2px; width: 38px; height: 2px; background: var(--red); }
.step-num { display: block; font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: 0.18em; color: var(--alu-dim); margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- Kundenstimmen ---------- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.testimonial {
  margin: 0;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .18s ease;
}
.testimonial:hover { border-color: var(--line-2); }
.stars { color: var(--red); font-size: 15px; letter-spacing: 4px; }
.testimonial blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.testimonial figcaption {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial figcaption strong { font-size: 14px; font-weight: 700; }
.testimonial figcaption span { font-size: 12.5px; color: var(--muted); }

/* ---------- FAQ ---------- */

.faq { display: flex; flex-direction: column; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 19px);
  letter-spacing: -0.01em;
  transition: color .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--alu); }
.faq summary::after {
  content: "";
  position: absolute; right: 6px; top: 50%;
  width: 13px; height: 2px;
  background: var(--red);
  transform: translateY(-50%);
}
.faq summary::before {
  content: "";
  position: absolute; right: 11.5px; top: 50%;
  width: 2px; height: 13px;
  background: var(--red);
  transform: translateY(-50%);
  transition: transform .2s ease, opacity .2s ease;
}
.faq details[open] summary::before { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.faq details p { padding: 0 0 24px; color: var(--muted); font-size: 15px; max-width: 68ch; }

/* ---------- Kontakt ---------- */

.contact { padding-bottom: clamp(80px, 11vw, 150px); }
.contact-box {
  position: relative;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(90% 130% at 88% 8%, rgba(213,0,28,.18) 0%, transparent 58%),
    var(--surface);
  overflow: hidden;
}
.contact-box h2 { margin-bottom: 18px; }
.contact-box .section-lead { margin-bottom: 32px; }

.social-cta { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; margin-bottom: 34px; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--bg);
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease;
}
.social-btn:hover { border-color: var(--red); transform: translateY(-2px); }
.social-btn svg { width: 24px; height: 24px; flex: none; fill: none; stroke: var(--alu); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.social-btn svg .fill { fill: var(--alu); stroke: none; }
.social-btn span { display: flex; flex-direction: column; font-family: var(--display); font-weight: 600; font-size: 16px; }
.social-btn small { font-family: var(--body); font-size: 11.5px; font-weight: 400; color: var(--muted); letter-spacing: 0.04em; }

.template { border-top: 1px solid var(--line); padding-top: 26px; }
.template-title { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.template pre {
  margin: 0 0 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  line-height: 1.9;
  color: var(--alu);
  white-space: pre-wrap;
}

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--line); padding: 34px 0; background: var(--surface); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer nav a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer nav a:hover { color: var(--text); }
.copy { font-size: 13px; color: var(--alu-dim); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(6,6,8,.95);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  padding: clamp(20px, 5vw, 60px);
}
.lightbox[hidden] { display: none; }
.lightbox-stage {
  position: relative;
  width: min(1080px, 100%);
  max-height: 76vh;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  overflow: hidden;
  background: #0E0E11;
}
.lightbox-stage img, .lightbox-stage video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.lightbox-empty {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center; padding: 30px;
}
.lightbox-empty strong { font-family: var(--display); font-weight: 800; font-size: clamp(20px, 3vw, 28px); }
.lightbox-empty span { font-size: 14px; color: var(--muted); max-width: 46ch; }
.lightbox-caption { font-size: 14px; color: var(--muted); text-align: center; }
.lightbox-close {
  position: absolute; top: 18px; right: 20px;
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text);
  font-size: 26px; line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { border-color: var(--red); }

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 20px);
  z-index: 95;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--alu);
  color: #0B0B0D;
  font-size: 13.5px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Einblenden ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Schmale Bildschirme ---------- */

@media (max-width: 900px) {
  .fleet { grid-template-columns: 1fr; }
  .soon { flex-direction: column; align-items: flex-start; gap: 24px; text-align: left; }
  .soon-art { width: 92px; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--pad) 26px;
    background: rgba(11,11,13,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a.btn { margin-top: 18px; border-bottom: 0; justify-content: center; }

  .hero { min-height: 92svh; padding-top: 108px; }
  .stage-car { bottom: 20%; width: 150vw; }
  .tile.is-tall { grid-row: span 1; }
  .tile.is-tall .tile-media { aspect-ratio: 16 / 10; }
  .lightbox-stage { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .tile:hover, .social-btn:hover { transform: none; }
}
