/* ===========================================================================
   stars of moments – Textilveredelung & Merchandising
   Leitbild "Tour & Backstage": schwarzer Grund wie ein Tourplakat, Riesentypo
   in schmalem Archivo, Markenviolett aus der Wortmarke, Signalorange als
   Ticketfarbe. Fotos sind die einzige Farbfläche.

   Bewusst NICHT eingebaut (Lehre aus der Media-Seite): bildschirmfüllende
   mix-blend-mode-Ebenen. Kornoptik läuft hier über Deckkraft und statische
   Farbverläufe, nicht über Blendmodi.
   =========================================================================== */

/* Lokale Schrift – ehemals Google Fonts, jetzt vom eigenen Server (DSGVO) */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('fonts/archivo-latin.woff2') format('woff2');
}

:root {
  --grund:        #0B0A11;
  --grund-2:      #12101F;
  --grund-3:      #1A1730;
  --tinte:        #F3F1FA;
  --grau:         #A49DC0;
  --violett:      #312783;   /* Markenviolett der Wortmarke (Print) */
  --violett-hell: #7C63FF;   /* Bildschirmvariante, kontrastfähig auf Schwarz */
  --signal:       #FF4A17;   /* Ticket-/Backstage-Orange */
  --linie:        rgba(255,255,255,.14);
  --linie-stark:  rgba(255,255,255,.3);
  --maxw:         1180px;
  --mono:         ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--grund);
  color: var(--tinte);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.sektion { padding: 110px 0; position: relative; }
.sektion--hell { background: var(--grund-2); }

/* Vollton-Sektion: einmal pro Seite die Farbe über die ganze Breite ziehen.
   Sitzt beim Tour-Service, weil dort das 24-Stunden-Versprechen steht. */
.sektion--knall {
  background: var(--signal);
  color: var(--grund);
  border-top: 4px solid var(--tinte);
  border-bottom: 4px solid var(--tinte);
}
.sektion--knall .kicker { color: var(--grund); }
.sektion--knall .lead   { color: rgba(11,10,17,.85); }
.sektion--knall h2 u    { -webkit-text-stroke-color: var(--grund); }
.sektion--knall h2 mark { background: var(--grund); color: var(--signal); }

.kicker {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: '';
  width: 18px; height: 18px;
  flex: none;
  background: currentColor;
  -webkit-mask: url('img/stern.svg') center/contain no-repeat;
  mask: url('img/stern.svg') center/contain no-repeat;
}

h1, h2, h3 { font-weight: 900; font-stretch: 66%; text-transform: uppercase; letter-spacing: -.015em; }

h2 {
  font-size: clamp(2.9rem, 9.4vw, 6.6rem);
  line-height: .84;
  margin-bottom: 30px;
}
h3 { font-size: 1.35rem; font-stretch: 82%; line-height: 1.1; }

/* Einzelne Wörter in der Überschrift als Vollton-Kasten oder Kontur –
   das ist der Hauptregler für die Lautstärke. */
h2 mark { background: var(--signal); color: var(--grund); padding: 0 .08em; }
h2 u    { text-decoration: none; color: transparent; -webkit-text-stroke: 2px var(--violett-hell); }

.lead {
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  color: var(--grau);
  max-width: 62ch;
  line-height: 1.5;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 900; font-stretch: 82%; text-transform: uppercase;
  letter-spacing: .04em; font-size: 1.05rem;
  text-decoration: none;
  padding: 18px 34px;
  border: 3px solid var(--tinte);
  background: var(--tinte);
  color: var(--grund);
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn:hover { background: var(--signal); border-color: var(--signal); color: #fff; transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--tinte); }
.btn--geist { background: none; color: var(--tinte); }
.btn--geist:hover { background: var(--signal); border-color: var(--signal); color: #fff; }

/* --- Kopf ---------------------------------------------------------------- */

.kopf {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.kopf.geheftet {
  background: rgba(11,10,17,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--linie);
}
.kopf-innen {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.marke img { height: 50px; width: auto; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  text-decoration: none;
  font-size: .8rem; font-weight: 700; font-stretch: 88%;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--grau);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.nav a:hover, .nav a.aktiv { color: var(--tinte); border-bottom-color: var(--signal); }

.burger {
  display: none;
  width: 44px; height: 40px;
  background: none; border: 1px solid var(--linie); color: var(--tinte);
  cursor: pointer; padding: 0;
}
.burger span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px auto; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

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

.buehne {
  position: relative;
  min-height: 100svh;
  /* Spalte, nicht Reihe: sobald die Fußzeile unten im Fluss mitläuft (schmale
     Fenster), säße sie sonst als zweites Flex-Element neben dem Inhalt. */
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 116px 0 54px;
  overflow: hidden;
}
.buehne-bild {
  position: absolute; inset: 0;
  background: url('img/hero-garne.jpg') center/cover no-repeat;
  filter: saturate(1.15) brightness(.62);
  transform: scale(1.04);
}
/* Zwei statische Verläufe statt Blendmodus: Violettschleier + Fuß ins Schwarz */
.buehne-schleier {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,17,.9) 0%, rgba(11,10,17,.35) 32%, rgba(11,10,17,.94) 88%, var(--grund) 100%),
    linear-gradient(115deg, rgba(49,39,131,.72) 0%, rgba(49,39,131,0) 62%);
}
.buehne-raster {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .5;
}
.buehne .wrap { position: relative; z-index: 2; width: 100%; }

.buehne-marke { width: min(268px, 56vw); margin-bottom: 26px; }

.buehne h1 {
  font-size: clamp(3.3rem, 12.4vw, 10rem);
  font-stretch: 62%;
  line-height: .8;
  max-width: 13ch;
  margin-bottom: 26px;
  text-wrap: balance;
}
/* „Tour" als Vollton-Kasten statt nur farbig – der Hero soll schreien. */
.buehne h1 em {
  font-style: normal;
  background: var(--signal);
  color: var(--grund);
  padding: 0 .06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.buehne .lead { color: #D6D1EA; max-width: 54ch; }
.buehne-knoepfe { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.buehne-fuss {
  position: absolute; left: 0; right: 0; bottom: 22px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--grau);
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}

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

.laufband {
  border-top: 3px solid var(--tinte);
  border-bottom: 3px solid var(--tinte);
  background: var(--violett);
  overflow: hidden;
  padding: 12px 0;
}
.laufband + .laufband { background: var(--signal); border-top: none; }
.laufband + .laufband + .laufband { background: var(--grund); }
.laufband-spur {
  display: flex; width: max-content;
  animation: schieben 26s linear infinite;
}
.laufband + .laufband .laufband-spur { animation-duration: 34s; animation-direction: reverse; }
.laufband + .laufband + .laufband .laufband-spur { animation-duration: 44s; }
.laufband-spur span {
  font-size: clamp(1.6rem, 4.4vw, 3.2rem);
  font-weight: 900; font-stretch: 66%; text-transform: uppercase;
  letter-spacing: -.01em;
  padding: 0 18px;
  white-space: nowrap;
}
.laufband + .laufband .laufband-spur span { color: var(--grund); }
.laufband + .laufband + .laufband .laufband-spur span {
  color: transparent; -webkit-text-stroke: 1.5px var(--linie-stark);
}
.laufband-spur i {
  flex: none; width: 22px; align-self: center;
  aspect-ratio: 1;
  background: var(--signal);
  -webkit-mask: url('img/stern.svg') center/contain no-repeat;
  mask: url('img/stern.svg') center/contain no-repeat;
}
/* Auf dem orangen Band wäre ein oranger Stern unsichtbar */
.laufband + .laufband .laufband-spur i { background: var(--grund); }
.laufband + .laufband + .laufband .laufband-spur i { background: var(--violett-hell); }
@keyframes schieben { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

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

.dreier { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 58px; }
.karte {
  border: 1px solid var(--linie);
  padding: 32px 26px 34px;
  background: linear-gradient(180deg, rgba(124,99,255,.07), transparent 60%);
  transition: border-color .2s, transform .2s;
}
.karte:hover { border-color: var(--violett-hell); transform: translateY(-4px); }
.karte-nr {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .2em;
  color: var(--signal); margin-bottom: 18px;
}
.karte h3 { margin-bottom: 12px; }
.karte p { color: var(--grau); font-size: .97rem; }

/* --- Technik ------------------------------------------------------------- */

.technik-liste { margin-top: 56px; border-top: 3px solid var(--tinte); }
.technik-zeile {
  display: grid; grid-template-columns: 132px 1.15fr 1fr; gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 3px solid var(--linie);
  transition: background .2s;
}
.technik-zeile:hover { background: rgba(124,99,255,.07); }
.technik-zeile .nr {
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  font-weight: 900; font-stretch: 62%; letter-spacing: -.03em; line-height: .8;
  color: transparent; -webkit-text-stroke: 2px var(--violett-hell);
}
.technik-zeile:hover .nr { -webkit-text-stroke-color: var(--signal); }
.technik-zeile h3 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); font-stretch: 66%; line-height: .9; margin-bottom: 12px; }
.technik-zeile p { color: var(--grau); font-size: .97rem; max-width: 46ch; }
.technik-bild { overflow: hidden; aspect-ratio: 4/3; }
.technik-bild img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.65) brightness(.8);
  transition: filter .35s, transform .5s;
}
.technik-zeile:hover .technik-bild img { filter: none; transform: scale(1.05); }

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

.galerie {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.galerie figure { position: relative; margin: 0; }
.galerie button {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  cursor: zoom-in; position: relative; overflow: hidden;
}
.galerie img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(1) contrast(1.5) brightness(.72);
  transition: filter .3s, transform .4s;
}
.galerie button:hover img,
.galerie button:focus-visible img { filter: contrast(1.12) saturate(1.25); transform: scale(1.07); }
.galerie button:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }
.galerie figcaption {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--grund);
  background: var(--signal);
  padding: 7px 9px;
}
/* Auf Geräten mit Zeiger liegt die Unterschrift im Bild und fährt erst beim
   Zeigen ein – die Wand aus Fotos bleibt ununterbrochen. Ohne Hover (Touch)
   bleibt sie sichtbar, sonst wäre sie dort nie zu lesen. */
@media (hover: hover) {
  .galerie figure { overflow: hidden; }
  .galerie figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    transform: translateY(100%);
    transition: transform .22s;
    pointer-events: none;
  }
  .galerie figure:hover figcaption,
  .galerie button:focus-visible + figcaption { transform: none; }
}

/* Lightbox */
.lupe {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(6,5,10,.95);
  display: none; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lupe[open], .lupe.offen { display: flex; }
.lupe img { max-width: min(1000px, 92vw); max-height: 78vh; object-fit: contain; }
.lupe-text {
  font-family: var(--mono); font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--grau); text-align: center; margin-top: 16px;
}
.lupe-zu {
  position: absolute; top: 18px; right: 20px;
  width: 48px; height: 48px; font-size: 1.5rem; line-height: 1;
  background: none; border: 1px solid var(--linie); color: var(--tinte); cursor: pointer;
}
.lupe-zu:hover { background: var(--signal); border-color: var(--signal); }

/* --- Tour-Service: Backstage-Pass + Ablauf ------------------------------- */

.tour-gitter { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }

.pass {
  position: relative;
  background: var(--grund);
  color: var(--tinte);
  border: 3px solid var(--tinte);
  padding: 58px 30px 34px;
  transform: rotate(-3deg);
  box-shadow: 12px 12px 0 rgba(11,10,17,.9);
}
.pass::before { /* Stanzloch */
  content: '';
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 15px; border-radius: 9px;
  background: var(--signal);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.6);
}
.pass-typ {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .28em;
  text-transform: uppercase; color: #C6BCFF; margin-bottom: 14px;
}
.pass h3 {
  font-size: clamp(2.2rem, 4vw, 2.9rem); font-stretch: 62%; line-height: .88; margin-bottom: 16px;
}
.pass p { font-size: .95rem; color: #C9C4DC; }
.pass-code {
  margin-top: 26px; padding-top: 18px; border-top: 2px dashed rgba(255,255,255,.4);
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--signal);
  display: flex; justify-content: space-between; gap: 12px;
}

.ablauf { border-top: 3px solid var(--grund); }
.ablauf-zeile {
  display: grid; grid-template-columns: 64px 210px 1fr; gap: 20px; align-items: baseline;
  padding: 22px 0;
  border-bottom: 2px dashed rgba(11,10,17,.45);
}
.ablauf-zeile .nr {
  font-family: var(--mono); font-size: .78rem; letter-spacing: .12em;
  background: var(--grund); color: var(--signal); padding: 3px 7px; justify-self: start;
}
.ablauf-zeile strong { font-weight: 900; font-stretch: 68%; text-transform: uppercase; letter-spacing: -.01em; font-size: 1.35rem; }
/* .85 statt .78: bei .78 rutscht der Kontrast auf Orange auf 4,57:1 und damit
   knapp an die WCAG-Grenze. */
.ablauf-zeile .txt { color: rgba(11,10,17,.85); font-size: .95rem; }

/* --- Verbund ------------------------------------------------------------- */

.verbund { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.verbund-bild { position: relative; }
.verbund-bild img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.8) brightness(.85); }
.verbund-bild::after { /* Klebeband oben rechts */
  content: '';
  position: absolute; top: -12px; right: 26px;
  width: 96px; height: 26px;
  background: rgba(255,255,255,.16);
  border-left: 1px solid rgba(255,255,255,.2);
  border-right: 1px solid rgba(255,255,255,.2);
  transform: rotate(7deg);
}
.verbund-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.verbund-links a {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--tinte);
  border: 1px solid var(--linie); padding: 10px 16px;
  transition: border-color .18s, color .18s;
}
.verbund-links a:hover { border-color: var(--signal); color: var(--signal); }

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

.kontakt-gitter { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; margin-top: 52px; }

.feld { margin-bottom: 18px; }
.feld label,
.wahl span {
  display: block;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--grau); margin-bottom: 8px;
}
.feld input, .feld select, .feld textarea {
  width: 100%;
  font-family: inherit; font-size: 1rem;
  background: var(--grund-2);
  border: 1px solid var(--linie);
  color: var(--tinte);
  padding: 13px 15px;
  transition: border-color .18s, background .18s;
}
.feld textarea { min-height: 148px; resize: vertical; }
.feld input:focus, .feld select:focus, .feld textarea:focus {
  outline: none; border-color: var(--violett-hell); background: var(--grund-3);
}
.feld-paar { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.honig { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.wahl { display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 24px; }
.wahl input { margin-top: 4px; accent-color: var(--violett-hell); flex: none; }
.wahl label { font-size: .88rem; color: var(--grau); }
.wahl a { color: var(--tinte); }

.hinweis { margin-top: 16px; font-size: .92rem; min-height: 1.4em; }
.hinweis.gut { color: #5BD6A0; }
.hinweis.schlecht { color: var(--signal); }

.info-block { border-top: 2px solid var(--signal); padding-top: 24px; }
.info-block + .info-block { margin-top: 30px; }
.info-block h3 { font-size: .95rem; font-stretch: 88%; letter-spacing: .1em; margin-bottom: 12px; }
.info-block p, .info-block a { color: var(--grau); font-size: .97rem; font-style: normal; }
.info-block a { color: var(--tinte); text-decoration: none; border-bottom: 1px solid var(--linie-stark); }
.info-block a:hover { color: var(--signal); border-color: var(--signal); }

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

.fuss { border-top: 1px solid var(--linie); padding: 40px 0 46px; background: var(--grund); }
.fuss-innen {
  display: flex; flex-wrap: wrap; gap: 18px 30px;
  justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--grau);
}
.fuss-innen a { color: var(--grau); text-decoration: none; }
.fuss-innen a:hover { color: var(--tinte); }
.fuss-links { display: flex; flex-wrap: wrap; gap: 22px; }

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

.recht { max-width: 780px; margin: 0 auto; padding: 140px 24px 100px; }
.recht .marke-gross { display: inline-block; margin-bottom: 48px; }
.recht .marke-gross img { width: 230px; }
.recht h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: .95;
  margin-bottom: 34px;
}
.recht h2 {
  font-size: 1.1rem; font-stretch: 88%; letter-spacing: .06em;
  margin: 40px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--linie);
}
.recht h3 { font-size: .95rem; font-stretch: 92%; letter-spacing: .06em; margin: 24px 0 8px; }
.recht p, .recht ul { color: var(--grau); margin-bottom: 12px; }
.recht ul { padding-left: 22px; }
.recht a { color: var(--tinte); text-decoration: none; border-bottom: 1px solid var(--linie-stark); }
.recht a:hover { color: var(--signal); border-color: var(--signal); }
/* .recht a setzt Textfarbe und Unterstrich – für den Zurück-Knopf beides
   zurücknehmen, sonst steht weiße Schrift auf weißer Fläche. */
.recht a.btn { margin-top: 46px; color: var(--grund); border-bottom: 0; }
.recht a.btn:hover { color: #fff; }

/* --- Einblenden beim Scrollen -------------------------------------------- */

.auf { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.auf.da { opacity: 1; transform: none; }

/* --- Schmale Fenster ----------------------------------------------------- */

@media (max-width: 980px) {
  .dreier { grid-template-columns: 1fr; gap: 18px; }
  .tour-gitter { grid-template-columns: 1fr; gap: 44px; }
  .pass { max-width: 360px; }
  .verbund, .kontakt-gitter { grid-template-columns: 1fr; gap: 40px; }
  .technik-zeile { grid-template-columns: 1fr; gap: 20px; }
  .technik-zeile .nr { display: none; }
  .technik-bild { aspect-ratio: 16/9; }
  .galerie { grid-template-columns: repeat(3, 1fr); }
  .ablauf-zeile { grid-template-columns: 46px 1fr; row-gap: 6px; }
  .ablauf-zeile .nr     { grid-column: 1; grid-row: 1; }
  .ablauf-zeile strong  { grid-column: 2; grid-row: 1; }
  .ablauf-zeile .txt    { grid-column: 2; grid-row: 2; }
  /* Unter ~1000 px wird die Bühne zu eng, als dass die Fußzeile absolut
     unter den Buttons Platz hätte – sie läuft dann im Fluss mit. */
  .buehne-fuss { position: static; margin-top: 44px; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .sektion { padding: 76px 0; }
  .burger { display: block; }
  .nav {
    /* an der Kopfleiste ausgerichtet statt mit fester Pixelhöhe – die Höhe
       hängt am Logo und ändert sich mit ihm */
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--grund);
    border-bottom: 1px solid var(--linie);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav.offen { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--linie); font-size: .95rem; }
  .nav a:hover, .nav a.aktiv { border-bottom-color: var(--linie); color: var(--signal); }
  .buehne { min-height: auto; padding: 132px 0 88px; }
  .buehne-fuss { position: static; margin-top: 40px; padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .galerie { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feld-paar { grid-template-columns: 1fr; gap: 0; }
  .pass { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .laufband-spur { animation: none; }
  .auf { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}
