:root {
  color-scheme: dark;
  --bg: #050505;
  --ink: #f5f2ec;
  --muted: #b7b0a6;
  --dim: #7e786f;
  --line: rgba(245, 242, 236, 0.16);
  --panel: rgba(20, 20, 18, 0.74);
  --panel-solid: #11110f;
  --ember: #743089;
  --cold: #7fa7a7;
  --shadow: rgba(0, 0, 0, 0.58);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(127, 167, 167, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(201, 111, 55, 0.15), transparent 24rem),
    linear-gradient(180deg, #070707 0%, #050505 44%, #0a0908 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

main {
  padding-bottom: clamp(12rem, 80vh, 60rem);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  min-height: 76px;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(18px);
}

.brand {
  position: absolute;
  top: -18px;
  left: clamp(1rem, 3vw, 2.5rem);
  width: clamp(210px, 18vw, 300px);
  min-width: 0;
  transform: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2rem);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 5vw, 4rem) 8.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.54) 38%, rgba(5, 5, 5, 0.26) 70%, rgba(5, 5, 5, 0.76) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.12) 48%, #050505 100%),
    url("assets/hate-disposal-band.jpg");
  background-position: center 38%;
  background-repeat: no-repeat;
  background-size: contain;
  filter: saturate(0.8) contrast(1.08);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(245, 242, 236, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 236, 0.10) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 72%, transparent);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.88;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.hero-copy,
.section-heading p,
.bio-copy,
.release-panel p,
.empty-state p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 2rem;
}

.hero-actions,
.contact-actions,
.footer-social-links,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.1rem;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 242, 236, 0.42);
}

.button.primary {
  border-color: rgba(201, 111, 55, 0.72);
  background: var(--ember);
  color: #070707;
}

.button.secondary {
  background: rgba(245, 242, 236, 0.04);
}

.icon-button,
.platform-link {
  gap: 0.55rem;
}

.icon-button svg,
.platform-link svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
  scroll-margin-top: 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.7fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-heading.compact {
  display: block;
  margin-bottom: 1.5rem;
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: stretch;
}

.release-list {
  display: grid;
  gap: clamp(1.25rem, 4vw, 3rem);
}

.release-layout-secondary .release-panel h3 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

.release-art {
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px var(--shadow);
}

.release-art img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.release-panel,
.empty-state,
.contact-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(245, 242, 236, 0.055), rgba(245, 242, 236, 0.012));
}

.release-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 4vw, 3rem);
}

.release-kicker,
.empty-date,
.release-note,
.contact-label {
  color: var(--ember);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-panel h3 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  text-transform: uppercase;
}

.link-grid {
  margin-top: 1.2rem;
}

.link-grid a,
.footer-social-links a {
  border-bottom: 1px solid rgba(245, 242, 236, 0.4);
  color: var(--ink);
  font-weight: 800;
}

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

.bio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1fr);
  gap: clamp(1.5rem, 6vw, 5rem);
}

.bio-copy {
  max-width: 760px;
}

.bio-copy p {
  margin-bottom: 1rem;
}

.empty-state {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.contact-section {
  margin-bottom: 7rem;
}

.contact-actions {
  flex-direction: column;
  align-items: flex-start;
}

.footer-social-links {
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ember);
  background: rgba(245, 242, 236, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 242, 236, 0.42);
  background: rgba(116, 48, 137, 0.666);
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.site-footer {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(18px);
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    top: -9px;
    left: 0.5rem;
    width: 190px;
  }

  .nav-toggle {
    position: absolute;
    right: 1rem;
    z-index: 22;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.72);
    color: var(--ink);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    z-index: 21;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    place-content: start center;
    justify-items: center;
    gap: 1.15rem;
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
    font-size: 1rem;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .hero {
    min-height: 88vh;
    padding: 7rem 1rem 7.5rem;
  }

  .hero-media {
    background-position: top;
    margin-top: 68px;
  }

  .section-heading,
  .release-layout,
  .bio-section,
  .empty-state,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .empty-state {
    align-items: start;
  }

  .release-art img {
    min-height: auto;
  }

  .site-footer {
    min-height: 68px;
    padding: 0.7rem 1rem;
  }

  .site-footer > span {
    display: none;
  }

  .footer-social-links {
    position: static;
    transform: none;
    margin: 0 auto;
  }
}

@media (max-width: 460px) {
  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }
}
