:root {
  --background: #f1eee8;
  --background-dark: #141414;
  --surface: #ffffff;
  --surface-dark: #202020;
  --text: #191919;
  --text-light: #f7f4ed;
  --muted: #6d6a65;
  --muted-light: #b9b5ae;
  --accent: #a32222;
  --accent-dark: #7f1717;
  --border: rgba(25, 25, 25, 0.14);
  --border-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  --maximum-width: 1180px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 40px), var(--maximum-width));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--background-dark);
  color: var(--text-light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading h2,
.about-content h2 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 400;
}

.section-introduction {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-introduction {
  color: var(--muted-light);
}

.section-subheading {
  margin: 55px 0 22px;
}

.section-subheading h3 {
  margin: 0;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.button-secondary:hover {
  background: #ffffff;
  color: #151515;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--border-light);
  background: rgba(15, 15, 15, 0.92);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 40px), var(--maximum-width));
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-decoration: none;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-navigation a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.main-navigation a:hover {
  color: #ffffff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: #ffffff;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.scroll-hero {
  --hero-progress: 0;
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #111111;
  color: #ffffff;
}

.scroll-hero-background,
.scroll-hero-shade {
  position: absolute;
  inset: 0;
}

.scroll-hero-background {
  background-image: url("../images/gresley-main-promo-wide.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: calc(1 - (var(--hero-progress) * 0.88));
  transform: scale(calc(1 + (var(--hero-progress) * 0.04)));
}


.scroll-hero-shade {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.28), rgba(10, 10, 10, 0.68)),
    radial-gradient(circle at center, transparent 15%, rgba(0, 0, 0, 0.42) 100%);
  opacity: calc(1 - (var(--hero-progress) * 0.35));
}

.scroll-hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.scroll-hero-media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(300px + (min(96vw, 1500px) - 300px) * var(--hero-progress));
  height: calc(400px + (min(86vh, 800px) - 400px) * var(--hero-progress));
  overflow: hidden;
  border-radius: calc(18px - (var(--hero-progress) * 10px));
  background: #000000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.scroll-hero-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.scroll-hero-media-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, calc(0.42 - (var(--hero-progress) * 0.3)));
}

.sound-toggle {
  position: absolute;
  z-index: 8;
  right: 5vw;
  top: 98px;
  display: inline-flex;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, 0.55);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, transform 180ms ease;
}

.sound-toggle:hover {
  background: rgba(163, 34, 34, 0.9);
  transform: translateY(-2px);
}

.sound-toggle-icon {
  font-size: 1rem;
  line-height: 1;
}

.sound-toggle[aria-pressed="true"] {
  background: var(--accent);
}

.skip-intro {
  position: absolute;
  z-index: 8;
  top: 151px;
  right: 5vw;
  padding: 8px 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.skip-intro:hover,
.skip-intro:focus-visible {
  border-color: #ffffff;
  color: #ffffff;
}

.scroll-hero-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(92vw, 1180px);
  justify-content: center;
  font-size: clamp(4.8rem, 14vw, 10.5rem);
  font-family: "Bodoni Moda", Didot, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.045em;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.scroll-hero-title span {
  display: block;
  transition: opacity 100ms linear;
}

.scroll-hero-title-left {
  padding-right: 0.035em;
  transform: translateX(calc(var(--hero-progress) * -65vw));
}

.scroll-hero-title-right {
  padding-left: 0.035em;
  transform: translateX(calc(var(--hero-progress) * 65vw));
}

.scroll-hero-kicker,
.scroll-hero-meta {
  position: absolute;
  z-index: 4;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-hero-kicker {
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-hero-meta {
  right: 5vw;
  bottom: 42px;
  left: 5vw;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
}

.scroll-hero-meta span:first-child {
  transform: translateX(calc(var(--hero-progress) * -40vw));
}

.scroll-hero-meta span:last-child {
  transform: translateX(calc(var(--hero-progress) * 40vw));
}

.scroll-hero-cue {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  left: 50%;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  opacity: calc(1 - var(--hero-progress));
  transform: translateX(-50%);
}

.scroll-hero-cue span {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 3px;
  height: 7px;
  border-radius: 99px;
  background: #ffffff;
  animation: hero-scroll-cue 1.6s ease-in-out infinite;
}

@keyframes hero-scroll-cue {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

@media (max-width: 700px) {
  .scroll-hero {
    min-height: 560px;
  }

  .scroll-hero-media {
    width: calc(250px + (94vw - 250px) * var(--hero-progress));
    height: calc(360px + (68vh - 360px) * var(--hero-progress));
  }

  .scroll-hero-background {
    background-position: 24% center;
    transform: scale(calc(1 + (var(--hero-progress) * 0.03)));
  }

  .scroll-hero-title {
    font-size: clamp(3.5rem, 20vw, 6.5rem);
  }

  .scroll-hero-meta {
    bottom: 24px;
  }

  .sound-toggle {
    top: 88px;
    right: 18px;
  }

  .skip-intro {
    top: 140px;
    right: 18px;
  }

  .scroll-hero-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hero-cue span {
    animation: none;
  }
}

.announcement-banner {
  background: var(--accent);
  color: #ffffff;
}

.announcement-inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.announcement-inner p {
  margin: 0;
}

.announcement-inner a {
  font-weight: 800;
}

.announcement-label {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.featured-card-image {
  min-height: 520px;
}

.featured-card-image img {
  height: 100%;
  object-fit: cover;
}

.featured-card-content {
  display: flex;
  padding: clamp(35px, 6vw, 75px);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.featured-card-content h3 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 400;
}

.featured-card-content p {
  margin: 0 0 18px;
  color: var(--muted);
}

.featured-card-content .button {
  margin-top: 14px;
}

.milestone-card {
  display: grid;
  margin-top: 28px;
  padding: clamp(30px, 5vw, 55px);
  border: 1px solid var(--border);
  border-radius: 8px;
  align-items: center;
  gap: 38px;
  grid-template-columns: auto 1fr;
}

.milestone-number {
  color: var(--accent);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.milestone-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.milestone-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-image-wrap {
  overflow: hidden;
  border-radius: 6px;
}

.about-image {
  min-height: 600px;
  object-fit: cover;
}

.about-content p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted-light);
  font-size: 1.06rem;
}

.album-feature {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.album-cover-wrap {
  overflow: hidden;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.album-information h3 {
  margin: 0 0 25px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 400;
}

.album-information p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
}

.album-stat {
  display: flex;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.album-stat span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.album-stat strong {
  color: var(--accent);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.tracklist-art {
  max-width: 820px;
  margin: 70px auto 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.music-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.music-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
}

.music-card h4 {
  margin: 50px 0 8px;
  font-size: 1.55rem;
}

.music-card p {
  margin: 0;
  color: var(--muted);
}

.music-card a {
  display: inline-block;
  margin-top: 25px;
  color: var(--accent);
  font-weight: 800;
}

.music-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.highlighted-card {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.highlighted-card p,
.highlighted-card .music-number {
  color: rgba(255, 255, 255, 0.76);
}

.highlighted-card a {
  color: #ffffff;
}

.show-summary-grid {
  display: grid;
  margin-bottom: 38px;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: var(--surface-dark);
  color: var(--text-light);
}

.stat-number {
  display: block;
  color: var(--accent);
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.stat-label {
  display: block;
  margin-top: 17px;
  color: var(--muted-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-card-button {
  width: 100%;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.stat-card-button:hover {
  border-color: var(--accent);
  background: #252525;
  transform: translateY(-3px);
}

.stat-card-button .stat-label::after {
  content: " ↓";
  color: var(--accent);
}

.stat-card-button[aria-expanded="true"] .stat-label::after {
  content: " ↑";
}

.show-archive {
  margin-bottom: 55px;
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: 7px;
  background: var(--surface-dark);
}

.archive-heading {
  margin-bottom: 22px;
}

.archive-heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.show-entry,
.song-statistics {
  margin-bottom: 10px;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  overflow: hidden;
  background: #181818;
}

.show-entry summary,
.song-statistics summary {
  position: relative;
  padding: 16px 52px 16px 18px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.show-entry summary::-webkit-details-marker,
.song-statistics summary::-webkit-details-marker {
  display: none;
}

.show-entry summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.show-entry summary::after,
.song-statistics summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.show-entry[open] summary::after,
.song-statistics[open] summary::after {
  content: "−";
}

.show-summary-main {
  display: block;
}

.show-entry-date {
  display: block;
  margin-bottom: 2px;
  color: var(--muted-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.show-summary-main strong {
  display: block;
  color: var(--text-light);
  font-size: 1.05rem;
}

.show-summary-location {
  padding-right: 16px;
  color: var(--muted-light);
  font-size: 0.82rem;
  text-align: right;
}

.show-entry-content {
  padding: 18px;
  border-top: 1px solid var(--border-light);
}

.show-entry-content p {
  margin-top: 0;
  color: var(--muted-light);
}

.show-entry-content ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 45px;
}

.show-entry-content li {
  margin-bottom: 6px;
  break-inside: avoid;
}

.song-statistics {
  margin-top: 24px;
  margin-bottom: 0;
}

.song-statistics summary {
  color: var(--text-light);
}

.song-stat-grid {
  display: grid;
  padding: 18px;
  border-top: 1px solid var(--border-light);
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.song-stat-grid span {
  padding: 10px 12px;
  border-radius: 4px;
  background: #202020;
  color: var(--muted-light);
  font-size: 0.85rem;
}

.song-stat-grid strong {
  margin-right: 7px;
  color: var(--accent);
  font-size: 1rem;
}

.show-feature {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-dark);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.show-poster img {
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.show-information {
  display: flex;
  padding: clamp(35px, 6vw, 70px);
  justify-content: center;
  flex-direction: column;
}

.show-information h3 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 400;
}

.show-date {
  margin: 20px 0;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.show-information p:last-child {
  color: var(--muted-light);
}

.tour-poster {
  max-width: 740px;
  margin: 65px auto 0;
  overflow: hidden;
  border-radius: 6px;
}

.compact-stats {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #e9e5de;
}

.compact-stats-inner {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr)
    auto;
}

.compact-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.compact-stat strong {
  color: var(--accent);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.compact-stat span {
  max-width: 220px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.compact-stats-link {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.compact-stats-link:hover {
  text-decoration: underline;
}

.merch-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merch-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.merch-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.merch-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #e6e2dc;
}

.merch-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.merch-card:hover img {
  transform: scale(1.035);
}

.merch-card-details {
  display: flex;
  padding: 21px 22px 23px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.merch-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.merch-card-details p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.merch-card-details > strong {
  color: var(--accent);
  font-size: 1.05rem;
  white-space: nowrap;
}

.merch-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.merch-store-button {
  margin-top: 35px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #000000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-information {
  margin-top: 24px;
}

.video-information h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.video-information p {
  margin: 0;
  color: var(--muted-light);
}

.links-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.official-links-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.link-card {
  display: flex;
  min-height: 90px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.link-card:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-3px);
}

.link-card span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.link-card:hover span {
  color: rgba(255, 255, 255, 0.72);
}

.link-card strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.highlighted-link-card {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.highlighted-link-card span {
  color: rgba(255, 255, 255, 0.72);
}

.disclaimer {
  max-width: 760px;
  margin: 55px auto 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  background: #0e0e0e;
  color: var(--muted-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.82rem;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.back-to-top:hover {
  background: var(--accent-dark);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .menu-button {
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 45px 30px;
    background: rgba(15, 15, 15, 0.98);
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-navigation a {
    font-size: 1rem;
  }

  .menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .featured-card,
  .about-grid,
  .album-feature,
  .show-feature {
    grid-template-columns: 1fr;
  }

  .featured-card-image {
    min-height: auto;
  }

  .featured-card-image img {
    max-height: 700px;
    object-position: top;
  }

  .about-image {
    min-height: auto;
  }

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

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

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

  .show-poster img {
    min-height: auto;
  }

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

  .compact-stats-link {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .music-grid,
  .merch-grid,
  .links-grid {
    grid-template-columns: 1fr;
  }
}
