:root {
  --ink: #f0ebe1;
  --muted: #9c978c;
  --paper: #1f2223;
  --panel: #2a2d2e;
  --panel-deep: #17191a;
  --accent: #c60000;
  --green: #1db954;
  --line: rgba(240, 235, 225, 0.13);
  --mono: "Space Mono", monospace;
  --serif: "Italiana", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 6.5rem;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(240, 235, 225, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 235, 225, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(7rem, auto) minmax(0, 1fr);
  grid-template-areas:
    "logo socials"
    "logo primary";
  align-items: center;
  gap: .12rem clamp(1rem, 2vw, 1.7rem);
  padding: .55rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  background: rgba(31, 34, 35, .86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.logo-button {
  grid-area: logo;
  display: inline-flex;
  width: clamp(6.4rem, 8.5vw, 7.4rem);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.logo-button img {
  width: 100%;
  height: auto;
  display: block;
}

.primary-nav,
.social-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.primary-nav {
  grid-area: primary;
  justify-content: flex-end;
  justify-self: end;
  gap: clamp(.72rem, 1.35vw, 1.08rem);
}

.primary-nav a,
.site-footer a,
.text-link {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .62rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s ease;
}

.primary-nav a::after,
.site-footer a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: .2em;
  bottom: -.45rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active,
.site-footer a:hover,
.site-footer a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-nav {
  grid-area: socials;
  justify-content: flex-end;
  justify-self: end;
  gap: clamp(.56rem, 1vw, .82rem);
  flex-wrap: wrap;
}

.social-nav a {
  display: inline-flex;
  width: .88rem;
  color: rgba(240, 235, 225, .72);
  transform-origin: center;
  transition: color .2s ease, transform .2s ease;
}

.social-nav a:hover,
.social-nav a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.social-nav svg {
  width: 100%;
  height: auto;
  fill: currentColor;
}

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

.hero-image {
  position: absolute;
  inset: -6vh 0 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 20%;
  z-index: -2;
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(31, 34, 35, .94), rgba(31, 34, 35, .35) 45%, rgba(31, 34, 35, .12)),
    linear-gradient(to right, rgba(31, 34, 35, .55), transparent 55%);
}

.hero-content {
  width: min(100%, 72rem);
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(4.8rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.eyebrow.accent {
  color: var(--accent);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .01em;
}

h1 {
  font-size: clamp(5.4rem, 12vw, 10.5rem);
  line-height: .78;
}

h2 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: .92;
}

.hero-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(3rem, 7vw, 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-cue span {
  width: 1px;
  height: 3rem;
  background: rgba(240, 235, 225, .24);
  transform-origin: top;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 38rem;
  background: var(--panel);
}

.latest-art-panel,
.portrait-panel {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background: var(--panel-deep);
}

.ambient-art {
  position: absolute;
  inset: -22%;
  background:
    radial-gradient(circle at 62% 42%, rgba(198, 0, 0, .2), transparent 34%),
    radial-gradient(circle at 34% 66%, rgba(41, 79, 100, .22), transparent 36%);
  filter: blur(34px);
  opacity: .75;
}

.release-art-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 3rem;
}

.release-art {
  width: min(58vw, 18rem);
  max-height: min(58vw, 18rem);
  height: auto;
  object-fit: contain;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .5);
  will-change: transform;
}

.latest-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: brightness(.78) saturate(.95);
  will-change: transform;
}

.latest-art-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(23, 25, 26, .72), transparent 46%),
    linear-gradient(to right, rgba(23, 25, 26, .18), transparent 55%);
  pointer-events: none;
}

.portrait-panel img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 16%;
  display: block;
}

.section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.45rem;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 6vw, 5rem);
}

.section-copy p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.9;
  letter-spacing: .03em;
}

.rule {
  width: 2.7rem;
  height: 1px;
  background: var(--accent);
  transform-origin: left;
}

blockquote {
  max-width: 34rem;
  margin: .3rem 0 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--accent);
  color: rgba(240, 235, 225, .76);
  font-size: .84rem;
  line-height: 1.8;
  letter-spacing: .03em;
  font-style: italic;
}

.quote-credit {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem !important;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .9rem 1.45rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button.primary {
  background: var(--accent);
  color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-1px);
  background: #e00000;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(240, 235, 225, .22);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.music-section,
.merch-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background: var(--paper);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  margin-bottom: 2.8rem;
}

.music-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15.5rem, 18rem);
  gap: .15rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 2rem;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 1.25rem, #000 calc(100% - 1.25rem), transparent);
  mask-image: linear-gradient(to right, transparent, #000 1.25rem, #000 calc(100% - 1.25rem), transparent);
}

.music-scroller::-webkit-scrollbar {
  display: none;
}

.music-card {
  scroll-snap-align: start;
  display: grid;
  background: var(--panel);
  text-decoration: none;
  color: var(--muted);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .25s ease, background .25s ease;
}

.music-card:hover,
.music-card:focus-visible {
  transform: translateY(-.35rem);
  background: #303435;
}

.art-shell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(198, 0, 0, .32), transparent 36%),
    linear-gradient(135deg, #292d2f, #121415);
}

.art-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background .25s ease;
}

.music-card:hover .art-shell::after,
.music-card:focus-visible .art-shell::after {
  background: rgba(0, 0, 0, .35);
}

.art-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.86);
  opacity: .9;
  transition: transform .35s ease, filter .35s ease;
}

.music-card:hover img,
.music-card:focus-visible img {
  transform: scale(1.04);
  filter: brightness(.7);
}

.music-card > span:not(.art-shell) {
  padding: 0 1.1rem;
}

.music-card .track-name {
  padding-top: 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-card > span:last-child {
  padding-top: .4rem;
  padding-bottom: 1.15rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.merch-viewport {
  position: relative;
  overflow: hidden;
}

.merch-viewport::before,
.merch-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(9rem, 18vw);
  pointer-events: none;
}

.merch-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--paper), transparent);
}

.merch-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--paper), transparent);
}

.merch-track {
  display: flex;
  gap: .15rem;
  width: max-content;
  will-change: transform;
}

.product-card {
  width: min(20rem, 72vw);
  flex: 0 0 auto;
  background: var(--panel);
  text-decoration: none;
  color: var(--ink);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .25s ease, background .25s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-.35rem);
  background: #303435;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #242829;
  filter: brightness(.9);
  transition: filter .25s ease, transform .35s ease;
}

.product-card:hover img,
.product-card:focus-visible img {
  filter: brightness(.7);
  transform: scale(1.03);
}

.product-card span {
  display: block;
  padding: 1rem 1.15rem 1.2rem;
  font-family: var(--serif);
  font-size: 1.32rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--panel);
}

.contact-copy p {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.9;
  letter-spacing: .03em;
}

.mail-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  transition: color .2s ease;
}

.mail-link:hover,
.mail-link:focus-visible {
  color: var(--accent);
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.2rem;
  margin-top: 1.25rem;
}

.community-actions .mail-link {
  margin-top: 0;
}

.newsletter-embed {
  align-self: start;
  width: min(100%, 34rem);
  min-height: 22rem;
  background: rgba(31, 34, 35, .42);
  border: 1px solid rgba(240, 235, 225, .12);
  overflow: hidden;
}

.newsletter-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 20rem;
  border: 0;
  background: transparent;
}

.newsletter-fallback {
  display: block;
  padding: 1rem 1.1rem 1.15rem;
  border-top: 1px solid rgba(240, 235, 225, .1);
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .66rem;
  font-weight: 700;
  transition: color .2s ease;
}

.consent-note {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.65;
}

.consent-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.newsletter-fallback:hover,
.newsletter-fallback:focus-visible {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer img {
  width: 8rem;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
}

.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(34rem, calc(100% - 2rem));
  padding: .9rem 1rem;
  border: 1px solid rgba(240, 235, 225, .18);
  background: rgba(23, 25, 26, .92);
  color: var(--muted);
  backdrop-filter: blur(18px);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, .35);
}

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

.cookie-notice p {
  margin: 0;
  font-size: .66rem;
  line-height: 1.55;
}

.cookie-notice div {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-left: auto;
}

.cookie-notice a,
.cookie-notice button {
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .62rem;
  font-weight: 700;
  cursor: pointer;
}

.legal-page {
  min-height: 100svh;
  background:
    linear-gradient(to bottom, rgba(31, 34, 35, .82), var(--paper)),
    var(--paper);
}

.legal-content {
  width: min(100%, 48rem);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.legal-content h1 {
  margin: 1.4rem 0 2rem;
  font-size: clamp(4rem, 10vw, 7rem);
}

.legal-content h2 {
  margin: 2.3rem 0 .8rem;
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.85;
}

.legal-content a:not(.button) {
  color: var(--ink);
}

.reveal {
  opacity: 1;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(6.5rem, auto) minmax(0, 1fr);
    grid-template-areas:
      "logo socials"
      "logo primary";
    align-items: start;
  }

  .primary-nav {
    justify-content: flex-end;
    justify-self: end;
    overflow: visible;
    padding-bottom: 0;
    flex-wrap: wrap;
  }

  .social-nav {
    justify-self: end;
  }

  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .latest-art-panel {
    min-height: 26rem;
  }

  .portrait-panel {
    min-height: 32rem;
  }

  .latest .section-copy {
    order: -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    gap: .28rem 1rem;
    padding: .55rem 1rem .62rem;
    background: linear-gradient(to bottom, rgba(31, 34, 35, .72), rgba(31, 34, 35, 0));
    backdrop-filter: none;
  }

  .logo-button {
    width: 5.9rem;
  }

  .social-nav {
    gap: .62rem;
    max-width: 10.5rem;
  }

  .social-nav a {
    width: .84rem;
  }

  .primary-nav {
    gap: .42rem .78rem;
    padding-top: 0;
    max-width: 15rem;
  }

  .primary-nav a,
  .site-footer a,
  .text-link {
    font-size: .56rem;
    letter-spacing: .14em;
  }

  .hero {
    min-height: 92svh;
  }

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

  .hero-content {
    padding: 0 1.1rem 4.2rem;
  }

  h1 {
    font-size: clamp(4.4rem, 24vw, 7rem);
  }

  h2 {
    font-size: clamp(2.65rem, 16vw, 4rem);
  }

  .scroll-cue {
    display: none;
  }

  .section-copy {
    padding: 4rem 1.25rem;
    gap: 1.2rem;
  }

  .section-copy p,
  blockquote,
  .contact-copy p {
    font-size: .82rem;
    line-height: 1.8;
  }

  .latest-art-panel {
    min-height: 21rem;
  }

  .release-art {
    width: min(72vw, 16rem);
  }

  .portrait-panel {
    min-height: 27rem;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
    padding: 0 1.25rem;
  }

  .music-scroller {
    grid-auto-columns: minmax(13.75rem, 76vw);
    padding: 0 1.25rem 1.75rem;
  }

  .music-card .track-name {
    font-size: 1.22rem;
  }

  .music-section,
  .merch-section {
    padding: 4.4rem 0;
  }

  .product-card {
    width: 76vw;
  }

  .contact-section {
    padding: 4rem 1.25rem;
    gap: 2.2rem;
  }

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

  .mail-link {
    font-size: .7rem;
    overflow-wrap: anywhere;
  }

  .newsletter-embed {
    width: 100%;
    min-height: 23rem;
  }

  .newsletter-embed iframe {
    min-height: 21rem;
  }

  .site-footer {
    gap: 1.3rem;
    padding: 2.6rem 1.25rem;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 1rem 1.2rem;
  }

  .cookie-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-notice div {
    margin-left: 0;
  }
}

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

  .reveal {
    opacity: 1;
  }
}
