:root {
  --bg: #060606;
  --bg-soft: #101010;
  --line: rgba(255, 255, 255, 0.18);
  --text: #f0f0ec;
  --muted: #b5b4ae;
  --dim: #77756f;
  --red: #c8141d;
  --red-hot: #f3212b;
  --ash: #d6d2c9;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Impact, "Arial Narrow", "Franklin Gothic Condensed", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 75% 8%, rgba(200, 20, 29, 0.18), transparent 26rem),
    linear-gradient(90deg, #030303 0%, #111 48%, #050505 100%);
}

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

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

button,
input {
  font: inherit;
}

#pic-noise,
.page-grit {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#pic-noise {
  z-index: 100;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.page-grit {
  z-index: 99;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.08), transparent 0.11rem),
    radial-gradient(circle at 70% 62%, rgba(255, 255, 255, 0.07), transparent 0.09rem);
  background-size: auto, 1.9rem 1.9rem, 2.6rem 2.6rem;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--ash));
  box-shadow: 0 0 1.6rem rgba(243, 33, 43, 0.55);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  min-height: 76px;
  padding: 0 3vw;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--ash);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  text-shadow: 0 0 0.8rem rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.primary-nav a {
  position: relative;
  padding: 1.8rem 0 1.55rem;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.28rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red-hot);
  transition: transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.listen-button,
.button,
.tour-list a,
.signup button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.listen-button {
  gap: 1rem;
  padding: 0.8rem 1.35rem;
  background: linear-gradient(135deg, #a60d15, #df151e);
  color: white;
  box-shadow: 0 0 2rem rgba(200, 20, 29, 0.22);
}

.wave {
  width: 34px;
  height: 20px;
  background:
    linear-gradient(#fff, #fff) 0 50% / 3px 7px no-repeat,
    linear-gradient(#fff, #fff) 8px 50% / 3px 14px no-repeat,
    linear-gradient(#fff, #fff) 16px 50% / 3px 20px no-repeat,
    linear-gradient(#fff, #fff) 24px 50% / 3px 12px no-repeat,
    linear-gradient(#fff, #fff) 32px 50% / 2px 8px no-repeat;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: white;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  position: relative;
}

.section-inner {
  width: min(var(--max), calc(100% - 7vw));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 7rem 3vw 3rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: contrast(1.08) saturate(0.88);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.56) 34%, rgba(0, 0, 0, 0.14) 68%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 38%, rgba(0, 0, 0, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
}

.eyebrow,
.section-kicker,
.video-overlay p,
.tour-callout p,
.signup label {
  margin: 0 0 0.35rem;
  color: var(--red-hot);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero h1,
.album-copy h2,
.section-heading h2,
.video-overlay h3,
.tour-callout h3 {
  margin: 0;
  color: var(--ash);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: clamp(5rem, 14vw, 11rem);
  max-width: 100%;
  overflow-wrap: anywhere;
  text-shadow: 0 0.35rem 0.6rem rgba(0, 0, 0, 0.55);
}

.tagline {
  margin: 0.9rem 0 1.4rem;
  color: var(--red-hot);
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  gap: 0.85rem;
  min-width: 170px;
  padding: 0.95rem 1.25rem;
  color: white;
}

.button-primary {
  background: linear-gradient(135deg, #b30f18, #e11923);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
}

.button-ghost {
  background: rgba(0, 0, 0, 0.35);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.66rem solid currentColor;
}

.album {
  padding: clamp(2.5rem, 6vw, 5rem) 0 0;
  background:
    radial-gradient(circle at 84% 15%, rgba(180, 12, 22, 0.18), transparent 24rem),
    linear-gradient(180deg, #090909, #050505);
}

.album-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.album-art-wrap {
  border: 1px solid var(--line);
  background: #0d0d0d;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
}

.album-art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.album-copy h2 {
  font-size: clamp(3.3rem, 8vw, 6.2rem);
}

.title-rule {
  width: 76px;
  height: 4px;
  margin: 1.1rem 0 1.3rem;
  background: var(--red-hot);
}

.album-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.platform-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.platform-row a,
.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ash);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.platform-row a:hover,
.socials a:hover {
  border-color: var(--red-hot);
  background: rgba(200, 20, 29, 0.16);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: 2rem 0 clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.section-heading h2,
.section-heading h3 {
  margin: 0;
  color: var(--red-hot);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  white-space: nowrap;
}

.section-heading span {
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.section-heading a {
  color: var(--red-hot);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.tracklist ol {
  margin: 0;
  padding: 0;
  counter-reset: tracks;
  list-style: none;
}

.audio-player {
  margin-bottom: 1.1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(200, 20, 29, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.now-playing {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.now-playing span {
  color: var(--red-hot);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.now-playing strong {
  color: var(--ash);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  letter-spacing: 0.08em;
}

.audio-player audio {
  width: 100%;
  min-height: 42px;
  accent-color: var(--red);
}

.player-list li {
  counter-increment: tracks;
}

.track-button {
  width: 100%;
  display: grid;
  grid-template-columns: 3.8rem 1fr auto;
  gap: 0.7rem;
  align-items: baseline;
  padding: 0.62rem 0;
  border: 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--ash);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.07em;
  text-align: left;
  cursor: pointer;
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.track-button::before {
  content: counter(tracks, decimal-leading-zero);
  color: var(--red-hot);
}

.track-button:hover,
.track-button.is-playing {
  color: white;
  padding-left: 0.45rem;
}

.track-button.is-playing {
  border-bottom-color: rgba(243, 33, 43, 0.58);
}

.track-button time {
  color: var(--dim);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.video-panel,
.tour-callout {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0b0b0b;
}

.video-panel img,
.tour-callout img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.28) contrast(1.12) brightness(0.72);
}

.video-overlay,
.tour-callout div {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  gap: 1rem;
  padding: 1.3rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 58%);
}

.play-large {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  color: white;
}

.play-large::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1rem solid currentColor;
}

.video-overlay h3,
.tour-callout h3 {
  font-size: clamp(1.4rem, 3.8vw, 2.35rem);
}

.tour,
.band,
.merch {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--line);
  background: #080808;
}

.band {
  background:
    linear-gradient(90deg, rgba(200, 20, 29, 0.1), transparent 42%),
    #060606;
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1fr) auto;
  align-items: center;
  gap: clamp(1.8rem, 5vw, 4rem);
}

.band-grid h2 {
  margin: 0;
  color: var(--ash);
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.band-grid p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.band-stats {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.25rem 0.8rem;
  align-items: baseline;
  padding: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.band-stats strong {
  color: var(--red-hot);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.band-stats span {
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tour-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.4rem;
}

.tour-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-list article {
  display: grid;
  grid-template-columns: 5rem 1fr 1.4fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.72rem 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.16);
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tour-list time {
  color: var(--red-hot);
}

.tour-list span {
  color: var(--dim);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

.tour-list a {
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  color: var(--ash);
  font-size: 0.82rem;
}

.tour-callout {
  min-height: 240px;
}

.tour-callout div {
  display: block;
}

.tour-callout a {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--red-hot);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.merch-grid article {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.merch-grid img,
.product {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  margin-bottom: 0.85rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 20, 29, 0.42), transparent 24%),
    linear-gradient(135deg, #191919, #050505);
}

.product {
  position: relative;
  overflow: hidden;
}

.product::before,
.product::after {
  content: "";
  position: absolute;
  inset: 18% 28%;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(18% 0, 82% 0, 100% 24%, 86% 100%, 14% 100%, 0 24%);
}

.product::after {
  inset: 32% 38%;
  background: linear-gradient(160deg, var(--red-hot), transparent 62%);
  border: 0;
  clip-path: polygon(0 8%, 100% 0, 74% 100%, 28% 82%);
}

.product-hoodie::before {
  clip-path: polygon(18% 0, 82% 0, 100% 18%, 90% 100%, 10% 100%, 0 18%);
}

.product-cap::before {
  inset: 40% 20% 25%;
  border-radius: 80% 80% 28% 28%;
  clip-path: none;
}

.product-cap::after {
  inset: 59% 48% 33% 22%;
  background: #1a1a1a;
  clip-path: polygon(0 0, 100% 15%, 82% 100%, 0 70%);
}

.merch-grid h3,
.merch-grid p {
  margin: 0;
  text-transform: uppercase;
}

.merch-grid h3 {
  color: var(--ash);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.merch-grid p {
  margin-top: 0.22rem;
  color: var(--dim);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-inner {
  width: min(var(--max), calc(100% - 7vw));
  min-height: 160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto minmax(280px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.signup {
  justify-self: end;
  width: min(100%, 520px);
}

.signup label {
  display: block;
  margin-bottom: 0.75rem;
}

.signup div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.signup input {
  min-width: 0;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  background: #080808;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.signup button {
  padding: 0 1.2rem;
  border-color: transparent;
  background: var(--red);
  color: white;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 1rem 3vw 1.6rem;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  body.menu-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 0.9rem 0;
  }

  .primary-nav a::after {
    bottom: 0.55rem;
    right: auto;
    width: 4rem;
  }

  .menu-toggle {
    display: block;
  }

  .album-grid,
  .split-band,
  .band-grid,
  .tour-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

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

  .footer-inner {
    padding: 2rem 0;
  }

  .band-stats {
    width: min(100%, 360px);
  }

  .signup {
    justify-self: stretch;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 70px;
    gap: 0.8rem;
  }

  .brand {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .listen-button {
    min-height: 42px;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }

  .listen-button .wave {
    display: none;
  }

  .primary-nav {
    top: 70px;
  }

  .hero {
    min-height: 720px;
    padding-top: 6rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, transparent 56%, rgba(0, 0, 0, 0.46) 100%);
  }

  .hero-content {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .track-button {
    grid-template-columns: 3rem 1fr auto;
  }

  .tour-list article {
    grid-template-columns: 4.5rem 1fr auto;
  }

  .tour-list span {
    grid-column: 2 / -1;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .section-heading h2,
  .section-heading h3 {
    white-space: normal;
  }

  .section-heading span {
    width: 100%;
  }

  .signup div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .site-header {
    padding: 0 1rem;
  }

  .listen-button {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 5.2rem);
  }

  .album-copy h2 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

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