:root {
  --ink: #181411;
  --muted: #635c56;
  --paper: #fff7e8;
  --paper-deep: #ead4b7;
  --line: rgba(24, 20, 17, 0.16);
  --gold: #d89b2b;
  --plum: #5b2a50;
  --teal: #0f6d68;
  --coral: #b84c3a;
  --night: #181411;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(24, 20, 17, 0.16);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a.button-link {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.6rem 0.8rem;
  color: var(--white);
  background: var(--night);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.8rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 247, 232, 0.18);
  background: rgba(24, 20, 17, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 34%;
  background: var(--night);
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a,
.button-link,
.detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 247, 232, 0.5);
  color: var(--paper);
  background: var(--night);
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(216, 155, 43, 0.2);
}

.site-nav a {
  color: var(--paper);
  background: var(--night);
  border-color: rgba(255, 247, 232, 0.78);
  box-shadow:
    0 0 0 1px rgba(216, 155, 43, 0.42),
    0 8px 18px rgba(24, 20, 17, 0.14);
}

.site-nav a:hover,
.button-link:hover,
.detail-button:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(216, 155, 43, 0.35);
}

.hero,
.music-section,
.about-section,
.contact-section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  justify-items: center;
  gap: 0;
  width: 100%;
  max-width: none;
  min-height: auto;
  margin: 0;
  padding: clamp(0.35rem, 1vw, 0.85rem) 0;
  overflow: hidden;
  background: var(--night);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: none;
  gap: clamp(0.7rem, 1.4vw, 1.2rem);
  padding: clamp(0.9rem, 2.4vw, 2.4rem);
  color: var(--paper);
  background: var(--night);
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  color: var(--paper);
  font-size: clamp(2.35rem, 3.05vw, 3.85rem);
  line-height: 0.92;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2.35rem);
}

.hero-lede {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 247, 232, 0.78);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-lede,
.about-copy,
.contact-layout p,
.story-list,
.lyrics-block {
  text-align: center;
}

.hero-actions,
.platform-list,
.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0;
  justify-content: center;
}

.hero-photo {
  width: min(76vw, 520px);
  height: auto;
  min-height: 0;
  max-height: min(500px, calc(58vh - 72px));
  object-fit: contain;
  object-position: center;
  border: 2px solid rgba(255, 247, 232, 0.12);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero .button-link {
  color: var(--paper);
  border-color: rgba(255, 247, 232, 0.5);
  background: var(--night);
}

.hero .button-link:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.reveal[data-reveal="left"] {
  transform: translate3d(-52px, 0, 0);
}

.reveal[data-reveal="right"] {
  transform: translate3d(52px, 0, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 0;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--paper);
  border-top: 6px solid var(--gold);
  text-align: center;
}

.section-heading h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.section-heading .eyebrow {
  margin: 0;
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  letter-spacing: 0.04em;
}

.hero-copy .eyebrow {
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  letter-spacing: 0.04em;
}

.about-section .section-heading,
.contact-section .section-heading {
  margin-top: clamp(2.75rem, 6vw, 5rem);
}

.detail-meta {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
}

.release-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  color: var(--paper);
  background: #0f0c0a;
  border: 2px solid var(--gold);
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.release-card:hover,
.release-card:focus-visible {
  background: #17120e;
  box-shadow: 0 0 0 2px rgba(216, 155, 43, 0.35);
}

.release-card img,
.release-art {
  display: block;
  width: 100%;
}

.release-art {
  aspect-ratio: 1;
  overflow: hidden;
  background: #050403;
}

.release-card img {
  height: 100%;
  object-fit: contain;
}

.release-card-body {
  display: grid;
  grid-template-rows: 2.35rem minmax(1.1rem, 1fr) auto auto auto;
  justify-items: center;
  gap: 0;
  width: 100%;
  min-height: 8.4rem;
  padding: 1rem 0.7rem 0.35rem;
}

.release-card h3 {
  grid-row: 1;
  display: block;
  max-height: 2.35rem;
  overflow: hidden;
  color: var(--paper);
  font-size: 1.05rem;
  line-height: 1.08;
}

.release-card .meta {
  grid-row: 4;
  margin-top: 0.14rem;
  color: rgba(216, 155, 43, 0.5);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.5rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.title-parenthetical {
  display: block;
  margin-top: 0.12rem;
  color: rgba(255, 247, 232, 0.68);
  font-size: 0.7em;
}

.release-card .release-artist {
  grid-row: 3;
  margin-top: 0;
  color: rgba(83, 123, 145, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.52rem;
  line-height: 1.18;
  font-weight: 650;
  text-transform: uppercase;
}

.release-card .release-artist span {
  color: rgba(83, 123, 145, 0.72);
  font-size: 0.9em;
}

.release-card p {
  margin: 0;
  color: rgba(255, 247, 232, 0.72);
}

.release-card .release-summary {
  display: none;
}

.detail-button {
  width: 100%;
  min-height: 36px;
  margin-top: 0.3rem;
  padding: 0.35rem 0.5rem;
  font-size: 0.9rem;
  color: var(--paper);
  border-color: rgba(255, 247, 232, 0.24);
  background: rgba(255, 247, 232, 0.08);
  cursor: pointer;
}

.card-cue {
  grid-row: 5;
  display: inline-flex;
  justify-content: center;
  align-self: end;
  margin-top: 0.68rem;
  padding-top: 0;
  color: rgba(216, 155, 43, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.43rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-panel {
  display: grid;
  grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
  gap: clamp(0.9rem, 2.5vw, 1.5rem);
  padding: clamp(0.8rem, 2vw, 1.1rem);
  border: 1px solid rgba(24, 20, 17, 0.35);
  background: #ead6b7;
}

.detail-panel .release-links {
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem;
  margin: 0.7rem -0.45rem 0;
}

.detail-panel .button-link {
  min-height: 32px;
  padding: 0.35rem 0.55rem;
  color: var(--ink);
  background: rgba(255, 247, 232, 0.58);
  border-color: var(--gold);
  font-size: 0.78rem;
}

.detail-panel .button-link:hover {
  color: var(--ink);
  background: var(--gold);
}

.release-dialog {
  width: min(700px, 72vw);
  max-height: min(84vh, 900px);
  padding: 0;
  color: var(--ink);
  background: #ead6b7;
  border: 1px solid rgba(24, 20, 17, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.release-dialog::backdrop {
  background: rgba(24, 20, 17, 0.62);
}

.dialog-body {
  max-height: calc(84vh - 4rem);
  overflow: auto;
  padding: clamp(0.65rem, 1.6vw, 0.95rem);
}

.dialog-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  min-height: 38px;
  color: var(--paper);
  background: var(--night);
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
}

.detail-panel img {
  aspect-ratio: 1;
  width: 100%;
  max-width: 200px;
  justify-self: center;
  margin-inline: auto;
  object-fit: cover;
}

.detail-panel h2,
.detail-panel h3,
.detail-meta {
  text-align: center;
}

.detail-panel h2 {
  font-size: clamp(1.25rem, 2.25vw, 1.85rem);
  font-weight: 650;
}

.detail-panel h3 {
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  font-weight: 700;
}

.detail-meta {
  margin-top: 0.35rem;
  color: rgba(24, 20, 17, 0.56);
  font-size: 0.58rem;
  letter-spacing: 0.03em;
}

.lyrics-heading {
  margin-top: clamp(1.8rem, 3.4vw, 2.6rem);
}

.credits-heading {
  margin-top: clamp(1.8rem, 3.2vw, 2.5rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(24, 20, 17, 0.2);
}

.story-list,
.track-list,
.lyrics-block,
.credits-table,
.booklet-panel,
.album-track-list {
  margin-top: 1.25rem;
}

.story-list p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.track-list {
  padding-left: 1.5rem;
}

.track-list li {
  padding: 0.25rem 0;
}

.album-track-list {
  display: grid;
  gap: 0.5rem;
}

.album-track {
  border: 1px solid rgba(24, 20, 17, 0.18);
  background: rgba(255, 247, 232, 0.36);
}

.album-track header {
  display: grid;
  gap: 0.18rem;
  padding: 0.55rem 0.7rem;
  text-align: center;
}

.album-track header span {
  color: var(--ink);
  font-weight: 700;
}

.album-track header small {
  color: rgba(24, 20, 17, 0.58);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.track-credit-list {
  display: grid;
  gap: 0.25rem;
  padding: 0.25rem 0.7rem 0.7rem;
  font-size: 0.84rem;
}

.track-credit-list div {
  display: grid;
  grid-template-columns: minmax(11.5rem, 0.42fr) 1fr;
  gap: 0.75rem;
  align-items: start;
}

.track-credit-list strong {
  color: var(--plum);
  overflow-wrap: anywhere;
}

.album-track-lyrics {
  margin: 0 0.7rem 0.7rem;
  padding: 0.75rem;
  background: rgba(216, 155, 43, 0.16);
  border-left: 4px solid var(--gold);
  font-size: 0.84rem;
  line-height: 1.45;
  white-space: pre-line;
}

.booklet-panel {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.booklet-panel .button-link {
  min-height: 34px;
  padding: 0.38rem 0.7rem;
  color: var(--ink);
  background: rgba(216, 155, 43, 0.18);
  border-color: rgba(216, 155, 43, 0.75);
  font-size: 0.82rem;
}

.booklet-panel .button-link:hover {
  background: var(--gold);
}

.booklet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  gap: 0.55rem;
  width: 100%;
}

.booklet-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(24, 20, 17, 0.25);
  background: rgba(255, 247, 232, 0.45);
  cursor: zoom-in;
}

.booklet-grid img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.booklet-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(24, 20, 17, 0.86);
  cursor: zoom-out;
}

.booklet-lightbox img {
  width: auto;
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(255, 247, 232, 0.42);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.lyrics-block {
  padding: 0.9rem;
  background: rgba(216, 155, 43, 0.18);
  border-left: 5px solid var(--gold);
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-line;
}

.instrumental-note {
  color: rgba(24, 20, 17, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.credits-table {
  display: grid;
  gap: 0.4rem;
}

.credit-row {
  display: grid;
  grid-template-columns: minmax(11.5rem, 0.42fr) 1fr;
  gap: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  line-height: 1.4;
}

.credit-row strong {
  color: var(--plum);
  white-space: nowrap;
}

.credit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.25rem 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 42rem);
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

.about-copy {
  width: min(42rem, 100%);
  margin-inline: auto;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.about-copy p {
  color: rgba(255, 247, 232, 0.82);
}

.about-copy a {
  color: var(--gold);
  text-underline-offset: 0.18em;
}

.about-copy a:hover {
  color: var(--teal);
}

.about-copy p:first-child {
  margin-top: 0;
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  padding: 1.25rem;
  color: var(--paper);
  background: rgba(91, 42, 80, 0.7);
  border: 2px solid var(--gold);
}

.contact-layout p {
  max-width: 52rem;
  margin: 0;
  font-size: 1.2rem;
}

.platform-list {
  justify-content: center;
}

.contact-layout .button-link {
  color: var(--paper);
  background: var(--night);
  border-color: rgba(255, 247, 232, 0.5);
}

.contact-layout .button-link:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.site-footer {
  padding: 1.5rem;
  color: var(--gold);
  background: var(--night);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.copyright-mark {
  font-size: 0.72em;
}

@media (max-width: 1080px) {
  .detail-panel,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .detail-panel .release-links {
    margin-inline: auto;
  }

  .hero-lede,
  .about-copy,
  .contact-layout p,
  .story-list,
  .lyrics-block {
    text-align: center;
  }
}

@media (max-width: 1280px) {
  .hero {
    width: 100%;
    margin: 0;
    gap: 0;
    min-height: auto;
    padding: 0.5rem 0 0.9rem;
    overflow: hidden;
    background: var(--night);
  }

  .hero-copy {
    padding: clamp(1rem, 2.8vw, 1.75rem) clamp(1rem, 5vw, 3rem) 0;
    color: var(--paper);
    background: var(--night);
  }

  .hero-lede {
    color: rgba(255, 247, 232, 0.78);
  }

  .hero .button-link {
    color: var(--paper);
    border-color: rgba(255, 247, 232, 0.5);
    background: var(--night);
  }

  .hero-photo {
    width: min(50vw, 540px);
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    border-width: 2px 0 0;
  }
}

@media (max-width: 680px) {
  .release-dialog {
    width: calc(100% - 1rem);
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    min-height: 38px;
    padding: 0.45rem 0.65rem;
  }

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

  h1 {
    font-size: clamp(1.9rem, 7vw, 2.75rem);
  }

  h2 {
    font-size: 2.35rem;
  }
}

@media (min-width: 1280px) {
  .release-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

@media (max-width: 440px) {
  .credit-row {
    grid-template-columns: 1fr;
  }
}
