:root {
  --bg: #0a0908;
  --bg-alt: #131110;
  --bg-card: #17140f;
  --fg: #f5f3ee;
  --fg-dim: #b9b3a6;
  --gold: #c9a227;
  --gold-light: #e8c766;
  --gold-dark: #8a6f1c;
  --border: rgba(201, 162, 39, 0.18);
  --shadow-gold: 0 0 30px rgba(201, 162, 39, 0.25);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------- background fx ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}
.blob-a {
  width: 560px; height: 560px;
  background: var(--gold);
  top: -150px; left: -150px;
  animation: float-a 22s ease-in-out infinite;
}
.blob-b {
  width: 620px; height: 620px;
  background: #7a4fbf;
  bottom: -200px; right: -180px;
  opacity: 0.12;
  animation: float-b 26s ease-in-out infinite;
}
@keyframes float-a {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(80px, 60px); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-70px, -50px); }
}
.grain {
  position: absolute; inset: -10%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-in .8s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up { opacity: 1; transform: none; animation: none; transition: none; }
}

/* ---------- navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}
.navbar.scrolled {
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .03em;
  color: var(--fg);
  white-space: nowrap;
}
.navbar__brand span { color: var(--gold); font-style: italic; margin: 0 4px; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__links a {
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fg-dim);
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}
.navbar__links a:not(.navbar__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.navbar__links a:not(.navbar__cta):hover {
  color: var(--fg);
}
.navbar__links a:not(.navbar__cta):hover::after { width: 100%; }
.navbar__cta {
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 8px 18px !important;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.navbar__cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
  box-shadow: var(--shadow-gold);
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.navbar__burger span {
  width: 24px; height: 2px;
  background: var(--fg);
  transition: transform .3s ease, opacity .3s ease;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(0.85) brightness(0.42) contrast(1.25);
  transform: scale(1.08);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.16); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,162,39,0.14), transparent 60%),
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.55) 40%, rgba(10,9,8,0.95) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: .03em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--fg);
}
.hero__title span { display: inline-block; }
.hero__amp {
  color: var(--gold);
  margin: 0 12px;
  font-style: italic;
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-dim);
  max-width: 620px;
  margin: 0 auto 34px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid var(--gold);
  border-radius: 20px;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease infinite;
}
@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #14110a;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,162,39,0.35);
}
.btn--ghost {
  border-color: rgba(245,243,238,0.35);
  color: var(--fg);
  background: rgba(255,255,255,0.03);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ---------- genre ticker ---------- */
.genre-ticker {
  background: var(--gold);
  color: #14110a;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
  z-index: 1;
}
.genre-ticker__track {
  display: inline-flex;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .08em;
  animation: ticker-scroll 26s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .genre-ticker__track { animation: none; }
}

/* ---------- sections ---------- */
.section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 50%, transparent);
}
.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section__inner--narrow { max-width: 800px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  font-weight: 600;
}
.section--narrow .eyebrow, .section__inner--narrow .eyebrow { display: block; }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: .02em;
  margin: 0 0 24px;
  line-height: 1.1;
}
.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-dim);
  max-width: 780px;
}
.section__inner--narrow .lead { margin: 0 auto 18px; }
.muted { color: var(--fg-dim); font-weight: 400; font-size: 0.85em; }

/* ---------- cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.card__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: .02em;
  margin: 10px 0 12px;
}
.card p, .card__list li {
  color: var(--fg-dim);
  font-size: .95rem;
  line-height: 1.7;
}
.card__list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- format strip ---------- */
.format-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.format-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.format-box h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: .03em;
  margin: 0 0 8px;
  color: var(--gold-light);
}
.format-box p {
  margin: 0;
  color: var(--fg-dim);
  font-size: .9rem;
  line-height: 1.5;
}
.format-box--gold {
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.02));
  border-color: var(--gold);
}

/* ---------- video grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.video-card video {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  display: block;
  background: #000;
}
.video-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .02em;
  font-size: 1.2rem;
  margin: 0;
  padding: 14px 18px;
}
.video-card__play {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: calc(100% - 52px);
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}
.video-card__play::before {
  content: '';
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(201,162,39,0.9);
  box-shadow: 0 0 0 0 rgba(201,162,39,0.5);
  animation: pulse-play 2.2s ease infinite;
  clip-path: polygon(35% 25%, 35% 75%, 75% 50%);
}
.video-card__play.hidden { display: none; }
@keyframes pulse-play {
  0% { box-shadow: 0 0 0 0 rgba(201,162,39,0.45); }
  70% { box-shadow: 0 0 0 22px rgba(201,162,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}

/* ---------- gallery ---------- */
.gallery {
  margin-top: 50px;
  columns: 4 220px;
  column-gap: 16px;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
}
.gallery__item img {
  width: 100%;
  transition: transform .5s ease, filter .5s ease;
  filter: grayscale(0.15);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1.05);
}
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 0 var(--gold);
  transition: box-shadow .3s ease;
  border-radius: 12px;
  pointer-events: none;
}
.gallery__item:hover::after {
  box-shadow: inset 0 0 0 3px var(--gold);
}

/* ---------- release / spotify ---------- */
.release {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.release__art img {
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.spotify-embed {
  margin: 24px 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.spotify-embed iframe { display: block; }

/* ---------- contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  text-align: left;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.contact__item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.contact__icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
  color: var(--gold-light);
}
.contact__icon svg { width: 20px; height: 20px; }
.contact__item strong {
  display: block;
  font-size: .95rem;
}
.contact__item small {
  color: var(--fg-dim);
  font-size: .82rem;
  white-space: nowrap;
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  padding: 50px 24px 34px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer__logo { height: 34px; margin: 0 auto 20px; opacity: .85; }
.footer__socials {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer__socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-dim);
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}
.footer__socials svg { width: 17px; height: 17px; }
.footer__socials a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer__copy {
  color: var(--fg-dim);
  font-size: .82rem;
  margin: 0;
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,5,4,0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: lightbox-in .3s ease;
}
@keyframes lightbox-in {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--fg);
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease;
}
.lightbox__close {
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  font-size: 24px;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  font-size: 18px;
}
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--gold);
  color: #14110a;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
  .format-strip { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .release { grid-template-columns: 1fr; gap: 36px; }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 3 160px; }
}
@media (max-width: 720px) {
  .navbar__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(10,9,8,0.98);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 105;
  }
  .navbar__links.open { transform: translateX(0); }
  .navbar__burger { display: flex; }
  .video-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .gallery { columns: 2 140px; }
  .lightbox__nav { width: 40px; height: 40px; }
}
