/* ============================================================
   ERIC VETA — "Ancient Forge / Digital Fire"
   Color system: Bardstep navy + Altar crimson + cyber accents
   ============================================================ */

/* --- 1. Custom Properties --- */
:root {
  --bg-deep: #080c18;
  --bg-elevated: #0d1527;
  --bg-card: #111a2e;
  --bg-surface: #162038;

  --crimson: #C41E3A;
  --crimson-dark: #8B0000;
  --crimson-glow: rgba(196, 30, 58, 0.35);

  --amber: #E8820C;
  --amber-light: #F5A623;
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.25);

  --cyan: #00D4FF;
  --violet: #7B61FF;

  --text-primary: #E8E0D4;
  --text-secondary: #8A9BBF;
  --text-muted: #4E5F80;

  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Oswald', sans-serif;

  --nav-height: 72px;
  --section-pad: clamp(64px, 10vw, 120px);
  --content-max: 1200px;
}

/* --- 2. Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

::selection {
  background: var(--crimson);
  color: #fff;
}

/* --- 3. Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

.accent-font { font-family: var(--font-accent); }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

/* --- 4. Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section-pad {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

/* --- 5. Decorative Divider --- */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px auto;
  max-width: 320px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- 6. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 20px var(--crimson-glow);
}

.btn-primary:hover {
  background: #d42245;
  box-shadow: 0 0 30px var(--crimson-glow), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--amber-light);
  box-shadow: 0 0 20px var(--gold-dim);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* --- 7. Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 12, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--amber));
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-socials a {
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
  display: flex;
}

.nav-socials a:hover {
  color: var(--text-primary);
  transform: scale(1.15);
}

.nav-socials svg { width: 18px; height: 18px; fill: currentColor; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--amber); }

.mobile-menu .mobile-socials {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.mobile-menu .mobile-socials a { font-size: 1rem; }
.mobile-menu .mobile-socials svg { width: 24px; height: 24px; fill: currentColor; }

/* --- 8. Hero --- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero/northernsquall_hero.png');
  background-size: cover;
  background-position: center 30%;
  animation: hero-drift 25s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--bg-deep) 0%, rgba(8,12,24,0.3) 40%, rgba(8,12,24,0.15) 60%, rgba(8,12,24,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: clamp(48px, 8vh, 100px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 40px rgba(0, 180, 220, 0.35), 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 12px;
}

.hero-content .btn-primary {
  background: linear-gradient(135deg, #1a6a8a 0%, #0e4060 100%);
  border: 1px solid rgba(0, 180, 220, 0.3);
  box-shadow: 0 0 20px rgba(0, 180, 220, 0.2);
}

.hero-content .btn-primary:hover {
  background: linear-gradient(135deg, #1f7fa0 0%, #125070 100%);
  box-shadow: 0 0 30px rgba(0, 180, 220, 0.35), 0 4px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Storm particles */
.embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.embers span {
  position: absolute;
  top: -6px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(200, 225, 255, 0.7);
  opacity: 0;
  animation: storm-drift linear infinite;
}

@keyframes storm-drift {
  0%   { opacity: 0; transform: translate(0, 0); }
  8%   { opacity: 0.7; }
  85%  { opacity: 0.25; }
  100% { opacity: 0; transform: translate(var(--drift), 100vh); }
}

.embers span:nth-child(1)  { left: 5%;  --drift: 60px;  animation-duration: 6s;  animation-delay: 0s; }
.embers span:nth-child(2)  { left: 14%; --drift: 45px;  animation-duration: 8s;  animation-delay: 1s;   width: 1.5px; height: 1.5px; }
.embers span:nth-child(3)  { left: 22%; --drift: 80px;  animation-duration: 5s;  animation-delay: 0.3s; background: rgba(0, 190, 255, 0.5); width: 3px; height: 3px; }
.embers span:nth-child(4)  { left: 31%; --drift: 35px;  animation-duration: 9s;  animation-delay: 2.5s; }
.embers span:nth-child(5)  { left: 40%; --drift: 70px;  animation-duration: 7s;  animation-delay: 1.2s; }
.embers span:nth-child(6)  { left: 48%; --drift: 55px;  animation-duration: 6s;  animation-delay: 3s;   background: rgba(0, 190, 255, 0.4); }
.embers span:nth-child(7)  { left: 56%; --drift: 90px;  animation-duration: 8s;  animation-delay: 0.6s; }
.embers span:nth-child(8)  { left: 65%; --drift: 40px;  animation-duration: 5.5s; animation-delay: 2s;  width: 3px; height: 3px; }
.embers span:nth-child(9)  { left: 73%; --drift: 65px;  animation-duration: 10s; animation-delay: 3.5s; background: rgba(0, 190, 255, 0.45); }
.embers span:nth-child(10) { left: 80%; --drift: 50px;  animation-duration: 7s;  animation-delay: 0.8s; }
.embers span:nth-child(11) { left: 88%; --drift: 75px;  animation-duration: 6s;  animation-delay: 2.8s; }
.embers span:nth-child(12) { left: 94%; --drift: 45px;  animation-duration: 9s;  animation-delay: 1.5s; width: 1.5px; height: 1.5px; }

/* Hide reCAPTCHA v3 badge (attribution in footer per Google TOS) */
.grecaptcha-badge { visibility: hidden !important; }

/* Hero snow overlay */
.hero-snow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 8% 15%, rgba(255,255,255,0.6) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 18% 45%, rgba(200,220,255,0.4) 50%, transparent 50%),
    radial-gradient(2.5px 2.5px at 28% 70%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 38% 25%, rgba(200,220,255,0.35) 50%, transparent 50%),
    radial-gradient(2px 2px at 50% 55%, rgba(255,255,255,0.45) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 62% 80%, rgba(200,220,255,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 72% 35%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(2px 2px at 85% 60%, rgba(200,220,255,0.35) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 93% 20%, rgba(255,255,255,0.3) 50%, transparent 50%);
  background-size: 500px 500px;
  animation: hero-snow-fall linear infinite;
}

.hero-snow--1 {
  animation-duration: 10s;
  opacity: 0.7;
}

.hero-snow--2 {
  animation-duration: 16s;
  animation-delay: -5s;
  opacity: 0.45;
  background-size: 350px 350px;
}

.hero-snow--3 {
  animation-duration: 22s;
  animation-delay: -9s;
  opacity: 0.25;
  background-size: 600px 600px;
}

@keyframes hero-snow-fall {
  0%   { transform: translate(0, -500px); }
  100% { transform: translate(-60px, 500px); }
}

/* --- 9. Featured Release --- */
.featured {
  background: var(--bg-deep);
}

.featured-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.featured-art {
  width: clamp(220px, 30vw, 360px);
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow:
    -8px 0 30px rgba(0, 180, 220, 0.2),
    8px 0 30px rgba(100, 140, 200, 0.15);
}

.featured-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-info h2 { margin-bottom: 8px; }

.featured-info .release-note {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 480px;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(138, 155, 191, 0.15);
  border-radius: 4px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.platform-link svg { width: 16px; height: 16px; fill: currentColor; }

.platform-link:hover {
  color: var(--text-primary);
  border-color: var(--amber);
  background: rgba(232, 130, 12, 0.08);
  transform: translateY(-2px);
}

/* --- 10. About / Bio --- */
.about {
  background: var(--bg-elevated);
  position: relative;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.about-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-width: 360px;
}

.about-photo img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  pointer-events: none;
}

.about-text h2 { margin-bottom: 24px; }

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* drop cap intentionally removed */

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 7px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.5),
    var(--bg-card) 35%,
    var(--bg-card) 55%,
    rgba(123, 97, 255, 0.5)
  );
  z-index: -1;
  opacity: 0.6;
  transition: opacity 0.4s;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 7px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  z-index: -1;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.stat-card:hover::before { opacity: 1; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--amber-light);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- 11. Parallax Divider --- */
.parallax-divider {
  position: relative;
  height: clamp(280px, 40vw, 420px);
  overflow: hidden;
  background-size: cover;
  background-position: center 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.65);
}

.parallax-divider blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  max-width: 720px;
  padding: 32px 24px;
  text-shadow: 0 0 40px var(--crimson-glow), 0 2px 16px rgba(0,0,0,0.7);
}

.parallax-divider blockquote::before,
.parallax-divider blockquote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.parallax-divider blockquote::after {
  margin: 20px auto 0;
}

/* --- 12. Discography --- */
.discography {
  background: var(--bg-deep);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  display: inline-block;
  position: relative;
  padding: 0 24px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.album-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.album-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px var(--crimson-glow);
}

.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.album-card:hover img { transform: scale(1.05); }

.album-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,12,24,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.album-card:hover .album-card-overlay { opacity: 1; }

.album-card-overlay span {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.disco-cta {
  text-align: center;
  margin-top: 48px;
}

/* --- 13. Email Signup --- */
.signup {
  background: var(--bg-elevated);
  text-align: center;
}

.signup h2 { margin-bottom: 8px; }

.signup .signup-sub {
  font-family: var(--font-accent);
  color: var(--text-secondary);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.signup-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--text-muted);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.signup-form input[type="email"]::placeholder { color: var(--text-muted); }
.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.signup-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- 14. Contact --- */
.contact {
  background: var(--bg-deep);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.contact-info h2 { margin-bottom: 16px; }

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.1);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(138, 155, 191, 0.2);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.12);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A9BBF' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.contact-form select option { background: var(--bg-card); }

.contact-form textarea { resize: vertical; min-height: 120px; }

/* --- 15. Footer --- */
.footer {
  background: #060a14;
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo img {
  height: 28px;
  margin: 0 auto 24px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(138, 155, 191, 0.15);
  color: var(--text-muted);
  transition: all 0.35s ease;
}

.footer-socials a:hover {
  color: var(--text-primary);
  border-color: var(--amber);
  box-shadow: 0 0 16px var(--gold-dim);
  transform: translateY(-2px);
}

.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-nav a {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--text-secondary); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-recaptcha {
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: 4px;
}
.footer-recaptcha a { color: var(--text-muted); text-decoration: underline; }

/* Forge-glow line */
.footer-glow {
  width: 120px;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* --- 16. Press Page --- */
.press-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.press-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.15;
}

.press-hero .container { position: relative; z-index: 1; }

.press-hero h1 {
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.press-hero .press-subtitle {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.press-bio {
  background: var(--bg-deep);
}

.press-bio-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.press-bio-text h2 { margin-bottom: 24px; }
.press-bio-text h4 {
  color: var(--amber);
  margin-bottom: 16px;
  font-family: var(--font-accent);
  letter-spacing: 0.06em;
}

.press-bio-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.press-featured {
  background: var(--bg-elevated);
}

.press-featured-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.press-release-details h4 {
  color: var(--amber);
  margin-bottom: 8px;
  font-family: var(--font-accent);
  letter-spacing: 0.06em;
}

.press-release-details h2 { margin-bottom: 20px; }

.press-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.press-meta span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.press-meta strong { color: var(--text-primary); }

.press-release-details p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.press-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.press-links-list a {
  color: var(--cyan);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.press-links-list a:hover { color: var(--amber); }

.press-art {
  border-radius: 6px;
  overflow: hidden;
}

.press-art img { width: 100%; }

.press-notes {
  background: var(--bg-deep);
}

.press-notes p {
  color: var(--text-secondary);
  max-width: 720px;
}

.press-notes p strong { color: var(--text-primary); }

.press-socials-section {
  background: var(--bg-elevated);
}

.press-socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 24px;
  max-width: 720px;
}

.press-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(138, 155, 191, 0.1);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.press-social-link strong { color: var(--text-primary); min-width: 100px; }

.press-social-link:hover {
  border-color: var(--amber);
  background: rgba(232, 130, 12, 0.06);
}

.press-photos {
  background: var(--bg-deep);
}

.press-photos-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.press-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.press-photo-grid a {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.press-photo-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.press-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* --- 17. Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- 18. Responsive --- */
@media (max-width: 1024px) {
  .nav-links, .nav-socials { display: none; }
  .hamburger { display: flex; }

  .about-inner,
  .contact-inner,
  .press-bio-inner,
  .press-featured-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .featured-inner { grid-template-columns: 1fr; text-align: center; }
  .featured-art { margin: 0 auto; }
  .featured-info p { margin-left: auto; margin-right: auto; }
  .platform-links { justify-content: center; }

  .press-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-title { letter-spacing: 0.06em; }

  .stats-row { grid-template-columns: 1fr; gap: 12px; }

  .signup-form { flex-direction: column; }
  .signup-form input[type="email"] { width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .contact-photo { display: none; }

  /* parallax handled via JS transform */

  .press-socials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .press-photo-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* --- 19. Release Pages --- */
.release-hero {
  position: relative;
  height: 75vh;
  min-height: 460px;
  max-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.release-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: hero-drift 25s ease-in-out infinite alternate;
}

.release-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--bg-deep) 0%, rgba(8,12,24,0.25) 40%, rgba(8,12,24,0.1) 60%, rgba(8,12,24,0.55) 100%);
}

.release-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: clamp(40px, 7vh, 80px);
}

.release-hero-content .hero-title {
  margin-bottom: 8px;
}

.release-hero-content .hero-subtitle {
  margin-bottom: 0;
}

.release-info {
  background: var(--bg-deep);
}

.release-info-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.release-art {
  width: clamp(260px, 32vw, 400px);
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow:
    -8px 0 40px var(--crimson-glow),
    8px 0 40px rgba(232, 130, 12, 0.15),
    0 16px 48px rgba(0,0,0,0.4);
}

.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-details h2 {
  margin-bottom: 8px;
}

.release-details .release-artist {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.release-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 28px;
}

.release-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.release-meta-item .meta-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.release-meta-item .meta-value {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.release-description {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.8;
}

.release-stream-section {
  background: var(--bg-elevated);
  text-align: center;
}

.release-stream-section h2 {
  margin-bottom: 8px;
}

.release-stream-sub {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.stream-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
  align-items: center;
}

.stream-embed iframe {
  display: block;
}

.release-stream-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.release-stream-buttons .listen-btn {
  margin-bottom: 0;
}

.release-hyperfollow {
  margin-top: 20px;
}

.release-hyperfollow a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.release-hyperfollow a:hover {
  color: var(--cyan);
}

.release-credits {
  background: var(--bg-deep);
}

.release-credits-inner {
  max-width: 600px;
}

.release-credits h3 {
  margin-bottom: 20px;
}

.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.credit-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.credit-item .credit-role {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.credit-item .credit-name {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.release-more {
  background: var(--bg-elevated);
}

.release-more .section-header {
  margin-bottom: 40px;
}

.more-releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.release-back-link {
  text-align: center;
  margin-top: 40px;
}

.release-back-link a {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.release-back-link a:hover {
  color: var(--amber);
}

@media (max-width: 1024px) {
  .release-info-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .release-art {
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
  }
  .release-description {
    margin-left: auto;
    margin-right: auto;
  }
  .release-meta-grid {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    text-align: left;
  }
  .credits-grid {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .stream-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .release-meta-grid {
    grid-template-columns: 1fr;
  }
  .more-releases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* --- Cold Release Theme (Northern Squall) --- */
.release-cold .release-art {
  box-shadow:
    -8px 0 40px rgba(0, 180, 220, 0.2),
    8px 0 40px rgba(100, 140, 200, 0.12),
    0 16px 48px rgba(0,0,0,0.4);
}

.release-cold .release-details .release-artist {
  color: var(--cyan);
}

.release-cold .release-hero-content .hero-title {
  text-shadow: 0 0 40px rgba(0, 180, 220, 0.35), 0 2px 8px rgba(0,0,0,0.6);
}

.release-cold .release-meta-item .meta-label {
  color: rgba(0, 212, 255, 0.5);
}

.release-cold .release-hyperfollow a:hover {
  color: var(--cyan);
}

.release-cold .release-back-link a:hover {
  color: var(--cyan);
}

/* --- 20. Lyrics Sections --- */
.lyrics-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lyrics-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.lyrics-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lyrics-header {
  text-align: center;
  margin-bottom: 40px;
}

.lyrics-scroll {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lyrics-block {
  margin-bottom: 36px;
}

.lyrics-block p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 2;
  color: rgba(232, 224, 212, 0.85);
  margin: 0;
  letter-spacing: 0.02em;
}

.lyrics-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  background: transparent;
}

.lyrics-chorus p {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
}

.lyrics-outro p {
  color: rgba(232, 224, 212, 0.6);
  font-style: italic;
}

/* --- Temple Firelight (Altar) --- */
.lyrics-temple {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(139, 0, 0, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(232, 130, 12, 0.08) 0%, transparent 50%),
    var(--bg-deep);
}

.lyrics-temple .lyrics-tag {
  color: var(--amber);
  background: rgba(232, 130, 12, 0.03);
  border-color: rgba(232, 130, 12, 0.08);
}

.lyrics-temple .lyrics-chorus p {
  text-shadow: 0 0 30px rgba(196, 30, 58, 0.3);
}

.lyrics-flame {
  position: absolute;
  bottom: 0;
  width: 160px;
  height: 300px;
  border-radius: 50% 50% 0 0;
  filter: blur(60px);
  opacity: 0;
  animation: flame-flicker ease-in-out infinite;
}

.lyrics-flame--1 {
  left: 5%;
  background: radial-gradient(ellipse at center bottom, rgba(232, 130, 12, 0.35), transparent 70%);
  animation-duration: 3.5s;
  animation-delay: 0s;
}

.lyrics-flame--2 {
  right: 8%;
  background: radial-gradient(ellipse at center bottom, rgba(196, 30, 58, 0.3), transparent 70%);
  animation-duration: 4.2s;
  animation-delay: 0.8s;
}

.lyrics-flame--3 {
  left: 35%;
  background: radial-gradient(ellipse at center bottom, rgba(201, 168, 76, 0.2), transparent 70%);
  animation-duration: 5s;
  animation-delay: 1.5s;
  width: 200px;
}

.lyrics-flame--4 {
  right: 30%;
  background: radial-gradient(ellipse at center bottom, rgba(232, 130, 12, 0.25), transparent 70%);
  animation-duration: 3.8s;
  animation-delay: 0.4s;
}

.lyrics-flame--5 {
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center bottom, rgba(139, 0, 0, 0.3), transparent 70%);
  animation-duration: 6s;
  animation-delay: 2s;
  width: 240px;
  height: 400px;
}

@keyframes flame-flicker {
  0%   { opacity: 0.15; transform: translateY(0) scaleY(1); }
  25%  { opacity: 0.4;  transform: translateY(-10px) scaleY(1.05); }
  50%  { opacity: 0.2;  transform: translateY(-5px) scaleY(0.98); }
  75%  { opacity: 0.5;  transform: translateY(-15px) scaleY(1.08); }
  100% { opacity: 0.15; transform: translateY(0) scaleY(1); }
}

.lyrics-ember {
  position: absolute;
  bottom: -4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
  animation: lyrics-ember-rise linear infinite;
}

@keyframes lyrics-ember-rise {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  10%  { opacity: 0.7; }
  70%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(-80vh) translateX(var(--edrift)); }
}

.lyrics-ember:nth-child(6)  { left: 6%;  --edrift: 18px;  animation-duration: 8s;  animation-delay: 0s; }
.lyrics-ember:nth-child(7)  { left: 16%; --edrift: -12px; animation-duration: 10s; animation-delay: 1.5s; width: 2px; height: 2px; }
.lyrics-ember:nth-child(8)  { left: 28%; --edrift: 25px;  animation-duration: 7s;  animation-delay: 0.6s; background: var(--crimson); }
.lyrics-ember:nth-child(9)  { left: 38%; --edrift: -8px;  animation-duration: 9s;  animation-delay: 3s; }
.lyrics-ember:nth-child(10) { left: 48%; --edrift: 20px;  animation-duration: 11s; animation-delay: 2s; width: 2px; height: 2px; }
.lyrics-ember:nth-child(11) { left: 57%; --edrift: -18px; animation-duration: 8s;  animation-delay: 4s;  background: var(--crimson); }
.lyrics-ember:nth-child(12) { left: 66%; --edrift: 14px;  animation-duration: 10s; animation-delay: 1s; }
.lyrics-ember:nth-child(13) { left: 76%; --edrift: -22px; animation-duration: 7s;  animation-delay: 2.5s; }
.lyrics-ember:nth-child(14) { left: 85%; --edrift: 10px;  animation-duration: 9s;  animation-delay: 0.3s; background: var(--crimson); width: 2px; height: 2px; }
.lyrics-ember:nth-child(15) { left: 93%; --edrift: -15px; animation-duration: 12s; animation-delay: 3.5s; }

/* --- Northern Storm (Squall) --- */
.lyrics-storm {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(100, 130, 160, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(123, 97, 255, 0.03) 0%, transparent 50%),
    var(--bg-deep);
}

.lyrics-storm .lyrics-tag {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.02);
  border-color: rgba(0, 212, 255, 0.06);
}

.lyrics-storm .lyrics-chorus p {
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.lyrics-snow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(2px 2px at 55% 15%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 75% 40%, rgba(255,255,255,0.35) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 90% 70%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 45% 80%, rgba(255,255,255,0.25) 50%, transparent 50%),
    radial-gradient(2px 2px at 20% 65%, rgba(255,255,255,0.2) 50%, transparent 50%),
    radial-gradient(1px 1px at 65% 90%, rgba(255,255,255,0.3) 50%, transparent 50%);
  background-size: 400px 400px;
  animation: snow-fall linear infinite;
}

.lyrics-snow--1 {
  animation-duration: 12s;
  opacity: 0.6;
}

.lyrics-snow--2 {
  animation-duration: 18s;
  animation-delay: -6s;
  opacity: 0.4;
  background-size: 300px 300px;
}

.lyrics-snow--3 {
  animation-duration: 25s;
  animation-delay: -10s;
  opacity: 0.25;
  background-size: 500px 500px;
}

@keyframes snow-fall {
  0%   { transform: translate(0, -400px); }
  100% { transform: translate(-80px, 400px); }
}

@media (max-width: 768px) {
  .lyrics-block p {
    font-size: 0.95rem;
    line-height: 1.9;
  }
  .lyrics-chorus p {
    font-size: 1rem;
  }
}

/* --- Verification Block --- */
.verification {
  padding-top: 0;
  padding-bottom: 40px;
}

.verification-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(17, 26, 46, 0.9), rgba(8, 12, 24, 0.95));
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.04), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.verification-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), transparent 40%, transparent 60%, rgba(123, 97, 255, 0.15));
  z-index: -1;
  opacity: 0.5;
}

.verification-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.verification-box p:last-child {
  color: var(--gold);
  margin-top: 4px;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  background: rgba(13, 21, 39, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.25);
  color: #fff;
}

/* --- Listen Modal --- */
.listen-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.listen-modal.open {
  opacity: 1;
  visibility: visible;
}

.listen-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 14, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.listen-modal-card {
  position: relative;
  width: 90%;
  max-width: 440px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(17, 26, 46, 0.95) 0%, rgba(8, 12, 24, 0.98) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow:
    0 0 80px rgba(0, 212, 255, 0.06),
    0 0 160px rgba(123, 97, 255, 0.04),
    0 32px 64px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.listen-modal.open .listen-modal-card {
  transform: translateY(0) scale(1);
}

.listen-modal-grain {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.listen-modal-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

.listen-modal-glow--1 {
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
}

.listen-modal-glow--2 {
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
}

.listen-modal-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 32px 32px;
}

.listen-modal-logo {
  margin-bottom: 20px;
  opacity: 0.9;
}

.listen-modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.listen-modal-sub {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.listen-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 10px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #fff;
  margin-bottom: 10px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  position: relative;
  overflow: hidden;
}

.listen-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.08) 50%,
    transparent 60%
  );
  transition: opacity 0.3s;
}

.listen-btn:hover::before { opacity: 1; }

.listen-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

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

.listen-btn svg {
  flex-shrink: 0;
}

.listen-btn--spotify {
  background: linear-gradient(135deg, #1DB954 0%, #158a3e 100%);
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.25);
}

.listen-btn--apple {
  background: linear-gradient(135deg, #fc3c44 0%, #a11d23 100%);
  box-shadow: 0 4px 20px rgba(252, 60, 68, 0.2);
}

.listen-btn--youtube {
  background: linear-gradient(135deg, #FF0000 0%, #a30000 100%);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
}

.listen-btn--all {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.listen-btn--all:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.listen-modal-dismiss {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 20px;
  padding: 10px 24px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.listen-modal-dismiss:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
  .listen-modal-inner {
    padding: 32px 20px 24px;
  }
  .listen-btn {
    padding: 18px 20px;
    font-size: 1.05rem;
  }
  .listen-modal-title {
    font-size: 1.4rem;
  }
}
