/* ============================================================================
   DJ STYX — Website-Stylesheet
   Farbwelt: Cremeweiß · Anthrazit · Dunkelblau (Logo-Farbe)
   Die Logo-Farbe kann später zentral über --blue / --blue-bright / --navy
   angepasst werden, sobald das Original-Logo vorliegt.
   ============================================================================ */

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben */
  --cream:        #F4EFE5;   /* Cremeweiß — helle Flächen */
  --cream-soft:   #FBF8F1;   /* Cremeweiß, noch heller — Karten auf hell */
  --cream-line:   #E4DCCB;   /* Linien auf hellen Flächen */
  --ink:          #23262C;   /* Anthrazit — dunkle Flächen */
  --ink-deep:     #191C21;   /* Anthrazit, tiefer — Hero & Footer */
  --ink-raised:   #2C313A;   /* erhabene Flächen auf dunkel */
  --navy:         #1F2657;   /* Dunkelblau, tief — Bänder & Akzente */
  --blue:         #2E3A7F;   /* Dunkelblau — Primärfarbe (aus dem Logo gesampelt) */
  --blue-bright:  #5B76EC;   /* leuchtendes Blau — Hover, Glow, Verläufe */
  --blue-on-dark: #9AAAFF;   /* aufgehelltes Blau — kleine Texte auf dunklem Grund (Kontrast AA) */
  --text-dark:    #3E434B;   /* Fließtext auf hell */
  --text-light:   #AEB4BE;   /* Fließtext auf dunkel */
  --line-dark:    rgba(244, 239, 229, 0.12);  /* Linien auf dunkel */
  --line-light:   rgba(35, 38, 44, 0.14);     /* Linien auf hell */

  /* Typografie */
  --font-display: "Syne", "Arial Black", sans-serif;
  --font-body:    "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --container:    1200px;
  --radius:       20px;
  --radius-sm:    12px;
  --nav-height:   76px;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--blue); color: var(--cream-soft); }

a { color: var(--blue); text-decoration: none; }

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section--dark  { background: var(--ink); color: var(--cream); }
.section--deep  { background: var(--ink-deep); color: var(--cream); }
.section--cream { background: var(--cream); }

/* Nur für Screenreader sichtbar */
.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; top: -60px; left: 1rem; z-index: 300;
  background: var(--blue); color: #fff;
  padding: 0.6rem 1.2rem; border-radius: 0 0 10px 10px;
  font-weight: 700; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.section--dark h2, .section--dark h3, .section--dark h4,
.section--deep h2, .section--deep h3, .section--deep h4 { color: var(--cream); }

h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 700; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1.1rem;
}
.kicker::before {
  content: ""; width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 2px;
}
.section--dark .kicker, .section--deep .kicker { color: var(--blue-on-dark); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head p { margin-top: 1rem; font-size: 1.1rem; }
.section--dark .section-head p, .section--deep .section-head p { color: var(--text-light); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(120deg, var(--blue), #3D55C9);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(46, 58, 127, 0.65);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -12px rgba(91, 118, 236, 0.7);
}

.btn--ghost { background: transparent; color: var(--cream); border-color: var(--line-dark); }
.btn--ghost:hover { border-color: var(--blue-bright); color: var(--blue-bright); transform: translateY(-3px); }

.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--navy); transform: translateY(-3px); }

/* ---------- Scroll-Fortschritt ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 250;
  width: 100%; height: 3px;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  pointer-events: none;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--nav-height);
  display: flex; align-items: center;
  background: rgba(25, 28, 33, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(25, 28, 33, 0.88);
  border-bottom-color: var(--line-dark);
}
.nav__inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.nav__brand {
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  letter-spacing: 0.04em; color: var(--cream);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.nav__brand:hover { color: var(--cream); }
.nav__brand-mark {
  width: 34px; height: 34px; flex: none; border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff; font-size: 1rem;
  box-shadow: 0 6px 18px -6px rgba(91, 118, 236, 0.8);
}
.nav__brand-mark svg { width: 18px; height: 18px; }
.nav__brand span em { font-style: normal; color: var(--blue-bright); }

/* Wortmarke im Stil des Original-Logos: „DJ" als Outline-Kursive,
   „STYX" in fetter Serifenschrift. Wird ersetzt, sobald die Logo-Dateien
   (PNG/SVG) in assets/logos/ liegen. */
.brand__dj {
  font-family: var(--font-body);
  font-weight: 800; font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1.3px var(--cream);
  margin-right: 0.4em;
}
@supports not (-webkit-text-stroke: 1px red) {
  .brand__dj { color: var(--cream); }
}
.brand__styx {
  font-family: "Abril Fatface", "Georgia", serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.nav__brand:hover .brand__styx { color: var(--blue-on-dark); transition: color 0.25s ease; }

/* Echte Logo-Datei: wird automatisch verwendet, sobald
   assets/logos/dj-styx-logo.png existiert (siehe Hinweis im Ordner).
   Der Filter färbt das blaue Logo für die dunkle Navigation weiß. */
.brand-img { display: none; }
.nav__brand.has-logo .brand-img {
  display: block; height: 38px; width: auto;
  filter: brightness(0) invert(1) opacity(0.95);
}
.nav__brand.has-logo .brand__dj,
.nav__brand.has-logo .brand__styx { display: none; }

.nav__links {
  display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.4rem);
  list-style: none;
}
.nav__link {
  position: relative;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light);
  padding-block: 0.4rem;
  transition: color 0.25s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--cream); }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { display: inline-flex; }
.nav__cta .btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* Mobiles Menü */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-dark); border-radius: 12px;
  background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span {
  width: 20px; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed; inset: var(--nav-height) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(25, 28, 33, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-dark);
    padding: 0.75rem 1.25rem 1.5rem;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__links li { border-bottom: 1px solid var(--line-dark); }
  .nav__links li:last-child { border-bottom: 0; }
  .nav__link { display: block; padding: 1rem 0.25rem; font-size: 1rem; }
  .nav__link::after { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--ink-deep);
  color: var(--cream);
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Platz für das spätere Hero-Video/-Bild — liegt unter den Verläufen */
.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}

/* Animierte Blau-Verläufe („Aurora") */
.hero__glow { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__glow::before, .hero__glow::after {
  content: ""; position: absolute;
  width: 60vmax; height: 60vmax; border-radius: 50%;
  filter: blur(90px); opacity: 0.5;
}
.hero__glow::before {
  background: radial-gradient(circle, rgba(46, 58, 127, 0.55), transparent 65%);
  top: -22vmax; right: -14vmax;
  animation: drift-a 16s ease-in-out infinite alternate;
}
.hero__glow::after {
  background: radial-gradient(circle, rgba(91, 118, 236, 0.32), transparent 65%);
  bottom: -26vmax; left: -16vmax;
  animation: drift-b 20s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate(-9vmax, 7vmax) scale(1.12); } }
@keyframes drift-b { to { transform: translate(9vmax, -7vmax) scale(1.08); } }

/* Dezenter Licht-Spot, folgt dem Mauszeiger (per JS) */
.hero__spot {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 70%) var(--my, 35%),
              rgba(91, 118, 236, 0.14), transparent 70%);
}

/* Feines Bildrauschen für einen hochwertigen Look */
.hero__noise {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.hero__inner { position: relative; z-index: 3; padding-block: clamp(3rem, 7vh, 5rem); }

.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--blue-on-dark);
  margin-bottom: 1.4rem;
}
.hero__kicker::before, .hero__kicker::after {
  content: ""; width: 30px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.hero__title {
  font-size: clamp(3.4rem, 13.5vw, 10rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.98;
  color: var(--cream);
  text-transform: uppercase;
}
.hero__title .accent,
.hero__title .accent .ltr {
  background: linear-gradient(100deg, var(--blue-bright), #8FAAFF 60%, var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Ein Wort bleibt zusammen — Umbruch nur zwischen den Wörtern */
.hero__title .split-letters { display: inline-block; white-space: nowrap; }
/* Buchstaben-Animation — Spans werden per JS erzeugt */
.hero__title .ltr {
  display: inline-block;
  animation: letter-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(0.05s * var(--i));
}
@keyframes letter-in {
  from { transform: translateY(0.6em) rotate(4deg); opacity: 0; }
  to   { transform: translateY(0) rotate(0); opacity: 1; }
}

.hero__sub {
  max-width: 620px;
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-light);
}
.hero__sub strong { color: var(--cream); font-weight: 700; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero__badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2.6rem;
  list-style: none;
}
.hero__badges li {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-light);
  border: 1px solid var(--line-dark); border-radius: 999px;
  padding: 0.45rem 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(44, 49, 58, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero__badges .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 10px var(--blue-bright);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

.hero__footer {
  position: relative; z-index: 3;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: 2rem;
}

/* Scroll-Hinweis */
.scroll-cue {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: var(--text-light);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
}
.scroll-cue__line {
  width: 2px; height: 48px; border-radius: 2px; overflow: hidden;
  background: var(--line-dark); position: relative;
}
.scroll-cue__line::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--blue-bright);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { to { top: 110%; } }

/* Equalizer */
.equalizer { display: flex; align-items: flex-end; gap: 5px; height: 44px; }
.equalizer span {
  width: 5px; border-radius: 3px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  animation: eq 1.1s ease-in-out infinite alternate;
}
.equalizer span:nth-child(1) { height: 40%; animation-delay: 0s; }
.equalizer span:nth-child(2) { height: 85%; animation-delay: 0.12s; }
.equalizer span:nth-child(3) { height: 55%; animation-delay: 0.24s; }
.equalizer span:nth-child(4) { height: 100%; animation-delay: 0.06s; }
.equalizer span:nth-child(5) { height: 65%; animation-delay: 0.3s; }
.equalizer span:nth-child(6) { height: 90%; animation-delay: 0.18s; }
.equalizer span:nth-child(7) { height: 45%; animation-delay: 0.36s; }
@keyframes eq { from { transform: scaleY(0.35); } to { transform: scaleY(1); } }

/* ---------- Drehende Schallplatte im Hero ---------- */
.hero__vinyl {
  position: absolute; z-index: 2;
  top: 50%; right: clamp(-140px, -6vw, -40px);
  width: clamp(360px, 36vw, 600px); aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.9;
}
.hero__vinyl svg {
  width: 100%; height: 100%;
  animation: vinyl-spin 16s linear infinite;
  filter: drop-shadow(0 0 70px rgba(91, 118, 236, 0.3));
}
@keyframes vinyl-spin { to { transform: rotate(360deg); } }
@media (max-width: 1100px) {
  .hero__vinyl { width: 340px; right: -150px; opacity: 0.35; }
}
@media (max-width: 640px) {
  .hero__vinyl { width: 260px; right: -130px; top: 38%; opacity: 0.25; }
}

/* ---------- DJ-Setup mit pulsierenden Lichtern ---------- */
.djsetup { width: 100%; max-width: 460px; height: auto; }
.djsetup .led {
  animation: led-pulse 1.3s ease-in-out infinite alternate;
  transform-box: fill-box; transform-origin: center;
}
.djsetup .led:nth-of-type(2n)  { animation-delay: 0.25s; }
.djsetup .led:nth-of-type(3n)  { animation-delay: 0.5s; }
.djsetup .led:nth-of-type(5n)  { animation-delay: 0.75s; }
@keyframes led-pulse {
  from { opacity: 0.25; }
  to   { opacity: 1; filter: drop-shadow(0 0 6px var(--blue-bright)); }
}
.djsetup .beam {
  animation: beam-sway 5s ease-in-out infinite alternate;
  transform-box: fill-box; transform-origin: 50% 0%;
}
.djsetup .beam--b { animation-delay: 1.6s; animation-duration: 6s; }
@keyframes beam-sway {
  from { transform: rotate(-7deg); opacity: 0.35; }
  50%  { opacity: 0.75; }
  to   { transform: rotate(7deg); opacity: 0.4; }
}
.djsetup .platter-label {
  animation: vinyl-spin 5s linear infinite;
  transform-box: fill-box; transform-origin: center;
}

/* ---------- Track Record („Wo ich schon aufgelegt habe") ---------- */
.played {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.played__text p + p { margin-top: 1.1rem; }
.played__text strong { color: var(--cream); }
.played__text a { color: var(--blue-on-dark); font-weight: 700; text-decoration: underline; }
.played__text a:hover { color: var(--cream); }
.played__media { display: grid; justify-items: center; }
@media (max-width: 860px) {
  .played { grid-template-columns: 1fr; }
  .played__media { order: 1; }
}

/* ---------- Jubelnde Crowd (CTA-Band) ---------- */
.crowd {
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: clamp(60px, 10vw, 96px); width: 100%;
  pointer-events: none;
}
.crowd svg { width: 100%; height: 100%; }
.crowd .crowd-p {
  animation: crowd-jump 0.65s ease-in-out infinite alternate;
  transform-box: fill-box; transform-origin: center bottom;
}
.crowd .crowd-p:nth-of-type(2n) { animation-delay: 0.18s; }
.crowd .crowd-p:nth-of-type(3n) { animation-delay: 0.32s; }
.crowd .crowd-p:nth-of-type(4n) { animation-delay: 0.45s; animation-duration: 0.8s; }
@keyframes crowd-jump {
  from { transform: translateY(0); }
  to   { transform: translateY(-9px); }
}
.cta-band { padding-bottom: clamp(6rem, 14vw, 9rem); }

/* ---------- Laufband (Marquee) ---------- */
.marquee {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding-block: 1.1rem;
  border-block: 1px solid rgba(91, 118, 236, 0.25);
}
.marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track,
.marquee.is-paused .marquee__track { animation-play-state: paused; }

/* Pausieren per Tastatur und Touch — nicht nur per Maus-Hover */
.marquee__pause {
  position: absolute; top: 50%; right: 0.8rem; transform: translateY(-50%);
  z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(244, 239, 229, 0.3);
  background: rgba(20, 23, 28, 0.55); color: var(--cream);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.marquee__pause:hover { background: var(--blue); border-color: var(--blue); }
.marquee__pause svg { width: 14px; height: 14px; }
.marquee__pause .icon-play { display: none; }
.marquee.is-paused .marquee__pause .icon-play { display: block; }
.marquee.is-paused .marquee__pause .icon-pause { display: none; }
.marquee__group {
  display: flex; gap: 3rem; align-items: center;
  list-style: none; flex: none;
}
.marquee__group li {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee__group li::after { content: "✦"; color: var(--blue-bright); font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(calc(-50% - 1.5rem)); } }

/* ---------- Über mich ---------- */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }

.about__text p + p { margin-top: 1.1rem; }
.about__text .lead { font-size: 1.2rem; font-weight: 600; color: var(--ink); }

.about__list { list-style: none; margin-top: 1.8rem; display: grid; gap: 0.9rem; }
.about__list li { display: flex; gap: 0.9rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.about__list svg { width: 22px; height: 22px; flex: none; margin-top: 3px; color: var(--blue); }

.about__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Porträt-Rahmen mit Blau-Akzent */
.about__media { position: relative; }
.about__media::before {
  content: ""; position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 2px solid var(--blue); border-radius: var(--radius);
  opacity: 0.35; z-index: 0;
}
.about__frame {
  position: relative; z-index: 1;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(25, 28, 33, 0.5);
}

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 480px; }
  /* Deko-Rahmen würde einspaltig über den Bildschirmrand ragen */
  .about__media::before { display: none; }
}

/* ---------- Zahlen / Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.stat {
  background: var(--ink-raised);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat:hover { transform: translateY(-6px); border-color: rgba(91, 118, 236, 0.5); }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 800;
  color: var(--cream); line-height: 1;
}
.stat__value .plus { color: var(--blue-bright); }
.stat__label {
  margin-top: 0.7rem;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light);
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; } .stat { padding: 1.4rem 1.1rem; } }

/* ---------- Residencies ---------- */
.residency-list { list-style: none; border-top: 1px solid var(--line-dark); }
.residency {
  position: relative;
  border-bottom: 1px solid var(--line-dark);
}
.residency__row {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr) auto auto;
  align-items: center; gap: 1.2rem;
  padding: 1.35rem 0.8rem;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
}
.residency:hover .residency__row {
  background: linear-gradient(90deg, rgba(46, 58, 127, 0.22), transparent 70%);
  padding-left: 1.6rem;
}
.residency__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; color: var(--text-light);
}
.residency__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.4vw, 2.1rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.3s ease;
}
.residency:hover .residency__name { color: var(--blue-on-dark); }
.residency__city {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-light);
  white-space: nowrap;
}
.tag {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px; padding: 0.32rem 0.85rem;
  white-space: nowrap;
}
.tag--resident { color: var(--blue-on-dark); border: 1px solid rgba(143, 170, 255, 0.5); }
.tag--onair {
  color: #fff;
  background: linear-gradient(120deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 18px -4px rgba(91, 118, 236, 0.8);
}
.tag--booking { color: var(--cream); border: 1px solid var(--line-dark); }

@media (max-width: 640px) {
  .residency__row { grid-template-columns: 2rem minmax(0, 1fr) auto; row-gap: 0.2rem; padding-inline: 0.4rem; }
  .residency__city { grid-column: 2; grid-row: 2; justify-self: start; }
  .residency:hover .residency__row { padding-left: 0.9rem; }
}

/* Festivals */
.festivals {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
  margin-top: 3rem;
}
.festival-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(46, 58, 127, 0.5), transparent 60%),
    var(--ink-raised);
  padding: 2.2rem 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.festival-card:hover { transform: translateY(-6px); border-color: rgba(91, 118, 236, 0.55); }
.festival-card__tag {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue-on-dark);
}
.festival-card h3 {
  margin-top: 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2rem); text-transform: uppercase;
}
.festival-card p { margin-top: 0.6rem; color: var(--text-light); }
@media (max-width: 700px) { .festivals { grid-template-columns: 1fr; } }

/* Frühere Stationen */
.past { margin-top: 3rem; }
.past__title {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 1rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; }
.chips li {
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-light);
  border: 1px solid var(--line-dark); border-radius: 999px;
  padding: 0.5rem 1.1rem;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.chips li:hover { color: var(--cream); border-color: rgba(91, 118, 236, 0.5); transform: translateY(-2px); }

/* ---------- Leistungen ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service {
  background: var(--cream-soft);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 58, 127, 0.35);
  box-shadow: 0 30px 50px -30px rgba(46, 58, 127, 0.35);
}
.service__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(46, 58, 127, 0.6);
  margin-bottom: 1.5rem;
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 { margin-bottom: 0.8rem; }
.service p { font-size: 1rem; }
.service ul { list-style: none; margin-top: 1.1rem; display: grid; gap: 0.5rem; }
.service ul li {
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 0.6rem;
}
.service ul li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex: none;
}
@media (max-width: 900px) { .services { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ---------- Platzhalter für Medien ---------- */
.ph {
  position: relative;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(91, 118, 236, 0.05) 14px 28px),
    linear-gradient(150deg, var(--ink-raised), var(--navy) 130%);
  color: var(--text-light);
  overflow: hidden;
  min-height: 200px;
}
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--wide     { aspect-ratio: 16 / 9; }
.ph--square   { aspect-ratio: 1; }
.ph__inner { text-align: center; padding: 1rem; }
.ph__inner svg { width: 34px; height: 34px; opacity: 0.7; margin-inline: auto; }
.ph__label {
  display: block; margin-top: 0.6rem;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--cream);
}
.ph__slot {
  display: block; margin-top: 0.2rem;
  font-size: 0.7rem; letter-spacing: 0.06em;
  opacity: 0.6;
}

/* ---------- Galerie ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.filter-btn {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.4rem; border-radius: 999px;
  border: 1px solid var(--line-light); background: transparent;
  color: var(--text-dark); cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.is-active {
  background: var(--blue); border-color: var(--blue); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(46, 58, 127, 0.6);
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.gallery-item {
  position: relative; margin: 0;
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover,
.gallery-item:focus-within {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 44px -24px rgba(25, 28, 33, 0.55);
}
.gallery-item.is-hidden { display: none; }

/* Klickfläche liegt unsichtbar über der Kachel — hält das HTML gültig
   und die Beschriftung im Screenreader kurz */
.card-open {
  position: absolute; inset: 0; z-index: 3;
  border: 0; padding: 0; background: transparent; cursor: pointer;
  font: inherit; color: transparent;
  border-radius: inherit;
}
.card-open:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: -3px; }
.gallery-item__meta {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(20, 23, 28, 0.9));
  color: var(--cream);
  display: flex; justify-content: space-between; align-items: center; gap: 0.8rem;
}
.gallery-item__title { font-weight: 700; font-size: 0.95rem; }
.gallery-item__cat {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue-on-dark);
  white-space: nowrap;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Logo-Wand */
.logo-wall {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.logo-slot {
  border: 1px dashed var(--line-dark); border-radius: var(--radius-sm);
  min-height: 110px;
  display: grid; place-items: center; text-align: center;
  color: var(--text-light);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 1rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.logo-slot:hover { border-color: rgba(91, 118, 236, 0.55); transform: translateY(-3px); }
@media (max-width: 800px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  background: rgba(15, 17, 21, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  padding: 1.5rem;
}
/* Beim Öffnen sofort sichtbar (sonst nimmt das Overlay keinen Fokus an),
   beim Schließen weiterhin sanft ausblenden */
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity 0.3s ease, visibility 0s; }
.lightbox__content {
  width: min(100%, 860px);
  max-height: 86vh;
  border-radius: var(--radius); overflow: hidden;
  transform: scale(0.96); transition: transform 0.3s ease;
  display: flex; justify-content: center;
}
/* Inhalt passt sich der Fensterhöhe an, statt oben und unten abgeschnitten zu werden */
.lightbox__content > * { max-height: 86vh; max-width: 100%; }
.lightbox__content img,
.lightbox__content video { width: auto; object-fit: contain; }
.lightbox__content .ph { width: 100%; aspect-ratio: auto; min-height: min(86vh, 520px); }
.lightbox.is-open .lightbox__content { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: rgba(44, 49, 58, 0.6); color: var(--cream);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.lightbox__close:hover { background: var(--blue); transform: rotate(90deg); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.blog-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--cream-soft);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card:focus-within,
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 58, 127, 0.35);
  box-shadow: 0 30px 50px -30px rgba(46, 58, 127, 0.35);
}
.blog-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.blog-card--featured .blog-card__body { align-self: center; }
.blog-card__media { position: relative; }
.blog-card__media .ph { min-height: 220px; height: 100%; }
.blog-card__body { padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-card__meta {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
}
.blog-card__meta time { color: #5A5F67; }
.blog-card h3 { font-size: 1.3rem; }
.blog-card--featured h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.blog-card p { font-size: 0.98rem; }
.blog-card__more {
  margin-top: auto; padding-top: 0.6rem;
  font-weight: 800; font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.blog-card:hover .blog-card__more { color: var(--blue-bright); }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .blog-card--featured { grid-template-columns: 1fr; }
}

/* Blog-Modal */
.modal {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  background: rgba(15, 17, 21, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  padding: 1.5rem;
}
.modal.is-open { opacity: 1; visibility: visible; transition: opacity 0.3s ease, visibility 0s; }
.modal__dialog {
  width: min(100%, 760px); max-height: 85vh; overflow-y: auto;
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 3rem);
  transform: translateY(18px); transition: transform 0.3s ease;
}
.modal.is-open .modal__dialog { transform: translateY(0); }
.modal__dialog h3 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 0.4rem; }
.modal__dialog .blog-card__meta { margin-bottom: 1.2rem; }
.modal__dialog p + p { margin-top: 1rem; }
.modal__close {
  position: sticky; top: 0; float: right;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-light);
  background: var(--cream-soft); color: var(--ink);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.modal__close:hover { background: var(--blue); color: #fff; transform: rotate(90deg); }

/* ---------- Unterseiten-Header ---------- */
.page-head {
  position: relative;
  background: var(--ink-deep); color: var(--cream);
  padding: calc(var(--nav-height) + clamp(3.5rem, 9vw, 6rem)) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute;
  width: 55vmax; height: 55vmax; border-radius: 50%;
  filter: blur(90px); opacity: 0.45;
  background: radial-gradient(circle, rgba(46, 58, 127, 0.55), transparent 65%);
  top: -30vmax; right: -18vmax;
  animation: drift-a 18s ease-in-out infinite alternate;
}
.page-head__inner { position: relative; z-index: 1; }
.page-head h1 {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-weight: 800; text-transform: uppercase; color: var(--cream);
}
.page-head h1 .accent {
  background: linear-gradient(100deg, var(--blue-bright), #8FAAFF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-head p { max-width: 640px; margin-top: 1.2rem; font-size: 1.12rem; color: var(--text-light); }

/* ---------- Kontakt ---------- */
.contact-layout {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.form-card {
  background: var(--cream-soft);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field--full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.form-field label {
  display: block;
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.form-field label .req { color: var(--blue); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--cream-line); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 58, 127, 0.12);
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #C0392B; }
.form-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.84rem; font-weight: 600; color: #C0392B;
}
.form-field.has-error .form-error { display: block; }

.form-consent { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: flex-start; }
/* Fehlermeldung setzt sich unter das Label, statt es zusammenzuquetschen */
.form-consent .form-error { flex: 0 0 100%; margin-top: 0; }
.form-consent input {
  width: 20px; height: 20px; margin-top: 3px;
  accent-color: var(--blue); flex: none;
}
.form-consent label { font-size: 0.92rem; font-weight: 500; color: var(--text-dark); }
.form-consent label a { font-weight: 700; text-decoration: underline; }
.form-consent.has-error label { color: #C0392B; }

/* Honeypot — für Menschen unsichtbar */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-actions { margin-top: 1.6rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-note { font-size: 0.85rem; opacity: 0.75; }

.form-status {
  display: none;
  margin-top: 1.4rem;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status--ok {
  background: rgba(46, 58, 127, 0.08);
  border: 1px solid rgba(46, 58, 127, 0.35);
  color: var(--navy);
}
.form-status--err {
  background: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.4);
  color: #8E2A1E;
}
.form-status a { text-decoration: underline; font-weight: 700; }

/* Kontakt-Seitenleiste */
.contact-aside { display: grid; gap: 1.4rem; }
.contact-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.contact-card h3 { color: var(--cream); margin-bottom: 1rem; }
.contact-card p { color: var(--text-light); font-size: 0.98rem; }
.contact-card__row {
  display: flex; align-items: center; gap: 0.9rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--cream); font-weight: 600;
}
.contact-card__row:last-child { border-bottom: 0; }
.contact-card__row svg { width: 20px; height: 20px; flex: none; color: var(--blue-bright); }
.contact-card__row a { color: var(--cream); }
.contact-card__row a:hover { color: var(--blue-bright); }

/* FAQ */
.faq { display: grid; gap: 0.8rem; }
.faq details {
  background: var(--cream-soft);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq details[open] { border-color: rgba(46, 58, 127, 0.4); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display); font-size: 1.3rem; color: var(--blue);
  transition: transform 0.3s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.2rem; font-size: 0.97rem; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 160% at 85% 10%, rgba(91, 118, 236, 0.35), transparent 60%),
    linear-gradient(120deg, var(--navy), var(--ink-deep) 75%);
  color: var(--cream);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(2.6rem, 7vw, 4.5rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.6rem;
}
.cta-band h2 { color: var(--cream); max-width: 560px; }
.cta-band p { margin-top: 0.8rem; color: var(--text-light); max-width: 520px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-deep); color: var(--text-light);
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand .nav__brand { font-size: 1.5rem; }
.footer__brand p { margin-top: 1rem; max-width: 380px; font-size: 0.95rem; }
.footer h4 {
  color: var(--cream); font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer a { color: var(--text-light); transition: color 0.25s ease; }
.footer a:hover { color: var(--blue-bright); }

.socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  color: var(--text-light);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
.socials a:hover {
  color: #fff; border-color: var(--blue);
  background: var(--blue); transform: translateY(-3px);
}
.socials svg { width: 19px; height: 19px; }

.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1rem; padding-top: 1.6rem;
  font-size: 0.85rem;
}
.footer__legal { display: flex; gap: 1.4rem; list-style: none; }

@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; } }

/* ---------- Einblend-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.3, 1),
              transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .ltr { animation: none; }
  /* Laufband steht still: doppelte Liste ausblenden, Rest umbrechen lassen */
  .marquee { padding-inline: 1.2rem; }
  .marquee__track { animation: none; flex-wrap: wrap; width: 100%; gap: 0.6rem 2rem; }
  .marquee__group { flex: 0 1 auto; min-width: 0; width: 100%; flex-wrap: wrap; gap: 0.6rem 2rem; justify-content: center; }
  .marquee__group[aria-hidden="true"] { display: none; }
  .marquee__group li { gap: 2rem; }
  .marquee__pause { display: none; }
}
