/* ================================================================
   STYLE.CSS — Studio Premium Website
   ================================================================
   INHALTSVERZEICHNIS
   1.  CSS-Variablen & Reset
   2.  Typografie
   3.  Navigation
   4.  Hero Section
   5.  About Section
   6.  Work Section
   7.  Contact Section
   8.  Footer
   9.  Animationen & Reveal
   10. Responsive
   ================================================================ */


/* ----------------------------------------------------------------
   1. CSS-VARIABLEN & RESET
   ---------------------------------------------------------------- */
:root {
  /* Farben */
  --bg:           #070707;
  --bg-2:         #0d0d0d;
  --text:         #f0ede8;
  --text-muted:   rgba(240, 237, 232, 0.42);
  --accent:       #c8a96e;                        /* warmes Gold */
  --accent-glow:  rgba(200, 169, 110, 0.12);
  --border:       rgba(240, 237, 232, 0.07);

  /* Schriften */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Menlo', 'Monaco', 'Courier New', monospace;

  /* Layout */
  --section-pad:  clamp(90px, 13vw, 180px);
  --container:    min(1320px, 92vw);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Alle Section-Headlines: Montserrat Light */
.about__headline,
.work__headline,
.contact__headline {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

ul {
  list-style: none;
}


/* ----------------------------------------------------------------
   2. TYPOGRAFIE — gemeinsame Klassen
   ---------------------------------------------------------------- */
.hero__label,
.about__tag span,
.work__tag,
.contact__tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}


/* ----------------------------------------------------------------
   3. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 24px clamp(24px, 5vw, 68px);
  transition:
    background      0.5s ease,
    backdrop-filter 0.5s ease,
    padding         0.4s ease,
    border-color    0.5s ease;
  border-bottom: 1px solid transparent;
}

/* Scrolled-State */
.nav.scrolled {
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: var(--border);
}

/* Logo */
.nav__logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0;
  padding: 0;
  filter: brightness(1) drop-shadow(0 0 6px rgba(0,0,0,0.4));
  transition: opacity 0.3s ease;
}

.nav__logo-img:hover {
  opacity: 0.8;
}

.footer__logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer__logo-img:hover {
  opacity: 1;
}

/* Links */
.nav__links {
  display: flex;
  gap: 44px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.nav__link:hover {
  color: var(--text);
}

.nav__link:hover::after {
  width: 100%;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s ease, opacity 0.3s ease;
}


/* ----------------------------------------------------------------
   4. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ---- Video-Wrapper ---- */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* REPLACE: echtes Video-Element */
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* ---- Logo in der Hero-Section ---- */
.hero__logo {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__logo-img {
  height: 138px;
  width: auto;
  display: block;
}

/* ---- Equalizer Balken-Animation ---- */
.eq-group path {
  transform-box: fill-box;
  transform-origin: bottom center;
  transition-property: transform;
  transition-timing-function: ease-in-out;
  will-change: transform;
}

/* ---- Overlay über dem Video ---- */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.80);
}

/* ---- Hero Inhalt ---- */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(24px, 6vw, 100px);
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 140px;
  will-change: transform, opacity;
}

/* Badge-Button oben */
.hero__badge-wrap {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: rgba(0, 0, 0, 0.70);
  border: 1px solid rgba(185, 28, 28, 0.7);   /* red-700 */
  color: #fca5a5;                               /* red-300 */
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 20px rgba(153, 27, 27, 0.25);
}

.hero__badge:hover {
  background: rgba(127, 29, 29, 0.80);         /* red-900 */
  color: #fff;
}

.hero__badge svg {
  flex-shrink: 0;
}

/* Hauptüberschrift */
.hero__headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  font-weight: 100;
  line-height: 1.0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1.3s ease 0.55s forwards;
}

.hero__headline-prefix {
  display: block;
  font-weight: 100;
  white-space: nowrap;
  color: #ff0000;
  text-shadow: 0 0 32px rgba(255, 0, 0, 0.6);
  margin-bottom: 0.05em;
}

/* Animiertes Wort-Karussell */
.hero__word-wrap {
  position: relative;
  display: block;
  height: 1.15em;
  width: 100%;
  overflow: visible;
}

.hero__word {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(110%);
  white-space: nowrap;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5em;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);

  /* Startzustand: unten, unsichtbar */
  opacity: 0;
  transform: translateY(110%);
  transition:
    opacity   0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sichtbares Wort */
.hero__word.word--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Wort, das nach oben verschwindet */
.hero__word.word--above {
  opacity: 0;
  transform: translateX(-50%) translateY(-110%);
}

/* Beschreibung */
.hero__sub {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  line-height: 1.75;
  color: #fecaca;                               /* red-200 */
  max-width: 600px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(220, 38, 38, 0.25);
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

/* CTA-Wrap */
.hero__cta-wrap {
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 1.15s forwards;
}

/* CTA-Button */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  border: 1px solid rgba(185, 28, 28, 0.8);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fca5a5;                               /* red-300 */
  border-radius: 4px;
  transition:
    background  0.35s ease,
    color       0.35s ease,
    transform   0.35s ease,
    box-shadow  0.35s ease;
  box-shadow: 0 4px 20px rgba(153, 27, 27, 0.2);
}

.hero__cta:hover {
  background: rgba(127, 29, 29, 0.60);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(153, 27, 27, 0.35);
}

.hero__cta svg {
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.hero__cta:hover svg {
  transform: translateX(4px);
}

/* ---- Scroll-Indikator (links unten) ---- */
.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: clamp(24px, 5vw, 68px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.hero__scroll span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  transform-origin: top;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  48%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  50%  { transform-origin: bottom; }
  98%  { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  100% { transform: scaleY(0); transform-origin: top;    opacity: 0; }
}


/* ----------------------------------------------------------------
   5. ABOUT SECTION — Hintergrundbild mit Blur
   ---------------------------------------------------------------- */
.about {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

/* About-Section: knallroter Basishintergrund */
.about {
  background-color: #cc0000;
}

/* Hintergrundbild: section-bg.jpg, transparent + unscharf */
.about__bg {
  position: absolute;
  inset: -5%;
  z-index: 0;
  background-image: url('footage/crowd-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.45);
  will-change: transform;
  transform: scale(1.1) translateY(0);
}

/* Dunkelrotes Overlay — legt sich über das Bild */
.about__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(180, 0, 0, 0.55);
}

.about__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 68px);
}

.about__tag {
  margin-bottom: 36px;
}

.about__intro {
  font-size: clamp(0.92rem, 1.76vw, 1.28rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 80px;
}

.about__logo {
  position: absolute;
  bottom: clamp(-60px, -6vw, -30px);
  right: clamp(-20px, -1vw, 0px);
  will-change: transform;
}

.about__logo-img {
  height: clamp(74px, 9.45vw, 116px);
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.6));
  transform-origin: bottom right;
  will-change: transform;
}

.about__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  font-weight: 100;
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin-bottom: 60px;
  max-width: 750px;
}

.about__text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 96px);
  max-width: 940px;
  margin-bottom: 80px;
}

.about__text {
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  line-height: 1.9;
  color: var(--text-muted);
}

/* Statistik-Zeile */
.about__stat-row {
  display: flex;
  gap: clamp(36px, 7vw, 112px);
  padding-top: 52px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.about__stat-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ----------------------------------------------------------------
   6. WORK SECTION
   ---------------------------------------------------------------- */
.work {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--bg);
  overflow: hidden;
}

/* Singer background image — 2% opacity, leicht unscharf */
.work__singer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('footage/singer-bg.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
  filter: blur(6px);
  pointer-events: none;
}

.work__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 68px);
}

.work__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 72px;
  flex-wrap: wrap;
  gap: 24px;
}

.work__headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.work__headline-bold,
.work__headline-thin {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: 100;
}

.work__headline-bold {
  color: var(--text);
}

.work__headline-thin {
  color: #ff0000;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 20px);
}

.work__item {
  position: relative;
  padding: clamp(36px, 5vw, 60px);
  background: transparent;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease;
  cursor: default;
}

.work__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff0000, transparent 80%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.work__item:hover {
  background: rgba(180, 0, 0, 0.06);
  border-color: rgba(255, 0, 0, 0.15);
}

.work__item:hover::after {
  transform: scaleX(1);
}

.work__num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}

.work__item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.54rem, 3.15vw, 3.15rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.work__item:hover h3 {
  color: #ff0000;
}

.work__item p {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.76vw, 1.28rem);
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.72);
}


/* ----------------------------------------------------------------
   7. CONTACT SECTION
   ---------------------------------------------------------------- */
.contact {
  padding: var(--section-pad) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: -5%;
  z-index: 0;
  background-image: url('footage/gitarre.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.18);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 68px);
}

.contact__header {
  margin-bottom: 72px;
}

.contact__headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.contact__headline-thin,
.contact__headline-red {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: 100;
}

.contact__headline-thin {
  color: var(--text);
}

.contact__headline-red {
  color: #ff0000;
}

/* Three separate stacked boxes */
.contact__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
}

.contact__block {
  position: relative;
  padding: clamp(22px, 3vw, 36px) clamp(28px, 4vw, 52px);
  background: transparent;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease;
  cursor: default;
}

.contact__block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff0000, transparent 80%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.contact__block:hover {
  background: rgba(180, 0, 0, 0.06);
  border-color: rgba(255, 0, 0, 0.15);
}

.contact__block:hover::after {
  transform: scaleX(1);
}

.contact__block--full {
  /* spans naturally in single-column grid */
}

.contact__block-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.contact__logo {
  display: flex;
  justify-content: center;
  margin-top: clamp(48px, 7vw, 80px);
}

.contact__logo-img {
  height: 138px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.5));
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.contact__logo-img:hover {
  opacity: 1;
}

.contact__block-text {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.76vw, 1.28rem);
  line-height: 1.6;
  color: rgba(240, 237, 232, 0.72);
}


/* ----------------------------------------------------------------
   8. FOOTER
   ---------------------------------------------------------------- */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer__logo {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.footer__made-by {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__made-by:hover {
  color: #ff0000;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--accent);
}


/* ----------------------------------------------------------------
   9. AUDIO PLAYER
   ---------------------------------------------------------------- */
.player {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 14px;
  background: rgba(5, 5, 5, 0.30);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 40px;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.07),
    0 0 1px  rgba(255, 255, 255, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.player:hover {
  background: rgba(10, 10, 10, 0.45);
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.10),
    0 0 1px  rgba(255, 255, 255, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.5);
}

.player__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(220, 0, 0, 0.75);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.player__btn:hover {
  background: rgba(255, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.08);
}

.player__icon {
  width: 14px;
  height: 14px;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player__icon--play  { opacity: 1;  transform: scale(1); }
.player__icon--pause { opacity: 0;  transform: scale(0.6); }

.player.playing .player__icon--play  { opacity: 0;  transform: scale(0.6); }
.player.playing .player__icon--pause { opacity: 1;  transform: scale(1); }

.player__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 110px;
}

.player__title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.player__bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.player__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  border-radius: 2px;
  transition: width 0.5s linear;
  animation: none;
}

.player.playing .player__bar-fill {
  animation: barPulse 3s ease-in-out infinite alternate;
}

@keyframes barPulse {
  0%   { width: 20%; }
  50%  { width: 75%; }
  100% { width: 40%; }
}


/* ----------------------------------------------------------------
   10. ANIMATIONEN & SCROLL REVEAL
   ---------------------------------------------------------------- */

/* Basis-Keyframes für Hero-Load */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Reveal-Klasse — Startzustand */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity   0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sichtbar-Zustand (per JS gesetzt) */
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger-Verzögerung für Geschwister-Elemente */
.reveal.delay-1 { transition-delay: 0.10s; }
.reveal.delay-2 { transition-delay: 0.20s; }
.reveal.delay-3 { transition-delay: 0.30s; }
.reveal.delay-4 { transition-delay: 0.40s; }


/* ----------------------------------------------------------------
   10. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .work__grid {
    grid-template-columns: 1fr;
    gap: clamp(10px, 2vw, 16px);
  }
}

@media (max-width: 768px) {

  /* Mobile-Navigation */
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 7, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 44px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__links .nav__link {
    font-size: 0.9rem;
    color: var(--text);
  }

  .nav__toggle {
    display: flex;
  }

  /* Hero: Logo nie verzerren */
  .hero__logo-img {
    height: 128px;
    width: auto;
    max-width: 88vw;
  }

  /* Hero: Headline-Abstände zu Seitenrändern */
  .hero__content {
    padding: 0 28px;
  }

  /* Hero */
  .hero__scroll {
    display: none;
  }

  /* About: Logo-Überlagerung beheben — aus dem absoluten Fluss nehmen */
  .about__logo {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 48px;
    display: flex;
    justify-content: flex-end;
  }

  /* About */
  .about__text-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__stat-row {
    gap: 40px;
  }

  /* Work */
  .work__header {
    flex-direction: column;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}

@media (max-width: 480px) {

  /* Hero: Headline kleiner damit "Welcome to" nicht am Rand klebt */
  .hero__headline {
    font-size: clamp(1.9rem, 8.5vw, 2.8rem);
  }

  .hero__cta {
    padding: 13px 26px;
    font-size: 0.62rem;
  }

  .contact__headline {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}


/* ================================================================
   LEGAL / IMPRESSUM
   ================================================================ */
.legal {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0 24px;
}

.legal__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.legal__label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 6px;
}

.legal__text {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.18);
  margin: 0 0 4px;
}

.legal__link {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
}

.legal__link:hover {
  color: rgba(255, 255, 255, 0.5);
}
