@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Space+Mono:wght@400;700&display=swap');

:root {
  --black: #050505;
  --deep: #07090e;
  --surface: #0d1117;
  --border: #161d27;
  --gold: #2a9fd6;
  --gold-bright: #4dc3f7;
  --gold-dim: #1a5f82;
  --white: #f0ece4;
  --white-dim: #8a9aaa;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-mono: 'Space Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ─── GRAIN ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ─── CUSTOM CURSOR GLOW ─── */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,159,214,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: linear-gradient(to bottom, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0) 100%);
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled {
  background: rgba(5,7,12,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(42,159,214,0.04);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s, drop-shadow 0.3s;
}
.nav-logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(42,159,214,0.8));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 0.5rem 0;
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
  box-shadow: 0 0 6px var(--gold);
}
.nav-links > li > a:hover { color: var(--gold); filter: blur(0px); }
.nav-links:hover > li > a:not(:hover) { filter: blur(1.5px); opacity: 0.5; }
.nav-links > li > a:hover::after { width: 100%; }

/* DROPDOWN — fixed with padding bridge */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px; /* bridge gap so mouse doesn't lose hover */
  background: transparent;
}
.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: rgba(7,9,14,0.99);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  list-style: none;
  padding: 0.4rem 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 20px rgba(42,159,214,0.06);
}
.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-links .dropdown-menu li a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.nav-links .dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(42,159,214,0.07);
  padding-left: 1.6rem;
}

.nav-social { display: flex; gap: 1rem; }
.nav-social a {
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s, filter 0.2s;
  display: flex; align-items: center;
}
.nav-social a:hover {
  color: var(--gold);
  filter: drop-shadow(0 0 5px rgba(42,159,214,0.6));
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger:hover span { background: var(--gold); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(5,7,12,0.98);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s, filter 0.25s, opacity 0.25s;
  filter: blur(0px);
}
.mobile-nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(42,159,214,0.5);
  filter: blur(0px);
}
.mobile-nav:hover a:not(:hover) { filter: blur(2px); opacity: 0.35; }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.2em; color: var(--gold);
  cursor: pointer; background: none; border: none;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 30%, rgba(42,159,214,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 70%, rgba(10,80,160,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 85%, rgba(0,30,80,0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(5,15,35,0.8) 0%, var(--black) 100%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(5,5,5,0.3) 0%,
    transparent 30%,
    transparent 50%,
    rgba(5,5,5,0.7) 80%,
    rgba(5,5,5,1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 3rem 6rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}
.hero-title span { color: var(--gold); text-shadow: 0 0 60px rgba(42,159,214,0.3); }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem; 
  color: var(--white-dim); max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; right: 3rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; z-index: 2;
}
.scroll-indicator span {
  font-family: var(--font-mono); font-size: 0.5rem;
  letter-spacing: 0.3em; color: var(--white-dim);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(42,159,214,0.4);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ─── KEYFRAMES ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 transparent; }
  50% { box-shadow: 0 0 30px rgba(42,159,214,0.25); }
}
@keyframes borderGlow {
  0%, 100% { border-color: var(--border); }
  50% { border-color: var(--gold-dim); box-shadow: 0 0 20px rgba(42,159,214,0.1); }
}

/* ─── BUTTONS ─── */
.btn {
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  cursor: pointer; transition: all 0.3s;
  display: inline-block; position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.04);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: var(--gold); color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 30px rgba(42,159,214,0.5), 0 0 60px rgba(42,159,214,0.2);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(240,236,228,0.25);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  box-shadow: 0 0 20px rgba(42,159,214,0.2), inset 0 0 20px rgba(42,159,214,0.04);
  transform: translateY(-1px);
}

/* ─── SECTION ─── */
section { padding: 6rem 3rem; }
.section-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95; letter-spacing: 0.03em;
  color: var(--white); margin-bottom: 1rem;
}
.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ─── MARQUEE ─── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0; background: var(--surface);
}
.marquee-inner {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.08em;
  color: var(--border); padding: 0 2rem;
}
.marquee-inner span.accent { color: var(--gold-dim); }

/* ─── ABOUT ─── */
.about-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-text p {
  font-size: 1.15rem; 
  color: var(--white-dim); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-text p strong { color: var(--white); font-style: normal; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stat-item {
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.2rem;
  transition: border-color 0.3s;
}
.stat-item:hover { border-color: var(--gold); }
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem; color: var(--gold); line-height: 1;
  transition: text-shadow 0.3s;
}
.stat-item:hover .stat-number { text-shadow: 0 0 30px rgba(42,159,214,0.5); }
.stat-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-dim); margin-top: 0.3rem;
}

/* ─── ARTISTS GRID ─── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px; background: var(--border);
  max-width: 1400px; margin: 0 auto;
}
.artist-card {
  position: relative; background: var(--deep);
  overflow: hidden; aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  text-decoration: none; cursor: pointer;
}
.artist-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: saturate(0.25) brightness(0.7);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.artist-card:hover .artist-card-bg {
  filter: saturate(0.7) brightness(0.9);
  transform: scale(1.06);
}
.artist-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.97) 0%, rgba(5,5,5,0.2) 55%, transparent 100%);
  transition: background 0.4s;
}
.artist-card:hover .artist-card-overlay {
  background: linear-gradient(to top, rgba(5,7,14,0.98) 0%, rgba(5,7,14,0.3) 50%, rgba(42,159,214,0.04) 100%);
}
/* Blue glow border on hover */
.artist-card::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
  pointer-events: none; z-index: 3;
}
.artist-card:hover::after {
  border-color: rgba(42,159,214,0.3);
  box-shadow: inset 0 0 40px rgba(42,159,214,0.06);
}
.artist-card-content { position: relative; z-index: 2; padding: 1.8rem; }
.artist-card-tag {
  font-family: var(--font-mono); font-size: 0.5rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.artist-card-name {
  font-family: var(--font-display); font-size: 3rem;
  letter-spacing: 0.05em; color: var(--white);
  line-height: 1; margin-bottom: 0.5rem;
  transition: text-shadow 0.3s;
}
.artist-card:hover .artist-card-name {
  text-shadow: 0 0 40px rgba(42,159,214,0.3);
}
.artist-card-bio {
  font-family: var(--font-body); font-size: 0.85rem;
   color: var(--white-dim);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s, opacity 0.4s;
  opacity: 0;
}
.artist-card:hover .artist-card-bio { max-height: 80px; opacity: 1; }
.artist-card-arrow {
  font-family: var(--font-mono); font-size: 0.6rem;
  color: var(--gold); margin-top: 0.8rem;
  letter-spacing: 0.15em;
  opacity: 0; transform: translateX(-8px);
  transition: all 0.3s;
}
.artist-card:hover .artist-card-arrow { opacity: 1; transform: translateX(0); }

/* ─── RELEASES ─── */
.releases-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.releases-header {
  max-width: 1200px; margin: 0 auto 3rem;
  display: flex; justify-content: space-between;
  align-items: flex-end;
}
.releases-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.release-item {
  position: relative; aspect-ratio: 1;
  overflow: hidden; background: var(--surface); cursor: pointer;
}
.release-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.5);
  transition: all 0.5s;
  display: block;
}
.release-item:hover img { filter: saturate(1); transform: scale(1.08); }
.release-item::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.release-item:hover::after {
  border-color: rgba(42,159,214,0.4);
  box-shadow: 0 0 20px rgba(42,159,214,0.15);
}
.release-item-overlay {
  position: absolute; inset: 0;
  background: rgba(5,7,14,0.85);
  display: flex; align-items: center;
  justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.release-item:hover .release-item-overlay { opacity: 1; }
.release-item-overlay span {
  font-family: var(--font-mono); font-size: 0.5rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); text-shadow: 0 0 10px var(--gold);
}

/* ─── RELEASES PAGE GRID ─── */
.releases-page-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.release-card {
  position: relative; aspect-ratio: 1;
  overflow: hidden; background: var(--surface); cursor: pointer;
}
.release-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.4);
  transition: all 0.5s; display: block;
}
.release-card:hover img { filter: saturate(1); transform: scale(1.06); }
.release-card::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  pointer-events: none;
}
.release-card:hover::after {
  border-color: rgba(42,159,214,0.5);
  box-shadow: 0 0 25px rgba(42,159,214,0.2);
}

/* ─── MAILING ─── */
.mailing-section {
  text-align: center; padding: 6rem 3rem;
  position: relative; overflow: hidden;
}
.mailing-section::before {
  content: 'TWM';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 30vw;
  color: rgba(42,159,214,0.025);
  pointer-events: none; letter-spacing: 0.1em;
}
.mailing-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 0.5rem;
}
.mailing-section p {
   color: var(--white-dim);
  margin-bottom: 2.5rem;
}
.mailing-form {
  display: flex; max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.mailing-form:focus-within {
  border-color: var(--gold-dim);
  box-shadow: 0 0 25px rgba(42,159,214,0.15);
}
.mailing-form input {
  flex: 1; background: transparent; border: none;
  outline: none; padding: 1rem 1.2rem;
  color: var(--white); font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.1em;
}
.mailing-form input::placeholder { color: var(--white-dim); }
.mailing-form button {
  background: var(--gold); border: none;
  padding: 1rem 1.5rem; font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--black);
  cursor: pointer; transition: background 0.2s, box-shadow 0.2s;
}
.mailing-form button:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 20px rgba(42,159,214,0.4);
}

/* ─── FOOTER ─── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-brand-desc {
   font-size: 0.9rem;
  color: var(--white-dim); margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim); text-decoration: none;
  font-size: 0.8rem; transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(42,159,214,0.07);
  box-shadow: 0 0 15px rgba(42,159,214,0.2);
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
   color: var(--white-dim);
  text-decoration: none; font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); filter: blur(0px); opacity: 1; }
.footer-col ul:hover li a:not(:hover) { filter: blur(1.5px); opacity: 0.4; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.2em; color: var(--white-dim);
  text-transform: uppercase;
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 160px 3rem 4rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.page-hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--white);
}

/* ─── ARTIST DETAIL ─── */
.artist-detail {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; max-width: 1200px;
  margin: 0 auto; padding: 5rem 3rem;
}
.artist-detail-image { position: relative; }
.artist-detail-image img {
  width: 100%; filter: saturate(0.4); display: block;
  transition: filter 0.5s; border: none; outline: none;
}
.artist-detail-image:hover img { filter: saturate(0.7); }
/* frame removed — full bleed photos */
.artist-detail-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9; margin-bottom: 0.5rem;
}
.artist-detail-origin {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.artist-detail-bio {
  font-size: 1.1rem; 
  color: var(--white-dim); line-height: 1.9; margin-bottom: 2.5rem;
}
.artist-detail-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.meta-item label {
  font-family: var(--font-mono); font-size: 0.5rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-dim); display: block; margin-bottom: 0.2rem;
}
.meta-item span {  color: var(--white-dim); font-size: 0.95rem; }

/* ─── TEAM CARDS ─── */
.team-card {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--deep);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold-dim);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.team-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 30px rgba(42,159,214,0.1);
  transform: translateY(-4px);
}
.team-card:hover::before { transform: scaleX(1); }
.team-card-name {
  font-family: var(--font-display);
  font-size: 2.2rem; letter-spacing: 0.04em;
  color: var(--white); line-height: 1; margin-bottom: 0.4rem;
  transition: text-shadow 0.3s;
}
.team-card:hover .team-card-name { text-shadow: 0 0 25px rgba(42,159,214,0.4); }
.team-card-role {
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
}
.team-card a {
  display: inline-block; margin-top: 1rem;
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none;
  transition: color 0.2s;
}
.team-card a:hover { color: var(--gold); }

/* ─── FORMS ─── */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-family: var(--font-mono);
  font-size: 0.55rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--surface);
  border: 1px solid var(--border); border-radius: 0;
  outline: none; padding: 0.9rem 1rem;
  color: var(--white); font-family: var(--font-body);
  font-size: 1rem; 
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 15px rgba(42,159,214,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── NEWS ─── */
.news-grid { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.news-item {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: grid; grid-template-columns: 120px 1fr;
  gap: 2rem; align-items: start;
  transition: border-color 0.3s;
}
.news-item:hover { border-color: var(--gold-dim); }
.news-date { font-family: var(--font-display); font-size: 3rem; color: var(--gold-dim); line-height: 1; }
.news-date-month { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white-dim); margin-top: 0.2rem; }
.news-title { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.03em; margin-bottom: 0.5rem; color: var(--white); }
.news-excerpt {  color: var(--white-dim); font-size: 0.95rem; }

/* ─── FADE ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.22,0.61,0.36,1), transform 0.85s cubic-bezier(0.22,0.61,0.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }
.fade-up-delay-3 { transition-delay: 0.36s; }
.fade-up-delay-4 { transition-delay: 0.48s; }

/* ─── COMING SOON ─── */
.coming-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; position: relative;
  overflow: hidden; padding: 8rem 3rem 5rem;
}
.coming-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(42,159,214,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(10,60,120,0.08) 0%, transparent 50%);
}
.coming-name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 16rem);
  line-height: 0.85; letter-spacing: 0.02em;
  color: var(--white); position: relative; z-index: 1;
}
.coming-name-ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 20rem);
  color: rgba(42,159,214,0.025);
  white-space: nowrap; pointer-events: none;
  letter-spacing: 0.05em;
}
.coming-tag {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.coming-divider {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 2.5rem auto;
  box-shadow: 0 0 10px rgba(42,159,214,0.4);
}
.coming-statement {
  font-family: var(--font-body); 
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white-dim); max-width: 500px;
  line-height: 1.7; position: relative; z-index: 1;
}
@keyframes subtleGlow {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 80px rgba(42,159,214,0.12); }
}
.coming-name { animation: subtleGlow 4s ease-in-out infinite; }

/* ─── ARTIST HEADER (inner pages) ─── */
.artist-header {
  position: relative; height: 85vh; min-height: 520px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.artist-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: saturate(0.2) brightness(0.5); transform: scale(1.04);
  transition: transform 8s ease;
}
.artist-header:hover .artist-header-bg { transform: scale(1); }
.artist-header-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.5) 0%, transparent 30%, rgba(5,5,5,0.5) 65%, var(--black) 100%);
}
.artist-name-watermark {
  position: absolute; bottom: -2rem; left: -1rem;
  font-family: var(--font-display); font-size: 22vw;
  color: rgba(42,159,214,0.04); letter-spacing: 0.05em;
  line-height: 1; pointer-events: none; white-space: nowrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 1.5rem 5rem; }
  section { padding: 4rem 1.5rem; }
  .about-strip { grid-template-columns: 1fr; gap: 3rem; }
  .artist-detail { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .releases-page-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .page-hero { padding: 140px 1.5rem 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; gap: 0.5rem; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: 1fr; }
  .releases-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ─── MARQUEE LOGO SEPARATOR ─── */
.marquee-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  vertical-align: middle;
}
.marquee-sep img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.18;
  display: inline-block;
  vertical-align: middle;
}

/* ─── ENSURE ALL ARTIST CARD BGs COVER FULLY ─── */
.artist-card-bg {
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

/* ─── TEAM CARD PHOTO THUMBNAILS ─── */
.team-card {
  padding: 0;
  overflow: hidden;
}
.team-card > div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.3);
  transition: filter 0.5s;
}
.team-card:hover > div:first-child img {
  filter: saturate(0.8);
}
.team-card-inner {
  padding: 1.5rem 2rem 2rem;
}

/* ─── ARTIST HEADER BG ALWAYS COVERS ─── */
.artist-header-bg {
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

/* ─── COMING SOON BG COVERS FULLY ─── */
.coming-bg {
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

/* ─── YOUTUBE EMBED — SEAMLESS & RESPONSIVE ─── */
.yt-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: var(--black);
  /* Subtle blue glow border to match site */
  box-shadow:
    0 0 0 1px var(--border),
    0 0 40px rgba(42,159,214,0.06);
  transition: box-shadow 0.4s;
}
.yt-embed-wrap:hover {
  box-shadow:
    0 0 0 1px var(--gold-dim),
    0 0 50px rgba(42,159,214,0.12);
}
.yt-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile: full width, no side padding issues */
@media (max-width: 960px) {
  .yt-embed-wrap {
    /* On artist detail page this sits in a single col,
       ensure it bleeds to container edge */
    margin-left: 0;
    margin-right: 0;
  }
}

/* ─── YOUTUBE THUMBNAIL LINK CARD ─── */
.yt-link-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.yt-link-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 40px rgba(42,159,214,0.12);
  transform: translateY(-2px);
}

/* Thumbnail with play button overlay */
.yt-link-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--black);
}
.yt-link-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.4) brightness(0.7);
  transition: filter 0.5s, transform 0.6s;
}
.yt-link-card:hover .yt-link-thumb img {
  filter: saturate(0.7) brightness(0.85);
  transform: scale(1.03);
}

/* Play button */
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0.85;
}
.yt-link-card:hover .yt-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Bottom label bar */
.yt-link-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.yt-link-card:hover .yt-link-label {
  background: rgba(42,159,214,0.05);
}
.yt-link-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.yt-link-card:hover .yt-link-tag {
  color: var(--gold);
}
.yt-link-arrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  transition: transform 0.2s;
}
.yt-link-card:hover .yt-link-arrow {
  transform: translateX(4px);
}

/* Mobile: full width, no overflow */
@media (max-width: 960px) {
  .yt-link-card {
    width: 100%;
  }
}

/* ─── STREAMING PLATFORM BUTTONS ─── */
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--border);
  color: var(--white-dim);
  background: var(--surface);
  transition: all 0.25s;
  white-space: nowrap;
  width: 100%;
  justify-content: flex-start;
}
.stream-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(42,159,214,0.05);
  box-shadow: 0 0 18px rgba(42,159,214,0.15);
  transform: translateX(4px);
}

/* ─── PRODUCER FEATURE CARD ─── */
.producer-card {
  border: 1px solid var(--border);
  background: var(--deep);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.producer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.producer-card:hover { border-color: var(--gold-dim); box-shadow: 0 0 30px rgba(42,159,214,0.08); transform: translateY(-2px); }
.producer-card:hover::before { transform: scaleX(1); }

/* ─── SOUNDCLOUD LINK ─── */
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--border);
  color: var(--white-dim);
  background: var(--surface);
  transition: all 0.25s;
  width: 100%;
  justify-content: flex-start;
}
.sc-btn:hover {
  border-color: #ff5500;
  color: #ff5500;
  background: rgba(255,85,0,0.05);
  box-shadow: 0 0 18px rgba(255,85,0,0.15);
  transform: translateX(4px);
}

/* ─── DUAL VIDEO GRID ─── */
.video-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .video-grid-2 { grid-template-columns: 1fr; }
}

/* ─── YOUTUBE SHORTS THUMBNAIL (9:16 portrait ratio) ─── */
.yt-short-thumb {
  padding-bottom: 177.78% !important; /* 9:16 */
}
.yt-short-thumb img {
  object-position: center top;
}

/* ═══════════════════════════════════════════
   MOBILE FIXES — booking, submissions, footer
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── General layout ── */
  section { padding: 3rem 1.2rem !important; }
  .section-inner, .section-content { padding: 0 !important; }

  /* ── Two-column grids → single column ── */
  section > div[style*="grid"],
  section > div[style*="display:grid"],
  .contact-grid,
  .booking-grid,
  .submit-grid {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  /* ── Forms full width ── */
  form, .contact-form, .submit-form,
  #contact-form, #submit-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.2rem !important;
  }

  /* ── Form inputs ── */
  input, textarea, select {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px !important; /* prevents iOS zoom */
  }

  /* ── Mailing form ── */
  .mailing-form {
    flex-direction: column !important;
    gap: 0.8rem !important;
    width: 100% !important;
  }
  .mailing-form input[type="email"] {
    width: 100% !important;
    min-width: unset !important;
  }
  .mailing-form button,
  .mailing-form [type="submit"] {
    width: 100% !important;
  }

  /* ── Booking/Contact info blocks ── */
  .contact-info, .booking-info,
  div[style*="border-left"] {
    margin-bottom: 2rem !important;
  }

  /* ── Sub-hero / page hero text ── */
  .sub-hero, .page-hero {
    padding: 120px 1.5rem 3rem !important;
    text-align: center !important;
  }
  .sub-hero p, .page-hero p {
    margin: 0 auto !important;
  }

  /* ── Submissions left column ── */
  .sub-animation { display: none !important; }
  .twm-badge-wrap { margin-bottom: 1.5rem !important; }
  .twm-badge-frame { width: 180px !important; height: 180px !important; }
  .twm-badge-img { width: 150px !important; height: 150px !important; }

  /* ── Footer ── */
  footer, .site-footer,
  nav + footer,
  [class*="footer"] {
    padding: 2rem 1.2rem !important;
  }

  /* Footer grid → stack vertically */
  footer > div,
  .footer-inner,
  .footer-grid,
  [class*="footer"] > div[style*="grid"],
  [class*="footer"] > div[style*="flex"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: flex-start !important;
  }

  /* Footer columns */
  .footer-col, footer ul, footer nav {
    width: 100% !important;
  }

  /* Footer copyright / bottom row */
  .footer-bottom, .footer-copy {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
    font-size: 0.65rem !important;
  }

  /* ── Nav marquee ── */
  .marquee-strip { display: none !important; }

  /* ── Team/artist cards ── */
  .team-section-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Norman Bates player ── */
  .player-card { padding: 1rem !important; }
  .pc-art-row { flex-direction: column !important; align-items: flex-start !important; }
  .pc-album-art { width: 100% !important; height: auto !important; aspect-ratio: 1 !important; }
  .pc-controls { gap: 0.5rem !important; }
  #jd-viz { height: 55px !important; }

  /* ── Releases grid ── */
  .releases-page-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .team-section-grid {
    grid-template-columns: 1fr !important;
  }
  .releases-page-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Ensure nothing overflows viewport */
  * { max-width: 100vw !important; }
  body { overflow-x: hidden !important; }
}

/* ── Header / Nav Fix — prevent content bleeding behind fixed nav ── */
nav, .site-nav, #site-nav, header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
}
/* Ensure first content section clears the nav height */
body > *:not(nav):not(#twm-preloader):not(#twm-cookie-banner):not(#twm-mail-popup):first-of-type {
  padding-top: 0 !important;
}
.page-hero, .sub-hero, .artist-header, .hero-section, #hero {
  padding-top: 100px !important;
}
@media(max-width: 768px) {
  .page-hero, .sub-hero, .artist-header, .hero-section, #hero {
    padding-top: 80px !important;
  }
}
