/* =============================================================
   CODE-KOMMENTARE: style.css
   Zweck: Stylesheet für Layout, Farben, Abstände, Responsiveness und visuelle Wirkung.
   Die Kommentare erklären die CSS-Bereiche. Sie ändern das Design nicht.
============================================================= */

/* Reset: Entfernt Standardabstände und macht Größenberechnung einfacher. */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Globale Design-Variablen: Farben, Schatten, Rundungen und Grundwerte. */
:root {
  --bg: #09090d;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f6f2ea;
  --muted: #b9bac3;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --red: #e23934;
  --red-strong: #ff433e;
  --gold: #d3a65f;
  --radius: 22px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

/* Grundverhalten der Seite, z. B. sanftes Scrollen. */
html {
  scroll-behavior: smooth;
}

/* Gesamtes Seitenlayout: Schrift, Hintergrund und Grundabstände. */
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(216, 181, 109, 0.18), transparent 34%),
    linear-gradient(180deg, #151515, #070707 44%, #111);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  padding: 18px;
}

a {
  color: inherit;
}

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

.page {
  min-height: 100vh;
}

/* Header: feststehende Navigationsleiste mit Glas-/Premium-Effekt. */


/* Logo- und Markenbereich im Header. */








/* Schnellzugriffs-Icons neben der Navigation. */


/* Icon-Buttons: E-Mail, Rechtliches, FAQ und Warenkorb. */









/* ===== Suchergebnisse ===== */
/* Suchergebnisse: wird über JavaScript ein- und ausgeblendet. */














/* Responsive Design: Anpassungen für kleinere Bildschirme. */







/* Warenkorb-Styling: Artikel, Mengensteuerung und Preisübersicht. */




/* Hauptnavigation: Seitenlinks innerhalb des Projekts. */








/* Mobile Navigation: Burger-Button für kleine Bildschirme. */



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

.nav a {
  color: rgba(246, 242, 234, 0.76);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  padding: 12px 15px;
  border-radius: 999px;
  transition: 180ms ease;
}

.nav a:hover {
  color: #111;
  background: var(--gold);
}

/* Hero-Bereich: erster großer Eindruck der Seite. */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 80px) 62px;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(460px, 1.35fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(216, 181, 109, 0.23), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(173, 28, 28, 0.18), transparent 27%),
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 32%, rgba(0,0,0,0.32));
  pointer-events: none;
}

/* Hero-Layout: ordnet Text und visuelle Elemente nebeneinander an. */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.36) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-copy h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

.slider {
  position: relative;
  z-index: 3;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 42px 0 20px;
}

.year {
  position: absolute;
  z-index: 0;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(216, 181, 109, 0.15);
  font-size: clamp(110px, 17vw, 260px);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.1em;
  user-select: none;
}

.car-frame {
  position: relative;
  z-index: 2;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,0.14), transparent 45%),
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.car-frame::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 11%;
  height: 22px;
  border-radius: 999px;
  background: rgba(0,0,0,0.62);
  filter: blur(18px);
  z-index: -1;
}

.car-frame img {
  width: 100%;
  aspect-ratio: 2172 / 724;
  object-fit: cover;
  transform: scale(1.01);
}

.car-frame.is-entering img {
  animation: carIn 780ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes carIn {
  from {
    opacity: 0;
    transform: translateX(42px) scale(1.025);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1.01);
    filter: blur(0);
  }
}

.model-panel {
  position: relative;
  z-index: 3;
  width: min(560px, 92%);
  margin: -38px auto 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(9, 9, 9, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.42);
}

.model-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.model-panel p:first-child {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.model-panel h2 {
  margin: 8px 0 8px;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(540px, 92%);
  margin: 24px auto 0;
}

.control-btn {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  font-size: 33px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: 180ms ease;
}

.control-btn:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: #111;
}

.progress {
  height: 5px;
  flex: 1;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.16);
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #fff2c0);
}

.progress span.run {
  animation: progressRun var(--duration) linear both;
}

@keyframes progressRun {
  from { width: 0; }
  to { width: 100%; }
}

.timeline-section,
.gallery-section,
.project-section {
  padding: 86px clamp(18px, 5vw, 80px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.project-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p:not(.eyebrow),
.project-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.timeline-tabs {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.timeline-tab {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  color: var(--text);
  padding: 13px;
  cursor: pointer;
  text-align: left;
  transition: 180ms ease;
}

.timeline-tab:hover,
.timeline-tab.is-active {
  background: var(--panel-strong);
  border-color: rgba(216,181,109,0.62);
  transform: translateY(-3px);
}

.timeline-tab img {
  height: 70px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}

.timeline-tab strong {
  display: block;
  font-size: 15px;
}

.timeline-tab span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

/* Galerie-Raster: ordnet mehrere Bilder sauber an. */
.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 2172 / 724;
  object-fit: cover;
}

.gallery-card h3 {
  margin: 0;
  padding: 18px 20px 20px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.project-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(216,181,109,0.16), rgba(255,255,255,0.045)),
    rgba(255,255,255,0.06);
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 116px;
  }

  .slider {
    min-height: auto;
  }

  .timeline-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

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


/* ===== Hamburger-Menü: nur auf Mobilgeräten aktiv ===== */


















/* ===== Technik-Seite: zusätzliche Komponenten ===== */
.tech-tabs {
  width: min(1160px, 100%);
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tech-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: 180ms ease;
}

.tech-tab:hover,
.tech-tab.is-active {
  background: linear-gradient(135deg, var(--gold), #e9c98c);
  color: #111;
  border-color: transparent;
  transform: translateY(-2px);
}

.tech-panels {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.tech-panel {
  display: none;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.tech-panel.is-active {
  display: grid;
}

.tech-panel-icon {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 28px;
  background: radial-gradient(circle at 40% 30%, rgba(216,181,109,0.28), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
}

.tech-panel-icon svg {
  width: 56%;
  height: 56%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.tech-panel h3 {
  margin: 0 0 6px;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.03em;
}

.tech-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.tech-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.tech-panel li strong {
  color: var(--text);
}

.spec-section {
  padding: 86px clamp(18px, 5vw, 80px);
}

.spec-table-wrap {
  width: min(940px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table caption {
  text-align: left;
  padding: 20px 26px 0;
  color: var(--muted);
  font-size: 13px;
}

.spec-table tr {
  border-bottom: 1px solid var(--line);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 16px 26px;
  font-size: 15px;
}

.spec-table th {
  width: 42%;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.spec-table td {
  color: var(--text);
}

@media (max-width: 720px) {
  .tech-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tech-panel-icon {
    max-width: 150px;
  }
  .spec-table th,
  .spec-table td {
    padding: 12px 16px;
    font-size: 13.5px;
  }
}


/* ===== Nav-Buttons: starker Glow + 3D-Effekt ===== */












/* ===== Projekt-Button: Gold ===== */






/* ===== Home-Button: Gold ===== */










/* ===== Newsletter-Button: eigene Animation ===== */












/* ===== Warenkorb-Icon: rote Puls- und Ping-Animation ===== */











/* ===== Zusätzliche professionelle Inhaltsbereiche ===== */
.info-section {
  padding: 72px clamp(18px, 5vw, 80px);
}

.info-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.text-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  padding: 28px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.info-card h3,
.text-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.035em;
}

.info-card p,
.text-panel p,
.info-card li,
.text-panel li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.info-card ul,
.text-panel ul {
  margin: 16px 0 0 20px;
}

.info-card strong,
.text-panel strong {
  color: var(--text);
}

.source-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.source-list a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  text-decoration: none;
  color: var(--text);
}

.source-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.6;
}

.process-steps {
  counter-reset: step;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-steps article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: 28px;
}

.process-steps article::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.process-steps h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.process-steps p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 920px) {
  .info-grid,
  .info-grid.two,
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   QUALITAETS-PATCH 10/10
   Semantik, Fokus, Navigation, Mobilansicht und Bewegungsreduktion.
   Die vorhandene Ordner- und Seitenstruktur bleibt unveraendert.
============================================================= */

:root {
  --quality-gold: #d7b45a;
  --quality-gold-light: #f4dda0;
  --quality-focus: #ffd86b;
  --quality-surface: rgba(15, 15, 18, 0.96);
}



.section-heading > h1,
.page-hero > h1,
.hero-copy > h1 {
  margin-top: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

/* Nur die aktuelle Seite wird optisch hervorgehoben. */




:where(a, button, input, select, textarea, [tabindex]):not([tabindex="-1"]):focus-visible {
  outline: 3px solid var(--quality-focus) !important;
  outline-offset: 3px !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed !important;
  opacity: 0.55;
}

input:user-invalid,
select:user-invalid,
textarea:user-invalid {
  border-color: #ff8a8a !important;
  box-shadow: 0 0 0 3px rgba(255, 95, 95, 0.12) !important;
}

input:user-valid,
select:user-valid,
textarea:user-valid {
  border-color: rgba(126, 214, 157, 0.75) !important;
}

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

.footer-mini-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-top: 0.7rem;
}

.footer-mini-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-mini-nav a:hover,
.footer-mini-nav a:focus-visible {
  color: var(--quality-gold-light);
}

.clean-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

.clean-list li::marker {
  color: var(--quality-gold);
}

.project-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.carousel-play-toggle {
  right: 4.8rem !important;
  left: auto !important;
  font-size: 1rem !important;
  letter-spacing: -0.15em;
}

.carousel-slide[aria-hidden="true"] {
  pointer-events: none;
}



@media (max-width: 640px) {
  

  

  

  

  

  .carousel-play-toggle {
    right: 4rem !important;
  }

  .project-downloads > * {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@keyframes quality-nav-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Der Newsletter-Goldpuls bleibt bewusst aktiv: reine Farb-/Schattenanimation
     ohne Bewegung, daher unkritisch fuer reduzierte Bewegung. */
  .main-nav a[href^="Newsletter.html"],
  .main-nav a[href^="Newsletter.html"].nav-active {
    animation-duration: 2.4s !important;
    animation-iteration-count: infinite !important;
  }

  video[autoplay] {
    animation: none !important;
  }
}




/* =============================================================
   VISUAL-PATCH: VOLLE BILDER + ORIGINALER PREMIUM-GLOW
   Stellt die Leuchteffekte der Referenz-ZIP wieder her, ohne
   Navigation, Responsivitaet oder Barrierefreiheit zu entfernen.
============================================================= */

/* Grundzustand der Navigationsbuttons mit dezenter 3D-Tiefe. */






/* Aktive Inhaltsseite: roter Porsche-Akzent mit Gold-Glow. */




/* Home und Projekt wie in der Referenz-ZIP dauerhaft in Gold. */




/* Newsletter pulsiert wieder sichtbar in Gold. */




@keyframes newsletterPremiumPulse {
  0%, 100% {
    box-shadow:
      0 2px 0 rgba(0, 0, 0, 0.35),
      0 4px 8px rgba(0, 0, 0, 0.25),
      0 0 0 rgba(211, 166, 95, 0);
  }
  50% {
    box-shadow:
      0 2px 0 rgba(0, 0, 0, 0.35),
      0 4px 8px rgba(0, 0, 0, 0.25),
      0 0 24px rgba(211, 166, 95, 0.85),
      0 0 46px rgba(211, 166, 95, 0.45);
  }
}



@keyframes newsletterPremiumPulseActive {
  0%, 100% {
    box-shadow:
      0 12px 28px rgba(226, 57, 52, 0.32),
      0 2px 0 rgba(120, 20, 18, 0.6),
      0 0 0 rgba(211, 166, 95, 0);
  }
  50% {
    box-shadow:
      0 12px 28px rgba(226, 57, 52, 0.32),
      0 2px 0 rgba(120, 20, 18, 0.6),
      0 0 26px rgba(211, 166, 95, 0.9),
      0 0 48px rgba(211, 166, 95, 0.5);
  }
}

/* Warenkorb wieder rot leuchtend statt durch den Qualitaets-Patch vergoldet. */




@keyframes cartPremiumPulse {
  0%, 100% {
    box-shadow: 0 0 24px rgba(226, 57, 52, 0.22);
  }
  50% {
    box-shadow:
      0 0 36px rgba(226, 57, 52, 0.6),
      0 0 64px rgba(226, 57, 52, 0.3);
  }
}

/* Bewegungsreduktion bleibt erhalten. */



/* Vorhandene Fahrzeuggrafiken auf Technik-Unterseiten vollständig darstellen. */
.car-frame img,
.gallery-card img,
.timeline-tab img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  display: block;
  background: #090a0d;
}

/* =============================================================
   FIRST-CLASS RELEASE 2.7
   Ruhiges Premium-Design, klare Navigation, volle Bilder,
   konsistente Software-Ergonomie und stabile Responsivitaet.
============================================================= */
:root {
  --fc-bg: #08090b;
  --fc-bg-soft: #101216;
  --fc-panel: rgba(18, 20, 24, 0.86);
  --fc-panel-solid: #14171c;
  --fc-line: rgba(255, 255, 255, 0.11);
  --fc-line-strong: rgba(216, 181, 109, 0.34);
  --fc-text: #f5f3ee;
  --fc-muted: #b8b8b5;
  --fc-gold: #d3a65f;
  --fc-gold-light: #f0cf91;
  --fc-red: #e23934;
  --fc-radius-lg: 30px;
  --fc-radius-md: 22px;
  --fc-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

html { scroll-padding-top: 112px; }
body {
  color: var(--fc-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(211,166,95,.07), transparent 27rem),
    radial-gradient(circle at 88% 32%, rgba(226,57,52,.045), transparent 24rem),
    var(--fc-bg);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .20;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}







/* Originale Navigationslogik der Ausgangs-ZIP, technisch bereinigt. */




















.section-heading { max-width: 820px; }
.section-heading .eyebrow,
.page-hero .kicker,
.hero-copy .eyebrow { color: var(--fc-gold-light); }
.section-heading h1,
.section-heading h2,
.page-hero h1,
.hero-copy h1 { text-wrap: balance; }
.section-heading p,
.hero-copy p:not(.eyebrow),
.page-hero p { max-width: 72ch; color: var(--fc-muted); }

.info-card,
.text-panel,
.summary-card,
.tech-panel,
.gallery-card,
.project-card,
.legal-grid article,
.confirmation-card,
.newsletter-card,
.feature-card:not(.is-photo),
.product-card,
.cart-summary,
.checkout-form-card,
.order-summary-card {
  border-color: var(--fc-line) !important;
  background: linear-gradient(145deg, rgba(23,25,30,.94), rgba(13,15,18,.9)) !important;
  box-shadow: var(--fc-shadow) !important;
}

.info-card,
.text-panel,
.tech-panel,
.gallery-card,
.product-card,
.legal-grid article {
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.info-card:hover,
.text-panel:hover,
.gallery-card:hover,
.product-card:hover,
.legal-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--fc-line-strong) !important;
  box-shadow: 0 34px 86px rgba(0,0,0,.42), 0 0 0 1px rgba(211,166,95,.08) !important;
}

/* Bilder bleiben vollstaendig sichtbar und werden wie auf einer dunklen Studioflaeche praesentiert. */
.car-frame,
.gallery-card,
.product-media {
  background: radial-gradient(circle at 50% 58%, rgba(255,255,255,.10), transparent 45%), #090a0d !important;
}
.car-frame img,
.gallery-card img,
.timeline-tab img,
.product-media img,
.cart-item img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}
.car-frame img,
.gallery-card img { width: 100% !important; height: auto !important; aspect-ratio: 3 / 1 !important; }
.car-frame { overflow: hidden; }
.model-panel { margin: 18px auto 0 !important; }
.timeline-tab img { background: #0c0e11; padding: 3px; }
.product-media { display: grid; place-items: center; min-height: 220px; padding: 12px; }
.product-media img { width: 100%; height: 100%; }
.cart-item img { background: #0c0e11; padding: 6px; }

.hero-carousel {
  background: radial-gradient(circle at 50% 48%, rgba(216,181,109,.10), transparent 42%), #050507 !important;
}
.carousel-slide[data-type="image"] img { object-fit: contain !important; object-position: center !important; }
.carousel-slide[data-type="video"] video { object-fit: cover !important; object-position: center !important; }

/* Neue First-Class-Komponenten. */
.metric-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius-md);
  overflow: hidden;
  background: rgba(14,16,20,.82);
  box-shadow: var(--fc-shadow);
}
.metric-strip article { padding: 24px; border-right: 1px solid var(--fc-line); }
.metric-strip article:last-child { border-right: 0; }
.metric-strip strong { display: block; color: var(--fc-gold-light); font-size: clamp(26px,3vw,42px); line-height: 1; }
.metric-strip span { display: block; margin-top: 8px; color: var(--fc-muted); font-size: 14px; line-height: 1.45; }

.journey-grid,
.dna-grid,
.quality-grid,
.decision-grid,
.engineering-grid,
.edition-grid {
  width: min(1180px,100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.journey-card,
.dna-card,
.quality-card,
.decision-card,
.engineering-card,
.edition-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius-md);
  background: linear-gradient(145deg, rgba(24,27,32,.92), rgba(12,14,17,.94));
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}
.journey-card::before,
.dna-card::before,
.quality-card::before,
.decision-card::before,
.engineering-card::before,
.edition-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--fc-gold-light), transparent);
}
.journey-card h3,
.dna-card h3,
.quality-card h3,
.decision-card h3,
.engineering-card h3,
.edition-card h3 { margin: 0 0 12px; font-size: 24px; }
.journey-card p,
.dna-card p,
.quality-card p,
.decision-card p,
.engineering-card p,
.edition-card p { color: var(--fc-muted); line-height: 1.7; }
.journey-card a { display: inline-flex; margin-top: 16px; color: var(--fc-gold-light); font-weight: 800; text-decoration: none; }
.journey-card a:hover { text-decoration: underline; text-underline-offset: 4px; }

.heritage-band {
  width: min(1180px,100%);
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--fc-line-strong);
  border-radius: var(--fc-radius-lg);
  background: linear-gradient(120deg, rgba(211,166,95,.14), rgba(18,20,24,.90) 42%, rgba(226,57,52,.06));
}
.heritage-band strong { display:block; font-size: clamp(34px,5vw,70px); letter-spacing:-.055em; }
.heritage-band p { color:var(--fc-muted); line-height:1.75; }

.comparison-lab {
  width: min(1180px,100%);
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--fc-line-strong);
  border-radius: var(--fc-radius-lg);
  background: linear-gradient(145deg, rgba(21,24,29,.96), rgba(10,12,15,.96));
  box-shadow: var(--fc-shadow);
}
.comparison-controls { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; margin-bottom:22px; }
.comparison-controls label { color:var(--fc-muted); font-weight:700; }
.comparison-controls select {
  width:100%; margin-top:8px; min-height:48px; padding:0 14px;
  color:var(--fc-text); background:#0d0f13; border:1px solid var(--fc-line); border-radius:14px;
}
.comparison-results { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.comparison-card { padding:24px; border:1px solid var(--fc-line); border-radius:20px; background:rgba(255,255,255,.035); }
.comparison-card h3 { margin:0 0 4px; font-size:28px; }
.comparison-card .compare-kicker { color:var(--fc-gold-light); font-weight:800; }
.compare-facts { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin:18px 0; }
.compare-facts div { padding:12px; border-radius:12px; background:rgba(255,255,255,.04); }
.compare-facts span { display:block; color:var(--fc-muted); font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.compare-facts strong { display:block; margin-top:4px; }
.score-row { display:grid; grid-template-columns:110px 1fr 28px; gap:10px; align-items:center; margin-top:10px; }
.score-row span { color:var(--fc-muted); font-size:13px; }
.score-track { height:8px; overflow:hidden; border-radius:999px; background:rgba(255,255,255,.08); }
.score-track i { display:block; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--fc-gold),var(--fc-gold-light)); }
.score-row b { font-size:13px; }

.editorial-quote {
  width:min(920px,100%); margin:0 auto; padding:34px;
  border-left:4px solid var(--fc-gold); border-radius:0 22px 22px 0;
  background:rgba(211,166,95,.07);
}
.editorial-quote blockquote { margin:0; font-size:clamp(24px,3.5vw,44px); line-height:1.22; letter-spacing:-.035em; }
.editorial-quote p { margin:14px 0 0; color:var(--fc-muted); }

.system-flow {
  width:min(1180px,100%); margin:0 auto; display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px;
}
.system-flow article { position:relative; padding:24px; border:1px solid var(--fc-line); border-radius:18px; background:rgba(255,255,255,.035); }
.system-flow article:not(:last-child)::after { content:"→"; position:absolute; right:-12px; top:50%; transform:translate(50%,-50%); color:var(--fc-gold); font-size:22px; z-index:2; }
.system-flow strong { display:block; color:var(--fc-gold-light); margin-bottom:8px; }
.system-flow p { margin:0; color:var(--fc-muted); line-height:1.6; }

.release-badge { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border:1px solid rgba(211,166,95,.35); border-radius:999px; color:var(--fc-gold-light); background:rgba(211,166,95,.08); font-size:13px; font-weight:800; }
.release-badge::before { content:""; width:8px; height:8px; border-radius:50%; background:#68d391; box-shadow:0 0 12px rgba(104,211,145,.55); }

.site-footer,
footer:not(.site-footer) {
  margin-top: 72px;
  border-top: 1px solid var(--fc-line);
  background: #090b0e;
}
.footer-mini-nav a { color:var(--fc-muted); }
.footer-mini-nav a:hover { color:var(--fc-gold-light); }

/* Progressive Enhancement: Inhalte sind ohne JavaScript sichtbar. */
html:not(.js-ready) .pe-reveal { opacity:1 !important; transform:none !important; }
@media print { .pe-reveal { opacity:1 !important; transform:none !important; } }

@media (max-width: 980px) {
  .metric-strip { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .metric-strip article:nth-child(2) { border-right:0; }
  .metric-strip article:nth-child(-n/**/+2) { border-bottom:1px solid var(--fc-line); }
  .journey-grid,.dna-grid,.quality-grid,.decision-grid,.engineering-grid,.edition-grid { grid-template-columns:1fr 1fr; }
  .heritage-band { grid-template-columns:1fr; }
  .system-flow { grid-template-columns:1fr 1fr; }
  .system-flow article::after { display:none; }
}
@media (max-width: 720px) {
  html { scroll-padding-top:90px; }
  .metric-strip { grid-template-columns:1fr; }
  .metric-strip article { border-right:0; border-bottom:1px solid var(--fc-line); }
  .metric-strip article:last-child { border-bottom:0; }
  .journey-grid,.dna-grid,.quality-grid,.decision-grid,.engineering-grid,.edition-grid,.comparison-results,.comparison-controls,.system-flow { grid-template-columns:1fr; }
  .comparison-lab,.heritage-band { padding:22px; }
  .score-row { grid-template-columns:88px 1fr 24px; }
  .car-frame img,.gallery-card img { aspect-ratio:3/1 !important; }
  .model-panel { width:100% !important; }
  
}


