/* ---------- Schriften: liegen auf unserem eigenen Webspace ----------
   Bewusst NICHT von Google-Servern geladen: Das wuerde die IP-Adresse jedes
   Besuchers an Google uebertragen - in Deutschland abmahnfaehig (LG Muenchen
   I, 20.01.2022, Az. 3 O 17493/20). So bleibt die Seite autark und
   datenschutzrechtlich sauber. */
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../schriften/archivo-500.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../schriften/archivo-600.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("../schriften/archivo-700.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 800;
  font-display: swap; src: url("../schriften/archivo-800.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../schriften/plexsans-400.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../schriften/plexsans-500.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../schriften/plexsans-600.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../schriften/plexmono-400.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../schriften/plexmono-500.woff2") format("woff2"); }

/* Automobile Schwarz - Schwarz Classics
   Erscheinungsbild: dunkel, hochwertig, Youngtimer */

:root {
  --ink:            #0b0c0e;
  --ink-2:          #121418;
  --ink-3:          #191c21;
  --line:           #262a31;
  --line-soft:      #1d2026;
  --text:           #e8e6e1;
  --text-dim:       #a2a6ad;
  --text-faint:     #6f747c;
  --gold:           #c9a227;
  --gold-soft:      #e0c165;
  --white:          #ffffff;

  --font: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-schild: "IBM Plex Mono", ui-monospace, "Consolas", monospace;

  --wrap: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Typografie ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-dim); }

.kicker { font-family: var(--font-schild);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  font-weight: 600;
}

.dim { color: var(--text-dim); }

/* ---------- Kopfzeile ---------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 14, .94);
  border-bottom: 1px solid var(--line-soft);
}

.kopf__innen {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}

.logo { display: flex; align-items: center; gap: .85rem; margin-right: auto; }
.logo__wort { height: 54px; width: auto; display: block; }

.nav { display: flex; gap: 1.9rem; align-items: center; }
.nav a {
  font-size: .93rem;
  color: var(--text-dim);
  padding: .35rem 0;
  position: relative;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-schalter {
  display: none;
  background: none; border: 1px solid var(--line);
  color: var(--text); border-radius: var(--radius);
  padding: .5rem .8rem; font: inherit; font-size: .85rem; cursor: pointer;
}

@media (max-width: 860px) {
  .nav-schalter { display: block; }
  .nav {
    display: none;
    position: absolute; inset: 76px 0 auto;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: .5rem var(--pad) 1.2rem;
  }
  .nav.offen { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav a::after { display: none; }
}

/* ---------- Schaltflächen ---------- */

.knopf {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  font-size: .93rem; font-weight: 500; letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
}
.knopf:active { transform: translateY(1px); }

.knopf--gold { background: var(--gold); color: #14140d; font-weight: 600; }
.knopf--gold:hover { background: var(--gold-soft); }

.knopf--rand { border-color: var(--line); color: var(--text); }
.knopf--rand:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Bühne (Startseite) ---------- */

.buehne {
  position: relative;
  min-height: min(86vh, 800px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line-soft);
}

/* Die Buehne zeigt den Bestand als Film - die Zeiten stehen unten im
   Abschnitt FILM-ANFANG/FILM-ENDE und werden beim Bauen erzeugt. */
.buehne__film {
  position: absolute; inset: 0;
  animation: ankunft 2.4s var(--ease) both;
}
@keyframes ankunft {
  from { transform: scale(1.22); opacity: .35; }
  to   { transform: scale(1);    opacity: 1; }
}
@keyframes fahrt {
  from { transform: scale(1.02) translate3d(2.6%, 1.0%, 0); }
  to   { transform: scale(1.24) translate3d(-3.4%, -2.2%, 0); }
}

.buehne::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,12,14,.8) 0%, rgba(11,12,14,.2) 30%, rgba(11,12,14,.98) 100%),
    linear-gradient(90deg, rgba(11,12,14,.92) 0%, rgba(11,12,14,.55) 44%, rgba(11,12,14,0) 80%);
}
.buehne__innen { position: relative; z-index: 2; padding-block: 3.5rem 4.5rem; width: 100%; }
.buehne h1 { max-width: 22ch; }
.h1__zwei { display: block; }
.buehne .lead { max-width: 52ch; color: #cfd2d6; }
.buehne__knoepfe { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.film__fuss { margin-top: 2.2rem; display: flex; flex-direction: column; gap: .7rem;
  font-size: .88rem; color: var(--text-dim); }
.film__marke b { color: var(--text); }

/* Der Text setzt sich beim Laden nacheinander */
.auftritt { animation: auftritt .9s var(--ease) both; animation-delay: calc(var(--takt) * .13s + .15s); }
@keyframes auftritt {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Siegel in der Buehne */
.siegel {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-top: 1.8rem; padding: .75rem 1.2rem .75rem .95rem;
  border: 1px solid rgba(201,162,39,.4);
  background: rgba(11,12,14,.55);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.siegel:hover { border-color: var(--gold); background: rgba(11,12,14,.75); }
.siegel__wert {
  font-size: 2.3rem; font-weight: 700; line-height: 1;
  letter-spacing: -.03em; color: var(--gold);
}
.siegel__rechts { display: flex; flex-direction: column; gap: .15rem; }
.siegel__text { font-size: .8rem; color: var(--text-dim); }

/* ---------- Sterne ---------- */

.sterne { display: inline-flex; gap: .1em; line-height: 1; }
.stern { font-family: var(--font-schild); color: #3a3d43; font-size: .95rem; }
.stern--voll { color: var(--gold); }
.stern--halb {
  background: linear-gradient(90deg, var(--gold) 50%, #3a3d43 50%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Bewertungen ---------- */

.lob {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
.lob__kopf {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(280px, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 780px) { .lob__kopf { grid-template-columns: 1fr; } }

.lob__zahl {
  font-size: clamp(4rem, 10vw, 6.5rem); font-weight: 700;
  line-height: .9; letter-spacing: -.05em; color: var(--gold); margin: 0 0 .5rem;
}
.lob__wert .stern { font-family: var(--font-schild); font-size: 1.4rem; }
.lob__unter { margin: .7rem 0 1.5rem; color: var(--text-dim); font-size: .95rem; }
.lob__unter b { color: var(--text); font-weight: 500; }

/* Ein gemeinsames Raster fuer alle Zeilen - sonst starten die Balken versetzt */
.lob__noten { display: grid; grid-template-columns: auto 1fr auto; gap: .9rem 1.1rem; align-items: center; }
.note { display: contents; }
.note__name { font-family: var(--font-schild);
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint);
}
.note__balken { height: 3px; background: var(--line); display: block; }
.note__balken i { display: block; height: 100%; background: var(--gold); }
.note__wert { font-size: .9rem; font-variant-numeric: tabular-nums; min-width: 3.2rem; text-align: right; }

/* Auf dem Handy bleibt fuer den Balken zu wenig Platz - dann nur Name und Wert */
@media (max-width: 560px) {
  .lob__noten { grid-template-columns: 1fr auto; }
  .note__balken { display: none; }
}

/* Laufband mit den Stimmen */
.laufband {
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.laufband__spur { display: flex; gap: 1.1rem; width: max-content; animation: laufband 150s linear infinite; }
.laufband:hover .laufband__spur, .laufband:focus-within .laufband__spur { animation-play-state: paused; }
@keyframes laufband { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.stimme {
  flex: 0 0 330px; margin: 0; padding: 1.35rem 1.45rem;
  background: var(--ink); border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: .8rem;
}
.stimme__kopf { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.stimme__kauf { font-family: var(--font-schild);
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,162,39,.35); padding: .2rem .45rem;
}
.stimme blockquote { margin: 0; font-size: .93rem; line-height: 1.6; color: var(--text); }
.stimme blockquote::before { content: "\201E"; }
.stimme blockquote::after  { content: "\201C"; }
.stimme figcaption {
  margin-top: auto; font-size: .84rem; color: var(--text);
  display: flex; align-items: baseline; justify-content: space-between; gap: .8rem;
}
.stimme figcaption span {
  font-size: .64rem; letter-spacing: .08em; color: var(--text-faint); display: flex; gap: .6rem;
}

/* Im Laufband werden lange Stimmen gekuerzt - vollstaendig stehen sie auf der
   Bewertungsseite. So bleiben alle Karten gleich hoch. */
.laufband .stimme blockquote {
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}

.lob__herkunft { margin-top: clamp(2rem, 4vw, 2.6rem); max-width: 78ch; }
.lob__herkunft a { color: var(--gold); margin-left: .4rem; }

/* Bewertungsseite: alle Stimmen als Mauerwerk */
.mauer { columns: 3 320px; column-gap: 1.2rem; margin-top: 2.6rem; }
.mauer .stimme { flex: none; break-inside: avoid; margin-bottom: 1.2rem; display: block; }
.mauer .stimme blockquote { margin: .8rem 0; }
.mauer .stimme figcaption { display: flex; }

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

.abschnitt { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.abschnitt--linie { border-top: 1px solid var(--line-soft); }
.abschnitt--tief { background: var(--ink-2); }

.kopfzeile {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.6rem;
}
.kopfzeile h2 { margin: 0; }

/* ---------- Fahrzeugraster ---------- */

.raster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.6rem;
}

.karte {
  display: flex; flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}
.karte:hover { border-color: var(--line); transform: translateY(-3px); }

.karte__bild { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-3); }
.karte__bild img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.karte:hover .karte__bild img { transform: scale(1.045); }

.karte__marke {
  position: absolute; top: .8rem; left: .8rem;
  background: rgba(11,12,14,.82);
  color: var(--text);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .35rem .6rem; border-radius: 2px;
}

.karte__inhalt { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.karte__titel { font-size: 1.08rem; font-weight: 600; margin: 0 0 .25rem; line-height: 1.3; }
.karte__zusatz { font-size: .86rem; color: var(--text-faint); margin: 0 0 1rem; }

.karte__daten {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .45rem 1rem;
  font-size: .84rem; color: var(--text-dim);
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem; margin-top: auto;
}
.karte__daten span { display: flex; gap: .4rem; }
.karte__daten b { color: var(--text); font-weight: 500; }

.karte__fuss {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-top: 1.15rem; padding-top: 1.15rem;
  border-top: 1px solid var(--line-soft);
}
.preis { font-size: 1.45rem; font-weight: 600; color: var(--white); letter-spacing: -.02em; }
.preis small { display: block; font-size: .74rem; font-weight: 400; color: var(--text-faint); letter-spacing: 0; }
.karte__mehr { font-family: var(--font-schild); font-size: .87rem; color: var(--gold); white-space: nowrap; }
.karte__mehr::after { content: " →"; }

/* ---------- Filterleiste ---------- */

.filter {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-bottom: 2.2rem;
}
.filter button {
  background: transparent; border: 1px solid var(--line);
  color: var(--text-dim); font: inherit; font-size: .86rem;
  padding: .5rem 1.05rem; border-radius: 100px; cursor: pointer;
  transition: all .2s var(--ease);
}
.filter button:hover { color: var(--text); border-color: var(--text-faint); }
.filter button.aktiv { background: var(--gold); border-color: var(--gold); color: #14140d; font-weight: 600; }

.leer { color: var(--text-faint); padding: 3rem 0; text-align: center; }

/* ---------- Fahrzeug-Detailseite ---------- */

.detail { padding-block: clamp(2rem, 5vw, 3.5rem); }

.zurueck { font-family: var(--font-schild); font-size: .88rem; color: var(--text-dim); display: inline-block; margin-bottom: 1.8rem; }
.zurueck::before { content: "← "; }
.zurueck:hover { color: var(--gold); }

.detail__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr); gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }
@media (max-width: 940px) { .detail__grid { grid-template-columns: 1fr; } }

.galerie img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line-soft); }

/* Weitere Fotos unter dem Hauptbild */
.galerie__mehr {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .6rem; margin-top: .6rem;
}
.galerie__mehr img {
  aspect-ratio: 4 / 3; object-fit: cover; cursor: pointer;
  transition: opacity .2s var(--ease);
}
.galerie__mehr img:hover { opacity: .85; }

.seitenbox {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.7rem;
  position: sticky; top: 100px;
}
@media (max-width: 940px) { .seitenbox { position: static; } }

.seitenbox h1 { font-size: clamp(1.4rem, 3vw, 1.85rem); margin-bottom: .3rem; }
.seitenbox__zusatz { color: var(--text-faint); font-size: .9rem; margin-bottom: 1.4rem; }

.seitenbox .preis { font-size: 2.1rem; margin-bottom: .3rem; }

.tabelle { width: 100%; border-collapse: collapse; font-size: .92rem; margin: 1.5rem 0; }
.tabelle th, .tabelle td { text-align: left; padding: .62rem 0; border-bottom: 1px solid var(--line-soft); }
.tabelle th { font-weight: 400; color: var(--text-faint); width: 46%; }
.tabelle td { color: var(--text); }
.tabelle tr:last-child th, .tabelle tr:last-child td { border-bottom: 0; }

.knopfreihe { display: grid; gap: .65rem; margin-top: 1.4rem; }
.knopfreihe .knopf { justify-content: center; }

.hinweis {
  font-size: .78rem; color: var(--text-faint); line-height: 1.55;
  margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft);
}

/* ---------- Merkmale / Leistungen ---------- */

.merkmale { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.6rem; }
.merkmal { border-top: 2px solid var(--gold); padding-top: 1.3rem; }
.merkmal h3 { margin-bottom: .45rem; }
.merkmal p { font-size: .95rem; color: var(--text-dim); }

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

.kontakt__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(2rem, 5vw, 4rem); }

.feld { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.feld label { font-size: .82rem; color: var(--text-dim); letter-spacing: .04em; }
.feld input, .feld textarea, .feld select {
  background: var(--ink-2); border: 1px solid var(--line);
  color: var(--text); font: inherit; font-size: .95rem;
  padding: .78rem .9rem; border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.feld input:focus, .feld textarea:focus, .feld select:focus {
  outline: none; border-color: var(--gold);
}
.feld textarea { resize: vertical; min-height: 140px; }

.datenliste { list-style: none; padding: 0; margin: 0; }
.datenliste li { display: flex; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
.datenliste li:last-child { border-bottom: 0; }
.datenliste b { min-width: 7.5rem; color: var(--text-faint); font-weight: 400; }

.teamfoto { margin: 0 0 1.6rem; border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.teamfoto img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.karte-map {
  width: 100%; aspect-ratio: 16 / 10; border: 1px solid var(--line-soft);
  border-radius: var(--radius); filter: grayscale(1) invert(.92) contrast(.86);
}

/* ---------- Textseiten (Impressum, Datenschutz) ---------- */

.text { max-width: 74ch; }
.text h2 { margin-top: 2.6rem; font-size: 1.35rem; }
.text h3 { margin-top: 1.9rem; font-size: 1.08rem; }
.text ul { padding-left: 1.2rem; color: var(--text-dim); }
.text li { margin-bottom: .4rem; }

.merker {
  border-left: 2px solid var(--gold);
  background: var(--ink-2);
  padding: 1rem 1.2rem;
  font-size: .9rem; color: var(--text-dim);
  margin: 1.6rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---------- Fußzeile ---------- */

.fuss {
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
  padding-block: 3.5rem 2rem;
  font-size: .92rem;
}
/* 210px liessen nur vier Spalten nebeneinander zu - seit der
   Instagram-Spalte sind es fuenf, deshalb schmaler. */
.fuss__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(172px, 1fr)); gap: 2rem; margin-bottom: 2.8rem; }
.fuss h4 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.fuss ul { list-style: none; padding: 0; margin: 0; }
.fuss li { display: flex; gap: 1rem; margin-bottom: .55rem; color: var(--text-dim); }
.fuss a:hover { color: var(--gold); }
.fuss__unten {
  border-top: 1px solid var(--line-soft); padding-top: 1.6rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--text-faint); font-size: .84rem;
}

/* ---------- Bewegung sparsam ---------- */

/* Wer im Betriebssystem weniger Bewegung eingestellt hat, bekommt ein
   Standbild statt des Films - und trotzdem alles zu sehen. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  /* Die Buehnen-Kamerafahrt laeuft bewusst weiter - ausdrueckliche
     Entscheidung des Betreibers vom 30.08.2026. Sie ist langsam und
     grossflaechig; alles Uebrige bleibt abgeschaltet. */
  .buehne__film { animation: ankunft 2.4s var(--ease) both !important; }
  .laufband { overflow-x: auto; }
  .laufband__spur { animation: none; }
  .auftritt { animation: none; opacity: 1; transform: none; }
}


/* Liste mit goldenen Haken - Leistungen auf der Vermittlungsseite */
.haken { list-style: none; padding-left: 0; margin-top: 1.1rem; }
.haken li {
  position: relative; padding-left: 1.9rem; margin-bottom: .72rem;
  color: var(--text-dim, #a2a6ad); line-height: 1.55;
}
/* Der Haken ist ein gedrehtes Winkelstueck aus zwei Rahmenlinien.
   Die Ersatzfarbe hinter dem Komma ist Absicht: Faellt der Farbname weg,
   waere die ganze Angabe ungueltig - und der Haken einfach unsichtbar. */
.haken li::before {
  content: ""; position: absolute; left: .15rem; top: .5em;
  width: .62rem; height: .34rem;
  border-left: 2px solid var(--gold, #c9a227);
  border-bottom: 2px solid var(--gold, #c9a227);
  transform: rotate(-45deg);
}


/* Instagram in der Fusszeile - eigene Spalte, nur das Zeichen unter der
   Ueberschrift. Die Groesse ist so gewaehlt, dass das Zeichen etwa so hoch
   steht wie die zwei Textzeilen der Nachbarspalten - dadurch sitzt es auf
   gleicher Hoehe und die Fusszeile bleibt ruhig. */
.fuss__insta {
  display: inline-block; margin-top: .5rem;
  color: var(--text-dim, #a2a6ad); transition: color .18s ease, transform .18s ease;
}
.fuss__insta svg { width: 56px; height: 56px; display: block; }
.fuss__insta:hover, .fuss__insta:focus-visible {
  color: var(--gold, #c9a227); transform: translateY(-2px);
}

/* Das unsichtbare Feld gegen Maschinen. Bewusst NICHT display:none -
   manche Spamprogramme erkennen das und lassen es dann aus. */
.koeder { position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; }

/* Rueckmeldung nach dem Absenden des Kontaktformulars */
.meldung { margin: 1.4rem 0 0; padding: .95rem 1.1rem; border-radius: 10px;
  font-size: .95rem; line-height: 1.5;
  border: 1px solid var(--line, #262a31); color: var(--text, #e8e6e1); }
.meldung--gut { border-color: rgba(76, 175, 125, .55);
  background: rgba(76, 175, 125, .10); }
.meldung--schlecht { border-color: rgba(229, 115, 107, .55);
  background: rgba(229, 115, 107, .10); }


/* Instagram in der Kopfzeile - nur das Zeichen, ohne Text daneben.
   Bleibt auch auf dem Handy sichtbar, wenn das Menue eingeklappt ist. */
.kopf__insta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: 0 0 auto; margin-left: .7rem;
  border-radius: 10px; color: var(--text-dim, #a2a6ad);
  transition: color .18s ease, background-color .18s ease;
}
.kopf__insta svg { width: 22px; height: 22px; }
.kopf__insta:hover, .kopf__insta:focus-visible {
  color: var(--gold, #c9a227); background-color: rgba(201, 162, 39, .10);
}

/* FILM-ANFANG */
/* Ein einziges Fahrzeug in der Buehne. Belebt wird es durch eine langsame
   Kamerafahrt: heranzoomen und dabei seitlich wandern, 20 Sekunden hin,
   20 zurueck - ohne Schnitt und ohne Bildwechsel. */
.dia { position: absolute; inset: 0; opacity: 1; }
.dia__bild {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 56%;
  transform-origin: 58% 56%; will-change: transform;
  animation: fahrt 20s ease-in-out infinite alternate;
}
.film__marke, .film__takte, .film__fuss { display: none; }

/* Die Kamerafahrt laeuft auch bei "Bewegung reduzieren" - ausdrueckliche
   Entscheidung des Betreibers vom 30.08.2026. Bewusst ohne die Kurzform
   "animation", damit nichts anderes zurueckgesetzt wird. */
@media (prefers-reduced-motion: reduce) {
  .dia__bild {
    animation-name: fahrt !important;
    animation-duration: 20s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    animation-direction: alternate !important;
  }
}
/* FILM-ENDE */


