.artist-links {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 14px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s;
}
.artist-card:hover .artist-links,
.artist-card.active .artist-links { max-height: 60px; }
.artist-link-spotify,
.artist-link-ig,
.artist-link-yt {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
  pointer-events: auto;
}
.artist-link-spotify:hover,
.artist-link-ig:hover,
.artist-link-yt:hover { color: #fff; }

/* CURSOR — desktop/pointer only */
@media (pointer: fine) {
  * { cursor: none !important; }
}
#cur-dot {
  position: fixed; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  pointer-events: none; z-index: 99999;
  top: 0; left: 0; opacity: 0;
  margin-left: -3px; margin-top: -3px;
  box-shadow: 0 0 8px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.4);
  transition: opacity 0.3s;
  display: none;
}
#cur-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%; pointer-events: none; z-index: 99998;
  top: 0; left: 0; opacity: 0;
  margin-left: -17px; margin-top: -17px;
  transition: width 0.25s, height 0.25s, border-color 0.25s, opacity 0.3s;
  display: none;
}
@media (pointer: fine) {
  #cur-dot, #cur-ring { display: block; }
}
/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { background: #000; scroll-behavior: smooth; }
body { background: #000; color: #fff; font-family: 'Times New Roman', Times, serif; overflow-x: hidden; }

/* LINKS — kill browser default purple */
a { color: #fff; text-decoration: none; }
a:visited { color: #fff; }

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.05;
}

/* GLOW HELPERS */
.glow-lg  { text-shadow: 0 0 10px rgba(255,255,255,1),   0 0 30px rgba(255,255,255,0.5), 0 0 70px rgba(255,255,255,0.15); }
.glow-md  { text-shadow: 0 0 8px rgba(255,255,255,0.9),  0 0 22px rgba(255,255,255,0.4), 0 0 50px rgba(255,255,255,0.1); }
.glow-sm  { text-shadow: 0 0 6px rgba(255,255,255,0.8),  0 0 16px rgba(255,255,255,0.3); }



/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(0,0,0,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 48px;
}
.nav-logo { font-size: 0.82rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: bold; color: #fff; }
.nav-logo .dim { font-weight: normal; color: rgba(255,255,255,0.4); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.nav-links a:hover { color: #fff; }

/* HERO */
#hero {
  min-height: 100vh; background: #000;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 120px 48px 80px; text-align: center;
}
.hero-label { font-size: 1rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.hero-title {
  font-size: clamp(4rem, 11vw, 10rem); font-style: italic; line-height: 0.9;
  color: #fff; letter-spacing: -0.02em;
}
.hero-sub {
  margin-top: 30px; max-width: 480px; font-size: 1rem; line-height: 1.85;
  color: rgba(255,255,255,0.6); font-style: italic;
}
.hero-buttons { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-fill {
  display: inline-block; padding: 13px 32px;
  font-family: 'Times New Roman', Times, serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  background: #fff; color: #000; border: none;
  box-shadow: 0 0 20px rgba(255,255,255,0.25);
  transition: opacity 0.3s, transform 0.2s;
}
.btn-fill:visited { color: #000; }
.btn-fill:hover { opacity: 0.85; transform: translateY(-2px); color: #000; }
.btn-outline {
  display: inline-block; padding: 13px 32px;
  font-family: 'Times New Roman', Times, serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.18);
  transition: color 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-outline:visited { color: rgba(255,255,255,0.6); }
.btn-outline:hover { color: #fff; border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }

/* DIVIDER */
.divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); }

/* SECTIONS */
.sec { padding: 100px 48px; background: #000; }
.sec.alt { background: #0a0a0a; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.sec-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-style: italic; line-height: 0.95;
  color: #fff; letter-spacing: -0.01em;
}

/* ARTISTS */
.artists-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.artists-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.06); }
.artist-card { background: #000; position: relative; overflow: hidden; min-height: 340px; }
.artist-card--featured { grid-row: span 2; min-height: 520px !important; }
.artist-card--hero { grid-column: 1; grid-row: 1 / 3; }
.artist-card--wide { grid-column: span 2; }
.artist-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #111 0%, #050505 100%);
}
.artist-bg-text {
  position: absolute; bottom: -10px; left: -8px;
  font-size: clamp(6rem, 13vw, 11rem); font-style: italic;
  color: rgba(255,255,255,0.025); line-height: 1; letter-spacing: -0.05em;
  pointer-events: none; user-select: none;
}
.artist-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 55%);
  transition: background 0.4s;
}
.artist-card:hover .artist-grad,
.artist-card.active .artist-grad {
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.45) 65%, transparent 100%);
}
.artist-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; }
.artist-genre { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.artist-name { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-style: italic; color: #fff; line-height: 1; }
.artist-card:first-child .artist-name { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.artist-bio {
  font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.75;
  margin-top: 10px; font-style: italic;
  max-height: 0; overflow: hidden; transition: max-height 0.5s;
}
.artist-card:hover .artist-bio,
.artist-card.active .artist-bio { max-height: 80px; }

/* RELEASES */
.releases-list { margin-top: 56px; }
.rel-row {
  display: grid; grid-template-columns: 52px 1fr auto;
  gap: 32px; align-items: start;
  padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.rel-row::before {
  content: ''; position: absolute; left: -48px; right: -48px; top: 0; bottom: 0;
  background: rgba(255,255,255,0.02); opacity: 0; transition: opacity 0.3s;
}
.rel-row:hover::before { opacity: 1; }
.rel-num { font-size: 2.8rem; font-style: italic; color: rgba(255,255,255,0.07); line-height: 1; text-align: right; padding-top: 4px; }
.rel-title-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.rel-title { font-size: clamp(1.3rem, 2.8vw, 2rem); font-style: italic; color: #fff; transition: opacity 0.3s; }
.rel-row:hover .rel-title { opacity: 0.6; }
.rel-format { font-size: 0.88rem; font-style: italic; color: rgba(255,255,255,0.4); }
.rel-artist { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 5px; }
.rel-tracks { display: flex; flex-wrap: wrap; gap: 3px 16px; margin-top: 12px; }
.rel-track { font-size: 0.72rem; font-style: italic; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.rel-track::before { content: '— '; }
.rel-row:hover .rel-track { color: rgba(255,255,255,0.55); }
.rel-right { text-align: right; padding-top: 4px; }
.rel-date { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); white-space: nowrap; }
.rel-badge {
  display: inline-block; margin-top: 10px;
  font-size: 0.52rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); padding: 3px 10px;
}

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-frame {
  aspect-ratio: 3/4; background: #0a0a0a; position: relative; overflow: hidden;
}
.about-frame-inner {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.about-frame-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 3px);
}
.about-wm { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.about-wm-1 { font-size: 5rem; font-style: italic; color: rgba(255,255,255,0.035); letter-spacing: 0.2em; }
.about-wm-2 { font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.05); letter-spacing: 0.15em; }
.about-corner { position: absolute; padding: 20px; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); line-height: 1.7; }
.about-corner.tl { top: 0; left: 0; }
.about-corner.br { bottom: 0; right: 0; text-align: right; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); margin-top: 28px; }
.stat { background: #000; padding: 22px 18px; }
.stat-n { font-size: 2.8rem; font-style: italic; color: rgba(255,255,255,0.75); line-height: 1; }
.stat-l { font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 4px; }
.about-copy { }
.about-copy .sec-title { margin-bottom: 26px; }
.about-body { font-size: 0.95rem; line-height: 1.95; font-style: italic; color: rgba(255,255,255,0.6); }
.about-body p + p { margin-top: 18px; }
.about-body strong { color: #fff; font-style: normal; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
.contact-desc { font-size: 0.92rem; line-height: 1.9; font-style: italic; color: rgba(255,255,255,0.55); margin-top: 22px; max-width: 340px; }
.ci-list { margin-top: 44px; display: flex; flex-direction: column; gap: 22px; }
.ci-label { font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 4px; }
.ci-value { font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.7); }

/* FORM */
.fgroup { margin-bottom: 30px; position: relative; }
.fgroup label { display: block; margin-bottom: 9px; font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff; padding: 10px 0; outline: none;
  font-family: 'Times New Roman', Times, serif; font-size: 0.95rem; font-style: italic;
  transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.fgroup select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 6px center;
  background-color: transparent; padding-right: 22px;
}
.fgroup select option { background: #111; color: #fff; }
.fgroup input::placeholder, .fgroup textarea::placeholder { color: rgba(255,255,255,0.2); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: rgba(255,255,255,0.5); }
.fgroup textarea { resize: none; min-height: 88px; line-height: 1.7; }
.fline { position: absolute; bottom: 0; left: 0; height: 1px; width: 0; background: #fff; transition: width 0.4s; }
.fgroup:focus-within .fline { width: 100%; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; }
.frow .fgroup { margin-bottom: 0; }
.form-note { font-size: 0.72rem; font-style: italic; color: rgba(255,255,255,0.3); margin-top: 14px; line-height: 1.7; }

/* UPDATES */
.updates-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px; margin-bottom: 0;
}
.week-filter select {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.68rem; letter-spacing: 0.15em;
  padding: 6px 28px 6px 10px; outline: none;
  transition: color 0.3s, border-color 0.3s;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
  background-color: transparent;
}
.week-filter select:hover { color: #fff; border-color: rgba(255,255,255,0.55); }
.week-filter select option { background: #111; color: #fff; }
@media (pointer: fine) { .week-filter select { cursor: none; } }

.update-card-img {
  width: calc(100% + 64px); margin: -36px -32px 4px;
  height: 200px; object-fit: cover; display: block;
  opacity: 0.88; transition: opacity 0.3s;
}
.update-card:hover .update-card-img { opacity: 1; }

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-top: 56px;
}
.update-card {
  background: #000;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s;
  position: relative;
}
.update-card:hover { background: #0a0a0a; }
.update-card::after {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.update-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.update-date {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.update-artist {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2px 9px;
}
.update-headline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: #fff;
  line-height: 1.15;
}
.update-body {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  flex: 1;
}
.update-empty {
  grid-column: 1 / -1;
  padding: 72px 32px;
  text-align: center;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .updates-grid { grid-template-columns: 1fr; }
  .update-card { padding: 28px 20px; }
  .update-card::after { left: 20px; right: 20px; }
}

/* FOOTER */
footer {
  background: #000; border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-mark { font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase; color: #fff; font-style: italic; }
.footer-legal { font-size: 0.66rem; font-style: italic; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-links a:hover { color: #fff; }

/* REVEAL ANIMATION */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }

/* HERO ENTRANCE */
.h-anim { opacity: 1; animation-fill-mode: forwards; animation-timing-function: ease; }
.h-a1 { animation: hup 0.9s 0.2s forwards; }
.h-a2 { animation: hup 1.1s 0.4s forwards; }
.h-a3 { animation: hup 0.9s 0.7s forwards; }
.h-a4 { animation: hup 0.9s 0.9s forwards; }
@keyframes hup { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 15px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.58rem; letter-spacing: 0.1em; }

  #hero { padding: 90px 20px 56px; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-sub { font-size: 0.88rem; }
  .hero-buttons { flex-direction: column; gap: 10px; margin-top: 30px; }
  .btn-fill, .btn-outline { text-align: center; }

  .sec { padding: 64px 20px; }

  .artists-header { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 36px; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .artist-card { min-height: 220px !important; }
  .artist-card--featured { grid-column: span 2; min-height: 320px !important; }

  .artist-card--hero { grid-column: 1 / -1 !important; grid-row: auto !important; min-height: 320px !important; }
  .artist-card--wide { grid-column: 1 / -1 !important; }
  .artist-name { font-size: 1.6rem !important; }

  .rel-row { grid-template-columns: 36px 1fr; gap: 14px; padding: 22px 0; }
  .rel-row::before { left: -20px; right: -20px; }
  .rel-num { font-size: 2rem; }
  .rel-right { display: none; }
  .rel-title { font-size: 1.1rem !important; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-frame { aspect-ratio: 4/3; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .frow { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .frow .fgroup { margin-bottom: 30px; }
  .contact-desc { max-width: 100%; }

  footer { padding: 30px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
}
/* LANG SWITCHER */
.lang-switcher select {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  padding: 6px 10px;
  cursor: pointer;
  outline: none;
  transition: color 0.3s, border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.lang-switcher select:hover { color: #fff; border-color: rgba(255,255,255,0.55); }
.lang-switcher select option { background: #111; color: #fff; }
@media (pointer: fine) {
  .lang-switcher select { cursor: none; }
}