/* ==========================================================
   DJ Tim Matthiä – Landingpage
   Mobile-first. Struktur-Grammatik (.wrap, .section, .btn,
   .marquee, .reveal-init, Skip-Link) übernommen aus dem
   Mark-Johns-Projekt, eigene Farbwelt.

   Besonderheit: --accent-h ist eine Live-Variable. Der
   Genre-Mixer in script.js schreibt sie um, dadurch färbt
   sich die gesamte Seite mit dem gewählten Genre.
   Keine externen Schriften – Systemstack, damit nichts an
   Google Fonts o. ä. gesendet wird (DSGVO, Ladezeit).
   ========================================================== */

:root {
  --accent-h: 276;                                  /* wird per JS verändert */
  --accent: hsl(var(--accent-h) 90% 66%);
  --accent-soft: hsl(var(--accent-h) 90% 66% / 0.16);
  --accent-line: hsl(var(--accent-h) 90% 66% / 0.34);

  --ink-900: #08070C;
  --ink-800: #0D0B14;
  --ink-700: #14111E;
  --ink-600: #1D1A2A;

  --text: #F3F1FA;
  --text-muted: #A7A1BC;
  --line: rgba(243, 241, 250, 0.10);

  --font-display: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

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

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; margin: 0 0 0.5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 9vw, 5.2rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4.6vw, 2.9rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap-mid { max-width: 820px; }
.wrap-narrow { max-width: 620px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: var(--ink-900); padding: 10px 16px;
  border-radius: 8px; z-index: 1000; transition: top 0.2s ease; font-weight: 700;
}
.skip-link:focus { top: 12px; }

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

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem;
  color: var(--accent); font-weight: 700; margin-bottom: 1.1em;
}
.grad {
  background: linear-gradient(100deg, var(--accent), hsl(calc(var(--accent-h) + 70) 90% 68%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
  padding: 16px 28px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  white-space: nowrap; transition: transform 0.25s var(--ease), background-color 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--ink-900); }
.btn-primary:hover { background: #fff; }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-small { padding: 11px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 7, 12, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}
.site-header.is-stuck { border-bottom-color: var(--line); background: rgba(8, 7, 12, 0.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 15px; }

.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; letter-spacing: -0.01em; }
.logo-mark {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  flex: none;
}
.logo-text { font-family: var(--font-display); font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.06em; }

.nav-toggle { background: none; border: 0; cursor: pointer; padding: 10px; color: var(--text); display: inline-flex; }
.burger, .burger::before, .burger::after {
  display: block; width: 24px; height: 2px; background: currentColor; position: relative;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger::before, .burger::after { content: ""; position: absolute; left: 0; }
.burger::before { top: -7px; }
.burger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .burger { background: transparent; }
.nav-toggle[aria-expanded="true"] .burger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .burger::after { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
  position: fixed; inset: 61px 0 auto 0;
  background: var(--ink-800);
  border-bottom: 1px solid var(--line);
  display: none; flex-direction: column; gap: 2px; padding: 18px 22px 26px;
}
.primary-nav.is-open { display: flex; }
.primary-nav a { text-decoration: none; padding: 13px 0; font-weight: 600; border-bottom: 1px solid var(--line); }
.primary-nav a:last-child { border-bottom: 0; margin-top: 14px; align-self: flex-start; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static; display: flex; flex-direction: row; align-items: center; gap: 30px;
    background: none; border: 0; padding: 0;
  }
  .primary-nav a { border: 0; padding: 6px 0; font-size: 0.95rem; color: var(--text-muted); transition: color 0.2s; }
  .primary-nav a:hover { color: var(--text); }
  .primary-nav a:last-child { margin: 0; color: var(--ink-900); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-block: 90px 120px; overflow: hidden;
  background: var(--ink-900);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.hero-glow {
  position: absolute; left: 50%; top: 18%; width: min(900px, 130vw); aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 62%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 0.32em; }
.hero-tagline { font-size: clamp(1.02rem, 2.1vw, 1.2rem); color: var(--text-muted); max-width: 46ch; margin-bottom: 2em; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 3rem; }

.hero-facts { display: flex; flex-wrap: wrap; gap: 34px; margin: 0; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-facts div { margin: 0; }
.hero-facts dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.17em; color: var(--text-muted); margin-bottom: 5px; }
.hero-facts dd { margin: 0; font-weight: 700; font-size: 1.02rem; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 2; display: block; padding: 10px;
}
.scroll-hint-line { display: block; width: 1px; height: 46px; background: linear-gradient(var(--accent), transparent); }

/* ---------- Marquee ---------- */
.proof-strip { padding-block: 40px; border-block: 1px solid var(--line); background: var(--ink-800); overflow: hidden; }
.proof-strip-label {
  text-align: center; text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.7rem; color: var(--text-muted); margin-bottom: 20px;
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track {
  display: flex; gap: 56px; list-style: none; margin: 0; padding: 0; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-track li {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted); white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Sections ---------- */
/* Bewusst großzügig: Ruhe zwischen den Abschnitten ist bei dieser Art
   Seite ein Qualitätsmerkmal, keine Platzverschwendung. */
.section { padding-block: clamp(78px, 12vw, 152px); }
.section-raised { background: var(--ink-800); border-block: 1px solid var(--line); }
.section-lead { color: var(--text-muted); max-width: 60ch; font-size: 1.06rem; margin-bottom: 3em; }
.section-note { color: var(--text-muted); font-size: 0.92rem; margin-top: 2em; }
.section-note a { color: var(--accent); }

/* ---------- Anlässe ---------- */
.occasion-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
@media (min-width: 720px) { .occasion-grid { grid-template-columns: repeat(2, 1fr); } }
.occasion {
  position: relative; padding: 30px 26px 26px; border-radius: var(--radius);
  background: var(--ink-700); border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.occasion:hover { border-color: var(--accent-line); transform: translateY(-4px); }
.occasion-num {
  display: block; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--accent); margin-bottom: 14px;
}
.occasion p { color: var(--text-muted); margin: 0; font-size: 0.96rem; }

/* ---------- Genre-Mixer ---------- */
.mixer { display: grid; gap: 26px; }
@media (min-width: 860px) { .mixer { grid-template-columns: 1fr 280px; align-items: start; } }

.genre-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font: inherit; font-size: 0.93rem; font-weight: 600; cursor: pointer;
  padding: 11px 18px; border-radius: 999px;
  background: var(--ink-700); color: var(--text-muted);
  border: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s, background-color 0.2s, transform 0.2s var(--ease);
}
.chip:hover { color: var(--text); transform: translateY(-2px); }
.chip.is-active {
  background: var(--accent-soft); color: var(--accent);
  border-color: var(--accent-line);
}

.deck {
  padding: 24px; border-radius: var(--radius);
  background: var(--ink-700); border: 1px solid var(--accent-line);
}
.deck-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-block: 11px; border-bottom: 1px solid var(--line); }
.deck-row:last-of-type { border-bottom: 0; }
.deck-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); }
.deck-value { font-size: 0.98rem; text-align: right; }
.deck-meter { display: flex; align-items: flex-end; gap: 4px; height: 42px; margin-top: 16px; }
.deck-meter span {
  flex: 1; background: var(--accent); border-radius: 2px; opacity: 0.75;
  animation: bounce 1.1s ease-in-out infinite alternate;
}
.deck-meter span:nth-child(2n) { animation-duration: 0.78s; }
.deck-meter span:nth-child(3n) { animation-duration: 1.45s; }
.deck-meter span:nth-child(5n) { animation-duration: 0.92s; }
@keyframes bounce { from { height: 12%; } to { height: 100%; } }
@media (prefers-reduced-motion: reduce) { .deck-meter span { animation: none; height: 55%; } }

/* ---------- Über ---------- */
.about-grid { display: grid; gap: 34px; }
@media (min-width: 880px) { .about-grid { grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; } }
.about-placeholder {
  aspect-ratio: 4 / 5; border-radius: var(--radius);
  border: 1px dashed var(--accent-line); background: var(--ink-700);
  display: grid; place-items: center;
  color: var(--text-muted); font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.tick-list { list-style: none; margin: 0 0 2em; padding: 0; display: grid; gap: 11px; }
.tick-list li { position: relative; padding-left: 28px; color: var(--text-muted); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 2px; background: var(--accent);
}

/* ---------- Technik ---------- */
.spec-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
@media (min-width: 680px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .spec-grid { grid-template-columns: repeat(4, 1fr); } }
.spec { padding: 26px 22px; border-radius: var(--radius); background: var(--ink-700); border: 1px solid var(--line); }
.spec-tag {
  display: inline-block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); margin-bottom: 14px;
}
.spec h3 { margin-bottom: 0.45em; }
.spec p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ---------- Ablauf ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 14px; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { counter-increment: step; padding: 26px 22px; border-radius: var(--radius); background: var(--ink-700); border: 1px solid var(--line); }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.9rem;
  color: var(--accent); margin-bottom: 12px; line-height: 1;
}
.step p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }

.highlight-note {
  margin-top: 26px; padding: 20px 24px; border-radius: var(--radius);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  font-weight: 700; text-align: center;
}

/* ---------- Bildstrecke ----------
   Solange keine Fotos vorliegen, ist jede Kachel ein Briefing:
   Der gewünschte Bildinhalt steht in data-brief und erscheint beim Hovern. */
.shots {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) { .shots { grid-template-columns: repeat(4, 1fr); } }

.shot {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-700); border: 1px solid var(--line);
  display: grid; place-items: center;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 860px) { .shot-wide { grid-column: span 2; aspect-ratio: 8 / 3; } }

.shot.is-empty { border-style: dashed; border-color: var(--accent-line); }
.shot-label {
  font-family: monospace; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); text-align: center; padding: 10px;
}
.shot.is-empty::after {
  content: attr(data-brief);
  position: absolute; inset: auto 0 0 0; padding: 12px 14px;
  background: var(--ink-900); color: var(--accent);
  font-size: 0.78rem; line-height: 1.4; text-align: left;
  transform: translateY(101%); transition: transform 0.3s var(--ease);
}
.shot.is-empty:hover::after, .shot.is-empty:focus-within::after { transform: none; }
@media (hover: none) { .shot.is-empty::after { transform: none; position: static; background: none; padding: 0 12px 12px; } }

.briefing-note { color: var(--accent); }

/* ---------- Hörproben ---------- */
.mixes { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mix {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center;
  padding: 22px 24px; border-radius: var(--radius);
  background: var(--ink-700); border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.mix:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.mix-play {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 0.9rem;
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line);
}
.mix-body h3 { margin-bottom: 0.25em; }
.mix-body p { margin: 0 0 0.4em; color: var(--text-muted); font-size: 0.95rem; }
.mix-meta { font-family: monospace; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--accent); }
.mix.is-empty { border-style: dashed; border-color: var(--accent-line); }

/* ---------- Stimmen (Karussell) ---------- */
.quotes { position: relative; }
.quote-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px;
}
.quote-track::-webkit-scrollbar { display: none; }
.quote {
  flex: 0 0 100%; scroll-snap-align: start; margin: 0;
  padding: 34px 30px; border-radius: var(--radius);
  background: var(--ink-700); border: 1px solid var(--line);
}
@media (min-width: 820px) { .quote { flex-basis: calc(50% - 8px); } }
.quote p { font-size: 1.12rem; margin-bottom: 1.3em; }
.quote footer { margin: 0; }
.quote cite { font-style: normal; font-size: 0.86rem; color: var(--text-muted); }
.quote.is-placeholder { border-style: dashed; border-color: var(--accent-line); }
.quote.is-placeholder p { color: var(--text-muted); }

.quote-nav { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.quote-nav button {
  font: inherit; cursor: pointer; width: 40px; height: 40px; border-radius: 50%;
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--line); transition: color 0.2s, border-color 0.2s;
}
.quote-nav button:hover:not(:disabled) { color: var(--accent); border-color: var(--accent); }
.quote-nav button:disabled { opacity: 0.3; cursor: default; }
.quote-dots { display: flex; gap: 7px; }
.quote-dots button {
  width: 26px; height: 3px; border-radius: 1px; padding: 0; border: 0;
  background: var(--line-strong, rgba(243,241,250,0.22)); cursor: pointer;
}
.quote-dots button.on { background: var(--accent); }

/* ---------- Ständiger Handlungsaufruf ---------- */
.cta-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 120%);
  z-index: 90; display: flex; align-items: center; gap: 16px;
  padding: 11px 13px 11px 22px; border-radius: 999px;
  background: rgba(20, 17, 30, 0.92); border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
  opacity: 0; max-width: calc(100vw - 32px);
}
.cta-bar.is-shown { transform: translate(-50%, 0); opacity: 1; }
.cta-bar-text { font-size: 0.92rem; font-weight: 600; white-space: nowrap; }
@media (max-width: 420px) { .cta-bar-text { display: none; } .cta-bar { padding: 9px; } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-700); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 20px 54px 20px 24px; font-weight: 700; position: relative; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item p { padding: 0 24px 22px; margin: 0; color: var(--text-muted); }

/* ---------- Formular ---------- */
.contact-form { display: grid; gap: 16px; }
.form-grid-2 { display: grid; gap: 16px; }
@media (min-width: 520px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-row { display: grid; gap: 7px; border: 0; padding: 0; margin: 0; }
.form-row label, .form-row legend { font-size: 0.84rem; font-weight: 600; color: var(--text-muted); padding: 0; }
.form-row input, .form-row textarea, .form-row select {
  font: inherit; color: var(--text); background: var(--ink-700);
  border: 1px solid var(--line); border-radius: 11px; padding: 13px 15px; width: 100%;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--accent); outline: none; }
.form-row textarea { resize: vertical; }
.checkbox-row { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text); font-size: 0.95rem; padding-block: 5px; }
.checkbox-row input { width: auto; accent-color: var(--accent); }
.form-hint { font-size: 0.9rem; margin: 0; min-height: 1.4em; }
.form-hint.is-error { color: hsl(4 90% 72%); }
.form-hint.is-ok { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-800); border-top: 1px solid var(--line); padding-block: 46px; }
.footer-inner { display: grid; gap: 26px; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 1fr auto; align-items: center; } }
.footer-inner p { color: var(--text-muted); font-size: 0.92rem; margin: 10px 0 0; }
.logo-footer { margin-bottom: 0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer nav a { color: var(--text-muted); text-decoration: none; font-size: 0.92rem; }
.site-footer nav a:hover { color: var(--accent); }

/* ---------- Scroll-Reveal ----------
   Grundsatz: im Zweifel sichtbar. Der versteckte Startzustand gilt nur,
   wenn JavaScript wirklich läuft (Klasse .js wird von script.js gesetzt).
   Ohne JS, bei einem JS-Fehler oder in Lesemodi bleibt der Inhalt da. */
.reveal-init { opacity: 1; transform: none; }

.js .reveal-init {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js .reveal-init.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal-init { opacity: 1; transform: none; }
}


/* ---------- Fassungs-Umschalter (temporär, nur für den Vergleich) ----------
   Wird nach der Entscheidung wieder entfernt. Siehe vergleich/README.md */
.vswitch {
  display: inline-flex; align-items: center; gap: 3px; margin-left: auto; margin-right: 14px;
  padding: 3px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
}
.vswitch a {
  display: grid; place-items: center; width: 30px; height: 26px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  color: var(--text-muted); transition: background-color 0.2s, color 0.2s;
}
.vswitch a:hover { color: var(--text); }
.vswitch a[aria-current="page"] { background: var(--accent); color: #0b0a10; }
.vswitch-hint {
  font-family: monospace; font-size: 0.62rem; letter-spacing: 0.1em;
  color: var(--text-muted); padding-inline: 8px 6px; white-space: nowrap;
}
@media (max-width: 620px) { .vswitch-hint { display: none; } }
