/* ============================================
   BARODRUMZ — Premium Producer Website
   ============================================ */

:root {
  --black: #050505;
  --anthracite: #0c0c0e;
  --anthracite-light: #141418;
  --anthracite-mid: #1a1a1f;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #f5f5f7;
  --text-muted: rgba(245, 245, 247, 0.55);
  --metallic: linear-gradient(
    135deg,
    #ffffff 0%,
    #c8c8cc 35%,
    #ffffff 50%,
    #a8a8ad 65%,
    #f0f0f2 100%
  );
  --accent: #e8e8ec;
  --glow: rgba(255, 255, 255, 0.06);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 80px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-slow: 1.4s;
  --dur-med: 0.9s;

  /* Ambient layer stack (bottom → top) */
  --z-smoke: 1;
  --z-grain: 2;
  --z-vignette: 3;
  --z-spotlight: 4;
  --z-content: 10;

  /* TESTING: grain intensity — reduce to 0.04–0.06 for production */
  --grain-opacity: 0.14;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

main,
.footer {
  position: relative;
  z-index: var(--z-content);
}

::selection {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.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;
}

/* ---- Ambient layers: smoke → grain → vignette → spotlight ---- */

.smoke-container {
  position: fixed;
  inset: 0;
  z-index: var(--z-smoke);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s var(--ease-cinematic);
}

.smoke-container.ambient-visible {
  opacity: 1;
}

.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  animation: smoke-drift 25s ease-in-out infinite;
}

.smoke-1 {
  width: 65vw;
  height: 65vw;
  max-width: 780px;
  max-height: 780px;
  background: radial-gradient(circle, rgba(38, 38, 48, 0.9) 0%, transparent 68%);
  top: -22%;
  left: -12%;
  animation-delay: 0s;
}

.smoke-2 {
  width: 55vw;
  height: 55vw;
  max-width: 680px;
  max-height: 680px;
  background: radial-gradient(circle, rgba(28, 28, 38, 0.85) 0%, transparent 68%);
  bottom: -18%;
  right: -8%;
  animation-delay: -8s;
  animation-duration: 30s;
}

.smoke-3 {
  width: 45vw;
  height: 45vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle, rgba(22, 22, 32, 0.8) 0%, transparent 68%);
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -15s;
  animation-duration: 22s;
  opacity: 0.45;
}

@keyframes smoke-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, 3%) scale(1.06);
  }
  66% {
    transform: translate(-3%, -2%) scale(0.97);
  }
}

/* ---- Cinematic film grain ---- */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2.2s var(--ease-cinematic);
}

.film-grain.ambient-visible {
  opacity: 1;
}

.film-grain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  opacity: var(--grain-opacity);
  mix-blend-mode: soft-light;
}

.film-grain-svg {
  position: absolute;
  inset: -100%;
  width: 300%;
  height: 300%;
  opacity: calc(var(--grain-opacity) * 0.65);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.film-grain-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  will-change: transform;
}

.film-grain-layer--1 {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g1'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0.333 0.333 0.333 0 0 0.333 0.333 0.333 0 0 0.333 0.333 0.333 0 0 0 0 0 1.8 -0.65'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g1)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: film-grain-drift-a 0.38s steps(9) infinite;
}

.film-grain-layer--2 {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0.333 0.333 0.333 0 0 0.333 0.333 0.333 0 0 0.333 0.333 0.333 0 0 0 0 0 2 -0.75'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g2)'/%3E%3C/svg%3E");
  background-size: 260px 260px;
  animation: film-grain-drift-b 0.52s steps(11) infinite reverse;
}

.film-grain-layer--3 {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g3'%3E%3CfeTurbulence type='turbulence' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0.5 1 0.3 0.8 0.2 1 0.6'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g3)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  animation: film-grain-drift-c 0.28s steps(7) infinite;
}

@keyframes film-grain-drift-a {
  0%   { transform: translate(0, 0); }
  12%  { transform: translate(-3%, -2%); }
  25%  { transform: translate(-5%, 3%); }
  37%  { transform: translate(2%, -4%); }
  50%  { transform: translate(4%, 2%); }
  62%  { transform: translate(-2%, 4%); }
  75%  { transform: translate(-4%, -3%); }
  87%  { transform: translate(3%, 3%); }
  100% { transform: translate(0, 0); }
}

@keyframes film-grain-drift-b {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(4%, -3%); }
  40%  { transform: translate(-3%, 4%); }
  60%  { transform: translate(-4%, -2%); }
  80%  { transform: translate(2%, -3%); }
  100% { transform: translate(0, 0); }
}

@keyframes film-grain-drift-c {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-2%, 3%); }
  33%  { transform: translate(3%, -2%); }
  50%  { transform: translate(-3%, -3%); }
  66%  { transform: translate(4%, 2%); }
  83%  { transform: translate(-3%, 2%); }
  100% { transform: translate(0, 0); }
}

.cinematic-vignette {
  position: fixed;
  inset: 0;
  z-index: var(--z-vignette);
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s var(--ease-cinematic);
  background: radial-gradient(
    ellipse 88% 82% at 50% 48%,
    transparent 42%,
    rgba(0, 0, 0, 0.28) 72%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.cinematic-vignette.ambient-visible {
  opacity: 1;
}

/* ---- Mouse spotlight + trail ---- */
.cursor-trail {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: calc(var(--z-spotlight) - 1);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.012) 35%,
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.8s var(--ease-cinematic);
  will-change: left, top;
}

.cursor-glow {
  position: fixed;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-spotlight);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.06) 16%,
    rgba(255, 255, 255, 0.018) 38%,
    transparent 66%
  );
  opacity: 0;
  transition: opacity 0.8s var(--ease-cinematic);
  will-change: left, top;
}

body.cursor-enabled .cursor-glow,
body.cursor-enabled .cursor-trail {
  opacity: 1;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: transparent;
  opacity: 0;
  transform: translateY(-24px);
  transition:
    opacity var(--dur-med) var(--ease-cinematic),
    transform var(--dur-med) var(--ease-cinematic),
    background 0.5s var(--ease-out-expo),
    backdrop-filter 0.5s var(--ease-out-expo),
    border-color 0.5s var(--ease-out-expo);
}

.header.intro-visible {
  opacity: 1;
  transform: translateY(0);
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  letter-spacing: 0.2em;
  background: var(--metallic);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
}

.nav-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--header-h) 1.5rem 4rem;
  text-align: center;
}

.hero-inner {
  max-width: 1200px;
}

.hero-eyebrow {
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 14rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  background: var(--metallic);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  position: relative;
  filter: drop-shadow(0 0 0 transparent);
}

.hero-title.intro-visible {
  animation: title-glow-once 2s var(--ease-cinematic) 0.2s forwards;
}

@keyframes title-glow-once {
  0% {
    filter: drop-shadow(0 0 0 transparent);
  }
  100% {
    filter: drop-shadow(0 0 52px rgba(255, 255, 255, 0.14));
  }
}

.hero-subtitle {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}

.hero-scroll-hint.intro-visible {
  opacity: 0.4;
  transition: opacity 1.2s var(--ease-cinematic);
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Page load intro sequence ---- */
.intro-item {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition:
    opacity var(--dur-slow) var(--ease-cinematic),
    transform var(--dur-slow) var(--ease-cinematic),
    filter var(--dur-slow) var(--ease-cinematic);
}

.intro-item.intro-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.intro-item--title {
  transform: translateY(48px);
  filter: blur(20px);
  transition-duration: 1.6s;
}

.intro-item--title.intro-visible {
  transform: translateY(0);
  filter: blur(0);
}

.intro-item[data-intro="cta"].intro-visible {
  transition-delay: 0.05s;
}

/* ---- Scroll reveal ---- */
.fade-up {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(10px);
  transition:
    opacity 1.1s var(--ease-cinematic),
    transform 1.1s var(--ease-cinematic),
    filter 1.2s var(--ease-cinematic);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-section {
  opacity: 0;
  transform: translateY(64px);
  filter: blur(8px);
  transition:
    opacity 1.2s var(--ease-cinematic),
    transform 1.2s var(--ease-cinematic),
    filter 1.3s var(--ease-cinematic);
}

.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(56px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 1.2s var(--ease-cinematic),
    transform 1.2s var(--ease-cinematic),
    filter 1.3s var(--ease-cinematic),
    box-shadow 1.2s var(--ease-cinematic);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-card[data-delay="1"] {
  transition-delay: 0.18s;
}

.reveal-card.visible.media-card--youtube {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(255, 255, 255, 0.04);
}

.stagger-item {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition:
    opacity 0.85s var(--ease-cinematic),
    transform 0.85s var(--ease-cinematic),
    filter 0.95s var(--ease-cinematic);
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.stagger-item[data-stagger="0"] { transition-delay: 0s; }
.stagger-item[data-stagger="1"] { transition-delay: 0.1s; }
.stagger-item[data-stagger="2"] { transition-delay: 0.2s; }
.stagger-item[data-stagger="3"] { transition-delay: 0.3s; }
.stagger-item[data-stagger="4"] { transition-delay: 0.4s; }

.fade-up[data-delay="1"] {
  transition-delay: 0.15s;
}

/* ---- Buttons ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-cinematic),
    box-shadow 0.5s var(--ease-cinematic),
    border-color 0.4s ease,
    background 0.4s ease;
}

.btn-primary {
  background: var(--text);
  color: var(--black);
  border: 1px solid var(--text);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 48px rgba(255, 255, 255, 0.14),
    0 0 32px rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.06);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  animation: btn-shine 4s ease-in-out infinite;
}

@keyframes btn-shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.btn-text {
  position: relative;
  z-index: 1;
}

/* ---- Sections ---- */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vw, 10rem) 0;
}

.container {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.section-header--left {
  text-align: left;
  margin-bottom: 2rem;
}

.section-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: 0.08em;
  background: var(--metallic);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Music cards ---- */
.music {
  background: linear-gradient(180deg, transparent 0%, var(--anthracite) 30%, var(--anthracite) 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
}

.cards-grid > .media-card > .media-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cards-grid > .media-card > .media-card-body > .btn,
.cards-grid > .media-card > .media-card-body > a.btn {
  margin-top: auto;
}

.media-card {
  display: flex;
  flex-direction: column;
  background: var(--anthracite-light);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.65s var(--ease-cinematic),
    border-color 0.5s ease,
    box-shadow 0.65s var(--ease-cinematic);
}

.media-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
}

.media-card--youtube:hover {
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(255, 255, 255, 0.06);
}

.media-card--youtube:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.35);
}

.media-card-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.media-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
}

.media-card:hover .media-card-thumb {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.media-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.9) 0%,
    rgba(5, 5, 5, 0.2) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.media-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  z-index: 2;
}

.play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.media-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
}

/* ---- Spotify artist profile card ---- */
.spotify-card-visual {
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotify-banner-bg {
  position: absolute;
  inset: -25%;
  width: 150%;
  height: 150%;
  object-fit: cover;
  filter: blur(32px) brightness(0.35) saturate(0.9);
  transform: scale(1.15);
  pointer-events: none;
}

.spotify-visual-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    rgba(18, 18, 18, 0.2) 0%,
    rgba(18, 18, 18, 0.75) 55%,
    #121212 100%
  );
  pointer-events: none;
}

.spotify-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
}

.spotify-badge-icon {
  width: 14px;
  height: 14px;
  color: #1db954;
}

.spotify-portrait-frame {
  position: relative;
  z-index: 2;
  padding: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.5s ease;
}

.spotify-profile-photo {
  display: block;
  width: clamp(120px, 28vw, 160px);
  height: clamp(120px, 28vw, 160px);
  object-fit: cover;
  border-radius: 4px;
}

.spotify-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: #121212;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spotify-profile-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.spotify-profile-role {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.spotify-artist-label {
  display: inline-block;
  width: fit-content;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0.65rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(29, 185, 84, 0.35);
  border-radius: 2px;
  background: rgba(29, 185, 84, 0.08);
}

.spotify-profile-desc {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 36ch;
}

.btn-spotify-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  background: #1db954;
  color: #000;
  border: 1px solid #1db954;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  transition: transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s ease,
    background 0.3s ease;
}

.btn-spotify-primary:hover {
  background: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29, 185, 84, 0.28);
}

.btn-spotify-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.media-card--spotify:hover {
  border-color: rgba(29, 185, 84, 0.25);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 72px rgba(29, 185, 84, 0.12);
  transform: translateY(-8px);
}

.media-card--spotify:hover .spotify-portrait-frame {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.media-card-body {
  padding: clamp(1.5rem, 4vw, 2rem);
}

.media-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.media-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.media-card .btn {
  width: 100%;
}

/* ---- Social cards ---- */
.socials {
  background: var(--anthracite);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 2.5rem) 1rem;
  background: var(--anthracite-light);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.65s var(--ease-cinematic),
    border-color 0.45s ease,
    background 0.45s ease,
    box-shadow 0.65s var(--ease-cinematic);
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, var(--glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.55s var(--ease-cinematic);
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--anthracite-mid);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.social-card:hover::before {
  opacity: 1;
}

.social-icon {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.4s var(--ease-out-expo);
}

.social-card:hover .social-icon {
  color: var(--text);
  transform: scale(1.1);
}

.social-name {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.social-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.4s var(--ease-out-expo);
}

.social-card:hover .social-arrow {
  opacity: 0.5;
  transform: translate(0, 0);
}

.social-card[data-platform="spotify"]:hover .social-icon { color: #1ed760; }
.social-card[data-platform="youtube"]:hover .social-icon { color: #ff0000; }
.social-card[data-platform="instagram"]:hover .social-icon { color: #e1306c; }

/* ---- Contact ---- */
.contact {
  background: linear-gradient(180deg, var(--anthracite) 0%, var(--black) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}

.contact-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 420px;
}

.contact-email {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--metallic);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  transition: opacity 0.3s ease;
}

.contact-email::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.5s var(--ease-cinematic);
}

.contact-email:hover::after {
  transform: scaleX(1);
}

.contact-email:hover {
  opacity: 0.75;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--anthracite-light);
  border: 1px solid var(--border);
  outline: none;
  transition:
    border-color 0.4s var(--ease-cinematic),
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--border-hover);
  background: var(--anthracite-mid);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.04);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ---- Footer ---- */
.footer {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer p {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.65s var(--ease-cinematic),
    visibility 0.65s var(--ease-cinematic);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal.closing {
  opacity: 0;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: backdrop-filter 0.7s var(--ease-cinematic);
}

.modal.active .modal-backdrop {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--anthracite-light);
  border: 1px solid var(--border);
  opacity: 0;
  transform: scale(0.95) translateY(16px);
  transition:
    transform 0.75s var(--ease-cinematic),
    opacity 0.65s var(--ease-cinematic);
}

.modal.active .modal-panel {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.modal.closing .modal-panel {
  opacity: 0;
  transform: scale(0.97) translateY(12px);
}

.modal[hidden] {
  display: flex;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--text);
  transition: background 0.3s ease;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-close:hover span {
  background: var(--text-muted);
}

.modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 2.5rem;
  padding-right: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-option {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--anthracite);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.modal-option:hover {
  border-color: var(--border-hover);
  background: var(--anthracite-mid);
}

.modal-option-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-option-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.modal-option h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.modal-option-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-modal {
  width: 100%;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
    align-self: stretch;
  }

  body.cursor-enabled .cursor-glow,
  body.cursor-enabled .cursor-trail {
    display: none;
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    letter-spacing: 0.02em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .intro-item,
  .fade-up,
  .reveal-card,
  .reveal-section,
  .stagger-item {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .header {
    opacity: 1;
    transform: none;
  }

  .smoke-container,
  .film-grain,
  .cinematic-vignette {
    opacity: 1;
  }

  .film-grain-canvas {
    opacity: calc(var(--grain-opacity) * 0.5);
  }

  .film-grain-svg,
  .film-grain-layer {
    animation: none !important;
  }
}
