/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:            #07050f;
  --cream:         #ede0d4;
  --text:          #9070b8;
  --accent:        #8033ff;
  --accent-bright: #aa66ff;
  --border:        #1e0d40;
  --muted:         #4a237a;

  --font-body:  'Barlow Condensed', sans-serif;
  --font-logo:  'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ============================================================
   COOKIE NOTICE
============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 48px;
  background: rgba(14, 8, 28, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-bar.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-btn {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent-bright);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookie-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

@media (max-width: 600px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }
}

/* ============================================================
   CUSTOM CURSOR GLOW
============================================================ */
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,51,255,0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
  will-change: transform;
}

@media (hover: none) { .cursor-glow { display: none; } }

/* film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   IMAGE TINT
============================================================ */
.img-tint {
  position: relative;
  overflow: hidden;
}

.img-tint img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.65) contrast(1.1);
  transition: filter 0.5s ease, transform 0.55s ease;
}

.img-tint::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(40, 10, 80, 0.38);
  pointer-events: none;
  z-index: 1;
}

.img-tint:hover img { transform: scale(1.025); }

/* ============================================================
   ARROW LINKS
============================================================ */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.arrow-link::before {
  content: '→';
  display: inline-block;
  transition: transform 0.2s;
}

.arrow-link:hover { color: var(--accent-bright); }
.arrow-link:hover::before { transform: translateX(4px); }

.arrow-link.xs { font-size: 14px; letter-spacing: 0.15em; gap: 6px; }
.arrow-link.xs::before { font-size: 14px; }

/* ============================================================
   LOGO IMAGES — white-bg PNG on dark background trick:
   invert(1) flips white→black, hue-rotate(180deg) restores
   pink hue, brightness boosts it, then screen blend makes
   the black areas transparent.
============================================================ */
.logo-glow-img {
  display: block;
  height: 80px;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(2.8);
  mix-blend-mode: screen;
  transition: filter 0.25s;
}

.logo-glow-img:hover {
  filter: invert(1) hue-rotate(180deg) brightness(3.5);
}

.logo-type-img {
  display: block;
  width: min(420px, 55vw);
  height: auto;
  filter: invert(1) hue-rotate(180deg) brightness(2.4) saturate(1.4);
  mix-blend-mode: screen;
  margin-bottom: 10px;
}

.header-logo-img {
  display: block;
  height: 80px;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(2.4) saturate(1.4);
  mix-blend-mode: screen;
  transition: filter 0.2s;
}

.site-logo:hover .header-logo-img {
  filter: invert(1) hue-rotate(180deg) brightness(3.2) saturate(1.6);
}

.follow-logo-img {
  display: block;
  width: min(260px, 55vw);
  height: auto;
  filter: invert(1) hue-rotate(180deg) brightness(2.8);
  mix-blend-mode: screen;
  margin: 0 auto 12px;
}

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  padding-top: max(20px, env(safe-area-inset-top));
  padding-left: max(48px, env(safe-area-inset-left));
  padding-right: max(48px, env(safe-area-inset-right));
  background: linear-gradient(to bottom, rgba(10,6,12,0.88) 50%, transparent);
  transition: background 0.3s;
}

#site-header.scrolled {
  background: rgba(10,6,12,0.96);
  border-bottom: 1px solid var(--border);
}

.site-logo {
  font-family: var(--font-logo);
  font-size: 32px;
  letter-spacing: 0.12em;
  color: var(--cream);
  transition: color 0.2s;
}

.site-logo:hover { color: var(--accent-bright); }

nav { display: flex; gap: 40px; }

nav a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

nav a:hover { color: var(--cream); }
nav a.nav-active { color: var(--accent-bright); }

/* ============================================================
   HERO — full bleed cinematic
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-artwork {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.15) brightness(0.8) contrast(1.08);
  transition: none;
}

/* no scale on hero artwork */
.hero-artwork.img-tint:hover img { transform: none; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,5,15,0.18) 0%,
    rgba(7,5,15,0.0) 25%,
    rgba(7,5,15,0.72) 78%,
    rgba(7,5,15,1.0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-info {
  position: absolute;
  bottom: 64px;
  left: 56px;
  right: 56px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-left { flex: 1; }

.hero-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.hero-album {
  font-family: var(--font-logo);
  font-size: clamp(36px, 4.5vw, 68px);
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-top: 6px;
  opacity: 0.85;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding-bottom: 10px;
  flex-shrink: 0;
}

.hero-status {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

.link-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

/* ============================================================
   MARQUEE TICKER
============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  background: rgba(128,51,255,0.03);
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track {
  display: flex;
  gap: 32px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}

.marquee-track span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track .m-hi {
  color: var(--accent-bright);
  font-weight: 700;
}

.marquee-track .m-dot {
  color: var(--accent);
  font-size: 7px;
  letter-spacing: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FEATURED VIDEO
============================================================ */
.featured-video { position: relative; }

.fv-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.fv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 56px;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  transition: color 0.25s, transform 0.25s;
}

.fv-thumb:hover .fv-play {
  color: rgba(255,255,255,0.75);
  transform: translate(-50%, -50%) scale(1.12);
}

.fv-cta {
  display: inline-flex;
  margin: 18px 0 0 24px;
}

/* ============================================================
   LATEST SINGLE — asymmetric
============================================================ */
.latest-single {
  display: grid;
  grid-template-columns: 1fr 55%;
  min-height: 620px;
  border-top: 1px solid var(--border);
}

.ls-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  border-right: 1px solid var(--border);
}

.ls-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 14px;
}

.ls-title {
  font-family: var(--font-logo);
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.87;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.out-badge {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
}

.ls-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ls-image {
  height: 100%;
  min-height: 620px;
}

/* ============================================================
   DISCOGRAPHY — full width, larger type
============================================================ */
.discography {
  padding: 72px 48px;
  border-top: 1px solid var(--border);
}

.disco-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.disco-list { display: flex; flex-direction: column; }

.disco-list li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s ease, background 0.2s;
  cursor: pointer;
}

.disco-list li:hover { background: rgba(128,51,255,0.05); }

.disco-list li:hover { padding-left: 10px; }

.yr {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.tr {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  transition: color 0.2s;
}

.disco-list li:hover .tr { color: var(--cream); }

.tr.bold {
  font-weight: 700;
  color: var(--accent-bright);
}

.coming-soon {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

/* ============================================================
   VIDEO CAROUSEL
============================================================ */
.video-carousel {
  padding: 52px 48px;
  border-top: 1px solid var(--border);
}

.vc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.vc-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
}

.vc-next {
  background: none;
  border: 1px solid var(--border);
  color: var(--accent);
  width: 40px;
  height: 40px;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.vc-next:hover { border-color: var(--accent); color: var(--accent-bright); }

.vc-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.vc-track::-webkit-scrollbar { display: none; }

.vc-card {
  flex: 0 0 calc(25% - 14px);
  scroll-snap-align: start;
  min-width: 220px;
}

.vc-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.vc-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0;
}

.vc-card-meta span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

/* ============================================================
   ABOUT
============================================================ */
.about-section {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-logo);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-bio {
  max-width: 760px;
  margin: 0 auto;
}

.about-eyebrow {
  font-family: var(--font-logo);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.about-text {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}

/* ============================================================
   BRANDS
============================================================ */
.brands-section {
  padding: 64px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.brands-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 48px;
}

.brand-name {
  font-family: var(--font-logo);
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.14em;
  color: var(--text);
  transition: color 0.2s;
}

.brand-name:hover { color: var(--accent-bright); }

/* ============================================================
   PRESS
============================================================ */
.press-section {
  padding: 72px 48px;
  border-top: 1px solid var(--border);
}

.press-heading {
  font-family: var(--font-logo);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

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

.press-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: border-color 0.25s, background 0.25s;
  cursor: pointer;
}

.press-card:hover {
  border-color: var(--accent);
  background: rgba(128,51,255,0.05);
}

.press-outlet {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.press-title {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
}

.press-excerpt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}

.press-read { margin-top: 8px; }

/* ============================================================
   FOLLOW — editorial centered
============================================================ */
.follow-section {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.follow-heading { display: none; }

.follow-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 52px;
}

.follow-form {
  display: flex;
  max-width: 380px;
  margin: 0 auto 16px;
  border-bottom: 1px solid var(--muted);
}

.follow-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  padding: 10px 0;
  outline: none;
}

.follow-input::placeholder { color: var(--muted); }

.follow-btn {
  background: none;
  border: none;
  color: var(--accent-bright);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 0 10px 16px;
  transition: color 0.2s;
}

.follow-btn:hover { color: var(--cream); }

.follow-legal {
  font-size: 13px;
  color: var(--muted);
  max-width: 360px;
  margin: 0 auto;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  padding: 0 48px 40px;
  border-top: 1px solid var(--border);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.footer-col { padding: 32px 0; }

.footer-col:first-child {
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

.footer-col:last-child { padding-left: 40px; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-socials { display: flex; gap: 20px; }

.footer-socials a {
  font-size: 18px;
  color: var(--accent);
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--accent-bright); }

.footer-email {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-email:hover { color: var(--accent-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}

.label-name {
  font-family: var(--font-logo);
  font-size: 22px;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   SPOTIFY EMBED
============================================================ */
.ls-spotify {
  margin-top: 40px;
  opacity: 0.92;
}

/* ============================================================
   VIDEO CAROUSEL PLAY ICON
============================================================ */
.vc-card-img { position: relative; }

.vc-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 28px;
  color: rgba(255,255,255,0.25);
  pointer-events: none;
  transition: color 0.25s, transform 0.25s;
}

.vc-card:hover .vc-play-icon {
  color: rgba(255,255,255,0.7);
  transform: translate(-50%, -50%) scale(1.15);
}

.vc-card { cursor: pointer; }

.fv-thumb { cursor: pointer; }

/* ============================================================
   VIDEO MODAL
============================================================ */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vmodal.open {
  opacity: 1;
  pointer-events: all;
}

.vmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 5, 15, 0.92);
  cursor: pointer;
}

.vmodal-box {
  position: relative;
  width: min(900px, 96vw);
  z-index: 1;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.vmodal.open .vmodal-box { transform: scale(1); }

.vmodal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.vmodal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vmodal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  letter-spacing: 0;
  transition: color 0.2s;
  z-index: 2;
}

.vmodal-close:hover { color: var(--accent-bright); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
============================================================ */
@media (max-width: 900px) {
  #site-header { padding: 16px 24px; }

  .header-logo-img { height: 52px; }

  nav { gap: 24px; }

  .hero-info {
    left: 24px;
    right: 24px;
    bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-right { align-items: flex-start; }

  .latest-single {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .ls-text {
    padding: 56px 32px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .ls-image { min-height: 420px; }

  .discography { padding: 56px 24px; }

  .video-carousel { padding: 40px 24px; }

  .vc-card { flex: 0 0 calc(50% - 9px); }

  .about-section { padding: 56px 24px; }
  .about-stats { gap: 48px; margin-bottom: 48px; padding-bottom: 40px; }

  .brands-section { padding: 48px 24px; }

  .press-section { padding: 56px 24px; }

  .follow-section { padding: 72px 24px; }

  footer { padding: 0 24px 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
============================================================ */
@media (max-width: 600px) {
  #site-header { padding: 12px 16px; }

  .header-logo-img { height: 52px; }

  nav { gap: 20px; }

  nav a { font-size: 13px; letter-spacing: 0.18em; }

  .hero-info {
    left: 16px;
    right: 16px;
    bottom: 28px;
    gap: 16px;
  }

  .hero-eyebrow { font-size: 14px; margin-bottom: 10px; }

  .hero-album { font-size: clamp(28px, 8vw, 44px); }

  .ls-text { padding: 40px 16px; }

  .ls-title { font-size: clamp(56px, 14vw, 96px); }

  .ls-image { min-height: 300px; }

  .disco-list li {
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    padding: 14px 0;
  }

  .tr {
    font-size: 13px;
    letter-spacing: 0.1em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .discography { padding: 40px 16px; }

  .video-carousel { padding: 32px 16px; }

  .vc-card { flex: 0 0 calc(80% - 9px); }

  .about-section { padding: 40px 16px; }

  .about-stats { gap: 32px; margin-bottom: 36px; padding-bottom: 32px; }

  .brands-section { padding: 32px 16px; }

  .brands-grid { gap: 16px 32px; }

  .press-section { padding: 40px 16px; }

  .press-card { padding: 24px; }

  .follow-section { padding: 56px 16px; }

  .follow-form { max-width: 100%; }

  .footer-cols { grid-template-columns: 1fr; }

  .footer-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 24px;
  }

  .footer-col:last-child { padding-left: 0; padding-top: 24px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  footer { padding: 0 16px 28px; }

  .fv-cta { margin-left: 16px; }
}

/* ============================================================
   RESPONSIVE — TINY PHONES (≤ 380px)
============================================================ */
@media (max-width: 380px) {
  #site-header { padding: 10px 12px; }

  .header-logo-img { height: 36px; }

  nav { gap: 12px; }

  nav a { font-size: 11px; letter-spacing: 0.1em; }

  .hero-info {
    left: 12px;
    right: 12px;
    bottom: 20px;
  }

  .hero-album { font-size: clamp(22px, 7vw, 36px); }

  .ls-title { font-size: clamp(48px, 12vw, 72px); }

  .discography { padding: 32px 12px; }

  .disco-list li { grid-template-columns: 38px 1fr auto; gap: 8px; }

  .video-carousel { padding: 24px 12px; }

  .vc-card { flex: 0 0 90%; }

  .follow-section { padding: 40px 12px; }

  footer { padding: 0 12px 24px; }
}
