:root {
  --black: #050505;
  --white: #f5f5f0;
  --muted: #9a9a93;
  --dim: #55554f;
  --line: rgba(245, 245, 240, 0.16);
  --soft-line: rgba(245, 245, 240, 0.08);
  /* Accent palette (from brand sheet): teal, maroon, navy, sage */
  --accent-teal: #a9ced5;
  --accent-red: #5e0f0c;
  --accent-navy: #0b1560;
  --accent-sage: #7f9a63;
  --accent-sage-light: #9fb783;
  /* Hover aliases retained for existing rules */
  --hover-teal: var(--accent-teal);
  --hover-red: var(--accent-red);
  --hover-navy: var(--accent-navy);
  --hover-olive: var(--accent-sage);
  --hover-olive-light: var(--accent-sage-light);
  --roca: "roca", "Roca", "Times New Roman", Times, serif;
  --serif: "Times New Roman", Times, serif;
  --display: "Times New Roman", Times, serif;
  --gutter: clamp(18px, 4.5vw, 58px);
  --section: clamp(42px, 8vw, 108px);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  /* Aged archival image treatment */
  --aged-filter: grayscale(0.14) sepia(0.1) contrast(1.05) brightness(0.97) saturate(0.92);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  background-color: var(--black);
  color-scheme: dark;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100svh;
  margin: 0;
  background: var(--black);
  background-color: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0;
  padding-bottom: 72px;
}

/* Aged look: vignette + film grain overlays, both non-interactive */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: 9000;
  pointer-events: none;
}

body::before {
  z-index: 8999;
  background:
    radial-gradient(ellipse at 50% 42%, transparent 52%, rgba(0, 0, 0, 0.42) 100%);
}

body::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.1;
  mix-blend-mode: overlay;
  animation: grain-shift 0.6s steps(1) infinite;
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  10% { transform: translate3d(-4%, -3%, 0); }
  20% { transform: translate3d(3%, 2%, 0); }
  30% { transform: translate3d(-2%, 4%, 0); }
  40% { transform: translate3d(4%, -2%, 0); }
  50% { transform: translate3d(-3%, 3%, 0); }
  60% { transform: translate3d(2%, -4%, 0); }
  70% { transform: translate3d(-4%, 2%, 0); }
  80% { transform: translate3d(3%, -3%, 0); }
  90% { transform: translate3d(-2%, -2%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.site-header,
.site-footer,
main {
  position: relative;
}

main {
  z-index: 2;
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, text-decoration-color 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--hover-teal);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.24em;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 48px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 12px var(--gutter);
  border-bottom: 1px solid var(--soft-line);
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}

.wordmark {
  color: var(--white);
  font-family: var(--roca);
  font-size: 1.06rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: lowercase;
}

.header-inquiries {
  justify-self: end;
  padding: 5px 13px;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-inquiries:hover,
.header-inquiries:focus-visible {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: var(--white);
  text-decoration: none;
}

/* Accent-colored link "outlines" cycling through the palette */
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}

.site-nav a:nth-child(1):hover,
.site-nav a:nth-child(1):focus-visible {
  text-decoration-color: var(--accent-teal);
}

.site-nav a:nth-child(2):hover,
.site-nav a:nth-child(2):focus-visible {
  text-decoration-color: var(--accent-sage-light);
}

.site-nav a:nth-child(3):hover,
.site-nav a:nth-child(3):focus-visible {
  text-decoration-color: var(--accent-teal);
}

.site-header nav,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

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

.site-header nav a,
.socials a,
.release-object a,
.email-submit,
.header-email,
.index-contact a {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.wordmark:hover,
.wordmark:focus-visible,
.site-header nav a:hover,
.site-header nav a:focus-visible,
.email-submit:hover,
.email-submit:focus-visible,
.index-jump-list a:hover,
.index-jump-list a:focus-visible {
  color: var(--hover-teal);
}

.socials a {
  padding: 1px 3px;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--white);
  text-decoration: none;
}

.socials a:nth-child(1):hover,
.socials a:nth-child(1):focus-visible {
  background: var(--hover-teal);
  color: var(--black);
}

.socials a:nth-child(2):hover,
.socials a:nth-child(2):focus-visible {
  background: var(--hover-olive);
}

.socials a:nth-child(3):hover,
.socials a:nth-child(3):focus-visible {
  background: var(--hover-navy);
}

.socials a:nth-child(4):hover,
.socials a:nth-child(4):focus-visible {
  background: var(--hover-red);
}

.socials a:nth-child(5):hover,
.socials a:nth-child(5):focus-visible {
  background: var(--hover-olive-light);
  color: var(--black);
}

.header-email {
  justify-self: end;
}

.hero {
  min-height: calc(100svh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  column-gap: clamp(24px, 5vw, 64px);
  row-gap: clamp(16px, 3vw, 34px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px) var(--gutter);
  border-bottom: 1px solid var(--soft-line);
}

.title-stack {
  grid-column: 1;
  align-self: center;
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

h1 {
  max-width: 11ch;
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--roca);
  font-size: clamp(4.4rem, 11vw, 8.8rem);
  font-weight: 100;
  letter-spacing: 0.14em;
  line-height: 0.92;
  text-transform: lowercase;
}

.title-stack p,
.section-heading span,
.release-object p,
.track-reader p:first-child,
.index-hero p,
figcaption {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.album-object {
  grid-column: 2;
  align-self: center;
  justify-self: center;
  width: min(100%, 500px);
  margin: 0;
  display: grid;
  gap: 12px;
}

.album-object figcaption {
  color: var(--white);
  font-size: clamp(1rem, 1.55vw, 1.45rem);
}

.album-object img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #10100f;
  filter: var(--aged-filter);
}

.track-card span,
.index-entry-meta span {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.78rem;
}

/* Tour archive (Chanel-style chronological list) */
.tour-archive {
  padding: var(--section) var(--gutter);
  border-bottom: 1px solid var(--soft-line);
}

.archive-head {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 46px);
}

.archive-head span {
  align-self: start;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.archive-head h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--roca);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.archive-year {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

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

.archive-list li {
  display: grid;
  grid-template-columns: 84px minmax(120px, 0.55fr) minmax(160px, 1fr);
  gap: clamp(12px, 3vw, 40px);
  align-items: baseline;
  padding: clamp(11px, 1.5vw, 18px) 0;
  border-bottom: 1px solid var(--soft-line);
  transition: padding-left 220ms ease;
}

.archive-list li:hover {
  padding-left: 14px;
}

.archive-list time {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.archive-list .city {
  color: var(--white);
  font-family: var(--roca);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  letter-spacing: 0.02em;
  transition: color 220ms ease;
}

.archive-list .venue {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.95rem;
}

.archive-list li:hover .city {
  color: var(--accent-teal);
}

.contact-band,
.release-band,
.index-band,
.archive-band {
  padding: var(--section) var(--gutter);
  border-bottom: 1px solid var(--soft-line);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) auto;
  gap: 28px;
  align-items: center;
}

.email-line {
  max-width: 720px;
  display: grid;
  grid-template-columns: auto minmax(170px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.email-line label {
  color: var(--white);
}

.email-line input {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 3px 0;
}

.email-line input::placeholder {
  color: var(--dim);
}

.email-line input:focus {
  border-color: var(--white);
  outline: 0;
}

.socials {
  justify-content: flex-end;
}

.section-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(22px, 5vw, 58px);
}

.section-heading h2 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

.release-object {
  display: grid;
  gap: 12px;
}

.release-object img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #10100f;
  border: 2px solid transparent;
  filter: var(--aged-filter);
  transition: border-color 220ms ease, filter 220ms ease;
}

.release-object:nth-child(1) img { border-color: var(--accent-teal); }
.release-object:nth-child(2) img { border-color: var(--accent-red); }
.release-object:nth-child(3) img { border-color: var(--accent-sage); }

.release-object:hover img {
  filter: none;
}

.release-object div {
  display: grid;
  gap: 5px;
}

.release-object h3 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 400;
  line-height: 1.08;
}

.release-object a {
  width: fit-content;
}

.track-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.track-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.track-card {
  width: 100%;
  min-height: 52px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--soft-line);
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
  cursor: pointer;
  text-align: left;
}

.track-card img,
.track-card em {
  display: none;
}

.track-card strong {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
}

.track-card:hover,
.track-card:focus-visible,
.track-card.active {
  outline: 0;
}

.track-card:hover strong,
.track-card:focus-visible strong,
.track-card.active strong {
  color: var(--white);
}

.track-reader {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(72px, 116px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.track-reader img {
  width: 100%;
  max-width: 116px;
  justify-self: start;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
}

.track-reader h3 {
  max-width: 10ch;
  margin: 6px 0 20px;
  font-size: clamp(2.35rem, 5.4vw, 5.2rem);
  font-weight: 400;
  line-height: 0.95;
}

.lyric-text,
.track-reader p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.42;
  white-space: pre-line;
}

figcaption {
  padding-top: 8px;
}

.select-gallery {
  min-height: 420svh;
  position: relative;
  padding: clamp(48px, 8vw, 108px) 0 0;
  overflow: clip;
  isolation: isolate;
}

.select-gallery-heading {
  position: sticky;
  top: 64px;
  z-index: 6;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: end;
  padding: 0 var(--gutter) 20px;
  pointer-events: none;
}

.select-gallery-heading span {
  align-self: start;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.select-gallery-heading h2 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.2rem);
  font-weight: 400;
  line-height: 0.92;
}

.select-gallery-field {
  --gallery-track-x: 0px;
  position: sticky;
  top: 132px;
  z-index: 2;
  width: 560vw;
  height: calc(100svh - 204px);
  min-height: 500px;
  transform: translate3d(var(--gallery-track-x), 0, 0);
  will-change: transform;
}

.select-gallery-image {
  --drift-x: 0px;
  --drift-y: 0px;
  position: absolute;
  width: clamp(170px, 18vw, 310px);
  max-height: 44svh;
  object-fit: contain;
  border: 3px solid var(--accent-teal);
  background: #0d0d0c;
  filter: var(--aged-filter);
  transform: translate3d(var(--drift-x), var(--drift-y), 0);
  will-change: transform;
}

.select-gallery-image:nth-child(4n + 1) { border-color: var(--accent-teal); }
.select-gallery-image:nth-child(4n + 2) { border-color: var(--accent-red); }
.select-gallery-image:nth-child(4n + 3) { border-color: var(--accent-navy); }
.select-gallery-image:nth-child(4n + 4) { border-color: var(--accent-sage); }

.select-gallery-image.gallery-size-1 {
  width: clamp(220px, 26vw, 430px);
}

.select-gallery-image.gallery-size-2 {
  width: clamp(140px, 15vw, 260px);
}

.select-gallery-image.gallery-size-3 {
  width: clamp(250px, 31vw, 520px);
}

.horizontal-ready .select-gallery-field,
.horizontal-ready .select-gallery-image {
  transition: transform 80ms linear;
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  min-height: 72px;
  margin-top: 0;
  padding: 16px var(--gutter);
  border-top: 1px solid var(--soft-line);
  background: rgba(5, 5, 5, 0.96);
  color: var(--muted);
}

.index-page .site-header nav a[aria-current="page"] {
  color: var(--white);
}

.index-page {
  --index-kicker-size: clamp(0.78rem, 0.72rem + 0.22vw, 0.92rem);
  --index-link-size: clamp(0.78rem, 0.74rem + 0.16vw, 0.88rem);
  --index-hero-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.15rem);
  --index-track-size: clamp(2rem, 3.8vw, 3.1rem);
  --index-lyric-size: clamp(1.55rem, 2.65vw, 2.85rem);
}

.song-index {
  min-height: 100svh;
}

.index-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: clamp(16px, 2.6vw, 26px);
  padding: clamp(22px, 4vw, 44px) var(--gutter) clamp(24px, 3.5vw, 40px);
  border-bottom: 1px solid var(--soft-line);
}

.index-hero h1 {
  max-width: 7ch;
  justify-self: start;
  font-size: var(--index-hero-size);
  line-height: 0.9;
}

.index-hero > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: var(--index-kicker-size);
  line-height: 1.15;
  text-transform: uppercase;
}

.index-jump-list {
  width: min(100%, 560px);
  justify-self: start;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.index-jump-list li {
  border-bottom: 1px solid var(--soft-line);
}

.index-jump-list a {
  display: grid;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-family: var(--display);
  font-size: var(--index-link-size);
  line-height: 1.15;
  text-transform: uppercase;
}

.index-entry {
  display: grid;
  grid-template-columns: minmax(54px, 0.12fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  padding: var(--section) var(--gutter);
  border-bottom: 1px solid var(--soft-line);
}

.index-entry-meta {
  display: grid;
  gap: 16px;
}

.index-entry-meta img {
  width: min(100%, 58px);
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
}

.index-entry h2 {
  max-width: 12ch;
  margin: 0 0 clamp(22px, 4vw, 42px);
  font-size: clamp(2.4rem, 7.5vw, 6.2rem);
  font-weight: 400;
  line-height: 0.95;
}

.index-entry article > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.index-entry article > .lyric-text {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.42;
}

.lyric-scroll-section {
  min-height: 320svh;
  position: relative;
  padding: clamp(48px, 8vw, 108px) 0 0;
  border-bottom: 1px solid var(--soft-line);
  overflow: clip;
  isolation: isolate;
}

.lyric-track-heading {
  position: sticky;
  top: 64px;
  z-index: 4;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: end;
  padding: 0 var(--gutter) 18px;
  pointer-events: none;
}

.lyric-track-heading span {
  align-self: start;
  color: var(--muted);
  font-family: var(--display);
  font-size: var(--index-kicker-size);
  line-height: 1.15;
}

.lyric-track-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: var(--index-track-size);
  font-weight: 400;
  line-height: 0.94;
}

.lyric-rail {
  --track-x: 0px;
  position: sticky;
  top: 132px;
  z-index: 5;
  height: calc(100svh - 204px);
  min-height: 470px;
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  width: max-content;
  overflow: visible;
  padding: 0 var(--gutter);
  transform: translate3d(var(--track-x), 0, 0);
  will-change: transform;
}

.lyric-image-field {
  display: none;
}

.lyric-panel {
  width: min(78vw, 980px);
  min-height: 100%;
  position: relative;
  display: grid;
  align-items: center;
  flex: 0 0 min(78vw, 980px);
  overflow: visible;
  padding: clamp(22px, 5vw, 72px);
  isolation: auto;
}

.lyric-panel p {
  max-width: min(28ch, 76vw);
  margin: 0;
  position: relative;
  z-index: 3;
  color: var(--white);
  font-size: var(--index-lyric-size);
  line-height: 1.09;
  white-space: pre-line;
  text-wrap: balance;
  text-shadow: none;
  mix-blend-mode: difference;
}

.lyric-panel-image {
  --drift-x: 0px;
  --drift-y: 0px;
  position: absolute;
  z-index: 1;
  width: clamp(138px, 15vw, 225px);
  max-height: 24svh;
  object-fit: contain;
  opacity: 1;
  filter: var(--aged-filter);
  mix-blend-mode: normal;
  will-change: transform;
}

.image-slot-0 {
  left: clamp(18px, 4vw, 58px);
  top: 50%;
  transform: translate3d(var(--drift-x), calc(-50% + var(--drift-y)), 0);
}

.image-solo {
  left: 50%;
  top: 50%;
  max-height: 46svh;
  transform: translate3d(calc(-50% + var(--drift-x)), calc(-50% + var(--drift-y)), 0);
}

.image-size-0 {
  width: clamp(240px, 30vw, 460px);
}

.image-size-1 {
  width: clamp(300px, 38vw, 560px);
}

.image-size-2 {
  width: clamp(200px, 24vw, 380px);
}

.image-size-3 {
  width: clamp(340px, 44vw, 640px);
}

.lyric-emblem-float {
  width: clamp(58px, 7vw, 96px);
  padding: 0;
  background: var(--white);
  filter: none;
}

.lyric-panel:nth-child(odd) p {
  justify-self: start;
}

.lyric-panel:nth-child(even) p {
  justify-self: center;
}

.horizontal-ready .lyric-rail {
  transition: transform 80ms linear;
}

.horizontal-ready .lyric-image-field {
  transition: transform 80ms linear;
}

.horizontal-ready .lyric-panel-image {
  transition: transform 80ms linear;
}

.horizontal-fallback .lyric-scroll-section {
  min-height: auto;
  padding-bottom: clamp(92px, 10vw, 132px);
}

.horizontal-fallback .lyric-track-heading,
.horizontal-fallback .lyric-image-field,
.horizontal-fallback .lyric-rail {
  position: static;
}

.horizontal-fallback .lyric-image-field {
  width: auto;
  height: auto;
  min-height: 0;
  margin-top: 0;
  display: none;
}

.horizontal-fallback .lyric-rail {
  width: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.horizontal-fallback .lyric-panel {
  scroll-snap-align: start;
}

.horizontal-fallback .select-gallery {
  min-height: auto;
  padding: var(--section) var(--gutter);
}

.horizontal-fallback .select-gallery-heading,
.horizontal-fallback .select-gallery-field {
  position: static;
}

.horizontal-fallback .select-gallery-heading {
  padding: 0 0 clamp(22px, 5vw, 58px);
}

.horizontal-fallback .select-gallery-field {
  width: auto;
  height: auto;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  transform: none;
}

.horizontal-fallback .select-gallery-image {
  position: static;
  width: 100%;
  max-height: none;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
  }

  .lyric-scroll-section {
    min-height: auto;
    padding-bottom: clamp(92px, 10vw, 132px);
  }

  .lyric-track-heading,
  .lyric-image-field,
  .lyric-rail {
    position: static;
  }

  .lyric-image-field {
    display: none;
  }

  .lyric-rail {
    width: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .lyric-panel {
    scroll-snap-align: start;
  }

  .lyric-panel-image {
    transform: none;
  }

  .select-gallery {
    min-height: auto;
    padding: var(--section) var(--gutter);
  }

  .select-gallery-heading,
  .select-gallery-field {
    position: static;
  }

  .select-gallery-heading {
    padding: 0 0 clamp(22px, 5vw, 58px);
  }

  .select-gallery-field {
    width: auto;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
    transform: none;
  }

  .select-gallery-image {
    position: static;
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transform: none;
  }
}

.index-contact {
  min-height: 82px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 34px var(--gutter);
  border-bottom: 1px solid var(--soft-line);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px 18px;
  }

  .wordmark {
    grid-row: 1;
    grid-column: 1;
  }

  .header-inquiries {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }

  .site-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .album-object {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    width: min(100%, 420px);
  }

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

  .track-layout {
    grid-template-columns: 1fr;
  }

  .horizontal-fallback .select-gallery-field {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .index-page {
    --index-kicker-size: 0.76rem;
    --index-link-size: 0.78rem;
    --index-hero-size: 1.05rem;
    --index-track-size: clamp(1.9rem, 7vw, 2.8rem);
    --index-lyric-size: clamp(1.55rem, 7.2vw, 2.55rem);
  }

  .contact-band,
  .section-heading,
  .track-reader,
  .index-entry {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.6rem);
  }

  .section-heading h2,
  .track-reader h3,
  .index-entry h2 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
  }

  .email-line,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .archive-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .archive-list li {
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 16px;
    column-gap: 16px;
  }

  .archive-list .venue {
    grid-column: 2;
  }

  .socials {
    justify-content: flex-start;
  }

  .track-reader img {
    display: none;
  }

  .index-hero {
    min-height: auto;
  }

  .index-jump-list {
    justify-self: stretch;
  }

  .lyric-scroll-section {
    min-height: auto;
  }

  .lyric-track-heading {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .lyric-rail {
    grid-auto-columns: minmax(86vw, 1fr);
  }

  .lyric-panel {
    min-height: 460px;
    padding: 26px;
  }

  .lyric-panel p {
    max-width: 82vw;
  }

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

  .horizontal-fallback .select-gallery-field,
  .select-gallery-field {
    grid-template-columns: 1fr;
  }
}

/* Stripped-down teaser: band name left, tour right, one screen, no scroll */
.home-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(44px, 6vw, 128px);
  width: 100%;
  min-height: calc(100svh - 120px);
  max-width: none;
  margin-inline: auto;
  padding: clamp(34px, 7vh, 92px) var(--gutter);
  overflow: hidden;
}

.home-title {
  --title-size: clamp(3rem, 7.5vw, 9rem);
  align-self: center;
  justify-self: start;
  display: grid;
  gap: clamp(20px, 3.5vh, 44px);
}

.home-title h1 {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  font-size: var(--title-size);
  line-height: 0.9;
}

.home-releases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.4vw, 24px);
  width: calc(var(--title-size) * 4.56);
  max-width: 100%;
}

.home-release {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.home-release img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--accent-teal);
  background: #0d0d0c;
  filter: var(--aged-filter);
  transition: filter 220ms ease;
}

.home-release:nth-child(2) img {
  border-color: var(--accent-sage);
}

.home-release span {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-release:hover,
.home-release:focus-visible {
  text-decoration: none;
}

.home-release:hover img,
.home-release:focus-visible img {
  filter: none;
}

.home-release:hover span,
.home-release:focus-visible span {
  color: var(--white);
}

.home-tour {
  align-self: center;
  justify-self: stretch;
  padding: 0;
  border-bottom: 0;
}

.home-tour .archive-head {
  grid-template-columns: 1fr;
  margin-bottom: clamp(8px, 1.6vh, 20px);
}

.home-tour .archive-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  white-space: nowrap;
}

.home-tour .archive-year {
  padding-bottom: clamp(5px, 1vh, 10px);
}

.home-tour .archive-list li {
  padding: clamp(4px, 1vh, 11px) 0;
}

.home-tour .archive-list .city {
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
}

.home-tour .archive-list time {
  font-size: 0.82rem;
}

.home-tour .archive-list .venue {
  font-size: 0.85rem;
}

/* Narrow / short screens: stack and allow normal scrolling */
@media (max-width: 860px), (max-height: 560px) {
  .home-split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(24px, 5vw, 44px);
    overflow: visible;
  }

  .home-title h1 {
    max-width: none;
  }
}

/* Mailing-list signup */
.email-submit {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.email-line .signup-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

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

@media (max-width: 680px) {
  body {
    padding-top: 0;
    padding-bottom: calc(104px + var(--safe-bottom));
    text-align: center;
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9500;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 11px;
    min-height: calc(78px + var(--safe-top));
    padding-top: calc(14px + var(--safe-top));
    padding-bottom: 14px;
    background: var(--black);
    box-shadow: 0 -120px 0 120px var(--black);
    overflow: visible;
  }

  .site-header::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: max(var(--safe-top), 56px);
    background: var(--black);
    pointer-events: none;
  }

  .wordmark,
  .header-inquiries,
  .site-nav {
    grid-column: 1;
    justify-self: center;
  }

  .wordmark {
    grid-row: auto;
  }

  .site-header nav,
  .site-header nav,
  .site-nav {
    grid-row: auto;
    justify-content: center;
    align-items: center;
  }

  .header-inquiries {
    grid-row: auto;
  }

  .site-header nav {
    gap: 8px 20px;
  }

  .header-inquiries {
    padding: 0;
    border: 0;
    color: var(--muted);
    font-size: 0.76rem;
  }

  .site-header {
    grid-template-areas:
      "brand"
      "links";
    grid-template-columns: 1fr;
    width: 100%;
  }

  .wordmark {
    grid-area: brand;
  }

  .site-nav {
    grid-area: links;
  }

  .header-inquiries {
    grid-area: auto;
    position: absolute;
    top: calc(14px + var(--safe-top));
    right: var(--gutter);
    justify-self: end;
    align-self: center;
  }

  .site-header nav {
    justify-self: center;
    padding: 0;
  }

  .home-split {
    justify-items: center;
    padding-top: clamp(28px, 8vw, 52px);
    padding-bottom: clamp(44px, 10vw, 72px);
  }

  .home-title {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .home-title h1 {
    width: auto;
    font-size: clamp(3.2rem, 16vw, 5.2rem);
    letter-spacing: 0.12em;
    text-align: center;
  }

  .home-releases {
    width: min(100%, 310px);
    justify-content: center;
    justify-items: center;
  }

  .home-release {
    justify-items: center;
    text-align: center;
  }

  .home-tour {
    width: min(100%, 360px);
    justify-self: center;
    text-align: center;
  }

  .home-tour .archive-list li,
  .archive-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    padding-block: 16px;
  }

  .archive-list .venue {
    grid-column: auto;
  }

  .site-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9500;
    min-height: 0;
    padding: 12px var(--gutter) calc(14px + var(--safe-bottom));
    background: var(--black);
    box-shadow: 0 120px 0 120px var(--black);
    overflow: visible;
    isolation: isolate;
  }

  .site-footer::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: max(var(--safe-bottom), 34px);
    background: var(--black);
    pointer-events: none;
  }

  .contact-band {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .email-line {
    width: min(100%, 520px);
    max-width: 520px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    justify-items: center;
    align-items: end;
    gap: 8px;
  }

  .email-line label {
    grid-column: auto;
    line-height: 1.1;
    white-space: nowrap;
  }

  .email-line input {
    min-height: 28px;
    text-align: center;
  }

  .email-submit {
    min-height: 28px;
    padding-top: 2px;
    align-self: end;
  }

  .socials {
    justify-content: center;
    gap: 8px 14px;
  }

  .socials a {
    font-size: 0.68rem;
  }

  .index-hero,
  .lyric-track-heading {
    justify-items: center;
    text-align: center;
  }

  .index-hero h1,
  .index-jump-list {
    justify-self: center;
  }

  .index-jump-list a {
    justify-items: center;
  }

  .lyric-scroll-section {
    min-height: 220svh !important;
    padding: clamp(34px, 9vw, 52px) 0 0;
    overflow: clip;
  }

  .lyric-track-heading {
    position: sticky;
    top: calc(150px + var(--safe-top));
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 0 var(--gutter) 16px;
  }

  .lyric-track-heading span {
    justify-self: center;
  }

  .lyric-rail {
    position: sticky;
    top: calc(156px + var(--safe-top));
    width: max-content;
    height: calc(100svh - 284px - var(--safe-top));
    min-height: 360px;
    display: flex;
    gap: 18px;
    padding: 0 var(--gutter);
    overflow: visible;
    transform: translate3d(var(--track-x), 0, 0);
  }

  .lyric-panel {
    width: 84vw;
    min-height: 100%;
    display: grid;
    align-items: center;
    flex: 0 0 84vw;
    padding: 20px 7vw;
    border-bottom: 0;
    overflow: visible;
  }

  .lyric-panel p {
    max-width: min(22ch, 72vw);
    justify-self: center;
    font-size: clamp(1.08rem, 5.1vw, 1.55rem);
    line-height: 1.12;
    text-align: center;
    text-wrap: balance;
    mix-blend-mode: normal;
    text-shadow:
      0 1px 10px rgba(0, 0, 0, 0.78),
      0 0 2px rgba(0, 0, 0, 0.9);
  }

  .lyric-panel-image {
    display: block;
    opacity: 0.62;
  }

  .lyric-emblem-float {
    width: clamp(42px, 13vw, 62px);
    max-height: 14svh;
    opacity: 0.66;
  }

  .image-slot-0 {
    left: 1vw;
    top: 58%;
  }

  .image-solo {
    left: 50%;
    top: 50%;
    max-height: 40svh;
    opacity: 0.6;
  }

  .image-size-0 {
    width: clamp(170px, 56vw, 320px);
  }

  .image-size-1 {
    width: clamp(200px, 66vw, 380px);
  }

  .image-size-2 {
    width: clamp(150px, 48vw, 280px);
  }

  .image-size-3 {
    width: clamp(220px, 74vw, 420px);
  }
}
