@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/archivo-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/archivo-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/archivo-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda/bodoni-moda-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda/bodoni-moda-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda/bodoni-moda-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono/jetbrains-mono-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono/jetbrains-mono-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #0a0908;
  --panel: #100e0c;
  --panel-hover: #161311;
  --paper: #e8e3da;
  --paper-strong: #f2efe9;
  --copy: #b3a89e;
  --muted: #a1968c;
  --dim: #8a7264;
  --line: #241f1c;
  --line-strong: #4a3f39;
  --accent: #c1402f;
  --accent-dark: #a33324;
  --page-x: clamp(1rem, 4vw, 3.5rem);
  --section-y: clamp(3.5rem, 7vw, 6.875rem);
}

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

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

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Archivo", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent);
}

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

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

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem 1.5rem;
  padding: 0.875rem var(--page-x);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 9, 8, 0.9);
  backdrop-filter: blur(12px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 1.875rem;
  opacity: 0.95;
}

.tagline,
.eyebrow,
.button,
.nav-link,
.nav-toggle,
.site-footer,
.archive summary {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.tagline {
  margin-right: auto;
  color: #98897d;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.site-nav,
.nav-list {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 0.625rem;
}

.nav-list {
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5625rem 0.875rem;
  border: 1px solid transparent;
  color: var(--dim);
  font-size: 0.6875rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  border-color: var(--line-strong);
  color: var(--paper-strong);
}

.nav-toggle {
  display: none;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.6875rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid #3a322d;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.6875rem;
  line-height: 1.35;
}

.button:hover {
  border-color: var(--dim);
  color: var(--paper-strong);
}

.button--accent,
.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button--accent:hover,
.button-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #fff;
}

.site-main {
  width: 100%;
  margin: 0;
  padding: 0;
}

.page:not(.page-home) {
  padding: clamp(2.5rem, 6vw, 5.5rem) var(--page-x);
}

.page > h1 {
  max-width: 16ch;
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.75rem, 6.5vw, 5.75rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.94;
}

.page > p:not(.eyebrow),
.page-band p,
.page-artist > p,
.page-privacy p {
  max-width: 72ch;
  color: var(--copy);
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 1.125rem;
  color: var(--dim);
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem) var(--page-x) 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(232, 227, 218, 0.022) 22px 23px),
    radial-gradient(120% 80% at 50% 0%, #16120f 0%, var(--ink) 62%);
  text-align: center;
}

.hero__logo {
  width: min(47.5rem, 82vw);
  margin: 0 auto;
  filter: drop-shadow(0 0 3.75rem rgba(193, 64, 47, 0.18));
}

.hero__intro {
  max-width: 38.75rem;
  margin: 1.625rem auto 0;
  color: var(--muted);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.625rem 0 0;
}

.hero__facts {
  align-self: end;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: clamp(3rem, 8vh, 6rem) 0 0;
  padding: 1.375rem 0 1.625rem;
  border-top: 1px solid #1d1917;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.hero__facts > div:nth-child(2) {
  text-align: center;
}

.hero__facts > div:last-child {
  text-align: right;
}

.hero__facts dt {
  color: var(--dim);
}

.hero__facts dd {
  margin: 0.25rem 0 0;
  color: var(--paper);
}

.section {
  padding: var(--section-y) var(--page-x);
  border-top: 1px solid #1d1917;
}

.section h2 {
  margin: 0 0 2.375rem;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.125rem, 5vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.show-list,
.release-list {
  display: grid;
  gap: 0.125rem;
}

.show-card {
  display: grid;
  grid-template-columns: minmax(6rem, 8.75rem) minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.625rem 1.25rem;
  border-left: 2px solid var(--accent);
  background: var(--panel);
}

.show-card:hover {
  background: var(--panel-hover);
}

.show-card time {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

.show-card h3 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  font-weight: 600;
  line-height: 1.15;
}

.show-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.archive {
  padding: 1.625rem var(--page-x) var(--section-y);
  border-top: 1px solid #1d1917;
}

.archive summary {
  color: var(--dim);
  cursor: pointer;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  list-style: none;
}

.archive summary::-webkit-details-marker {
  display: none;
}

.archive ol {
  margin: 1.375rem 0 0;
  padding: 0;
  list-style: none;
}

.archive li {
  padding: 0.875rem 0.25rem;
  border-bottom: 1px solid #171412;
  color: #9b8f85;
  font-size: 0.875rem;
}

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

.release > div {
  padding: clamp(2.75rem, 6vw, 5.5rem) var(--page-x);
}

.release > div + div {
  border-left: 1px solid #1d1917;
}

.release h2 {
  margin-bottom: 1.125rem;
}

.release p:not(.eyebrow) {
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.7;
}

.media-placeholder {
  display: grid;
  min-height: 12rem;
  place-items: center;
  padding: 1rem;
  background: repeating-linear-gradient(135deg, #100e0c 0 14px, #141110 14px 28px);
  color: #5c514a;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.release > .media-placeholder {
  min-height: 21.25rem;
}

/* Real artwork replaces the placeholder without taking over half the viewport. */
.release > .release-artwork {
  align-self: center;
  justify-self: center;
  width: min(82%, 32rem);
  aspect-ratio: 1;
  margin: clamp(2rem, 5vw, 4rem) auto;
  object-fit: cover;
}

.section--center {
  text-align: center;
}

.section--center p:not(.eyebrow) {
  max-width: 52ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: 3.5rem;
}

.content-grid h2,
.page-artist h2,
.page-privacy h2,
.page-event h2 {
  margin: 0 0 1.375rem;
  color: var(--dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-band > .media-placeholder {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.page-band > .band-photo {
  width: min(88%, 52rem);
  aspect-ratio: 16 / 9;
  margin: 2rem auto 3.5rem;
  object-fit: cover;
  object-position: center;
}

.member-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #1d1917;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.1875rem, 2vw, 1.625rem);
  font-weight: 600;
}

.member-list span,
.facts {
  color: #9b8f85;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-align: right;
}

.facts {
  margin-top: 1.875rem;
  text-align: left;
  text-transform: uppercase;
}

.release-list {
  margin-top: 3.5rem;
}

.release-card {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) auto;
  gap: clamp(1.125rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.375rem 1.25rem;
  background: var(--panel);
}

.release-card:hover {
  background: var(--panel-hover);
}

.release-card .media-placeholder {
  width: 7.5rem;
  min-height: 0;
  aspect-ratio: 1;
}

.release-card .release-artwork {
  width: 7.5rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.release-card h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.375rem, 2.6vw, 2.125rem);
  font-weight: 600;
  line-height: 1.15;
}

.release-card small {
  display: block;
  margin-top: 0.375rem;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-card p {
  margin: 0.5rem 0 0;
  color: var(--dim);
  font-size: 0.875rem;
}

.product-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.125rem;
  margin-top: 3rem;
}

.product-grid article,
.download-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.375rem;
  background: var(--panel);
}

.product-grid article:hover,
.download-card:hover {
  background: var(--panel-hover);
}

.product-grid .media-placeholder {
  margin: -1.375rem -1.375rem 0.375rem;
  aspect-ratio: 1;
}

.product-grid .product-image {
  align-self: center;
  width: 100%;
  height: clamp(12rem, 16vw, 14rem);
  margin: 0 auto 0.375rem;
  background: #0a0908;
  object-fit: contain;
  object-position: center;
}

.product-grid h2,
.download-card h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.3125rem;
  font-weight: 600;
  line-height: 1.2;
}

.product-grid h2 span {
  float: right;
  margin-left: 0.75rem;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
}

.product-grid p,
.download-card p {
  margin: 0;
  color: var(--dim);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.product-grid a {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-card strong {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
}

.download-card span {
  margin-top: auto;
  color: var(--dim);
  font-size: 0.8125rem;
}

.lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.page-event > ul {
  max-width: 50rem;
  padding-left: 1.25rem;
  color: var(--copy);
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 62rem;
  margin: 2.5rem 0 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.event-facts dt {
  color: var(--dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0;
  color: var(--paper);
}

.artist-header {
  max-width: 74rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.artist-header h1 {
  max-width: 16ch;
  margin: 0 0 2rem;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.75rem, 6.5vw, 5.75rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.94;
}

.artist-header .lead {
  max-width: 54ch;
  margin: 0;
}

.artist-panel {
  display: grid;
  max-width: 74rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}

.artist-panel--release,
.artist-panel--logo {
  grid-template-columns: minmax(18rem, 0.65fr) minmax(0, 1.35fr);
}

.artist-media {
  display: grid;
  min-width: 0;
  place-items: center;
}

.artist-image {
  width: 100%;
  max-height: 34rem;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.artist-image--band {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.artist-image--cover {
  width: min(100%, 26rem);
  aspect-ratio: 1;
}

.artist-image--logo {
  width: min(100%, 24rem);
  max-height: 24rem;
}

.artist-copy {
  min-width: 0;
}

.artist-copy p {
  max-width: 56ch;
  color: var(--copy);
  line-height: 1.75;
}

.artist-copy p:last-child {
  margin-bottom: 0;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-list a {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
}

.link-list a:hover {
  border-color: var(--accent);
}

.page-privacy h2 {
  margin-top: 2.5rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: auto;
  padding: clamp(2.25rem, 5vw, 4rem) var(--page-x);
  border-top: 1px solid #1d1917;
  color: #98897d;
  font-size: 0.6875rem;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 68.75rem) {
  .tagline {
    display: none;
  }
}

@media (min-width: 68.751rem) {
  .page-band > h1,
  .page-event > h1 {
    max-width: none;
  }
}

@media (max-width: 48.75rem) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .site-header[data-menu-open="true"] .site-nav {
    display: flex;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-link,
  .site-nav > .button {
    width: 100%;
  }

  .hero {
    min-height: 78vh;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__facts > div:nth-child(2),
  .hero__facts > div:last-child {
    text-align: center;
  }

  .show-card,
  .release-card,
  .release,
  .content-grid,
  .event-facts {
    grid-template-columns: 1fr;
  }

  .show-card,
  .release-card {
    gap: 0.625rem;
  }

  .release > div + div {
    border-top: 1px solid #1d1917;
    border-left: 0;
  }

  .release > .release-artwork {
    width: min(76%, 22rem);
    margin: 2.5rem auto;
  }

  .release-card .media-placeholder,
  .release-card .release-artwork {
    width: min(100%, 12rem);
  }

  .content-grid {
    gap: 2rem;
  }

  .artist-panel,
  .artist-panel--release,
  .artist-panel--logo {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .artist-panel--release .artist-media {
    width: min(100%, 22rem);
  }

  .artist-panel--logo .artist-media {
    width: min(100%, 18rem);
  }

  .artist-panel--release .artist-media,
  .artist-panel--logo .artist-media {
    justify-self: center;
  }

  .member-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .member-list span {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
