/* ---------- Reset & base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-black: #0a0a0a;
  --bg-panel: #111111;
  --text-white: #ffffff;
  --text-gray: #a5a5a5;
  --btn-gray: #4b4b4d;
  --btn-gray-hover: #626264;

  --c-red: #d31f2c;
  --c-blue: #1c3f8f;
  --c-orange: #ef7d1f;
  --c-green: #1e9b45;
  --c-yellow: #f5c518;
  --c-cyan: #29b2e8;
  --c-pink: #c22a8d;

  --line-gradient: linear-gradient(to bottom,
    var(--c-red) 0%, var(--c-red) 8.33%,
    var(--c-blue) 8.33%, var(--c-blue) 25%,
    var(--c-orange) 25%, var(--c-orange) 41.67%,
    var(--c-green) 41.67%, var(--c-green) 58.33%,
    var(--c-yellow) 58.33%, var(--c-yellow) 75%,
    var(--c-cyan) 75%, var(--c-cyan) 91.67%,
    var(--c-pink) 91.67%, var(--c-pink) 100%);
}

html {
  scroll-behavior: smooth;
}

main section[id],
footer[id] {
  scroll-margin-top: 88px;
}

body {
  background: var(--bg-black);
  color: var(--text-white);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

body.lightbox-open {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 48px);
}

/* Grid brightens locally around the cursor, in the current station color */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-image:
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--active-color, var(--c-yellow)) 55%, transparent) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--active-color, var(--c-yellow)) 55%, transparent) 0 1px, transparent 1px 48px);
  -webkit-mask-image: radial-gradient(circle 260px at var(--mouse-x, 50%) var(--mouse-y, 50%), #000 0%, transparent 100%);
  mask-image: radial-gradient(circle 260px at var(--mouse-x, 50%) var(--mouse-y, 50%), #000 0%, transparent 100%);
}

body.has-pointer::after {
  opacity: 1;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-yellow);
  color: #0a0a0a;
  padding: 12px 18px;
  font-weight: 700;
  z-index: 999;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.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;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--accent {
  background: var(--c-yellow);
  color: #14110a;
}

.btn--accent:hover {
  background: #ffd53d;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245,197,24,0.28);
}

.btn--accent:active {
  transform: translateY(0);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,.84,.44,1), transform 0.7s cubic-bezier(.16,.84,.44,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Eyebrow (station label) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 14px;
}

.eyebrow__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 8px var(--c);
}

/* ---------- Logo lockup (shared) ---------- */
.logo {
  display: inline-flex;
  align-items: center;
}

.logo--nav .logo__studios {
  width: 132px;
}

.logo--footer .logo__studios {
  width: 210px;
}

.logo__studios--hero {
  width: clamp(230px, 42vw, 480px);
  margin: 0 auto;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  opacity: 0.85;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--c-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    padding: 20px 32px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.is-open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
}

/* ---------- Subway rail (decorative scroll indicator) ---------- */
.subway-rail {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.subway-rail__track {
  position: relative;
  width: 4px;
  height: min(68vh, 620px);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  pointer-events: auto;
}

.subway-rail__progress {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: var(--line-gradient);
  clip-path: inset(0 0 calc(100% - var(--progress, 0%)) 0);
  transition: clip-path 0.05s linear;
}

.subway-rail__station {
  position: absolute;
  top: var(--pos, 0%);
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px;
  z-index: 2;
  transition: top 0.3s ease;
}

.subway-rail__dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg-black);
  border: 3px solid var(--c);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.subway-rail__station.is-active .subway-rail__dot {
  transform: scale(1.4);
  box-shadow: 0 0 10px var(--c);
}

.subway-rail__label {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translate(6px, -50%);
  white-space: nowrap;
  background: rgba(10,10,10,0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid var(--c);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.subway-rail__station:hover .subway-rail__label,
.subway-rail__station:focus-visible .subway-rail__label,
.subway-rail__station.is-active .subway-rail__label {
  opacity: 1;
  transform: translate(0, -50%);
}

.subway-rail__train {
  position: absolute;
  left: 50%;
  top: var(--progress, 0%);
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--active-color, #fff);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px var(--active-color, rgba(255,255,255,0.6));
  transition: top 0.05s linear, left 0.05s linear, background 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
}

.subway-rail__train svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 860px) {
  .subway-rail {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 52px;
    background: rgba(10,10,10,0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .subway-rail__track {
    width: min(90%, 620px);
    height: 4px;
  }

  .subway-rail__progress {
    background: linear-gradient(to right,
      var(--c-red) 0%, var(--c-red) 8.33%,
      var(--c-blue) 8.33%, var(--c-blue) 25%,
      var(--c-orange) 25%, var(--c-orange) 41.67%,
      var(--c-green) 41.67%, var(--c-green) 58.33%,
      var(--c-yellow) 58.33%, var(--c-yellow) 75%,
      var(--c-cyan) 75%, var(--c-cyan) 91.67%,
      var(--c-pink) 91.67%, var(--c-pink) 100%);
    clip-path: inset(0 calc(100% - var(--progress, 0%)) 0 0);
  }

  .subway-rail__station {
    top: 50%;
    left: var(--pos, 0%);
    transition: left 0.3s ease;
  }

  .subway-rail__label {
    display: none;
  }

  .subway-rail__train {
    left: var(--progress, 0%);
    top: 50%;
    width: 20px;
    height: 20px;
  }

  .subway-rail__train svg {
    width: 12px;
    height: 12px;
  }

  body {
    padding-bottom: 52px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.6));
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.hero__title {
  font-size: clamp(3.2rem, 11vw, 7rem);
  letter-spacing: 4px;
  color: var(--text-white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.hero__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-cue span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: scrollCue 1.8s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes scrollCue {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.4; }
  50% { transform: translateY(8px) rotate(45deg); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; }
  .hero__scroll-cue span { animation: none; }
}

/* ---------- Shared section heading bits ---------- */
.promo-video,
.services,
.studios {
  padding: 120px 0 100px;
  text-align: center;
}

.promo-video h2,
.services h2,
.studios h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 620px;
  margin: 0 auto 18px;
}

.section-sub {
  color: var(--text-gray);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 56px;
}

/* ---------- Promo video ---------- */
.promo-video__frame {
  position: relative;
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  background: #0e0e0e;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}

.promo-video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-video__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,0.65);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.promo-video__frame:hover .promo-video__badge {
  background: var(--c-yellow);
  color: #14110a;
  transform: scale(1.08);
}

/* ---------- Services (Mixing / Mastering / Producing) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1020px;
  margin: 0 auto;
  text-align: left;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--c);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c) 18%, transparent);
  color: var(--c);
  margin-bottom: 24px;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-6deg);
}

.service-card h3 {
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.65;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

@media (max-width: 860px) {
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

/* ---------- Studios gallery ---------- */
.gallery {
  column-count: 3;
  column-gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.gallery-item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin: 0 0 22px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: #fff;
  font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
  transform: none;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--c-yellow);
  outline-offset: 3px;
}

@media (max-width: 860px) {
  .gallery { column-count: 2; }
}

@media (max-width: 560px) {
  .gallery { column-count: 1; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  background: rgba(5,5,5,0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.lightbox__caption {
  color: #fff;
  font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox__close:hover {
  background: var(--c-yellow);
  color: #14110a;
}

/* ---------- 360 tour ---------- */
.tour {
  position: relative;
  padding: 120px 0 130px;
  text-align: center;
  overflow: hidden;
}

.tour__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.5);
  transform: scale(1.1);
}

.tour__scrim {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,0.55);
}

.tour__content {
  position: relative;
  z-index: 2;
}

.tour h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-bottom: 48px;
}

.tour-viewer {
  position: relative;
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  background: #1a1a1a;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}

.tour-viewer__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-viewer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  transition: background 0.25s ease;
  pointer-events: none;
}

.tour-viewer:hover::after {
  background: rgba(0,0,0,0.15);
}

.tour-viewer__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  background: var(--c-yellow);
  color: #14110a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.tour-viewer__play svg {
  margin-left: 4px;
}

.tour-viewer__play:hover {
  background: #ffd53d;
  transform: translate(-50%, -50%) scale(1.08);
}

.tour-viewer iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Showcase (Klangwunder) ---------- */
.showcase {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.showcase__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 20% 65%;
}

.showcase__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.75) 100%);
}

.showcase__content {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 60px 32px 70px;
  margin: 0 auto;
  text-align: center;
}

.showcase__content h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 12px;
}

.showcase__content p {
  color: #e6e6e6;
  font-size: 0.92rem;
  margin-bottom: 22px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

/* ---------- Demo music ---------- */
.demo-music {
  padding: 120px 0 130px;
  text-align: center;
}

.demo-music h2 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin-bottom: 44px;
}

.player {
  position: relative;
  width: min(320px, 100%);
  margin: 0 auto;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.player__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.3) brightness(0.55);
}

.player__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}

.player__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.player__play {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--c-yellow);
  border: none;
  color: #14110a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.player__play:hover {
  transform: scale(1.08);
}

.player.is-playing .player__play {
  animation: playPulse 1.6s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}

.player__meta {
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}

.player__artist {
  font-size: 0.68rem;
  color: #d8d8d8;
}

.player__title {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player__time {
  margin-left: auto;
  font-size: 0.72rem;
  color: #e2e2e2;
  white-space: nowrap;
}

.player__progress {
  position: relative;
  z-index: 2;
  height: 4px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
}

.player__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--c-yellow);
}

.track-list {
  width: min(320px, 100%);
  margin: 0 auto;
  background: #f3f3f3;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.track-row:hover {
  background: #e6e6e6;
}

.track-row__info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.track-row__title {
  color: #111;
  font-size: 0.82rem;
  font-weight: 700;
}

.track-row__artist {
  color: #6b6b6b;
  font-size: 0.75rem;
}

.track-row__duration {
  color: #6b6b6b;
  font-size: 0.78rem;
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0 140px;
  text-align: center;
}

.contact h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  margin-bottom: 20px;
}

.contact p {
  max-width: 560px;
  color: #d8d8d8;
  font-size: 0.95rem;
  margin: 0 auto 28px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.contact p a {
  text-decoration: underline;
  text-decoration-color: rgba(245,197,24,0.5);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact p a:hover {
  color: var(--c-yellow);
  text-decoration-color: var(--c-yellow);
}

.contact__details {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact__detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact__detail svg {
  color: var(--c-pink);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.contact__detail:hover,
.contact__detail:hover svg {
  color: var(--c-yellow);
}

.contact__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}

.site-footer__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,9,6,0.35), rgba(12,9,6,0.5) 45%, rgba(10,8,5,0.75));
}

.site-footer__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-bottom: 46px;
}

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1.5px solid currentColor;
  background: rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-icon svg {
  width: 19px;
  height: 19px;
}

.social-icon--pink { color: var(--c-pink); }
.social-icon--cyan { color: var(--c-yellow); }

.social-icon:hover {
  transform: translateY(-3px);
  background: currentColor;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.social-icon--pink:hover svg,
.social-icon--cyan:hover svg {
  color: #0a0a0a;
}

.site-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  color: #d6d0c4;
  text-align: center;
}

.site-footer__bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Legal pages (Impressum) ---------- */
.legal {
  padding: 160px 0 140px;
}

.legal .container {
  max-width: 760px;
}

.legal__back {
  display: inline-block;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.legal__back:hover {
  color: var(--c-yellow);
}

.legal h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin-bottom: 24px;
}

.legal__notice {
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--c-yellow);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.legal__body h2 {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  margin: 40px 0 12px;
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body p {
  color: #d8d8d8;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal__body a {
  color: var(--c-cyan);
  text-decoration: underline;
}

.legal__body a:hover {
  color: var(--c-yellow);
}

/* ---------- Scrollbar styling ---------- */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
  background: var(--active-color, var(--c-yellow));
  border-radius: 8px;
  border: 3px solid var(--bg-black);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  filter: brightness(1.15);
}

html {
  scrollbar-color: var(--active-color, var(--c-yellow)) var(--bg-black);
  scrollbar-width: thin;
}
