/* ============================================================
   BERALIO — STYLES
   Dark, elegant, warm-gold aesthetic derived from the logo.
   ============================================================ */

:root {
  --bg: #0c0b0d;
  --bg-2: #121013;
  --surface: #1a181c;
  --surface-2: #232026;
  --line: rgba(212, 168, 83, 0.16);

  --gold: #d4a853;
  --gold-bright: #ecc878;
  --gold-deep: #b1822f;

  --text: #efeae1;
  --muted: #a39c8f;
  --muted-2: #6f685e;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-logo: 'Poppins', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; height: 100vh; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: rgba(212, 168, 83, 0.3); color: #fff; }

/* Ambient warm glow background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -10%, rgba(177, 130, 47, 0.18), transparent 60%),
    radial-gradient(900px 600px at 8% 100%, rgba(212, 168, 83, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
/* subtle film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Shared bits ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: 0.6; }

.section { padding: 130px 0; position: relative; }

.gold-text {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

/* ============================================================
   PRELOADER  (Section 0)
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-video {
  width: min(86vw, 760px);
  max-height: 60vh;
  object-fit: contain;
  mix-blend-mode: screen;
}
.pre-fallback { display: none; width: clamp(220px, 38vw, 340px); }
.pre-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  transition: padding 0.5s var(--ease);
}
/* Scrolled background lives on a pseudo-element so it doesn't isolate the
   animated logo's blend mode (backdrop-filter on .nav would hide it). */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12, 11, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.nav.scrolled::before { opacity: 1; }
.nav.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; }
/* Animated logo, cropped from the motion graphic (logo lives at
   x:629-1273, y:455-626 of the 1920x1080 video). */
.brand .logo-motion {
  position: relative;
  display: block;
  width: 152px;
  height: 44px;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
  /* feather into a soft oval glow so there's no hard rectangle */
  -webkit-mask-image: radial-gradient(125% 115% at 50% 50%, #000 26%, transparent 70%);
  mask-image: radial-gradient(125% 115% at 50% 50%, #000 26%, transparent 70%);
}
.brand .logo-motion .logo-vid {
  position: absolute;
  width: 386px;
  height: auto;
  left: -115px;
  top: -84px;
  pointer-events: none;
}
.brand:hover .logo-motion { transform: scale(1.05); }
.brand .logo-static { display: none; height: 30px; width: auto; }
@media (prefers-reduced-motion: reduce) {
  .brand .logo-motion { display: none; }
  .brand .logo-static { display: block; }
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  position: relative;
  transition: color 0.35s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
}
.nav-cta:hover {
  background: var(--gold);
  color: #1a130a;
  box-shadow: 0 0 24px rgba(212, 168, 83, 0.45);
  transform: translateY(-2px);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }

/* ============================================================
   HERO  (Section 1)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero-inner { position: relative; }
.hero .eyebrow { margin: 0 28px 30px; }

/* Marquee */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 5.6vw, 4.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  padding: 0 1.9rem;
  color: var(--text);
}
.marquee-track span em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.04em;
}
.marquee-track .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 1rem;
  box-shadow: 0 0 18px rgba(212, 168, 83, 0.7);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-sub {
  margin: 48px 28px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}
.hero-sub p { max-width: 440px; color: var(--muted); font-size: 1.04rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 100px;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-bright));
  color: #1a130a;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 10px 34px rgba(177, 130, 47, 0.35);
}
.btn-primary svg { width: 20px; height: 20px; transition: transform 0.4s var(--ease); }
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(212, 168, 83, 0.5); }
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover svg { transform: translateX(3px) scale(1.08); }

.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted-2);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-hint .mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--muted-2);
  border-radius: 14px;
  position: relative;
}
.scroll-hint .mouse::after {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: 64px; }
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  line-height: 1.12;
  margin-top: 20px;
  letter-spacing: -0.03em;
}

/* ============================================================
   ABOUT  (Section 2)
   ============================================================ */
.about-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.4vw, 3.1rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 90px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}
.about-photo img {
  width: 100%;
  border-radius: 18px;
  transition: transform 1.2s var(--ease);
  will-change: transform;
}
.about-photo:hover img { transform: scale(1.05); }
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: inset 0 -90px 90px -40px rgba(12, 11, 13, 0.85);
  pointer-events: none;
}
.about-photo .members {
  position: absolute;
  left: 22px; bottom: 20px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.about-photo .members span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(12, 11, 13, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.about-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.about-body p { color: var(--muted); margin-bottom: 18px; }
.about-body .lead { color: var(--text); font-size: 1.1rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-tags span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--gold);
  transition: all 0.35s var(--ease);
}
.about-tags span:hover { background: rgba(212, 168, 83, 0.1); transform: translateY(-2px); }

/* ============================================================
   POETRY  (Section 3)
   ============================================================ */
.poetry {
  padding: 150px 0;
  text-align: center;
  position: relative;
}
.poetry::before, .poetry::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 70px;
  background: linear-gradient(var(--gold), transparent);
  transform: translateX(-50%);
}
.poetry::before { top: 50px; background: linear-gradient(transparent, var(--gold)); }
.poetry::after { bottom: 50px; }
.poetry-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 30px;
}
.poetry p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  line-height: 1.65;
  letter-spacing: -0.01em;
  max-width: 880px;
  margin: 0 auto 30px;
  color: #d9d2c6;
}
.poetry p:last-of-type { margin-bottom: 0; }
.poetry .accent { color: var(--gold-bright); font-style: italic; }

/* ============================================================
   DISCOGRAPHY GRAPH  (Section 4)
   ============================================================ */
.disco { position: relative; }
.graph-wrap {
  position: relative;
  width: 100%;
  height: 640px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(700px 500px at 50% 50%, rgba(177, 130, 47, 0.08), transparent 70%),
    rgba(18, 16, 19, 0.55);
}
#graph { width: 100%; height: 100%; display: block; cursor: grab; touch-action: none; }
#graph:active { cursor: grabbing; }
.graph-hint {
  position: absolute;
  top: 18px; left: 20px;
  font-size: 0.74rem;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.graph-hint .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: ph 1.6s ease-in-out infinite; }
@keyframes ph { 0%,100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.3); } }
.graph-legend {
  position: absolute;
  bottom: 16px; right: 20px;
  display: flex;
  gap: 18px;
  font-size: 0.72rem;
  color: var(--muted);
  pointer-events: none;
}
.graph-legend i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 7px; vertical-align: middle; }
.lg-c { background: var(--gold-bright); box-shadow: 0 0 6px var(--gold); }
.lg-a { background: #14110f; border: 1px solid var(--gold); }
.lg-s { background: #8a6cff; box-shadow: 0 0 6px #8a6cff; }

/* Floating tooltip for graph nodes */
#graph-tip {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  padding: 7px 13px;
  border-radius: 8px;
  background: rgba(20, 17, 21, 0.92);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -130%);
  transition: opacity 0.2s ease;
  backdrop-filter: blur(6px);
}
#graph-tip.show { opacity: 1; }
#graph-tip b { color: var(--gold); }

/* ============================================================
   PLAYER MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 7, 0.78);
  backdrop-filter: blur(8px);
}
.card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 22px;
  padding: 22px 22px 24px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--ease);
  text-align: center;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) transparent;
}
.card::-webkit-scrollbar { width: 6px; }
.card::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 6px; }
.modal.open .card { transform: none; }
.card-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.35s var(--ease);
}
.card-close:hover { color: var(--text); transform: rotate(90deg); border-color: var(--gold); }
.card-cover {
  position: relative;
  width: min(100%, 260px);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.card-cover img { width: 100%; height: 100%; object-fit: cover; }
.card-cover .glow {
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
}
.card-eq {
  position: absolute;
  left: 14px; bottom: 14px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(8, 7, 9, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.card-eq.on { opacity: 1; }
.card-eq i { width: 3px; height: 6px; background: var(--gold-bright); border-radius: 2px; animation: eq 0.9s ease-in-out infinite; }
.card-eq i:nth-child(2){ animation-delay: 0.2s; } .card-eq i:nth-child(3){ animation-delay: 0.4s; }
.card-eq i:nth-child(4){ animation-delay: 0.1s; } .card-eq i:nth-child(5){ animation-delay: 0.5s; }
@keyframes eq { 0%,100% { height: 5px; } 50% { height: 20px; } }

.card-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
.card-artist { color: var(--gold); font-size: 0.95rem; margin-top: 6px; letter-spacing: 0.02em; }
.card-meta { color: var(--muted-2); font-size: 0.78rem; margin-top: 4px; }

.card-progress { margin: 22px 0 6px; }
.card-progress .bar { height: 4px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.card-progress .bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); transition: width 0.2s linear; }
.card-progress .time { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--muted-2); margin-top: 8px; }

.card-controls { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a130a;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 8px 24px rgba(177,130,47,0.4);
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(212,168,83,0.6); }
.play-btn svg { width: 22px; height: 22px; }
.save-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.35s var(--ease);
}
.save-btn:hover { border-color: #1db954; color: #1db954; background: rgba(29,185,84,0.08); }
.save-btn svg { width: 18px; height: 18px; }
.card-note { font-size: 0.74rem; color: var(--muted-2); margin-top: 16px; text-align: center; line-height: 1.5; }
.card-embed { margin-top: 18px; border-radius: 12px; overflow: hidden; }
.card-embed iframe { width: 100%; border: 0; display: block; }

/* ---------- Artist card ---------- */
.artist-card { max-width: 420px; text-align: left; }
.artist-head { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.artist-avatar {
  position: relative;
  width: 92px; height: 92px;
  flex-shrink: 0;
}
.artist-vinyl {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  animation: spin 8s linear infinite;
}
.artist-photo {
  position: absolute; top: 50%; left: 50%;
  width: 40%; height: 40%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.15);
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .artist-vinyl { animation: none; } }
.artist-meta .eyebrow { margin-bottom: 8px; }
.artist-name { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; line-height: 1.1; letter-spacing: -0.02em; }
.artist-sub { color: var(--muted); font-size: 0.86rem; margin-top: 5px; }
.artist-songs-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.artist-songs { display: flex; flex-direction: column; gap: 8px; }
.artist-song {
  display: flex; align-items: center; gap: 13px;
  padding: 9px; border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.artist-song:hover { background: rgba(212,168,83,0.07); border-color: var(--line); transform: translateX(3px); }
.artist-song img { width: 46px; height: 46px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.artist-song .as-info { flex: 1; min-width: 0; }
.artist-song .as-title { font-weight: 600; font-size: 0.95rem; }
.artist-song .as-art { color: var(--muted-2); font-size: 0.76rem; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.artist-song .as-play {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(212,168,83,0.12); color: var(--gold);
  transition: background 0.3s var(--ease);
}
.artist-song:hover .as-play { background: var(--gold); color: #1a130a; }
.artist-song .as-play svg { width: 15px; height: 15px; }

/* ============================================================
   FOOTER  (Section 5)
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 90px 0 40px;
  position: relative;
}
.footer-cta {
  text-align: center;
  margin-bottom: 80px;
}
.brand-motion {
  display: block;
  width: 300px;
  max-width: 64%;
  margin: 0 auto 18px;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .brand-motion { display: none; } }
.footer-cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.footer-cta p { color: var(--muted); max-width: 480px; margin: 0 auto 36px; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; }
.footer-brand .logo { height: 38px; width: auto; transition: filter 0.4s var(--ease); }
.footer-brand:hover .logo { filter: drop-shadow(0 0 14px rgba(212,168,83,0.4)); }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.4s var(--ease);
}
.socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(212,168,83,0.4);
}
.socials a svg { width: 20px; height: 20px; }
.footer-copy { font-size: 0.8rem; color: var(--muted-2); text-align: center; margin-top: 40px; }
.footer-copy a { color: var(--muted); transition: color 0.3s var(--ease); }
.footer-copy a:hover { color: var(--gold); }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 880px) {
  .section { padding: 90px 0; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    background: rgba(12, 11, 13, 0.96);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 950; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { order: -1; }
  .graph-wrap { height: 520px; }
  .hero-sub { flex-direction: column; align-items: flex-start; }
  .graph-legend { display: none; }
}
@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .nav { padding-left: 20px; padding-right: 20px; }
  .marquee-track span { padding: 0 1.4rem; }
  .graph-wrap { height: 460px; }
  .card { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.1ms !important; }
  .reveal { opacity: 1; transform: none; }
}
