/* ============================================================
   THE NARRATOR — Phosphor
   Chapters redesign · plain CSS, no build step
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #161616;
  --text: #ede9e2;
  --accent: #c94a1a;
  --accent-hover: #e05a22;
  --muted: #888;
  --hint: #555;
  --border: #1c1c1c;
  --border-2: #282828;
  --display: "Bebas Neue", sans-serif;
  --body: "Space Grotesk", sans-serif;
  --nav-h: 64px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.container--narrow { width: min(760px, calc(100% - 48px)); }

/* Sections */
.section {
  position: relative;
  padding: clamp(40px, 8vw, 72px) 0;
  scroll-margin-top: 72px;
}
#hero, #music, #videos, #about, #shows, #merch, #newsletter, #contact {
  scroll-margin-top: 72px;
}

/* ---------- Typography scale ----------
   NOTE: heading sizes are defined ONCE here.
   Do not add later rules that override these clamp() values. */
.about__title,
.newsletter__title,
.contact__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.music__info h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Section labels: 01 · LABEL ——— */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.section-label b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 2px;
}
.section-label span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.section-label i {
  flex: 1;
  height: 1px;
  background: var(--border-2);
}

/* Giant outlined chapter numerals (decorative) */
.chapter-num {
  position: absolute;
  top: 8px;
  left: -0.04em;
  z-index: 0;
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 260px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-2);
  user-select: none;
  pointer-events: none;
}
.chapter-num--right { left: auto; right: -0.04em; }
.chapter-num--onphoto { -webkit-text-stroke: 1px rgba(237,233,226,0.16); }
.section .container { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--solid {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}
.btn--solid:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--text); }
.btn--ghost {
  border-color: var(--border-2);
  color: var(--text);
  opacity: 0.75;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--text); opacity: 1; }
.btn--outline {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--outline:hover { background: var(--accent); color: var(--text); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(8,8,8,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom-color: var(--border);
}
.nav__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__logo img { height: 20px; width: auto; }
.nav__links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.nav__links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.nav__links a:hover { opacity: 1; color: var(--text); }
.nav__shop { padding: 9px 20px; }
.nav__burger { display: none; }

/* Drawer (mobile) */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 26px;
  flex-direction: column;
  gap: 4px;
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text);
  opacity: 0.85;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.nav__drawer a:hover { color: var(--accent); opacity: 1; }
.nav__drawer-shop { color: var(--accent) !important; border-bottom: none !important; }

@media (max-width: 920px) {
  .nav__links, .nav__shop { display: none; }
  .nav__logo img { height: 16px; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: 10px 4px;
  }
  .nav__burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   CHAPTER RAIL (desktop scrollspy)
   ============================================================ */
.rail {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rail a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  opacity: 0.55;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.rail a span {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 1px;
}
.rail a::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: width 0.2s ease;
}
.rail a:hover { opacity: 1; color: var(--text); }
.rail a.is-active {
  opacity: 1;
  color: var(--accent);
}
.rail a.is-active::before { width: 26px; }
@media (max-width: 1280px) { .rail { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 64px;
}
/* background lives in its own wrapper — NOT overflow on the section */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  top: 12%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(201,74,26,0.22) 0%, rgba(201,74,26,0.07) 38%, transparent 68%);
  animation: glowBreath 9s ease-in-out infinite;
}
.hero__glow--low {
  top: auto; right: auto;
  bottom: -28%; left: -14%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(201,74,26,0.12) 0%, transparent 62%);
  animation-delay: -4.5s;
}
@keyframes glowBreath {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero__title { margin: 0 0 26px; }
.hero__title img {
  width: min(720px, 100%);
  height: auto;
}
.hero__sub {
  color: var(--text);
  opacity: 0.75;
  margin-bottom: 30px;
}
.hero__sub em {
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  opacity: 1;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}
.hero__socials {
  display: flex;
  gap: 10px;
  list-style: none;
}
.hero__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border-2);
  color: var(--text);
  opacity: 0.7;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.hero__socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}
.hero__socials svg { width: 17px; height: 17px; }

.hero__cover {
  display: block;
  width: clamp(140px, 18vw, 220px);
  color: var(--text);
}
.hero__cover img {
  width: 100%;
  box-shadow: 0 0 60px rgba(201,74,26,0.28), 0 18px 50px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero__cover:hover img {
  transform: translateY(-4px);
  box-shadow: 0 0 80px rgba(224,90,34,0.4), 0 22px 56px rgba(0,0,0,0.65);
}
.hero__cover-label {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.25;
}
.hero__cover-label em {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  margin-top: 4px;
}
.hero__cover:hover .hero__cover-label { color: var(--accent); }
.hero__cover:hover .hero__cover-label em { color: var(--text); }

.hero__scroll {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 54px;
  background: var(--border-2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--accent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -40%; }
  70%, 100% { top: 110%; }
}

@media (max-width: 760px) {
  .hero__inner { grid-template-columns: 1fr; align-items: start; }
  .hero__cover { order: -1; }
  .hero__scroll { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  background: var(--bg-2);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marqueeMove 26s linear infinite;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track i {
  font-style: normal;
  color: var(--hint);
}
.marquee__track span { color: var(--text); opacity: 0.85; }
.marquee__accent { color: var(--accent) !important; opacity: 1 !important; }
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   01 MUSIC
   ============================================================ */
.section--music { background: var(--bg); }
.music__grid {
  display: grid;
  grid-template-columns: clamp(180px, 26%, 300px) 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
.music__cover {
  position: relative;
  margin-top: -90px; /* overlap up into the marquee */
}
.music__cover > img {
  width: 100%;
  box-shadow: 0 0 50px rgba(201,74,26,0.18), 0 16px 44px rgba(0,0,0,0.55);
}
.music__tracknums {
  position: absolute;
  top: 6px;
  left: calc(100% + 16px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--hint);
}
.music__meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 10px 0 18px;
}
.music__text {
  max-width: 560px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.player-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.player-tab {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border-2);
  color: var(--text);
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.player-tab:hover { opacity: 1; }
.player-tab.is-active {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}
.player-panel { display: none; }
.player-panel.is-active { display: block; }
.player-panel iframe { border: 0; display: block; }

/* Responsive 16:9 wrapper for YouTube */
.yt-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--bg-2);
}
.yt-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 760px) {
  .music__grid { grid-template-columns: 1fr; }
  .music__cover { margin-top: -70px; width: min(280px, 70%); }
  .music__tracknums { display: none; }
}

/* ============================================================
   02 VIDEOS
   ============================================================ */
.section--videos { background: var(--bg-2); }
.videos__grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 22px;
  align-items: start;
}
.video-main {
  position: relative;
  background: #000;
  border: 1px solid var(--border);
}
.video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-3);
}
.video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.4s ease;
}
.video-poster:hover img { opacity: 1; transform: scale(1.02); }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
  transition: transform 0.2s ease;
}
.video-poster:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-align: left;
}
.video-main .yt-ratio { border: 0; }

.video-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-thumb {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 8px;
  transition: border-color 0.2s ease;
}
.video-thumb img {
  width: 96px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.video-thumb span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.75;
  line-height: 1.4;
}
.video-thumb span em {
  font-style: normal;
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.5px;
}
.video-thumb:hover { border-color: var(--border-2); }
.video-thumb:hover span { opacity: 1; }
.video-thumb.is-active { border-color: var(--accent); }
.video-thumb.is-active span { opacity: 1; color: var(--accent); }
.video-thumb.is-active span em { color: var(--muted); }

.videos__more { margin-top: 22px; }
.videos__more a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .videos__grid { grid-template-columns: 1fr; }
  .video-side {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .video-thumb {
    grid-template-columns: 80px 1fr;
    flex: 1 1 46%;
  }
}

/* ============================================================
   03 ABOUT — full-bleed photo
   ============================================================ */
.section--about {
  padding: clamp(80px, 12vw, 150px) 0;
}
.about__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.about__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__bg-img--desktop {
  object-position: center 30%;
  display: block;
}
.about__bg-img--mobile {
  object-position: center 20%;
  display: none;
}
@media (max-width: 760px) {
  .about__bg-img--desktop { display: none; }
  .about__bg-img--mobile  { display: block; }
}
.about__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.55) 26%, rgba(8,8,8,0.55) 70%, rgba(8,8,8,0.97) 100%),
    linear-gradient(to right, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.3) 60%, rgba(8,8,8,0.15) 100%);
}
.about__title {
  margin-bottom: clamp(24px, 4vw, 40px);
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.about__body {
  max-width: 620px;
}
.about__body p { margin-bottom: 16px; }
.about__body em {
  font-style: normal;
  color: var(--text);
  font-weight: 500;
}
.about__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid rgba(237,233,226,0.18);
  padding-top: 22px;
}
.about__facts dt {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 6px;
}
.about__facts dd {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text);
  opacity: 0.75;
}
.about__facts dd em { font-style: normal; }
.about__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 680px) {
  .about__facts { grid-template-columns: repeat(2, 1fr); }
  .about__shade {
    background:
      linear-gradient(to bottom, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.78) 30%, rgba(8,8,8,0.78) 70%, rgba(8,8,8,0.97) 100%);
  }
}

/* ============================================================
   04 SHOWS
   ============================================================ */
.section--shows { background: var(--bg); }
.shows__lead {
  max-width: 520px;
  opacity: 0.85;
  margin-bottom: 30px;
}
.shows__widget {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: clamp(10px, 2vw, 24px);
  min-height: 120px;
}
.shows__booking {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
.shows__booking span { color: var(--hint); }

/* ============================================================
   05 MERCH
   ============================================================ */
.section--merch { background: var(--bg-2); }
.merch__header img {
  width: 100%;
  height: auto;
  object-fit: contain; /* graphic already contains text — no overlay */
  border: 1px solid var(--border);
}
.merch__cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 0;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.merch__cta-bar p { opacity: 0.85; }
.merch__cta-bar em { font-style: normal; font-weight: 500; }

.merch__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.merch-item {
  position: relative;
  display: block;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.merch-item:hover {
  color: var(--text);
  border-color: var(--accent);
  box-shadow: 0 0 34px rgba(201,74,26,0.22);
  transform: translateY(-3px);
}
.merch-item__img {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.merch-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merch-item__name {
  display: block;
  padding: 12px 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}
.merch-item:hover .merch-item__name { color: var(--accent); }

.merch-item--bundle { grid-column: span 2; }
.merch-item__img--contain {
  aspect-ratio: 4 / 3; /* bundle image is portrait — contain, never crop */
  background: var(--bg);
}
.merch-item__img--contain img { object-fit: contain; }
.merch-item__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
  background: var(--accent);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
}

@media (max-width: 1024px) { .merch__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .merch__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .merch__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   06 NEWSLETTER
   ============================================================ */
.section--newsletter { background: var(--bg); }
.newsletter__title { margin-bottom: 14px; }
.newsletter__sub {
  opacity: 0.8;
  margin-bottom: 30px;
  max-width: 520px;
}
.nl-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.nl-row input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  padding: 13px 16px;
}
.nl-row input[type="email"]::placeholder { color: var(--hint); }
.nl-row input[type="email"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}
#mc_embed_signup .mc_fieldset {
  border: none;
  padding: 0;
}
#mc_embed_signup .checkbox.subfield {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 12px; /* GDPR consent text must stay readable */
  line-height: 1.6;
  color: var(--text);
  opacity: 0.85;
}
#mc_embed_signup .checkbox.subfield input {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  flex: none;
}
#mc_embed_signup .checkbox.subfield a { text-decoration: underline; }
#mce-responses .response {
  margin-top: 14px;
  font-size: 13px;
}
#mce-error-response { color: var(--accent-hover); }
#mce-success-response { color: var(--text); }
/* Mailchimp validation messages */
#mc_embed_signup div.mce_inline_error {
  background: transparent !important;
  color: var(--accent-hover) !important;
  font-size: 12px;
  font-weight: 400 !important;
  padding: 6px 0 0 !important;
  margin: 0 !important;
}
#mc_embed_signup input.mce_inline_error { border-color: var(--accent) !important; }

/* ============================================================
   07 CONTACT
   ============================================================ */
.section--contact {
  background: var(--bg);
  padding-bottom: clamp(64px, 10vw, 110px);
}
.contact__title { margin-bottom: 12px; }
.contact__sub {
  opacity: 0.8;
  margin-bottom: 34px;
}
.contact__list {
  list-style: none;
}
.contact__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact__list li:first-child { border-top: 1px solid var(--border); }
.contact__label {
  flex: 0 0 170px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__list a {
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 1px;
  color: var(--text);
  transition: color 0.2s ease;
}
.contact__list a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 34px 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 32px;
}
.footer__logo {
  height: 14px;
  width: auto;
  opacity: 0.3;
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
}
.footer__links a:hover { opacity: 1; color: var(--text); }
.footer__copy {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 140%);
  z-index: 200;
  width: min(680px, calc(100% - 32px));
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 14px 50px rgba(0,0,0,0.55);
}
.cookie.is-visible { transform: translate(-50%, 0); }
.cookie p {
  flex: 1 1 320px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.85;
}
.cookie a { text-decoration: underline; }
.cookie__actions {
  display: flex;
  gap: 10px;
}
.cookie__actions .btn { padding: 10px 18px; }

/* ============================================================
   REVEAL — with triple fallback
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  /* CSS fallback: if the observer never fires, reveal after 2s */
  animation: revealFallback 0s 2s forwards;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .hero__glow,
  .hero__glow--low,
  .hero__scroll-line::after,
  .marquee__track {
    animation: none;
  }
  .hero__cover img,
  .merch-item,
  .video-poster img,
  .video-play {
    transition: none;
  }
}
