:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #101113;
  --panel: #17181b;
  --text: #f6f1e8;
  --muted: #b9b1a6;
  --line: rgba(246, 241, 232, 0.16);
  --red: #e11722;
  --red-dark: #870a12;
  --cyan: #14bce8;
  --amber: #d99a45;
  --shadow: rgba(0, 0, 0, 0.72);
  --max: 1180px;
  --header-height: 76px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 28%, rgba(225, 23, 34, 0.24), transparent 30rem),
    radial-gradient(circle at 90% 24%, rgba(20, 188, 232, 0.22), transparent 28rem),
    linear-gradient(180deg, #020202 0%, #090909 45%, #050505 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.7rem 1rem;
  clip: auto;
  color: #050505;
  background: var(--text);
  border-radius: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0.8rem clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.5));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.55rem);
  text-shadow: 2px 2px 0 var(--red-dark), -1px -1px 0 rgba(20, 188, 232, 0.7);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(246, 241, 232, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(225, 23, 34, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.4vw, 1.25rem);
}

.site-nav a,
.language-switch button {
  position: relative;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.language-switch {
  display: inline-flex;
  padding: 0.18rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch button {
  min-width: 2.35rem;
  padding: 0.35rem 0.45rem;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  background: transparent;
}

.language-switch button.is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(86svh, 960px);
  padding: var(--header-height) clamp(1rem, 3vw, 2.5rem) 7rem;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media {
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 34%, rgba(0, 0, 0, 0.12) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.12) 58%, var(--bg) 100%);
}

.hero-content {
  align-self: end;
  width: min(760px, 100%);
  min-width: 0;
  padding-bottom: clamp(1rem, 4vw, 3.5rem);
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 0.8rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow-wrap: normal;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: 9ch;
  font-size: clamp(5rem, 13vw, 12rem);
  text-shadow:
    4px 4px 0 var(--red-dark),
    -3px -2px 0 rgba(20, 188, 232, 0.86),
    0 20px 46px var(--shadow);
}

h2 {
  font-size: clamp(2.35rem, 4.35vw, 4.9rem);
  text-shadow: 3px 3px 0 rgba(135, 10, 18, 0.9);
}

h3 {
  font-size: clamp(1.55rem, 2.1vw, 2.45rem);
}

.hero-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 1px solid rgba(246, 241, 232, 0.26);
  border-radius: 4px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(246, 241, 232, 0.75);
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  color: #fff7ef;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(90deg, var(--red-dark), var(--red));
  box-shadow: 0 16px 34px rgba(225, 23, 34, 0.28);
}

.button-ghost {
  background: rgba(5, 5, 5, 0.52);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 3vw, 2.5rem);
}

.section::before {
  position: absolute;
  top: 0;
  right: clamp(1rem, 3vw, 2.5rem);
  left: clamp(1rem, 3vw, 2.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--cyan), transparent);
  content: "";
  opacity: 0.62;
}

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

.two-column,
.legal-layout,
.about-layout,
.merch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.song-ideas-panel p,
.legal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.releases-section {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.84), rgba(10, 10, 10, 0.96)),
    radial-gradient(circle at 8% 55%, rgba(225, 23, 34, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 44%, rgba(20, 188, 232, 0.18), transparent 24rem);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-note {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.album-panel {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: clamp(1.15rem, 2.2vw, 1.75rem);
  border: 1px solid rgba(217, 154, 69, 0.36);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(225, 23, 34, 0.18), transparent 46%),
    linear-gradient(90deg, rgba(20, 188, 232, 0.1), rgba(255, 255, 255, 0.035));
}

.album-panel h3 {
  font-size: clamp(2rem, 3.4vw, 4rem);
}

.album-panel p:last-child {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  font-weight: 700;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.release-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #0b0b0c;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.release-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-bottom: 1px solid var(--line);
  background: #050505;
  filter: contrast(1.05) saturate(1.08);
}

.release-body {
  padding: 1.1rem;
}

.merch-section {
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.98), rgba(5, 5, 5, 0.9)),
    radial-gradient(circle at 14% 26%, rgba(225, 23, 34, 0.18), transparent 23rem),
    radial-gradient(circle at 88% 58%, rgba(20, 188, 232, 0.16), transparent 25rem);
}

.merch-page {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(3rem, 7vw, 5rem));
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.96), rgba(8, 8, 9, 0.98) 36%, rgba(5, 5, 5, 0.92)),
    radial-gradient(circle at 12% 18%, rgba(225, 23, 34, 0.22), transparent 26rem),
    radial-gradient(circle at 88% 16%, rgba(20, 188, 232, 0.18), transparent 24rem);
}

.merch-page::before {
  top: var(--header-height);
}

.merch-page-inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.8rem);
}

.merch-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.34fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.merch-page h1 {
  max-width: 12ch;
  font-size: clamp(4.3rem, 9.5vw, 8.5rem);
}

.merch-layout {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.32fr);
  align-items: end;
  gap: clamp(1.4rem, 4vw, 4rem);
}

.merch-lead {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 700;
}

.merch-panel {
  grid-column: 1 / -1;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.merch-page-panel {
  width: 100%;
}

.merch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0;
}

.merch-status {
  flex: 1 1 100%;
  margin: 0;
  color: #ffd9a1;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: right;
}

.spreadshop-mount {
  display: grid;
  width: 100%;
  min-height: min(86svh, 56rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  place-items: center;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.05), rgba(225, 23, 34, 0.04)),
    #fff;
  color: #0b0b0c;
  font-family: Arial, Helvetica, sans-serif;
}

.spreadshop-mount.is-loading,
.spreadshop-mount.is-loaded {
  display: block;
  padding: 0;
}

.spreadshop-mount.is-loaded > * {
  width: 100%;
  max-width: none;
}

.spreadshop-mount :where(h1, h2, h3, h4, h5, h6) {
  color: #0b0b0c;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: none;
  text-transform: none;
}

.spreadshop-mount :where(a, button, input, select, textarea) {
  font-family: Arial, Helvetica, sans-serif;
}

.spreadshop-mount > p,
.spreadshop-mount > a {
  max-width: 22rem;
  margin: 0;
  color: #313236;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.about-section {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.86)),
    radial-gradient(circle at 86% 24%, rgba(217, 154, 69, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 70%, rgba(20, 188, 232, 0.14), transparent 24rem);
}

.about-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
}

.about-lead {
  max-width: 45rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  font-weight: 700;
}

.song-ideas-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(225, 23, 34, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.04);
}

.song-ideas-panel h3 {
  margin-bottom: 1rem;
}

.mail-link {
  display: block;
  max-width: 100%;
  margin-top: 1.4rem;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 3.4rem);
  line-height: 1;
  text-decoration: none;
  text-shadow: 3px 3px 0 var(--red-dark), -2px -1px 0 rgba(20, 188, 232, 0.72);
  overflow-wrap: anywhere;
}

.mail-link:hover,
.mail-link:focus-visible {
  color: #fff4e8;
}

.legal-section {
  background: var(--bg-soft);
}

.privacy-section {
  background: #0b0c0e;
}

.legal-layout h2 {
  font-size: clamp(2.35rem, 3.9vw, 4.35rem);
  overflow-wrap: anywhere;
}

.legal-copy {
  display: grid;
  gap: 1.25rem;
}

.legal-copy h3 {
  margin: 0.2rem 0 -0.6rem;
  font-size: 1.35rem;
  color: var(--text);
  text-shadow: 2px 2px 0 rgba(135, 10, 18, 0.8);
}

.legal-copy dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.legal-copy dt {
  color: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
}

.legal-copy dd {
  margin: -0.6rem 0 0;
  color: var(--muted);
}

.legal-copy code {
  padding: 0.1rem 0.25rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  padding: 1.4rem clamp(1rem, 3vw, 2.5rem);
  color: var(--muted);
  background: #030303;
  border-top: 1px solid var(--line);
}

.footer-inner,
.site-footer nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.footer-button {
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
}

.site-footer a:hover,
.footer-button:hover,
.site-footer a:focus-visible,
.footer-button:focus-visible {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto;
  gap: 1.2rem;
  width: min(900px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(246, 241, 232, 0.22);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(225, 23, 34, 0.18), rgba(20, 188, 232, 0.12)),
    rgba(7, 7, 8, 0.95);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  margin: 0;
  justify-content: flex-end;
}

.cookie-actions .button {
  white-space: nowrap;
}

.cookie-actions a {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.8rem 1rem 1rem;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0;
    font-size: 1rem;
  }

  .language-switch {
    justify-self: start;
    margin-top: 0.6rem;
  }

  .hero {
    min-height: 84svh;
    padding-bottom: 4rem;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.58) 45%, var(--bg) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22));
  }

  .two-column,
  .legal-layout,
  .about-layout,
  .merch-layout,
  .merch-page-heading,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .release-card img {
    height: auto;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 0.65rem 1rem;
  }

  .brand span {
    max-width: 13ch;
    overflow-wrap: normal;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .button {
    width: 100%;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 13rem;
  }

  .merch-actions .button {
    width: 100%;
  }

  .merch-status {
    text-align: left;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .cookie-banner {
    right: 1rem;
    left: 1rem;
    width: auto;
  }

  .release-card {
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    min-height: 8rem;
  }

  .release-card img {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 8rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .release-body {
    padding: 0.85rem;
  }

  .release-body .tag {
    margin-bottom: 0.4rem;
    font-size: 0.68rem;
  }

  .release-body h3 {
    font-size: 1.35rem;
  }

  .spreadshop-mount {
    min-height: 26rem;
  }

  body.cookie-visible .hero-content {
    padding-bottom: 15rem;
  }

  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
