﻿:root {
  --music-gold: #c98d00;
  --music-gold-bright: #f2b21a;
  --music-ink: #050505;
  --music-panel: #0b0b0b;
  --music-panel-soft: #111111;
  --music-line: rgba(242, 178, 26, 0.28);
  --music-line-cool: rgba(140, 170, 210, 0.16);
  --music-text: #f8f5ec;
  --music-muted: #beb6a5;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--music-text);
  background:
    radial-gradient(circle at 72% 0%, rgba(38, 66, 116, 0.22), transparent 32rem),
    linear-gradient(180deg, #040404 0%, #090909 44%, #020202 100%);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.music-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 66px;
  padding: 12px clamp(18px, 3vw, 34px);
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.music-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.music-brand span {
  color: #ffffff;
}

.music-brand strong {
  color: var(--music-gold);
  font-weight: 900;
}

.music-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 2vw, 28px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.music-nav a {
  position: relative;
  padding: 14px 0;
  color: #f3efe7;
}

.music-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--music-gold);
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.music-nav a:hover::after,
.music-nav .is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.music-nav .is-active {
  color: var(--music-gold-bright);
}

.music-header-actions {
  display: flex;
  gap: 9px;
}

.music-header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(242, 178, 26, 0.62);
  border-radius: 4px;
  color: var(--music-gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.music-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.47fr) minmax(360px, 0.53fr);
  align-items: center;
  min-height: clamp(650px, 45vw, 730px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.music-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.05);
}

.music-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.26) 30%, rgba(0, 0, 0, 0.04) 58%, rgba(0, 0, 0, 0.22) 100%),
    radial-gradient(circle at 74% 40%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16) 67%, rgba(0, 0, 0, 0.52) 100%);
  pointer-events: none;
}

.music-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
  pointer-events: none;
}

.music-hero-copy {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  padding: clamp(48px, 7vw, 92px) clamp(22px, 4.3vw, 68px);
}

.music-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--music-gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.music-kicker::before {
  width: 11px;
  height: 11px;
  content: "";
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.music-hero h1 {
  max-width: 490px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.93;
  text-transform: uppercase;
}

.music-hero-copy p:not(.music-kicker) {
  max-width: 470px;
  margin: 22px 0 0;
  color: #eee8db;
  font-size: 17px;
  line-height: 1.65;
}

.music-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.music-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(242, 178, 26, 0.66);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.music-btn::after,
.archive-card span::after,
.blog-card span::after {
  margin-left: 9px;
  content: "->";
}

.music-btn-gold {
  border-color: rgba(255, 205, 74, 0.82);
  background: linear-gradient(180deg, #f5ba2a, #b87a00);
  color: #090909;
  box-shadow: 0 12px 28px rgba(184, 122, 0, 0.24);
}

.music-btn-ghost {
  background: rgba(8, 8, 8, 0.62);
  color: #f9f1e2;
}

.music-quote {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(290px, calc(100% - 34px));
  margin: 92px clamp(22px, 4.3vw, 68px) 0 0;
  padding: 22px 24px 24px;
  border: 1px solid rgba(242, 178, 26, 0.38);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
}

.music-quote span {
  display: block;
  height: 38px;
  color: var(--music-gold-bright);
  font-family: Georgia, serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
}

.music-quote p {
  margin: 12px 0 22px;
  color: #f2eee4;
  font-size: 15px;
  line-height: 1.65;
}

.music-quote strong {
  color: var(--music-gold-bright);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 28px;
  font-weight: 500;
}

.music-proof,
.archive-grid,
.music-mid-grid,
.music-signup,
.music-footer {
  width: min(1170px, calc(100% - 48px));
  margin-inline: auto;
}

.music-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: -25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 7, 7, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.music-proof article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 4px 16px;
  min-height: 88px;
  padding: 17px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.music-proof article:last-child {
  border-right: 0;
}

.proof-symbol {
  grid-row: span 3;
  align-self: center;
  width: 44px;
  height: 44px;
  color: var(--music-gold);
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.guitar-symbol {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M53 7 33 27a14 14 0 1 0 4 4L57 11V7ZM19 51a6 6 0 1 1 0-12 6 6 0 0 1 0 12Zm20-27-3-3 9-9 3 3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M53 7 33 27a14 14 0 1 0 4 4L57 11V7ZM19 51a6 6 0 1 1 0-12 6 6 0 0 1 0 12Zm20-27-3-3 9-9 3 3Z'/%3E%3C/svg%3E");
}

.record-symbol {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 4a28 28 0 1 0 0 56 28 28 0 0 0 0-56Zm0 35a7 7 0 1 1 0-14 7 7 0 0 1 0 14Zm0-9a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 4a28 28 0 1 0 0 56 28 28 0 0 0 0-56Zm0 35a7 7 0 1 1 0-14 7 7 0 0 1 0 14Zm0-9a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z'/%3E%3C/svg%3E");
}

.camera-symbol {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 12h20l4 8h10v36H8V20h10Zm10 36a12 12 0 1 0 0-24 12 12 0 0 0 0 24Zm0-7a5 5 0 1 1 0-10 5 5 0 0 1 0 10Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 12h20l4 8h10v36H8V20h10Zm10 36a12 12 0 1 0 0-24 12 12 0 0 0 0 24Zm0-7a5 5 0 1 1 0-10 5 5 0 0 1 0 10Z'/%3E%3C/svg%3E");
}

.mic-symbol {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6a10 10 0 0 0-10 10v16a10 10 0 0 0 20 0V16A10 10 0 0 0 32 6Zm18 24a18 18 0 0 1-36 0H8a24 24 0 0 0 21 23.8V58H18v6h28v-6H35v-4.2A24 24 0 0 0 56 30Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6a10 10 0 0 0-10 10v16a10 10 0 0 0 20 0V16A10 10 0 0 0 32 6Zm18 24a18 18 0 0 1-36 0H8a24 24 0 0 0 21 23.8V58H18v6h28v-6H35v-4.2A24 24 0 0 0 56 30Z'/%3E%3C/svg%3E");
}

.star-symbol {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m32 4 8.7 17.6L60 24.4 46 38l3.3 19.2L32 48.1 14.7 57.2 18 38 4 24.4l19.3-2.8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m32 4 8.7 17.6L60 24.4 46 38l3.3 19.2L32 48.1 14.7 57.2 18 38 4 24.4l19.3-2.8Z'/%3E%3C/svg%3E");
}

.music-proof strong,
.music-proof span,
.music-proof small {
  min-width: 0;
  text-transform: uppercase;
}

.music-proof strong {
  color: var(--music-gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.music-proof span {
  color: #f1ece3;
  font-size: 13px;
  font-weight: 800;
}

.music-proof small {
  color: var(--music-gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.archive-card,
.blog-card,
.music-blog-intro,
.current-projects,
.music-signup {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(3, 3, 3, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.archive-card {
  overflow: hidden;
  min-height: 278px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.archive-card:hover,
.blog-card:hover {
  border-color: rgba(242, 178, 26, 0.62);
  transform: translateY(-2px);
}

.archive-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  filter: saturate(0.95) contrast(1.05);
}

.archive-card div {
  padding: 16px 18px 18px;
}

.archive-card h2,
.music-blog-intro h2,
.current-projects h2,
.archive-message h2,
.join-list label,
.social-links strong {
  margin: 0;
  color: var(--music-gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.archive-card h2 {
  color: #fff8ea;
  font-size: 24px;
}

.archive-card p,
.music-blog-intro p,
.current-projects p,
.archive-message p {
  color: #ded8ca;
  font-size: 15px;
  line-height: 1.55;
}

.archive-card p {
  min-height: 94px;
  margin: 8px 0 12px;
}

.archive-card span,
.blog-card span {
  color: var(--music-gold-bright);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.music-mid-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.9fr)) 2.35fr;
  gap: 10px;
  margin-top: 12px;
}

.music-blog-intro,
.current-projects {
  padding: 26px 24px;
}

.music-blog-intro h2,
.current-projects h2 {
  font-size: 30px;
}

.music-blog-intro p,
.current-projects p {
  margin: 14px 0 0;
}

.music-blog-intro .music-btn,
.current-projects .music-btn {
  margin-top: 20px;
}

.blog-card {
  overflow: hidden;
  padding-bottom: 18px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.blog-card time,
.blog-card h3,
.blog-card span {
  display: block;
  margin-inline: 16px;
}

.blog-card time {
  margin-top: 15px;
  color: #887d6b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card h3 {
  min-height: 72px;
  margin-top: 8px;
  margin-bottom: 12px;
  color: #f6f0e6;
  font-size: 16px;
  line-height: 1.35;
}

.current-projects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 0.62fr);
  gap: 16px;
  overflow: hidden;
}

.current-projects img {
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-left: 1px solid rgba(242, 178, 26, 0.22);
}

.music-signup {
  display: grid;
  grid-template-columns: 120px 1.1fr 2fr 1.6fr;
  align-items: center;
  gap: 28px;
  margin-top: 12px;
  margin-bottom: 0;
  padding: 24px 26px;
}

.archive-mark {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 4px solid var(--music-gold);
  border-radius: 999px;
  color: var(--music-gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.archive-message {
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.archive-message h2 {
  color: #f7f0e4;
  font-size: 24px;
  line-height: 1.12;
}

.archive-message p {
  margin: 9px 0 0;
}

.join-list {
  min-width: 0;
}

.join-list label,
.social-links strong {
  display: block;
  margin-bottom: 9px;
  font-size: 28px;
}

.join-list p {
  margin: 0;
}

.join-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.join-list input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  outline: 0;
  background: #080808;
  color: #fff;
}

.join-list input:focus {
  border-color: rgba(242, 178, 26, 0.78);
}

.join-list button {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 205, 74, 0.82);
  border-radius: 4px;
  background: linear-gradient(180deg, #f5ba2a, #b87a00);
  color: #090909;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-links {
  min-width: 0;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 2px solid var(--music-gold);
  border-radius: 999px;
  color: var(--music-gold-bright);
  font-size: 22px;
  font-weight: 900;
}

.social-links a span {
  display: block;
  line-height: 1;
}

.music-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 28px;
  color: #766d5f;
  font-size: 13px;
}

.music-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.photo-archive-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 0%, rgba(38, 66, 116, 0.2), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 44%, #030303 100%);
}

.archive-page-hero,
.photo-collections,
.gallery-shell {
  width: min(1170px, calc(100% - 48px));
  margin-inline: auto;
}

.archive-page-hero {
  padding: 64px 0 34px;
}

.archive-page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.92;
  text-transform: uppercase;
}


.recordings-page > .archive-page-hero {
  padding-top: clamp(92px, 8vw, 124px);
}

.recordings-page > .archive-page-hero h1 {
  line-height: 1;
  padding-top: 0.08em;
}
.archive-page-hero p:not(.music-kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #ded8ca;
  font-size: 18px;
  line-height: 1.65;
}

.photo-collections,
.gallery-shell {
  margin-bottom: 52px;
}

.collection-group {
  margin-top: 28px;
}

.collection-group h2,
.collection-card h3,
.photo-lightbox h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.collection-group h2 {
  margin: 0 0 14px;
  color: var(--music-gold-bright);
  font-size: 34px;
  letter-spacing: 0.02em;
}

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

.collection-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(4, 4, 4, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.collection-cover {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(135deg, rgba(242, 178, 26, 0.11), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 14px),
    #090909;
}

.collection-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-cover.is-empty {
  position: relative;
}

.collection-cover.is-empty::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(242, 178, 26, 0.25);
}

.collection-card-body {
  padding: 18px 18px 20px;
}

.collection-card h3 {
  margin: 0;
  color: #fff8ea;
  font-size: 27px;
  line-height: 1;
}

.collection-card p {
  min-height: 96px;
  margin: 11px 0 16px;
  color: #d8d1c2;
  font-size: 15px;
  line-height: 1.5;
}

.collection-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--music-gold-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.collection-meta a::after {
  margin-left: 8px;
  content: "->";
}

.approved-photo-preview-page .collection-meta button {
  padding: 0;
  border: 0;
  color: var(--music-gold-bright);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.approved-photo-preview-page .collection-meta button::after {
  margin-left: 8px;
  content: "->";
}

.approved-gallery-cover {
  padding: 0;
  border: 0;
  cursor: pointer;
}

.approval-preview-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 10px;
  margin-top: 24px;
}

.approval-preview-summary article {
  padding: 13px 14px;
  border: 1px solid rgba(242, 178, 26, 0.24);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.34);
}

.approval-preview-summary strong,
.approval-preview-summary span {
  display: block;
}

.approval-preview-summary strong {
  color: var(--music-gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.approval-preview-summary span {
  margin-top: 5px;
  color: #ded8ca;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.back-link,
.gallery-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  color: var(--music-gold-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.back-link::before {
  margin-right: 9px;
  content: "<-";
}

.gallery-count {
  margin-top: 18px;
  margin-bottom: 0;
}

.gallery-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed rgba(242, 178, 26, 0.32);
  border-radius: 6px;
  color: #d8d1c2;
  background: rgba(8, 8, 8, 0.78);
  font-size: 16px;
}

.photo-thumb {
  display: grid;
  gap: 10px;
  padding: 0 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(4, 4, 4, 0.98));
  color: #fff8ea;
  cursor: pointer;
  text-align: left;
}

.photo-thumb img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.photo-thumb span {
  padding: 0 14px;
  color: #fff8ea;
  font-size: 14px;
  font-weight: 900;
}

.photo-lightbox {
  width: min(1120px, calc(100% - 38px));
  max-height: calc(100% - 38px);
  padding: 0;
  border: 1px solid rgba(242, 178, 26, 0.42);
  background: #050505;
  color: var(--music-text);
}

.photo-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.photo-lightbox figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 0;
  margin: 0;
}

.photo-lightbox img {
  width: 100%;
  max-height: calc(100vh - 110px);
  object-fit: contain;
  background: #000;
}

.photo-lightbox figcaption {
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.photo-lightbox h2 {
  margin: 0;
  color: var(--music-gold-bright);
  font-size: 32px;
}

.photo-lightbox p {
  margin: 14px 0 18px;
  color: #ded8ca;
  line-height: 1.55;
}

.lightbox-meta {
  display: grid;
  gap: 9px;
  color: #f1ece3;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-meta .is-empty {
  color: #766d5f;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  min-height: 38px;
  border: 1px solid rgba(242, 178, 26, 0.62);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff8ea;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lightbox-close {
  top: 14px;
  right: 14px;
  padding: 0 14px;
}

.lightbox-nav {
  top: 50%;
  padding: 0 16px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.recordings-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 0%, rgba(242, 178, 26, 0.11), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 44%, #030303 100%);
}

.stories-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 0%, rgba(242, 178, 26, 0.09), transparent 28rem),
    radial-gradient(circle at 8% 34%, rgba(38, 66, 116, 0.14), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 44%, #030303 100%);
}

.videos-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 0%, rgba(242, 178, 26, 0.09), transparent 28rem),
    radial-gradient(circle at 14% 30%, rgba(38, 66, 116, 0.16), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 44%, #030303 100%);
}

.recording-categories,
.recording-project-shell,
.recording-tools,
.recording-detail,
.recording-archive-intro,
.story-categories,
.story-list-shell,
.story-detail,
.video-categories,
.video-collections-shell,
.video-grid-shell {
  width: min(1170px, calc(100% - 48px));
  margin-inline: auto;
}

.recording-archive-intro {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 5, 5, 0.72);
}

.recording-archive-intro p,
.recording-archive-intro span,
.recording-archive-intro strong {
  display: grid;
  place-items: center;
  min-height: 70px;
  margin: 0;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff8ea;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.recording-archive-intro strong {
  border-right: 0;
  color: var(--music-gold-bright);
}

.recording-cover-empty::before,
.story-cover-empty::before,
.video-cover-empty::before,
.project-cover.is-empty::before,
.recording-hero-frame::before,
.project-detail-cover::before {
  position: absolute;
  inset: 50%;
  width: 64px;
  height: 64px;
  content: "";
  border: 3px solid rgba(242, 178, 26, 0.68);
  border-radius: 999px;
  box-shadow: inset 0 0 0 18px #090909;
  transform: translate(-50%, -50%);
}

.recording-cover-empty::after,
.story-cover-empty::after,
.video-cover-empty::after,
.project-cover.is-empty::after,
.recording-hero-frame::after,
.project-detail-cover::after {
  position: absolute;
  inset: auto 16px 16px;
  content: "Image ready";
  color: rgba(255, 248, 234, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.recording-category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 34px;
  align-items: end;
}

.recording-hero-frame,
.project-detail-cover,
.project-cover {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(242, 178, 26, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(242, 178, 26, 0.1), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px),
    #090909;
}

.recording-hero-frame {
  aspect-ratio: 1.45 / 1;
}

.recording-hero-frame img,
.project-detail-cover img,
.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recording-hero-frame:not(.has-image) img,
.project-detail-cover:not(.has-image) img {
  display: none;
}

.recording-hero-frame figcaption,
.project-detail-cover figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: rgba(255, 248, 234, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recording-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 12px;
  margin-bottom: 18px;
}

.recording-tools label {
  display: grid;
  gap: 8px;
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.recording-tools input,
.recording-tools select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(242, 178, 26, 0.35);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.88);
  color: #fff8ea;
  font: inherit;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 52px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 52px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 52px;
}

.video-thumb-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(4, 4, 4, 0.98));
}

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(135deg, rgba(242, 178, 26, 0.1), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px),
    #090909;
}

.video-thumb::before,
.video-cover-empty::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid rgba(242, 178, 26, 0.78);
  transform: translate(-42%, -50%);
}

.video-thumb::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  content: "Video ready";
  color: rgba(255, 248, 234, 0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-thumb.has-image::before,
.video-thumb.has-image::after {
  display: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb-body {
  padding: 18px;
}

.video-thumb-body h3 {
  margin: 8px 0 10px;
  color: #fff8ea;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.video-thumb-body p {
  min-height: 76px;
  margin: 0 0 14px;
  color: #d8d1c2;
  line-height: 1.5;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(4, 4, 4, 0.98));
}

.project-cover {
  display: block;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.project-card-body {
  padding: 18px;
}

.project-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  border: 1px solid rgba(242, 178, 26, 0.42);
  border-radius: 999px;
  color: var(--music-gold-bright);
  background: rgba(242, 178, 26, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-date {
  color: #9b8c75;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card h2,
.project-section h2,
.project-detail-hero h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.project-card h2 {
  margin: 8px 0 10px;
  color: #fff8ea;
  font-size: 31px;
  line-height: 1;
}

.project-card p {
  min-height: 76px;
  margin: 0 0 14px;
  color: #d8d1c2;
  line-height: 1.5;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.project-card-meta span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d8d1c2;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card a:last-child {
  color: var(--music-gold-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card a:last-child::after {
  margin-left: 8px;
  content: "->";
}

.project-empty {
  min-height: 260px;
}

.project-detail {
  padding: 54px 0;
}

.project-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.project-detail-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: #fff8ea;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.92;
}

.project-detail-hero p:not(.music-kicker) {
  max-width: 720px;
  color: #ded8ca;
  font-size: 18px;
  line-height: 1.65;
}

.project-detail-cover {
  aspect-ratio: 1 / 1;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-section {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(4, 4, 4, 0.98));
}

.project-section h2 {
  margin: 0 0 14px;
  color: var(--music-gold-bright);
  font-size: 31px;
  line-height: 1;
}

.project-section p,
.asset-link-list,
.track-list {
  color: #ded8ca;
  line-height: 1.6;
}

.project-section .is-empty,
.track-list .is-empty,
.asset-link-list .is-empty {
  color: #766d5f;
}

.project-section audio {
  width: 100%;
  margin-bottom: 14px;
}

.track-list,
.asset-link-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.asset-link-list small {
  display: block;
  max-width: 100%;
  margin-top: 3px;
  color: #8f8372;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.project-status-list {
  padding-left: 0;
  list-style: none;
}

.project-status-list li {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.track-list strong {
  color: #fff8ea;
}

.track-list dl {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 5px 12px;
  margin: 10px 0 0;
}

.track-list dt {
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.track-list dd {
  margin: 0;
}

.timeline-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 0%, rgba(242, 178, 26, 0.1), transparent 28rem),
    radial-gradient(circle at 10% 30%, rgba(38, 66, 116, 0.16), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 44%, #030303 100%);
}

.timeline-index,
.visual-timeline,
.timeline-detail {
  width: min(1170px, calc(100% - 48px));
  margin-inline: auto;
}

.timeline-hero.is-featured {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 580px;
  margin-top: 24px;
  margin-bottom: 34px;
  padding: 56px;
  overflow: hidden;
  border: 1px solid rgba(242, 178, 26, 0.32);
  border-radius: 6px;
  background-image: var(--timeline-hero-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.44);
}

.timeline-hero.is-featured::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.timeline-hero.is-featured > * {
  position: relative;
  z-index: 1;
}

.timeline-hero.is-featured h1 {
  max-width: 820px;
  color: #fff8ea;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.7);
}

.timeline-hero-years {
  display: block;
  margin-top: 10px;
  color: var(--music-gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.95;
  text-transform: uppercase;
}

.timeline-hero.is-featured p:not(.music-kicker) {
  max-width: 700px;
  color: #fff8ea;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.timeline-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.timeline-hero-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(242, 178, 26, 0.72);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff8ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-hero-links a:hover {
  background: var(--music-gold);
  color: #090909;
}

.timeline-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 5, 5, 0.72);
}

.timeline-index article {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline-index article:last-child {
  border-right: 0;
}

.timeline-index strong {
  color: var(--music-gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.timeline-index span {
  color: #fff8ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 8px 0 8px 28px;
}

.visual-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, rgba(242, 178, 26, 0.15), rgba(242, 178, 26, 0.8), rgba(242, 178, 26, 0.15));
}

.timeline-node {
  position: relative;
}

.timeline-node::before {
  position: absolute;
  top: 33px;
  left: -25px;
  width: 14px;
  height: 14px;
  content: "";
  border: 2px solid var(--music-gold-bright);
  border-radius: 999px;
  background: #050505;
  box-shadow: 0 0 0 6px rgba(242, 178, 26, 0.08);
}

.timeline-node button,
.timeline-node a {
  display: grid;
  grid-template-columns: 130px 180px minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(4, 4, 4, 0.98));
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  text-align: left;
}

.timeline-node.is-active button,
.timeline-node.is-active a {
  border-color: rgba(242, 178, 26, 0.62);
  box-shadow: inset 0 0 0 1px rgba(242, 178, 26, 0.18);
}

.timeline-marker {
  align-self: center;
  color: var(--music-gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.timeline-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.45 / 1;
  border: 1px solid rgba(242, 178, 26, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(242, 178, 26, 0.1), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px),
    #090909;
}

.timeline-media::before {
  position: absolute;
  inset: 50%;
  width: 48px;
  height: 48px;
  content: "";
  border: 3px solid rgba(242, 178, 26, 0.68);
  border-radius: 999px;
  box-shadow: inset 0 0 0 13px #090909;
  transform: translate(-50%, -50%);
}

.timeline-media::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  content: "Image ready";
  color: rgba(255, 248, 234, 0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-media.has-image::before,
.timeline-media.has-image::after {
  display: none;
}

.timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-node-body {
  display: grid;
  gap: 10px;
  align-content: center;
}

.timeline-node-body strong,
.timeline-detail h2,
.timeline-asset-section h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.timeline-node-body strong {
  color: #fff8ea;
  font-size: 34px;
  line-height: 1;
}

.timeline-node-body em {
  color: var(--music-gold-bright);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-node-body span {
  color: #d8d1c2;
  line-height: 1.5;
}

.timeline-node-body small {
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-detail {
  margin-bottom: 52px;
  padding: 24px;
  border: 1px solid rgba(242, 178, 26, 0.28);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.82);
}

.timeline-detail-header {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.timeline-detail h2 {
  margin: 0;
  color: #fff8ea;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
}

.timeline-detail-header p:not(.music-kicker) {
  max-width: 760px;
  margin: 0;
  color: #ded8ca;
  line-height: 1.6;
}

.timeline-detail code {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #9b8c75;
  font-size: 12px;
}

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

.timeline-asset-section {
  min-height: 156px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: rgba(15, 15, 15, 0.88);
}

.timeline-asset-section h3 {
  margin: 0 0 12px;
  color: var(--music-gold-bright);
  font-size: 28px;
  line-height: 1;
}

.timeline-asset-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #ded8ca;
}

.timeline-asset-section .is-empty {
  color: #766d5f;
}

.timeline-events-section {
  grid-column: 1 / -1;
}

.timeline-event-list li {
  display: grid;
  gap: 6px;
}

.timeline-event-list strong {
  color: #fff8ea;
  font-weight: 900;
}

.timeline-event-list span,
.timeline-event-list small {
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-event-list p {
  margin: 0;
}

.chapter-page {
  min-height: 100vh;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 78% 0%, rgba(242, 178, 26, 0.11), transparent 28rem),
    radial-gradient(circle at 8% 28%, rgba(38, 66, 116, 0.14), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 46%, #030303 100%);
}

.chapter-hero,
.chapter-nav,
.chapter-section {
  width: min(1170px, calc(100% - 48px));
  margin-inline: auto;
}

.chapter-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 620px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(242, 178, 26, 0.32);
  border-radius: 6px;
  background-image: var(--chapter-hero-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5);
}

.chapter-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 43%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.chapter-hero > div {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 56px;
}

.chapter-hero h1,
.chapter-section-heading h2,
.chapter-year-card h3,
.chapter-document-card h3,
.chapter-recording-card h3,
.chapter-video-card h3,
.chapter-related-card h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.chapter-hero h1 {
  margin: 0;
  color: #fff8ea;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.9;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.78);
}

.chapter-hero strong {
  display: block;
  margin-top: 12px;
  color: var(--music-gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
}

.chapter-hero p:not(.music-kicker) {
  max-width: 660px;
  margin: 20px 0 0;
  color: #fff8ea;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.chapter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.8);
}

.chapter-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(242, 178, 26, 0.58);
  border-radius: 4px;
  color: #fff8ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chapter-nav a:hover {
  background: var(--music-gold);
  color: #090909;
}

.chapter-section {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(242, 178, 26, 0.25);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.82);
}

.chapter-section-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 20px;
}

.chapter-section-heading h2 {
  margin: 0;
  color: #fff8ea;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
}

.chapter-section-heading p:not(.music-kicker) {
  margin: 0;
  color: #ded8ca;
  line-height: 1.6;
}

.chapter-writing-space {
  min-height: 300px;
  padding: 22px;
  border: 1px dashed rgba(242, 178, 26, 0.36);
  border-radius: 4px;
  background: rgba(12, 12, 12, 0.9);
}

.chapter-writing-space > span {
  display: block;
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chapter-empty {
  margin: 0;
  color: #8f846f;
  line-height: 1.5;
}

.chapter-year-grid,
.chapter-document-grid,
.chapter-gallery-grid,
.chapter-recording-grid,
.chapter-video-grid,
.chapter-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.chapter-year-card,
.chapter-document-card,
.chapter-photo-card,
.chapter-recording-card,
.chapter-video-card,
.chapter-related-card {
  min-height: 168px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(6, 6, 6, 0.98));
}

.chapter-year-card h3,
.chapter-document-card h3,
.chapter-recording-card h3,
.chapter-video-card h3,
.chapter-related-card h3 {
  margin: 0 0 12px;
  color: var(--music-gold-bright);
  font-size: 30px;
  line-height: 1;
}

.chapter-year-card ul,
.chapter-document-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #ded8ca;
}

.chapter-gallery-grid > .chapter-empty,
.chapter-recording-grid > .chapter-empty,
.chapter-video-grid > .chapter-empty,
.chapter-related-grid > .chapter-empty {
  grid-column: 1 / -1;
  min-height: 156px;
  padding: 20px;
  border: 1px dashed rgba(242, 178, 26, 0.28);
  border-radius: 4px;
  background: rgba(12, 12, 12, 0.72);
}

.chapter-photo-card {
  padding: 0;
  overflow: hidden;
}

.chapter-photo-card figure {
  margin: 0;
}

.chapter-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #090909;
}

.chapter-photo-card figcaption,
.chapter-recording-card p,
.chapter-video-card p,
.chapter-related-card p {
  color: #ded8ca;
  line-height: 1.5;
}

.chapter-photo-card figcaption {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.chapter-photo-card strong,
.chapter-recording-card span,
.chapter-video-card span {
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chapter-recording-card audio,
.chapter-video-card video {
  display: block;
  width: 100%;
  margin-bottom: 14px;
}

.chapter-video-card video {
  aspect-ratio: 16 / 9;
  background: #020202;
}

.draft-import-page {
  min-height: 100vh;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 78% 0%, rgba(242, 178, 26, 0.11), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 44%, #030303 100%);
}

.draft-import-summary,
.draft-import-collections {
  width: min(1170px, calc(100% - 48px));
  margin-inline: auto;
}

.draft-import-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 22px;
  border: 1px solid rgba(242, 178, 26, 0.28);
  background: rgba(5, 5, 5, 0.8);
}

.draft-import-summary article {
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.draft-import-summary article:last-child {
  border-right: 0;
}

.draft-import-summary strong,
.draft-collection-heading h2,
.draft-gallery-card h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.draft-import-summary strong {
  color: var(--music-gold-bright);
  font-size: 34px;
  line-height: 1;
}

.draft-import-summary span {
  color: #fff8ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.draft-import-collections {
  display: grid;
  gap: 22px;
}

.draft-collection-section {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(242, 178, 26, 0.28);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.84);
}

.draft-collection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding-bottom: 12px;
}

.draft-collection-heading h2 {
  margin: 0;
  color: #fff8ea;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
}

.draft-collection-heading p {
  margin: 0;
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.draft-gallery-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(6, 6, 6, 0.98));
}

.draft-gallery-cover {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-right: 1px solid rgba(242, 178, 26, 0.2);
  color: #8f846f;
  background: #080808;
}

.draft-gallery-cover button {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 260px;
  padding: 10px;
  border: 0;
  background: #080808;
  cursor: zoom-in;
}

.draft-gallery-cover img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.draft-gallery-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.draft-status {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(242, 178, 26, 0.64);
  color: var(--music-gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.draft-confidence {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff8ea;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.draft-confidence.is-high {
  border-color: rgba(99, 220, 139, 0.58);
  color: #9ff0b8;
}

.draft-confidence.is-medium {
  border-color: rgba(242, 178, 26, 0.64);
  color: var(--music-gold-bright);
}

.draft-confidence.is-low {
  border-color: rgba(255, 106, 106, 0.58);
  color: #ffb3a8;
}

.draft-gallery-card h3 {
  margin: 0;
  color: #fff8ea;
  font-size: 32px;
  line-height: 1;
}

.draft-gallery-card p {
  max-width: 860px;
  margin: 0;
  color: #ded8ca;
  line-height: 1.55;
}

.draft-description-label {
  width: fit-content;
  color: var(--music-gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.draft-gallery-meta {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 6px 12px;
  margin: 0;
}

.draft-gallery-meta dt {
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.draft-gallery-meta dd {
  margin: 0;
  color: #ded8ca;
}

.draft-gallery-meta a {
  color: #fff8ea;
  font-weight: 900;
}

.draft-enrichment-panel,
.draft-curation-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(242, 178, 26, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
}

.draft-curation-panel {
  border-color: rgba(99, 220, 139, 0.22);
}

.draft-enrichment-panel h4,
.draft-curation-panel h4 {
  margin: 0;
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.draft-curation-panel h4 {
  color: #9ff0b8;
}

.draft-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.draft-review-grid > div,
.draft-evidence {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(8, 8, 8, 0.68);
}

.draft-review-grid strong,
.draft-evidence strong {
  display: block;
  margin-bottom: 8px;
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.draft-review-grid ul,
.draft-evidence ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: #c9bda8;
}

.draft-notes {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: #c9bda8;
}

.draft-thumb-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 6px;
}

.draft-thumb-strip button {
  display: grid;
  aspect-ratio: 1 / 1;
  padding: 4px;
  border: 1px solid rgba(242, 178, 26, 0.24);
  background: #050505;
  cursor: zoom-in;
}

.draft-thumb-strip button:focus-visible,
.draft-gallery-cover button:focus-visible,
.draft-lightbox-close:focus-visible,
.draft-lightbox-nav:focus-visible {
  outline: 2px solid var(--music-gold-bright);
  outline-offset: 2px;
}

.draft-thumb-strip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.draft-thumb-strip span {
  grid-column: 1 / -1;
  color: #8f846f;
}

.draft-review-lightbox {
  width: min(1200px, calc(100% - 32px));
  max-width: none;
  height: min(860px, calc(100% - 32px));
  max-height: none;
  padding: 0;
  border: 1px solid rgba(242, 178, 26, 0.5);
  border-radius: 6px;
  background: rgba(3, 3, 3, 0.98);
  color: #fff8ea;
}

.draft-review-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.draft-lightbox-frame {
  position: relative;
  display: grid;
  height: 100%;
  padding: 52px 74px 28px;
}

.draft-lightbox-frame figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 0;
  margin: 0;
}

.draft-lightbox-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #050505;
}

.draft-lightbox-frame figcaption {
  display: grid;
  gap: 5px;
  color: #d8d1c2;
}

.draft-lightbox-frame figcaption strong {
  color: var(--music-gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.draft-lightbox-frame figcaption a {
  width: fit-content;
  color: #fff8ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.draft-lightbox-close,
.draft-lightbox-nav {
  position: absolute;
  min-height: 38px;
  border: 1px solid rgba(242, 178, 26, 0.64);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff8ea;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.draft-lightbox-close {
  top: 12px;
  right: 12px;
  padding: 0 14px;
}

.draft-lightbox-nav {
  top: 50%;
  width: 52px;
  transform: translateY(-50%);
}

.draft-lightbox-nav.is-prev {
  left: 12px;
}

.draft-lightbox-nav.is-next {
  right: 12px;
}

@media (max-width: 1120px) {
  .music-header {
    grid-template-columns: 1fr auto;
  }

  .music-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

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

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

  .music-blog-intro {
    grid-column: span 1;
  }

  .current-projects {
    grid-column: span 4;
  }

  .music-signup {
    grid-template-columns: 96px 1fr 1.6fr;
  }

  .social-links {
    grid-column: 2 / -1;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .music-header {
    position: static;
    gap: 14px;
    min-height: 0;
  }

  .music-header-actions {
    justify-self: end;
  }

  .music-nav {
    gap: 18px;
    font-size: 11px;
  }

  .music-hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 720px;
  }

  .music-hero-photo {
    object-position: 63% top;
  }

  .music-hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 31%, rgba(0, 0, 0, 0.88) 64%, rgba(0, 0, 0, 0.98) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.44));
  }

  .music-hero-copy {
    width: 100%;
    padding-top: 360px;
  }

  .music-quote {
    justify-self: start;
    width: min(420px, calc(100% - 44px));
    margin: 0 22px 34px;
  }

  .music-proof,
  .archive-grid,
  .music-mid-grid,
  .music-signup,
  .music-footer,
  .archive-page-hero,
  .photo-collections,
  .gallery-shell,
  .recording-categories,
  .recording-project-shell,
  .recording-tools,
  .recording-detail,
  .recording-archive-intro,
  .story-categories,
  .story-list-shell,
  .story-detail,
  .video-categories,
  .video-collections-shell,
  .video-grid-shell,
  .timeline-index,
  .visual-timeline,
  .timeline-detail,
  .chapter-hero,
  .chapter-nav,
  .chapter-section,
  .draft-import-summary,
  .draft-import-collections {
    width: min(100% - 32px, 640px);
  }

  .collection-grid,
  .photo-grid,
  .project-grid,
  .story-grid,
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recording-category-hero,
  .project-detail-hero,
  .project-detail-layout {
    grid-template-columns: 1fr;
  }

  .recording-tools {
    grid-template-columns: 1fr;
  }

  .recording-archive-intro {
    grid-template-columns: 1fr;
  }

  .timeline-index {
    grid-template-columns: 1fr 1fr;
  }

  .draft-import-summary {
    grid-template-columns: 1fr 1fr;
  }

  .draft-import-summary article:nth-child(2n) {
    border-right: 0;
  }

  .draft-import-summary article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .draft-gallery-card {
    grid-template-columns: 1fr;
  }

  .draft-gallery-cover {
    border-right: 0;
    border-bottom: 1px solid rgba(242, 178, 26, 0.2);
  }

  .draft-lightbox-frame {
    padding: 52px 18px 22px;
  }

  .draft-lightbox-nav {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .draft-lightbox-frame figcaption {
    padding-bottom: 54px;
  }

  .draft-review-grid {
    grid-template-columns: 1fr;
  }

  .timeline-index article:nth-child(2n) {
    border-right: 0;
  }

  .timeline-index article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .timeline-node button,
  .timeline-node a {
    grid-template-columns: 1fr;
  }

  .timeline-media {
    max-width: 260px;
  }

  .timeline-asset-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-hero.is-featured {
    min-height: 520px;
    padding: 34px;
    background-position: center top;
  }

  .chapter-hero {
    min-height: 560px;
    background-position: center top;
  }

  .chapter-hero > div {
    padding: 34px;
  }

  .chapter-year-grid,
  .chapter-document-grid,
  .chapter-gallery-grid,
  .chapter-recording-grid,
  .chapter-video-grid,
  .chapter-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recording-archive-intro p,
  .recording-archive-intro span,
  .recording-archive-intro strong {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .recording-archive-intro strong {
    border-bottom: 0;
  }

  .collection-card p {
    min-height: 0;
  }

  .photo-lightbox figure {
    grid-template-columns: 1fr;
  }

  .photo-lightbox figcaption {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .music-proof {
    grid-template-columns: 1fr;
  }

  .music-proof article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .music-proof article:last-child {
    border-bottom: 0;
  }

  .archive-grid,
  .music-mid-grid {
    grid-template-columns: 1fr 1fr;
  }

  .current-projects {
    grid-column: span 2;
  }

  .music-signup {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .archive-message,
  .social-links {
    padding: 0;
    border: 0;
  }

  .music-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .music-header {
    grid-template-columns: 1fr;
  }

  .music-nav {
    flex-wrap: wrap;
    gap: 4px 18px;
    overflow: visible;
  }

  .music-nav a {
    padding: 8px 0;
  }

  .music-header-actions {
    justify-self: start;
  }

  .music-brand {
    font-size: 34px;
  }

  .music-hero {
    min-height: 690px;
  }

  .music-hero-copy {
    padding: 315px 18px 28px;
  }

  .music-hero h1 {
    font-size: 50px;
  }

  .music-actions,
  .join-list div,
  .current-projects {
    grid-template-columns: 1fr;
  }

  .music-actions {
    display: grid;
    gap: 12px;
  }

  .music-btn,
  .join-list button {
    width: 100%;
  }

  .archive-grid,
  .music-mid-grid,
  .collection-grid,
  .photo-grid,
  .project-grid,
  .story-grid,
  .video-grid,
  .timeline-asset-grid,
  .chapter-year-grid,
  .chapter-document-grid,
  .chapter-gallery-grid,
  .chapter-recording-grid,
  .chapter-video-grid,
  .chapter-related-grid {
    grid-template-columns: 1fr;
  }

  .archive-page-hero {
    padding-top: 42px;
  }

  .archive-page-hero h1 {
    font-size: 50px;
  }

  .timeline-hero.is-featured {
    min-height: 500px;
    padding: 28px 22px;
  }

  .chapter-hero {
    min-height: 500px;
  }

  .chapter-hero > div,
  .chapter-section {
    padding: 22px;
  }

  .chapter-hero h1 {
    font-size: 50px;
  }

  .chapter-hero p:not(.music-kicker) {
    font-size: 17px;
  }

  .timeline-hero-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .timeline-hero-links a {
    justify-content: center;
  }

  .timeline-index {
    grid-template-columns: 1fr;
  }

  .draft-import-summary {
    grid-template-columns: 1fr;
  }

  .draft-import-summary article,
  .draft-import-summary article:nth-child(2n),
  .draft-import-summary article:last-child {
    grid-column: auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .draft-gallery-meta {
    grid-template-columns: 1fr;
  }

  .draft-thumb-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .timeline-index article,
  .timeline-index article:nth-child(2n),
  .timeline-index article:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .timeline-index article:last-child {
    border-bottom: 0;
  }

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

  .lightbox-nav {
    top: auto;
    bottom: 14px;
    transform: none;
  }

  .photo-lightbox figcaption {
    padding-bottom: 68px;
  }

  .current-projects {
    grid-column: auto;
  }

  .current-projects img {
    min-height: 170px;
    border-top: 1px solid rgba(242, 178, 26, 0.22);
    border-left: 0;
  }

  .archive-card p,
  .blog-card h3 {
    min-height: 0;
  }

  .social-links div {
    gap: 12px;
  }

  .music-footer nav {
    gap: 12px;
  }
}



/* Doro / Espada recording card grid */
.project-section-wide {
  grid-column: 1 / -1;
}

.recording-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.recording-card .project-cover {
  aspect-ratio: 1 / 1;
}

.recording-card .project-card-body {
  display: flex;
  min-height: 294px;
  flex-direction: column;
}

.recording-card .project-card-body > a:last-child {
  margin-top: auto;
}


/* Archive mix player list */
.archive-mix-list {
  display: grid;
  gap: 18px;
}

.archive-mix {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
}

.archive-mix h3 {
  margin: 0;
  color: #fff8ea;
  font-size: 16px;
  text-transform: uppercase;
}

.archive-mix p {
  margin: 0;
}
