/* ── VARIABLES ── */
:root {
  --gold: #F09B06;
  --gold-dim: rgba(240,155,6,0.10);
  --gold-mid: rgba(240,155,6,0.22);
  --dark:  #1B1B1B;
  --dark2: #181818;
  --dark3: #141414;
  --card:  #222222;
  --border: rgba(255,255,255,0.07);
  --muted: rgba(255,255,255,0.42);
  --white: #FFFFFF;

  --ylud:  #F09B06;
  --dona:  #E8E8E8;
  --lumi:  #EC4899;
  --cap:   #06B6D4;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark3);
  color: var(--white);
  font-family: 'Barlow', Helvetica, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark3); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 68px;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240,155,6,0.12);
  transition: all 0.3s;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 18px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-tag {
  color: var(--gold); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-left: 1px solid rgba(240,155,6,0.35);
  padding-left: 10px;
}
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links li a {
  color: var(--muted); text-decoration: none;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 14px; display: block; transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.2s;
}
.nav-links li a:hover { color: var(--white); }
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-links li a.active { color: var(--white); }
.nav-links li a.active::after { transform: scaleX(1); }
.nav-links .artist-dot {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block; margin-right: 6px; vertical-align: middle;
}
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 8px 22px !important; font-weight: 600 !important;
  margin-left: 10px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--white) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.6)} }
@keyframes scanLine { 0%{transform:translateY(-100%)} 100%{transform:translateY(100vh)} }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes barWave { from{transform:scaleY(0.08)} to{transform:scaleY(1)} }
@keyframes slideIn { from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:translateX(0)} }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: flex-end;
  padding: calc(68px + 20px) 60px 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 40%, rgba(240,155,6,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(6,182,212,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,155,6,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,155,6,0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 90% 90% at 70% 50%, black 10%, transparent 75%);
}
.hero-scan {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-scan::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,155,6,0.25), transparent);
  animation: scanLine 8s linear infinite; opacity: 0.6;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-dim); border: 1px solid var(--gold-mid);
  padding: 6px 16px; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s 0.1s ease forwards;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 2.5s infinite;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(60px, 10vw, 120px); line-height: 0.88;
  text-transform: uppercase; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards;
}
.h1-outline { -webkit-text-stroke: 2px rgba(255,255,255,0.5); color: transparent; display: block; }
.h1-gold { color: var(--gold); display: block; }
.h1-white { color: var(--white); display: block; }
.hero-sub {
  margin-top: 32px; font-size: 15px; line-height: 1.8;
  color: var(--muted); max-width: 500px; font-weight: 300;
  opacity: 0; animation: fadeUp 0.7s 0.3s ease forwards;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-actions {
  display: flex; gap: 14px; margin-top: 46px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.4s ease forwards;
}
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 14px 34px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.18); color: var(--white);
  padding: 14px 34px; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-roster {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px; z-index: 2;
  opacity: 0; animation: fadeIn 1s 0.8s ease forwards;
}
.hero-roster-item {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.hero-roster-item:hover { transform: translateX(-6px); }
.hero-roster-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hero-roster-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 22px; text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.hero-roster-item:hover .hero-roster-name { color: var(--white); }
.hero-roster-genre { font-size: 10px; color: rgba(255,255,255,0.28); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-soundwave {
  display: flex; align-items: center; gap: 3px; height: 40px; margin-top: 4px;
}
.sw-bar {
  width: 2.5px; background: var(--gold); border-radius: 2px; opacity: 0.4;
  animation: barWave var(--dur,0.8s) ease-in-out infinite alternate;
  animation-delay: var(--del,0s);
}

/* ── TICKER ── */
.ticker-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--dark2); overflow: hidden; padding: 13px 0; position: relative;
}
.ticker-wrap::before,.ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--dark2), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--dark2), transparent); }
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); padding: 0 32px;
}
.ticker-sep { color: var(--gold); opacity: 0.5; }
.ticker-hl { color: var(--gold); }

/* ── SECTIONS ── */
section { padding: 110px 60px; }
.section-label {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.section-h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(36px, 4vw, 56px); text-transform: uppercase; line-height: 0.95;
}
.gold-bar { width: 44px; height: 3px; background: var(--gold); margin-top: 18px; }
.gold-bar.centered { margin: 18px auto 0; }
.inner { max-width: 1200px; margin: 0 auto; }

/* ── LABEL ABOUT ── */
#about { background: rgba(240,155,6,0.03); border-top: 1px solid rgba(240,155,6,0.08); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-quote {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: clamp(26px, 3vw, 44px); line-height: 1.12; text-transform: uppercase;
}
.about-quote em { color: var(--gold); font-style: normal; }
.about-stats { display: flex; gap: 40px; margin-top: 44px; flex-wrap: wrap; }
.about-stat-n {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 46px; color: var(--gold); line-height: 1;
}
.about-stat-l { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.about-right p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.about-right p strong { color: var(--white); font-weight: 500; }
.about-sig { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; gap: 16px; align-items: center; }
.about-sig-dot { width: 36px; height: 36px; background: var(--gold-dim); border: 1px solid var(--gold-mid); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--gold); font-family: 'Barlow Condensed', sans-serif; flex-shrink: 0; }
.about-sig-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.06em; }
.about-sig-role { font-size: 10px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }

/* ── ROSTER ── */
#roster { background: var(--dark3); }
.roster-header { text-align: center; margin-bottom: 64px; }
.roster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }

.artist-card-link { display: block; text-decoration: none; color: inherit; }

.artist-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  cursor: pointer; background: var(--card);
  transition: all 0.35s;
}
.artist-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  transition: opacity 0.35s;
}
.artist-card:hover::before { opacity: 0.7; }
.artist-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.artist-card:hover .artist-photo { transform: scale(1.04); }
.artist-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform 0.5s ease;
}
.artist-card:hover .artist-photo-placeholder { transform: scale(1.04); }
.placeholder-grain {
  position: absolute; 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.08'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.placeholder-initials {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 80px; line-height: 1; text-transform: uppercase;
  position: relative; z-index: 1; letter-spacing: -0.03em;
}
.artist-card-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 28px 24px;
  transform: translateY(10px); transition: transform 0.35s;
}
.artist-card:hover .artist-card-info { transform: none; }
.artist-card-status {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 6px;
}
.status-dot { width: 5px; height: 5px; border-radius: 50%; animation: pulse 2s infinite; }
.artist-card-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 36px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1;
}
.artist-card-genre {
  font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 6px;
}
.artist-card-tag {
  display: inline-block; margin-top: 12px; padding: 5px 12px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  opacity: 0; transform: translateY(6px); transition: all 0.35s 0.05s;
}
.artist-card:hover .artist-card-tag { opacity: 1; transform: none; }
.artist-active-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.artist-card:hover .artist-active-bar { transform: scaleX(1); }

/* ── ARTIST PROFILE ── */
#profile { background: var(--dark2); min-height: 600px; position: relative; overflow: hidden; }
.profile-bg {
  position: absolute; inset: 0; pointer-events: none;
  transition: opacity 0.5s;
}
.profile-inner { position: relative; z-index: 2; }
.profile-tabs {
  display: flex; gap: 3px; margin-bottom: 56px; border-bottom: 1px solid var(--border);
  align-items: center;
}
.profile-tab {
  padding: 12px 22px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; color: var(--muted); background: none; border: none;
  position: relative; transition: color 0.2s; font-family: inherit;
  display: inline-block; text-decoration: none;
}
.profile-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.25s;
}
.profile-tab:hover { color: var(--white); }
.profile-tab:hover::after { transform: scaleX(1); }
.profile-tab.active { color: var(--white); }
.profile-tab.active::after { transform: scaleX(1); }
.profile-tab .tab-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }

.profile-tab-back {
  font-size: 10px; letter-spacing: 0.14em; margin-right: 8px;
  padding-right: 22px; border-right: 1px solid var(--border);
  opacity: 0.5;
}
.profile-tab-back:hover { opacity: 1; color: var(--gold) !important; }
.profile-tab-back::after { display: none !important; }

/* Profile panes */
.profile-pane { display: none; animation: slideIn 0.4s ease; }
.profile-pane.active { display: block; }
.profile-layout { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; }

.profile-photo-wrap { position: relative; }
.profile-photo {
  width: 100%; aspect-ratio: 3/4; background: var(--card);
  position: relative; overflow: hidden;
}
.profile-photo-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.profile-photo-initials {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 110px; line-height: 1; text-transform: uppercase;
  letter-spacing: -0.03em; opacity: 0.15;
}
.profile-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px;
  background: rgba(0,0,0,0.6); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); text-align: center;
}
.profile-press-btn {
  display: block; width: 100%; margin-top: 10px; padding: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--muted); font-family: 'Barlow', sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; text-align: center;
}
.profile-press-btn:hover { border-color: var(--gold); color: var(--gold); }
.profile-socials { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 6px; padding: 7px 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--muted); text-decoration: none; font-size: 11px;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--c, var(--gold)); color: var(--c, var(--gold)); }
.profile-meta { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.meta-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); }
.meta-key { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.meta-val { font-size: 12px; font-weight: 500; }

.profile-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(48px, 7vw, 84px); line-height: 0.9; text-transform: uppercase;
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.profile-genre { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.profile-bio { font-size: 15px; line-height: 1.85; color: var(--muted); font-weight: 300; max-width: 620px; }
.profile-bio strong { color: var(--white); font-weight: 500; }
.profile-bio p { margin-bottom: 16px; }

.releases-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 36px 0 18px; }
.releases-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.releases-scroll::-webkit-scrollbar { height: 3px; }
.releases-scroll::-webkit-scrollbar-thumb { background: var(--gold); }
.release-card {
  flex-shrink: 0; width: 160px;
  background: var(--card); border: 1px solid var(--border);
  transition: all 0.25s; cursor: pointer;
}
.release-card:hover { border-color: var(--c, var(--gold)); transform: translateY(-3px); }
.release-cover {
  width: 100%; aspect-ratio: 1; background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 32px; text-transform: uppercase; position: relative; overflow: hidden;
}
.release-cover-art { width: 100%; height: 100%; object-fit: cover; }
.release-info { padding: 12px; }
.release-title { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.release-date { font-size: 10px; color: var(--muted); margin-top: 3px; letter-spacing: 0.1em; }
.release-type { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 5px; font-weight: 600; }

.video-wrap {
  margin-top: 36px; background: var(--dark3); border: 1px solid var(--border);
  aspect-ratio: 16/9; position: relative; overflow: hidden; max-width: 620px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color 0.2s;
}
.video-wrap:hover { border-color: var(--c, var(--gold)); }
.video-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.25);
}
.video-play {
  width: 60px; height: 60px; background: var(--gold-dim); border: 1px solid var(--gold-mid);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.video-wrap:hover .video-play { background: var(--gold); }
.video-wrap:hover .video-play svg { fill: var(--dark); }
.video-play svg { fill: var(--gold); transition: fill 0.2s; }
.video-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; text-align: center; }

.news-list { display: flex; flex-direction: column; gap: 3px; margin-top: 36px; max-width: 620px; }
.news-item {
  display: flex; gap: 20px; padding: 18px 20px;
  background: rgba(255,255,255,0.025); border-left: 2px solid transparent;
  transition: all 0.25s; align-items: flex-start; cursor: pointer;
}
.news-item:hover { background: rgba(240,155,6,0.05); border-left-color: var(--gold); }
.news-date { font-size: 10px; color: var(--muted); letter-spacing: 0.12em; white-space: nowrap; margin-top: 2px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; }
.news-text h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.news-text p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.news-tag { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-top: 6px; }

/* ── COLLAB ── */
#collab { background: var(--dark3); border-top: 1px solid var(--border); }
.collab-header { text-align: center; margin-bottom: 56px; }
.collab-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 36px 40px; max-width: 800px; margin: 0 auto;
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.collab-card:hover { border-color: rgba(240,155,6,0.3); }
.collab-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--cap));
}
.collab-artists { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.collab-pill {
  display: flex; align-items: center; gap: 8px; padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 18px; text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
}
.collab-x { color: var(--gold); font-weight: 900; font-size: 20px; }
.collab-title-wrap { margin-bottom: 16px; }
.collab-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 52px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1;
  color: var(--gold);
}
.collab-sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.collab-date { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }
.collab-body p { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 12px; }
.collab-body p strong { color: var(--white); font-weight: 500; }
.collab-tracks { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.collab-track {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: rgba(240,155,6,0.07); border: 1px solid rgba(240,155,6,0.18);
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em; cursor: pointer;
  transition: all 0.2s;
}
.collab-track:hover { background: rgba(240,155,6,0.15); border-color: var(--gold); }
.track-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; color: var(--gold); font-size: 16px; width: 20px; }

/* ── CONTACT ── */
#contact { background: rgba(240,155,6,0.03); border-top: 1px solid rgba(240,155,6,0.08); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left .section-h2 span { color: var(--gold); }
.contact-left p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-top: 20px; font-weight: 300; }
.contact-left p strong { color: var(--white); font-weight: 500; }
.contact-info { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 32px; height: 32px; background: var(--gold-dim); border: 1px solid var(--gold-mid); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.contact-row-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.contact-row-text strong { color: var(--white); font-weight: 500; display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.contact-row-text a { color: var(--gold); text-decoration: none; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 300;
  padding: 12px 15px; outline: none; transition: border-color 0.2s; width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.16); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #222; }
.form-submit {
  background: var(--gold); color: var(--dark); border: none; padding: 15px;
  font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer;
  transition: all 0.2s; width: 100%; margin-top: 4px;
}
.form-submit:hover { background: var(--white); transform: translateY(-2px); }
.form-success { display: none; margin-top: 12px; padding: 14px 16px; border: 1px solid rgba(240,155,6,0.3); color: var(--gold); font-size: 12px; letter-spacing: 0.05em; }

/* ── DATES ── */
#dates { background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); }
.dates-header { text-align: center; margin-bottom: 48px; }
#dates-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.dates-card {
  display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 0;
  background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.dates-card:hover { border-color: rgba(255,255,255,0.16); }
.dates-card.past { opacity: 0.35; }
.date-block {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px 20px; border-right: 1px solid var(--border); min-height: 90px;
  text-align: center;
}
.date-day { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 44px; line-height: 1; color: var(--gold); }
.date-month { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.date-year { font-size: 10px; color: rgba(255,255,255,0.22); margin-top: 2px; }
.date-recur { gap: 4px; }
.date-recur-tag { font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.date-recur-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.date-horaire { font-size: 10px; color: var(--muted); margin-top: 4px; letter-spacing: 0.06em; }
.dates-info { padding: 20px 28px; display: flex; flex-direction: column; gap: 6px; }
.dates-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dates-pill {
  display: flex; align-items: center; gap: 7px; padding: 4px 12px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
}
.dates-type {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 9px; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.45);
}
.dates-venue {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 22px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white);
}
.dates-city { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.dates-ticket {
  display: inline-block; margin-top: 4px; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  border: 1px solid rgba(240,155,6,0.3); padding: 4px 12px; align-self: flex-start;
  transition: border-color 0.2s, background 0.2s;
}
.dates-ticket:hover { border-color: var(--gold); background: rgba(240,155,6,0.1); }
.dates-empty { text-align: center; color: var(--muted); font-size: 13px; padding: 48px 0; }

/* ── FOOTER ── */
footer {
  background: var(--dark3); border-top: 1px solid var(--border);
  padding: 44px 60px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 20px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); display: flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.footer-logo span { color: var(--gold); font-size: 10px; opacity: 0.6; letter-spacing: 0.2em; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.22); letter-spacing: 0.08em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(20,20,20,0.99); border-bottom: 1px solid rgba(240,155,6,0.12); padding: 16px 0; z-index: 190; }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 14px 24px; font-size: 13px; }
  .nav-hamburger { display: block; }
  section { padding: 64px 24px; }
  .hero { padding: calc(68px + 14px) 24px 52px; min-height: 100svh; }
  .hero h1 { font-size: clamp(52px, 13vw, 80px); }
  .hero-roster { display: none; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .artist-card { aspect-ratio: 2/3; }
  .artist-card-name { font-size: 28px; }
  .placeholder-initials { font-size: 60px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-photo { max-width: 260px; }
  .profile-name { font-size: clamp(40px, 10vw, 68px); }
  .releases-scroll { gap: 10px; }
  .release-card { width: 140px; }
  .profile-tabs { overflow-x: auto; padding-bottom: 0; scrollbar-width: none; }
  .profile-tabs::-webkit-scrollbar { display: none; }
  footer { flex-direction: column; text-align: center; padding: 36px 24px; gap: 16px; }
  .footer-links { justify-content: center; }
  .collab-card { padding: 24px 20px; }
  .collab-title { font-size: 38px; }
  .dates-card { grid-template-columns: 100px 1fr; }
  .dates-info { padding: 16px 20px; }
  .dates-venue { font-size: 18px; }
}
@media (max-width: 560px) {
  .roster-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .artist-card { aspect-ratio: 3/5; }
  .artist-card-name { font-size: 24px; }
  .artist-card-genre { font-size: 9px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; }
  .news-item { flex-wrap: wrap; gap: 8px; }
  .news-date { min-width: 100%; font-size: 9px; }
  .dates-card { grid-template-columns: 90px 1fr; }
  .date-day { font-size: 36px; }
  section { padding: 52px 16px; }
  .profile-tabs { gap: 0; }
  .profile-tab { padding: 10px 14px; font-size: 10px; }
}
