:root {
  --ink: #090a09;
  --ink-soft: #111310;
  --paper: #f2eadb;
  --paper-soft: #cfc3ae;
  --red: #a81717;
  --red-bright: #d22b21;
  --gold: #d2a34a;
  --gold-pale: #f0d18d;
  --line: rgba(240, 209, 141, 0.2);
  --container: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 10%, rgba(168, 23, 23, 0.09), transparent 28rem),
    linear-gradient(180deg, #0b0d0b, #090a09);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

::selection {
  color: white;
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: white;
  background: var(--red);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 92px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 76px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 7, 0.93);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  width: var(--container);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand {
  position: relative;
  z-index: 102;
  width: 176px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
}

.nav-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-menu a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: white;
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--gold);
  color: var(--gold-pale) !important;
}

.nav-cta:hover {
  color: var(--ink) !important;
  background: var(--gold);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle::before { top: 13px; }
.menu-toggle span { top: 21px; }
.menu-toggle::after { top: 29px; }

.is-open .menu-toggle::before {
  top: 21px;
  transform: rotate(45deg);
}

.is-open .menu-toggle span {
  opacity: 0;
}

.is-open .menu-toggle::after {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  content: "";
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.94) 0%, rgba(5, 6, 5, 0.58) 42%, rgba(5, 6, 5, 0.1) 76%),
    linear-gradient(0deg, var(--ink) 0%, transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 35%);
  content: "";
}

.hero-home {
  min-height: 100svh;
}

.hero-home::after {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.93) 0%, rgba(5, 6, 5, 0.52) 42%, rgba(5, 6, 5, 0.05) 72%),
    linear-gradient(0deg, var(--ink) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 32%);
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 190px 0 12vh;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1,
.page-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 7.4vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-pale);
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid transparent;
  color: white;
  background: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
  background: rgba(0, 0, 0, 0.45);
}

.button-gold {
  color: #17130a;
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-pale);
}

.hero-stamp {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 11vh;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  border: 1px solid rgba(240, 209, 141, 0.4);
  border-radius: 50%;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.hero-stamp::before,
.hero-stamp::after {
  position: absolute;
  border: 1px solid rgba(240, 209, 141, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-stamp::before { inset: 7px; }
.hero-stamp::after { inset: 15px; }

.section {
  padding: clamp(72px, 10vw, 140px) 0;
}

.section-tight {
  padding: clamp(55px, 7vw, 92px) 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--red-bright);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.section-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro {
  max-width: 720px;
  margin: 25px 0 0;
  color: var(--paper-soft);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.split-wide {
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: start;
}

.prose {
  color: var(--paper-soft);
  font-size: 1.04rem;
}

.prose h2,
.prose h3 {
  margin: 2.2em 0 0.55em;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

.prose h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.prose h3 { font-size: clamp(1.45rem, 2.6vw, 2.1rem); }
.prose p { margin: 0 0 1.3em; }
.prose strong { color: var(--paper); }
.prose a { color: var(--gold-pale); }

.editorial-image {
  position: relative;
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.editorial-image::before {
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: 18px;
  left: 18px;
  z-index: -1;
  border: 1px solid rgba(210, 163, 74, 0.32);
  content: "";
}

.editorial-image figcaption {
  margin-top: 15px;
  color: #8f8574;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote {
  margin: 36px 0;
  padding: 22px 0 22px 30px;
  border-left: 2px solid var(--red);
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-style: italic;
  line-height: 1.4;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: var(--line);
}

.genre-card {
  position: relative;
  min-height: 310px;
  padding: 38px;
  overflow: hidden;
  background: #0e100e;
}

.genre-card::after {
  position: absolute;
  right: -50px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(210, 163, 74, 0.12);
  border-radius: 50%;
  content: "";
}

.genre-number {
  color: var(--red-bright);
  font-family: var(--serif);
  font-size: 1rem;
}

.genre-card h3 {
  margin: 75px 0 14px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.genre-card p {
  margin: 0;
  color: #a79e90;
}

.feature-band {
  position: relative;
  overflow: hidden;
  background: #080a09;
}

.feature-band .split {
  min-height: 720px;
}

.feature-art {
  align-self: stretch;
  margin-right: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
}

.feature-art img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.feature-meta {
  margin: 22px 0 0;
  color: var(--gold-pale);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-shell {
  margin-top: 42px;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid var(--line);
  background: #0f110f;
  box-shadow: var(--shadow);
}

.media-shell iframe {
  display: block;
  width: 100%;
  border: 0;
}

.video-feature iframe,
.video-card iframe {
  aspect-ratio: 16 / 9;
  height: auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111310;
}

.video-card iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #050605;
}

.video-card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
}

.video-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.video-card span {
  color: var(--red-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #10120f;
}

.release-card > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.release-copy {
  align-self: center;
  padding: clamp(32px, 6vw, 80px);
}

.release-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.94;
}

.release-copy p {
  max-width: 570px;
  color: var(--paper-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  background: var(--line);
}

.stat {
  padding: 32px;
  background: #0e100e;
}

.stat strong {
  display: block;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
}

.stat span {
  color: #928979;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.event-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #121411, #0c0e0c);
}

.event-card .event-icon {
  color: var(--red-bright);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.event-card h3 {
  margin: 42px 0 10px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.event-card p {
  color: #9e9587;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
}

.coverage-list li::before {
  margin-right: 12px;
  color: var(--red-bright);
  content: "◆";
  font-size: 0.62rem;
}

.steps {
  margin: 40px 0 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--paper-soft);
  counter-increment: step;
}

.steps li::before {
  color: var(--red-bright);
  font-family: var(--serif);
  font-size: 1.7rem;
  content: "0" counter(step);
}

.steps strong {
  color: var(--paper);
}

.faq-list {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 25px 50px 25px 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 28px;
  right: 4px;
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 800px;
  margin: 0;
  padding: 0 45px 26px 0;
  color: #a89f91;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 48px;
  gap: 14px;
  margin-top: 50px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.gallery figure:nth-child(1) { grid-area: span 8 / span 7; }
.gallery figure:nth-child(2) { grid-area: span 6 / span 5; }
.gallery figure:nth-child(3) { grid-area: span 7 / span 5; }
.gallery figure:nth-child(4) { grid-area: span 5 / span 7; }
.gallery figure:nth-child(5) { grid-area: span 6 / span 6; }
.gallery figure:nth-child(6) { grid-area: span 6 / span 6; }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery figure:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #10120f;
}

.news-card.featured {
  grid-column: span 2;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card-copy {
  padding: 28px;
}

.news-card time,
.article-meta {
  color: var(--red-bright);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 13px 0 15px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.news-card p {
  color: #a79e90;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-pale);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.article-header {
  padding: 170px 0 60px;
}

.article-header h1 {
  max-width: 980px;
  margin: 12px 0 24px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.article-hero {
  width: min(1420px, calc(100% - 40px));
  margin: 0 auto;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.article-body {
  display: grid;
  grid-template-columns: 190px minmax(0, 760px);
  justify-content: center;
  gap: 55px;
}

.article-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  color: #8f8577;
  font-size: 0.75rem;
}

.article-aside strong {
  display: block;
  margin-bottom: 12px;
  color: var(--paper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.song-lyrics {
  margin: 40px 0;
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid var(--line);
  color: var(--paper);
  background: #0e100e;
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1.8;
  white-space: pre-line;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 100px);
}

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: #10120f;
}

.contact-card + .contact-card {
  margin-top: 18px;
}

.contact-label {
  margin: 0 0 5px;
  color: var(--red-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-value {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.4rem;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-form {
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  background: #0e100e;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #a89f91;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  outline: none;
  color: white;
  background: #151815;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.form-note {
  margin: 18px 0 0;
  color: #7e766b;
  font-size: 0.78rem;
}

.form-status {
  min-height: 24px;
  margin: 15px 0 0;
  color: var(--gold-pale);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(75px, 10vw, 125px) 0;
  background-image:
    linear-gradient(90deg, rgba(8, 9, 8, 0.96), rgba(8, 9, 8, 0.75)),
    var(--cta-image, none);
  background-position:
    center,
    var(--cta-position, center);
  background-repeat: no-repeat;
  background-size:
    cover,
    var(--cta-size, cover);
}

.cta-band h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.cta-band p {
  max-width: 610px;
  color: var(--paper-soft);
  font-size: 1.1rem;
}

.site-footer {
  padding: 75px 0 30px;
  border-top: 1px solid var(--line);
  background: #070807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 50px;
}

.footer-brand img {
  width: 220px;
}

.footer-brand p {
  max-width: 410px;
  color: #8f877b;
}

.footer-title {
  margin: 0 0 18px;
  color: var(--gold-pale);
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #9e9588;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #aaa194;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #68635b;
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .site-header.is-open {
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #090a09;
    backdrop-filter: none;
    transition: none;
  }

  .site-header.is-open .nav-wrap {
    min-height: 100%;
    align-items: flex-start;
  }

  .site-header.is-open .brand,
  .site-header.is-open .menu-toggle {
    position: fixed;
    top: 16px;
  }

  .site-header.is-open .brand {
    left: max(15px, calc((100vw - min(1180px, calc(100% - 40px))) / 2));
  }

  .site-header.is-open .menu-toggle {
    right: max(15px, calc((100vw - min(1180px, calc(100% - 40px))) / 2));
  }

  .nav-menu {
    position: absolute;
    inset: 0;
    z-index: 101;
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    align-content: start;
    justify-items: center;
    gap: clamp(16px, 2.8vh, 25px);
    padding:
      calc(112px + env(safe-area-inset-top))
      30px
      calc(42px + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 50% 20%, rgba(168, 23, 23, 0.16), transparent 40%),
      #090a09;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .nav-menu a {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: none;
  }

  .nav-menu .nav-cta {
    margin-top: 8px;
    padding: 10px 22px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .hero-stamp {
    display: none;
  }

  .genre-grid,
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .genre-card:last-child,
  .event-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100% - 30px, 1180px);
  }

  .site-header {
    height: 76px;
  }

  .brand {
    width: 145px;
  }

  .hero {
    min-height: 820px;
  }

  .hero::before {
    background-position: var(--hero-position-mobile, 50% center);
  }

  .hero::after,
  .hero-home::after {
    background:
      linear-gradient(0deg, rgba(6, 7, 6, 0.99) 0%, rgba(6, 7, 6, 0.72) 48%, rgba(6, 7, 6, 0.15) 80%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 30%);
  }

  .hero-inner {
    padding: 140px 0 80px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .split,
  .split-wide,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split .editorial-image {
    order: -1;
  }

  .editorial-image img {
    aspect-ratio: 4 / 3;
  }

  .genre-grid,
  .event-grid,
  .video-grid,
  .news-grid,
  .stats,
  .release-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .genre-card:last-child,
  .event-card:last-child,
  .news-card.featured {
    grid-column: auto;
  }

  .genre-card {
    min-height: 250px;
  }

  .genre-card h3 {
    margin-top: 45px;
  }

  .feature-band .split {
    min-height: auto;
  }

  .feature-art {
    order: -1;
    margin: 0 calc((100vw - min(100% - 30px, 1180px)) / -2);
  }

  .feature-art img {
    min-height: 430px;
  }

  .cta-band {
    background-position:
      center,
      var(--cta-position-mobile, var(--cta-position, center));
    background-size:
      cover,
      var(--cta-size-mobile, cover);
  }

  .release-card > img {
    min-height: auto;
    aspect-ratio: 1;
  }

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

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery figure:nth-child(n) {
    grid-area: span 1 / span 1;
  }

  .gallery figure:first-child {
    grid-column: 1 / -1;
  }

  .article-body {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    display: none;
  }

  .article-hero img {
    aspect-ratio: 4 / 3;
  }

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

  .field-full {
    grid-column: auto;
  }

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

@media (max-width: 480px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

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

  .gallery figure:first-child {
    grid-column: auto;
  }

  .video-card-copy {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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