:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-soft: #0c1017;
  --panel: #111722;
  --ink: #f1f3f7;
  --muted: #a8afbb;
  --line: rgba(255, 255, 255, 0.14);
  --red: #9c2033;
  --red-bright: #d34758;
  --blue: #8fa8c8;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(60, 85, 123, 0.13), transparent 26rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  inset: 1rem auto auto 1rem;
  padding: 0.75rem 1rem;
  color: #07090d;
  background: #fff;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.scrolled {
  min-height: 66px;
  background: rgba(7, 9, 13, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  position: relative;
  z-index: 102;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: clamp(1.4rem, 3vw, 3.1rem);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  animation: hero-enter 1.5s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 6, 9, 0.97) 0%, rgba(5, 7, 10, 0.84) 28%, rgba(5, 7, 10, 0.18) 66%, rgba(5, 7, 10, 0.38) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 26%, rgba(0, 0, 0, 0.22) 100%);
}

.hero-content {
  width: min(var(--max), 92vw);
  margin: 6rem auto 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 7ch;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.76;
  text-transform: uppercase;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.38);
}

.hero-copy {
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  font-style: italic;
}

.hero-actions,
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(3, 5, 8, 0.28);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 2.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  display: block;
  width: 48px;
  height: 1px;
  background: currentColor;
}

.section {
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.section h2,
.follow-section h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-intro {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 2rem;
  align-items: stretch;
}

.release-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  min-height: 352px;
  padding: clamp(1.6rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(156, 32, 51, 0.22), transparent 45%),
    var(--panel);
}

.release-number {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.release-type,
.video-meta p {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.release-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.release-card p:not(.release-type) {
  max-width: 530px;
  margin: 1.4rem 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.spotify-frame {
  overflow: hidden;
  min-height: 352px;
  border: 1px solid var(--line);
  background: #121212;
}

.spotify-frame iframe {
  display: block;
  border: 0;
}

.video-section {
  border-top: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.6rem);
}

.video-card {
  border-bottom: 1px solid var(--line);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta {
  padding: 1.4rem 0 1.6rem;
}

.video-meta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 400;
}

.channel-link {
  margin-top: 2.6rem;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.about-mark {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.025);
  font-family: Impact, sans-serif;
  font-size: clamp(15rem, 42vw, 38rem);
  line-height: 1;
}

.about-copy p:not(.eyebrow) {
  max-width: 730px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

.about-copy p:first-of-type:not(.eyebrow) {
  margin-top: 2rem;
}

blockquote {
  align-self: end;
  margin: 0;
  padding: 1.6rem 0 0 1.6rem;
  border-top: 1px solid var(--red-bright);
  border-left: 1px solid var(--red-bright);
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  line-height: 1.25;
}

.shop-section {
  width: 100%;
  max-width: none;
  padding-right: max(5vw, calc((100vw - var(--max)) / 2));
  padding-left: max(5vw, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(18, 25, 36, 0.95), rgba(7, 9, 13, 0.7)),
    radial-gradient(circle at 85% 50%, rgba(156, 32, 51, 0.24), transparent 24rem);
}

.shop-section .section-heading {
  margin-bottom: 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 5rem);
}

.shop-visual {
  position: relative;
  width: min(100%, 360px);
  margin: 0;
  justify-self: start;
}

.shop-visual::after {
  position: absolute;
  z-index: -1;
  inset: 14% 8% 8%;
  background: rgba(211, 71, 88, 0.16);
  filter: blur(55px);
  content: "";
}

.shop-visual img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.shop-copy {
  max-width: 720px;
}

.follow-section {
  padding: clamp(6rem, 12vw, 11rem) 5vw;
  text-align: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.2rem;
  margin-top: 2.8rem;
}

.social-links a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  border-color: var(--red-bright);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 4vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding-inline: 5vw;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    align-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 28px;
    height: 1px;
    margin-left: auto;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.4rem;
    padding: 5rem 2rem;
    background: rgba(7, 9, 13, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    font-family: Impact, sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.04em;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 6, 9, 0.92), rgba(5, 7, 10, 0.12) 86%),
      linear-gradient(0deg, var(--bg), transparent 48%, rgba(0, 0, 0, 0.32));
  }

  .hero-content {
    align-self: end;
    margin-bottom: 14vh;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 24vw, 7.5rem);
  }

  .music-grid,
  .about-section,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-copy {
    max-width: 680px;
  }

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

  blockquote {
    max-width: 570px;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .shop-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .shop-actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    width: min(91vw, var(--max));
  }

  .release-card {
    grid-template-columns: 1fr;
  }

  .spotify-frame,
  .release-card {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
