:root {
  --black: #050505;
  --matte: #0b0b0b;
  --charcoal: #1e1e1e;
  --red: #b11226;
  --red-bright: #e51f38;
  --gold: #c9a24d;
  --white: #ffffff;
  --muted: #c9c9c9;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(177, 18, 38, 0.22), transparent 32rem),
    linear-gradient(135deg, var(--black), var(--matte) 52%, #120609);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body:has(.home-hero) {
  background:
    radial-gradient(circle at 85% 18%, rgba(201, 162, 77, 0.16), transparent 21rem),
    radial-gradient(circle at 12% 30%, rgba(177, 18, 38, 0.28), transparent 28rem),
    linear-gradient(135deg, #020202, var(--matte) 58%, #140508);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.24;
  z-index: 10;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1240px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 70px;
  width: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 10px 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

main {
  overflow: hidden;
}

.home-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 112px 0 52px;
  position: relative;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.24)),
    radial-gradient(circle at 72% 48%, rgba(177, 18, 38, 0.25), transparent 25rem);
}

.home-hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(transparent, var(--black));
}

.home-hero-inner {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 6.7vw, 7.35rem);
  line-height: 0.88;
}

.home-hero-copy h1 span {
  display: block;
}

.hero-lines {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.75vw, 1.38rem);
  line-height: 1.48;
}

.home-hero .button-row {
  gap: 10px;
  margin-top: 30px;
}

.home-hero .btn {
  min-height: 48px;
  padding: 12px 15px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.hero-art-card {
  margin: 0;
  justify-self: end;
  width: min(100%, 500px);
  padding: 12px;
  border: 1px solid rgba(201, 162, 77, 0.44);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(177, 18, 38, 0.1));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
  transform: translateY(10px);
}

.hero-art-card img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 3px);
  object-fit: contain;
}

.hero-art-card figcaption {
  padding: 12px 4px 1px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.56)),
    url("../assets/images/Final Cover.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, var(--black));
  z-index: -1;
}

.hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.page-title {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 1000;
  text-transform: uppercase;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 950;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.shop-button,
.preview-button,
.form-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn.primary,
.form-button {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), #6f0715);
}

.btn.gold {
  border-color: rgba(201, 162, 77, 0.75);
  color: #120b03;
  background: linear-gradient(135deg, #f0d37b, var(--gold));
}

.btn:hover,
.shop-button:hover,
.preview-button:hover,
.form-button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.section,
.page-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.page-hero {
  padding: 172px 0 68px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

.featured-release-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.release-copy {
  padding: 24px;
  border-left: 2px solid var(--gold);
}

.release-copy p {
  color: var(--muted);
}

.release-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}

.cover-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cover-card,
.product-card,
.video-card,
.event-card,
.info-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 30, 30, 0.78);
  box-shadow: var(--shadow);
}

.cover-card {
  overflow: hidden;
}

.cover-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cover-card figcaption {
  padding: 12px 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}

.track-list li {
  min-height: 66px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.track-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.buy-track-button {
  border: 1px solid rgba(201, 162, 77, 0.5);
  border-radius: var(--radius);
  min-height: 48px;
  padding: 13px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #140c03;
  background: linear-gradient(135deg, #f0d37b, var(--gold));
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease;
}

.buy-track-button:hover {
  transform: translateY(-2px);
  border-color: var(--white);
}

.buy-track-button.is-unavailable {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.track-number {
  color: var(--gold);
  font-weight: 950;
}

.track-title strong {
  display: block;
  line-height: 1.2;
}

.track-title small {
  color: var(--muted);
}

.preview-button.is-playing {
  border-color: var(--red-bright);
  background: rgba(177, 18, 38, 0.34);
}

.now-playing-section {
  padding-top: 40px;
  padding-bottom: 58px;
}

.now-playing-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(201, 162, 77, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.22), rgba(255, 255, 255, 0.045)),
    rgba(30, 30, 30, 0.86);
  box-shadow: var(--shadow);
}

.player-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.player-body h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 4.8rem);
}

.artist-name,
.player-meta {
  color: var(--muted);
}

.player-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  margin: 26px 0 8px;
  background: rgba(255, 255, 255, 0.12);
}

.player-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-bright), var(--gold));
  transition: width 180ms ease;
}

.player-meta,
.player-controls {
  display: flex;
  align-items: center;
}

.player-meta {
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 850;
}

.player-controls {
  gap: 12px;
  margin-top: 22px;
}

.control-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 72px;
  min-height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.control-button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.play-toggle {
  min-width: 104px;
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), #6f0715);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 58px;
}

.experience-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 30, 30, 0.72);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 77, 0.62);
}

.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.experience-card h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

.experience-card p {
  color: var(--muted);
}

.experience-card .btn {
  margin-top: auto;
}

.wide-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 320px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.18), rgba(201, 162, 77, 0.08)),
    rgba(30, 30, 30, 0.76);
}

.wide-card img {
  height: 100%;
  max-height: 300px;
  aspect-ratio: 16 / 9;
}

.wide-card .btn {
  justify-self: start;
}

.movement-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(201, 162, 77, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.2), rgba(201, 162, 77, 0.08)),
    rgba(30, 30, 30, 0.78);
  box-shadow: var(--shadow);
}

.movement-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.product-grid,
.video-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.video-card,
.event-card,
.info-panel,
.form-panel {
  padding: 18px;
}

.event-card h2 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 16px;
}

.price {
  color: var(--gold);
  font-weight: 950;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: calc(var(--radius) - 2px);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.72)),
    url("../assets/images/Final Cover.jpg") center / cover;
}

.video-frame span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: rgba(177, 18, 38, 0.78);
}

.event-card time,
.meta {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card .event-title-center {
  display: block;
  text-align: center;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding: 13px 14px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #040404;
}

.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 1000;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(201, 162, 77, 0.1);
}

.premium-footer p {
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 860px) {
  .nav {
    min-height: 78px;
  }

  .logo {
    height: 60px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .section-heading,
  .home-hero-inner,
  .featured-release-grid,
  .release-grid,
  .about-grid,
  .contact-grid,
  .now-playing-card,
  .movement-cta,
  .product-grid,
  .video-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 118px;
  }

  .hero-art-card {
    justify-self: stretch;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-card {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .track-list li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .track-list .preview-button {
    width: 100%;
  }

  .track-actions {
    grid-column: 1 / -1;
  }

  .track-actions > * {
    flex: 1 1 150px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding-bottom: 54px;
  }

  .cover-pair {
    grid-template-columns: 1fr;
  }

  .button-row,
  .footer-inner,
  .player-controls,
  .movement-form {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .movement-cta {
    padding: 24px;
  }

  .footer-inner {
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}
