@font-face {
  font-family: "Baanoo";
  src: url("assets/fonts/Baanoo.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("assets/fonts/EBGaramond-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("assets/fonts/EBGaramond-Italic-Variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #080805;
  --ink-raised: #0d0e0a;
  --ink-brown: #15120b;
  --bone: #e9e4d6;
  --bone-muted: #aaa596;
  --ash: #6d6b63;
  --gold: #ffd000;
  --bronze: #76611c;
  --line: rgba(233, 228, 214, 0.16);
  --gold-line: rgba(255, 208, 0, 0.38);
  --max: 1280px;
  --gutter: clamp(22px, 4vw, 70px);
  --mouse-x: 50vw;
  --mouse-y: 25vh;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--bone);
  background:
    radial-gradient(circle at 12% 18%, rgba(102, 85, 20, 0.11), transparent 27%),
    radial-gradient(circle at 82% 72%, rgba(77, 61, 12, 0.08), transparent 24%),
    var(--ink);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.grain {
  position: fixed;
  z-index: 90;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.19;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.74'/%3E%3C/svg%3E");
  animation: grain-shift 0.32s steps(2) infinite;
}

.pointer-light {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    450px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 208, 0, 0.055),
    transparent 68%
  );
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2%, -3%); }
  50% { transform: translate(-3%, 2%); }
  75% { transform: translate(3%, 4%); }
  100% { transform: translate(-2%, -2%); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--gutter);
  border-bottom: 1px solid transparent;
  transition: min-height 300ms ease, background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(8, 8, 5, 0.88);
  border-color: rgba(255, 208, 0, 0.12);
  backdrop-filter: blur(14px);
}

.sigil {
  position: relative;
  z-index: 2;
  justify-self: start;
  width: clamp(132px, 13vw, 205px);
  display: block;
}

.sigil img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 208, 0, 0.22));
  transition: filter 250ms ease, transform 250ms ease;
}

.sigil:hover img,
.sigil:focus-visible img {
  filter: drop-shadow(0 0 19px rgba(255, 208, 0, 0.52));
  transform: scale(1.025);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 54px);
}

.site-nav a,
.header-mark {
  position: relative;
  color: rgba(233, 228, 214, 0.72);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 208, 0, 0.5);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-mark:hover,
.header-mark:focus-visible {
  color: var(--gold);
}

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

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

.header-mark span {
  margin-left: 10px;
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 1px;
  margin: 7px auto;
  background: var(--gold);
  transition: transform 250ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 130px var(--gutter) 100px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 5, 0.36), rgba(8, 8, 5, 0.1) 45%, rgba(8, 8, 5, 0.94)),
    radial-gradient(circle at 50% 44%, transparent 0, rgba(8, 8, 5, 0.32) 58%, rgba(8, 8, 5, 0.82) 100%);
}

.hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: -3%;
  background: url("assets/images/hero-black-sea.png") center 70% / cover no-repeat;
  filter: saturate(0.38) contrast(1.08) brightness(0.58);
  transform: scale(1.03);
  animation: hero-drift 24s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  to { transform: scale(1.08) translate3d(0, -1.2%, 0); }
}

.hero-geometry {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(76vw, 950px);
  aspect-ratio: 1;
  transform: translate(-50%, -48%);
  opacity: 0.28;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.orbit-one {
  inset: 8%;
  animation: slow-spin 80s linear infinite;
}

.orbit-one::before {
  top: 4%;
  left: 23%;
}

.orbit-one::after {
  right: 8%;
  bottom: 18%;
}

.orbit-two {
  inset: 18%;
  border-style: dashed;
  opacity: 0.55;
  animation: slow-spin 120s linear infinite reverse;
}

.orbit-two::before {
  top: 50%;
  left: -3px;
}

.orbit-two::after {
  top: 50%;
  right: -3px;
}

.axis {
  position: absolute;
  top: 50%;
  left: 18%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.34), transparent);
  transform: rotate(-23deg);
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.hero-content {
  width: min(100%, 1120px);
  text-align: center;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.wordmark {
  width: max-content;
  margin: 0 auto 22px;
  color: var(--gold);
  font-family: "Baanoo", serif;
  font-size: clamp(17px, 2.2vw, 28px);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    1px 0 0 rgba(255, 208, 0, 0.38),
    -2px 1px 0 rgba(255, 208, 0, 0.12),
    0 0 22px rgba(255, 208, 0, 0.16);
  transform: skewX(-5deg);
}

.hero h1 {
  margin: 0;
  font-family: "Baanoo", serif;
  font-size: clamp(62px, 10vw, 154px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.76);
}

.hero h1 span {
  display: block;
  margin-bottom: 12px;
  color: var(--bone-muted);
  font-size: 0.22em;
  letter-spacing: 0.7em;
  transform: translateX(0.35em);
}

.hero-rule {
  width: min(72vw, 740px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 38px auto 24px;
}

.hero-rule span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 228, 214, 0.34));
}

.hero-rule span:last-child {
  background: linear-gradient(90deg, rgba(233, 228, 214, 0.34), transparent);
}

.hero-rule i {
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.2em;
}

.hero-subtitle {
  margin: 0 0 18px;
  font-family: "Baanoo", serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 790px;
  margin: 0 auto;
  color: rgba(233, 228, 214, 0.82);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.52;
}

.hero-copy a,
mark {
  padding: 0;
  color: var(--gold);
  background: none;
  text-decoration: underline;
  text-decoration-color: rgba(255, 208, 0, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.button {
  position: relative;
  min-width: 210px;
  min-height: 56px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  padding: 15px 26px;
  border: 1px solid var(--gold);
  border-radius: 0;
  font-family: "Baanoo", serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 260ms ease, background 260ms ease, box-shadow 350ms ease, transform 260ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-115%) skewX(-22deg);
  transition: transform 520ms ease;
}

.button span {
  position: relative;
  z-index: 1;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(115%) skewX(-22deg);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 0 50px rgba(255, 208, 0, 0.42);
  animation: seal-pulse 5s ease-in-out infinite;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 62px rgba(255, 208, 0, 0.62);
}

.button-secondary {
  color: var(--gold);
  background: rgba(8, 8, 5, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 0 42px rgba(255, 208, 0, 0.28);
}

@keyframes seal-pulse {
  50% { box-shadow: 0 0 35px rgba(255, 208, 0, 0.28); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--bone-muted);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(233, 228, 214, 0.2);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: var(--gold);
  animation: descend 2.4s ease-in-out infinite;
}

@keyframes descend {
  from { transform: translateY(-18px); }
  to { transform: translateY(42px); }
}

.hero-index {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  margin: 0;
  color: var(--ash);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  position: relative;
  z-index: 2;
  padding: clamp(110px, 13vw, 190px) var(--gutter);
}

.section-number {
  position: absolute;
  top: 70px;
  left: var(--gutter);
  color: var(--gold);
  font-family: "Baanoo", serif;
  font-size: 14px;
}

.manifesto {
  background:
    linear-gradient(110deg, transparent 60%, rgba(255, 208, 0, 0.025)),
    var(--ink);
}

.manifesto::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 15%;
  right: -12%;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(255, 208, 0, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(255, 208, 0, 0.025) inset;
}

.manifesto-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 0.9fr 0.85fr 0.8fr;
  gap: clamp(42px, 6vw, 100px);
  align-items: start;
  margin: 0 auto;
}

.manifesto-heading {
  padding-top: 50px;
}

.manifesto h2,
.dates h2,
.relics h2,
.site-footer h2 {
  margin: 0;
  font-family: "Baanoo", serif;
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.manifesto h2 em {
  color: var(--gold);
  font-style: normal;
}

.manifesto-copy {
  padding-top: 105px;
}

.manifesto-copy p {
  margin: 0 0 28px;
  color: var(--bone-muted);
  font-size: 18px;
}

.manifesto-copy .lead {
  color: var(--bone);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.55;
}

.signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.signature span {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.signature p {
  margin: 0;
  color: var(--ash);
  font-size: 15px;
  font-style: italic;
  line-height: 1.45;
}

.manifesto-image {
  margin: 0;
}

.image-frame {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 208, 0, 0.18);
}

.image-frame::before,
.image-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-color: var(--gold);
  pointer-events: none;
}

.image-frame::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.image-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1) sepia(0.08) contrast(1.2) brightness(0.7);
}

.manifesto-image figcaption,
.album figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  color: var(--ash);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-image figcaption span {
  color: var(--gold);
}

.members {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 208, 0, 0.045), transparent 28%),
    #070704;
}

.member-grid {
  width: min(100%, 1420px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
  margin: 75px auto 0;
}

.member-card {
  position: relative;
  min-width: 0;
}

.member-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(155deg, transparent 20%, rgba(255, 208, 0, 0.035) 52%, transparent 78%),
    radial-gradient(circle at 50% 33%, #24241c 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 50% 60%, #181914 0 20%, transparent 20.5%),
    linear-gradient(135deg, #11120e, #050504 70%);
  isolation: isolate;
  transition: border-color 350ms ease, filter 350ms ease;
}

.member-photo::before {
  content: attr(data-initial);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  color: rgba(255, 208, 0, 0.075);
  font-family: "Baanoo", serif;
  font-size: clamp(100px, 13vw, 190px);
  line-height: 1;
  transform: translate(-50%, -50%);
}

.member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 208, 0, 0.15) 50%, transparent 50.3%),
    linear-gradient(0deg, rgba(8, 8, 5, 0.85), transparent 50%);
}

.member-photo img {
  aspect-ratio: 3 / 4 !important;
  width: 100% !important;
  height: auto;
  object-fit: cover;
}

.member-photo.has-image {
  display: block;
}

.member-photo.has-image img {
  filter: grayscale(1) contrast(1.08) brightness(0.72);
  transition: filter 500ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.member-card:hover .member-photo.has-image img {
  filter: grayscale(0.78) contrast(1.12) brightness(0.88);
  transform: scale(1.035);
}

.member-photo span {
  color: var(--ash);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.member-card:hover .member-photo {
  border-color: var(--gold-line);
  filter: brightness(1.15);
}

.member-copy {
  padding: 20px 4px 0;
  border-top: 1px solid var(--gold-line);
}

.member-copy p {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.member-copy h3 {
  margin: 0;
  font-family: "Baanoo", serif;
  font-size: clamp(24px, 2.3vw, 37px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.member-copy > span,
.member-copy small {
  display: block;
}

.member-copy > span {
  margin-top: 12px;
  color: var(--bone-muted);
  font-size: 18px;
  font-style: italic;
}

.member-copy small {
  margin-top: 5px;
  color: var(--ash);
  font-size: 14px;
}

.release {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(8, 8, 5, 0.9), rgba(8, 8, 5, 0.96)),
    url("assets/images/hero-black-sea.png") center / cover fixed;
}

.release-haze {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.045);
  filter: blur(100px);
  transform: translateX(-50%);
}

.section-header.centered {
  position: relative;
  text-align: center;
}

.section-header h2,
.archive-title h2 {
  margin: 0;
  font-family: "Baanoo", serif;
  font-size: clamp(55px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.section-header > p:last-child {
  margin: 22px 0 0;
  color: var(--bone-muted);
  font-size: 19px;
  font-style: italic;
}

.release-layout {
  position: relative;
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  margin: 85px auto 0;
}

.album {
  position: relative;
  margin: 0;
}

.album-sleeve {
  position: relative;
  padding: 8px;
  background: #050504;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
  transform: rotate(-1.4deg);
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.album:hover .album-sleeve {
  transform: rotate(0deg) scale(1.012);
}

.album-sleeve img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.12) saturate(0.55) brightness(0.76);
}

.album-shadow {
  position: absolute;
  z-index: -1;
  right: -17px;
  bottom: 12px;
  left: 18px;
  height: 70%;
  background: rgba(255, 208, 0, 0.11);
  filter: blur(28px);
  transform: rotate(3deg);
}

.album-stamp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 208, 0, 0.5);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(8, 8, 5, 0.54);
  font-family: "Baanoo", serif;
}

.album-stamp small {
  position: absolute;
  bottom: 5px;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.release-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.track {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr auto 20px;
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone-muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 250ms ease, padding 250ms ease;
}

.track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18px;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(255, 208, 0, 0.6);
  transform: scaleY(0);
  transition: transform 250ms ease;
}

.track:hover,
.track:focus-visible,
.track.is-playing {
  padding-left: 8px;
  color: var(--bone);
}

.track:hover::before,
.track:focus-visible::before,
.track.is-playing::before {
  transform: scaleY(1);
}

.track-no {
  color: var(--ash);
  font-size: 14px;
  letter-spacing: 0.15em;
}

.track-name {
  font-size: 20px;
}

.track-time {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track i {
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.track.is-playing i {
  border-radius: 0;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(255, 208, 0, 0.55);
  animation: track-pulse 1.2s ease-in-out infinite;
}

@keyframes track-pulse {
  50% { transform: scale(0.55); opacity: 0.6; }
}

.release-player {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 22px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--gold-line);
  background:
    linear-gradient(105deg, rgba(255, 208, 0, 0.07), transparent 64%),
    rgba(8, 8, 5, 0.52);
}

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

.player-copy span,
.player-control {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.player-copy strong {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: var(--bone);
  font-family: "Baanoo", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.player-progress {
  grid-column: 1 / -1;
  height: 3px;
  overflow: hidden;
  background: rgba(233, 228, 214, 0.14);
}

.player-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(255, 208, 0, 0.55);
  transition: width 120ms linear;
}

.player-control {
  min-width: 82px;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 208, 0, 0.55);
  background: transparent;
  cursor: pointer;
}

.player-control:disabled {
  color: var(--ash);
  cursor: not-allowed;
  border-color: var(--line);
}

.track.is-unavailable,
.track:disabled {
  padding-left: 0;
  color: var(--ash);
  cursor: not-allowed;
  opacity: 0.38;
}

.track.is-unavailable:hover,
.track.is-unavailable:focus-visible,
.track:disabled:hover,
.track:disabled:focus-visible {
  padding-left: 0;
  color: var(--ash);
}

.track.is-unavailable::before,
.track:disabled::before {
  transform: scaleY(0);
}

.track.is-unavailable i,
.track:disabled i {
  border-color: var(--ash);
}

.text-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 34px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.release-note {
  margin: 28px 0 0;
  color: var(--bone-muted);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
}

.text-link span {
  font-size: 20px;
  line-height: 0.6;
  transition: transform 300ms ease;
}

.text-link:hover span {
  transform: rotate(90deg);
}

.dates {
  width: min(100%, 1450px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 150px);
  margin: 0 auto;
}

.dates-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.dates-heading > p:last-child {
  max-width: 330px;
  margin-top: 30px;
  color: var(--bone-muted);
  font-size: 18px;
}

.tour-notice {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: clamp(40px, 7vw, 90px);
  border: 1px solid var(--gold-line);
  background:
    linear-gradient(105deg, rgba(255, 208, 0, 0.06), transparent 55%),
    rgba(13, 14, 10, 0.7);
}

.tour-notice::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.tour-notice .tour-glyph {
  position: absolute;
  right: 3%;
  bottom: -0.18em;
  color: rgba(255, 208, 0, 0.045);
  font-family: "Baanoo", serif;
  font-size: clamp(280px, 37vw, 560px);
  line-height: 1;
}

.tour-notice h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Baanoo", serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.tour-notice > p:not(.kicker) {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 24px 0 34px;
  color: var(--bone-muted);
  font-size: 19px;
}

.tour-notice .button {
  position: relative;
  z-index: 1;
}

.date-list {
  border-top: 1px solid var(--gold-line);
}

.date-row {
  position: relative;
  display: grid;
  grid-template-columns: 75px 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 122px;
  border-bottom: 1px solid var(--line);
  transition: padding 320ms ease, background 320ms ease;
}

.date-row::before {
  content: "";
  position: absolute;
  inset: 0 -25px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 208, 0, 0.07), transparent 72%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.date-row:hover {
  padding-left: 10px;
}

.date-row:hover::before {
  opacity: 1;
}

.date-row time {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.date-row time strong {
  font-family: "Baanoo", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.date-row time span,
.date-city span {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.date-city h3 {
  margin: 4px 0 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.date-row > p {
  margin: 0;
  color: var(--bone-muted);
  font-size: 18px;
}

.ticket-link,
.sold-out {
  min-width: 95px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 208, 0, 0.55);
  color: var(--gold);
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.ticket-link {
  cursor: pointer;
}

.ticket-link i {
  float: right;
  font-size: 16px;
  font-style: normal;
  transition: transform 250ms ease;
}

.ticket-link:hover i {
  transform: rotate(90deg);
}

.date-row.is-dim {
  opacity: 0.42;
}

.sold-out {
  color: var(--ash);
  border-color: var(--line);
}

.archive {
  border-top: 1px solid var(--line);
  background: #070704;
}

.archive-title {
  width: min(100%, var(--max));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin: 0 auto 70px;
}

.archive-title > p {
  margin: 0 0 8px;
  color: var(--ash);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery {
  width: min(100%, 1440px);
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.85fr;
  grid-template-rows: 340px 390px;
  gap: 18px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  background: #020201;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  box-shadow: inset 0 -100px 90px rgba(0, 0, 0, 0.58);
  transition: border-color 350ms ease, background 350ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.16) brightness(0.67);
  transform: scale(1.02);
  transition: filter 800ms ease, transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item:hover img {
  filter: grayscale(0.82) sepia(0.12) contrast(1.2) brightness(0.8);
  transform: scale(1.065);
}

.gallery-item:hover::after {
  border-color: var(--gold-line);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: rgba(233, 228, 214, 0.78);
  font-size: 14px;
  font-style: italic;
}

.gallery-item figcaption span {
  margin-right: 12px;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.15em;
}

.gallery-wide {
  grid-column: 1 / 3;
}

.gallery-tall {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gallery-tall img {
  object-position: 48% center;
}

.gallery-square img {
  object-position: center 55%;
}

.gallery-low {
  grid-column: 2;
}

.relics {
  width: min(100%, 1440px);
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  margin: 0 auto;
}

.relics-copy > p:not(.kicker) {
  max-width: 390px;
  margin: 28px 0 38px;
  color: var(--bone-muted);
}

.relics-copy .button {
  min-width: 230px;
}

.relic-visual {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
}

.relic-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 18%;
  right: -8%;
  width: 50%;
  height: 65%;
  background: rgba(255, 208, 0, 0.07);
  filter: blur(70px);
}

.relic-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: grayscale(0.8) sepia(0.1) contrast(1.15) brightness(0.72);
}

.relic-label {
  position: absolute;
  bottom: 40px;
  left: -45px;
  min-width: 230px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(8, 8, 5, 0.9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.relic-label span,
.relic-label small {
  display: block;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.relic-label strong {
  display: block;
  margin: 7px 0;
  font-family: "Baanoo", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.relic-label small {
  color: var(--ash);
}

.price-mark {
  position: absolute;
  top: 36px;
  right: 38px;
  width: 90px;
  height: 90px;
  display: grid;
  place-content: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(8, 8, 5, 0.7);
  text-align: center;
}

.price-mark span {
  font-size: 14px;
  letter-spacing: 0.2em;
}

.price-mark strong {
  font-family: "Baanoo", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.lore {
  min-height: 840px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 208, 0, 0.055), transparent 34%),
    linear-gradient(rgba(7, 7, 4, 0.91), rgba(7, 7, 4, 0.96)),
    url("assets/images/hero-black-sea.png") center / cover;
}

.lore blockquote {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0;
}

.lore blockquote > p {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 51px);
  font-style: italic;
  line-height: 1.4;
}

.lore blockquote footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  color: var(--ash);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lore blockquote footer span {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.lore-mark {
  position: absolute;
  top: 20px;
  left: 8%;
  color: rgba(255, 208, 0, 0.07);
  font-family: "EB Garamond", serif;
  font-size: 420px;
  line-height: 1;
}

.lore-ring {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 208, 0, 0.12);
  border-radius: 50%;
  color: rgba(255, 208, 0, 0.42);
  animation: slow-spin 45s linear infinite;
}

.lore-ring::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(255, 208, 0, 0.16);
  border-radius: 50%;
}

.lore-ring span {
  position: absolute;
  top: 22px;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.lore-ring i {
  font-family: "Baanoo", serif;
  font-size: 64px;
  font-style: normal;
}

.site-footer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 700px;
  padding: clamp(100px, 12vw, 170px) var(--gutter) 40px;
  background:
    linear-gradient(180deg, rgba(8, 8, 5, 0.94), rgba(8, 8, 5, 0.8)),
    url("assets/images/hero-black-sea.png") center bottom / cover;
}

.footer-glow {
  position: absolute;
  bottom: -170px;
  left: 50%;
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.08);
  filter: blur(110px);
  transform: translateX(-50%);
}

.footer-top {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
  margin: 0 auto;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--gold-line);
}

.newsletter label {
  display: block;
  margin-bottom: 16px;
  color: var(--bone-muted);
  font-size: 16px;
  font-style: italic;
}

.newsletter > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--bone-muted);
}

.newsletter input {
  min-width: 0;
  padding: 13px 0;
  border: 0;
  outline: 0;
  color: var(--bone);
  background: transparent;
  font-size: 22px;
}

.newsletter input::placeholder {
  color: var(--ash);
}

.newsletter input:focus {
  box-shadow: 0 1px 0 var(--gold);
}

.newsletter button {
  padding: 0 0 0 28px;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter button span {
  margin-left: 12px;
  font-size: 18px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--ash);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  margin: 34px auto 0;
  color: var(--ash);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  transition: color 200ms ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom > p {
  margin: 0;
  text-align: center;
}

.back-top {
  justify-self: end;
}

.back-top span {
  margin-left: 10px;
  color: var(--gold);
}

.footer-word {
  position: absolute;
  right: 0;
  bottom: -0.18em;
  left: 0;
  color: rgba(233, 228, 214, 0.025);
  font-family: "Baanoo", serif;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.toast {
  position: fixed;
  z-index: 150;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100vw - 48px));
  padding: 15px 20px;
  border-left: 2px solid var(--gold);
  color: var(--bone);
  background: rgba(8, 8, 5, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 208, 0, 0.08);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dynamische Shortcode-Ausgaben. Diese Regeln bleiben bewusst im Seiten-CSS,
   weil der HTML-Editor WordPress-Plugin-CSS isoliert. */
.bst-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background:
    linear-gradient(135deg, transparent, rgba(255, 208, 0, 0.035)),
    #050504;
}

.album-sleeve > .bst-media-placeholder {
  aspect-ratio: 1;
}

.gallery-item > .bst-media-placeholder {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.archive-pagination {
  width: min(100%, 1440px);
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
  margin: 34px auto 0;
}

.archive-page-numbers {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.archive-page {
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--bone-muted);
  background: rgba(8, 8, 5, 0.62);
  font-size: 14px;
  letter-spacing: 0.12em;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.archive-page:hover,
.archive-page:focus-visible,
.archive-page.is-current {
  border-color: var(--gold-line);
  color: var(--gold);
  background: rgba(255, 208, 0, 0.055);
}

.archive-page.is-current {
  cursor: default;
}

.archive-page-next {
  grid-column: 3;
}

.bst-archive-browser [data-bst-archive-content] {
  transition: opacity 180ms ease, filter 180ms ease;
}

.bst-archive-browser.is-loading [data-bst-archive-content] {
  opacity: 0.38;
  filter: grayscale(0.5);
  pointer-events: none;
}

.bst-empty,
.bst-shortcode-error,
.bst-archive-error {
  width: min(100%, 760px);
  margin: 40px auto;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--bone-muted);
  background: rgba(8, 8, 5, 0.48);
  text-align: center;
  font-style: italic;
}

.bst-shortcode-error,
.bst-archive-error {
  border-color: var(--gold-line);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(7px);
  transition:
    opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 1.1s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 5px;
}

@media (max-width: 1050px) {
  .manifesto-grid {
    grid-template-columns: 1fr 0.85fr;
  }

  .manifesto-copy {
    padding-top: 50px;
  }

  .manifesto-image {
    width: min(70%, 460px);
    grid-column: 2;
  }

  .dates {
    grid-template-columns: 1fr;
  }

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

  .dates-heading {
    position: static;
  }

  .dates-heading > p:last-child {
    max-width: 520px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 460px 320px;
  }

  .gallery-wide {
    grid-column: 1 / 3;
  }

  .gallery-tall {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .gallery-low {
    grid-column: 1;
  }

  .relics {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 17px;
  }

  .site-header {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .sigil {
    width: 150px;
  }

  .header-mark {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background:
      linear-gradient(rgba(8, 8, 5, 0.95), rgba(8, 8, 5, 0.98)),
      url("assets/images/hero-black-sea.png") center / cover;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 300ms ease, transform 300ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: "Baanoo", serif;
    font-size: clamp(24px, 7vw, 42px);
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 950px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 100px);
    line-height: 0.9;
  }

  .hero h1 span {
    font-size: 0.25em;
  }

  .hero-geometry {
    width: 130vw;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: min(100%, 310px);
  }

  .hero-index {
    display: none;
  }

  .manifesto-grid,
  .release-layout,
  .relics,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .manifesto-heading,
  .manifesto-copy {
    padding-top: 0;
  }

  .manifesto-image {
    width: min(100%, 520px);
    grid-column: auto;
    margin: 20px auto 0;
  }

  .release-layout {
    gap: 70px;
  }

  .release-player {
    grid-template-columns: 1fr;
  }

  .player-control {
    width: 100%;
    text-align: left;
  }

  .album {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .date-row {
    grid-template-columns: 65px 1fr auto;
    gap: 18px;
    min-height: 110px;
  }

  .date-row > p {
    display: none;
  }

  .archive-title {
    display: block;
  }

  .archive-title > p {
    margin-top: 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(360px, 70vw));
  }

  .gallery-wide,
  .gallery-tall,
  .gallery-square,
  .gallery-low {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-tall img {
    object-position: center 36%;
  }

  .relics-copy {
    padding-bottom: 10px;
  }

  .relic-visual {
    margin-left: 28px;
  }

  .relic-label {
    left: -28px;
  }

  .lore {
    min-height: 760px;
  }

  .lore-ring {
    opacity: 0.5;
  }

  .footer-top {
    align-items: start;
  }

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

  .footer-bottom nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .back-top {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .archive-pagination {
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }

  .archive-page-numbers {
    gap: 5px;
  }

  .archive-page {
    min-width: 36px;
    height: 38px;
  }

  .grain {
    opacity: 0.15;
  }

  .sigil {
    width: 130px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .member-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .member-photo {
    aspect-ratio: 4 / 5;
  }

  .tour-notice {
    min-height: 520px;
    padding: 42px 28px;
  }

  .date-row {
    grid-template-columns: 55px 1fr;
  }

  .date-row .ticket-link,
  .date-row .sold-out {
    grid-column: 2;
    width: 100%;
    margin-top: -20px;
  }

  .date-row time strong {
    font-size: 27px;
  }

  .date-city h3 {
    font-size: 22px;
  }

  .relic-visual {
    margin-left: 0;
  }

  .relic-label {
    right: 20px;
    bottom: 20px;
    left: 20px;
    min-width: 0;
  }

  .price-mark {
    top: 26px;
    right: 26px;
    width: 72px;
    height: 72px;
  }

  .lore blockquote > p {
    font-size: 26px;
  }

  .newsletter input {
    font-size: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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