:root {
  --bg: #1a2420;
  --bg-deep: #121816;
  --accent: #ffd700;
  --accent2: #ff1493;
  --text: #fdfdfd;
  --muted: #8fa89a;
  --jade: #2b2b2b;
  --radius: 16px;
  --dock-h: 72px;
  --max: 1080px;
  --font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-ui: "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 215, 0, 0.08), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(255, 20, 147, 0.07), transparent 38%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 38%, #0f1512 100%);
  color: var(--text);
  line-height: 1.65;
  padding-bottom: calc(var(--dock-h) + 24px);
}

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

a {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--accent);
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
}

.site-header {
  padding: 28px 20px 8px;
  max-width: var(--max);
  margin: 0 auto;
}

.site-mark {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.hero--split-asymmetric {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 24px 0 56px;
}

@media (min-width: 860px) {
  .hero--split-asymmetric {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
}

.hero-kicker {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  color: var(--accent);
}

.hero-tagline {
  margin: 16px 0 0;
  font-size: 1.12rem;
  color: rgba(253, 253, 253, 0.92);
  max-width: 34rem;
}

.hero-stats {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats li {
  min-width: 96px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(43, 43, 43, 0.72);
  border: 1px solid rgba(255, 215, 0, 0.18);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-ui);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

.hero-visual-accent {
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(26, 36, 32, 0.92));
}

.band {
  padding: 56px 0;
}

.band-intro--left h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--text);
}

.band-intro--left p {
  margin: 10px 0 0;
  max-width: 38rem;
  color: var(--muted);
}

.timeline {
  list-style: none;
  margin: 36px 0 0;
  padding: 0 0 0 18px;
  border-left: 2px solid rgba(255, 215, 0, 0.28);
}

.timeline-node {
  position: relative;
  padding: 0 0 34px 28px;
}

.timeline-node:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -27px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.15);
}

.timeline-body h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--accent);
}

.timeline-body p {
  margin: 10px 0 0;
  color: rgba(253, 253, 253, 0.88);
  max-width: 40rem;
}

.gallery-band {
  padding: 8px 0 24px;
}

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

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 215, 0, 0.12);
}

.film-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 28px 4px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.film-frame {
  flex: 0 0 min(72vw, 260px);
  margin: 0;
  scroll-snap-align: start;
}

.film-frame img {
  width: 100%;
  border-radius: 22px;
  border: 2px solid rgba(255, 215, 0, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.film-frame figcaption {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
}

.legal-effective {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.legal-prose--dropcap p:first-of-type::first-letter {
  float: left;
  font-size: 3.4rem;
  line-height: 0.85;
  padding-right: 10px;
  padding-top: 4px;
  color: var(--accent);
  font-weight: 700;
}

.legal-prose p {
  margin: 0 0 16px;
  max-width: 42rem;
}

.support-card {
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(43, 43, 43, 0.55);
  border: 1px solid rgba(255, 20, 147, 0.18);
  max-width: 42rem;
}

.support-card p {
  margin: 0 0 14px;
}

.support-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-family: var(--font-ui);
}

.bottom-dock {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  gap: 6px;
  width: min(calc(100% - 24px), 520px);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(18, 24, 22, 0.92);
  border: 1px solid rgba(255, 215, 0, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
}

.dock-link {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1.2;
  padding: 8px 4px;
  border-radius: 999px;
  color: var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
}

.dock-link--muted {
  color: var(--muted);
}

.dock-link:hover,
.dock-link:focus-visible {
  background: rgba(255, 215, 0, 0.12);
  color: var(--text);
  outline: none;
}

.dock-link.is-active {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.22), rgba(255, 20, 147, 0.16));
  color: var(--text);
}

@media (min-width: 900px) {
  .bottom-dock {
    width: min(calc(100% - 48px), 640px);
  }

  .dock-link {
    font-size: 0.78rem;
  }
}
