/* ─── Design tokens ───────────────────────────────────────────────────────── */
:root {
  color-scheme: dark;

  --bg:          #060608;
  --bg-warm:     #09090c;
  --panel:       #0e0e11;
  --panel-2:     #141417;
  --text:        #ede8db;
  --muted:       #8c857a;
  --dim:         #48463f;
  --line:        rgba(237, 232, 219, 0.08);
  --line-strong: rgba(237, 232, 219, 0.15);
  --gold:        #c4983e;
  --gold-hi:     #dbb054;
  --gold-dim:    rgba(196, 152, 62, 0.14);
  --gold-dimmer: rgba(196, 152, 62, 0.06);
  --gold-glow:   0 0 48px rgba(196, 152, 62, 0.32);
  --white:       #ffffff;
  --max:         1320px;
}

/* ─── Grain animation ─────────────────────────────────────────────────────── */
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10%     { transform: translate(-4%,-9%); }
  20%     { transform: translate(-14%,4%); }
  30%     { transform: translate(6%,-24%); }
  40%     { transform: translate(-4%,24%); }
  50%     { transform: translate(-14%,9%); }
  60%     { transform: translate(14%,0%); }
  70%     { transform: translate(0%,14%); }
  80%     { transform: translate(2%,34%); }
  90%     { transform: translate(-10%,9%); }
}


/* ─── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: crosshair;
}

/* Animated film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: -100%;
  width: 400%;
  height: 400%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
  animation: grain 8s steps(10) infinite;
}

a  { color: inherit; cursor: crosshair; }
h1, h2, h3, p, dl, dd, dt { margin-top: 0; }
img    { display: block; max-width: 100%; }
iframe { display: block; border: 0; }

/* ─── Typography — two-font system ───────────────────────────────────────── */
h1, h2, h3,
.poster-title,
.hero-stats dt,
.impact-band span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 1100px;
  margin-bottom: 28px;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7.5vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.eyebrow {
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(52px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }

/* ─── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 6, 8, 0.88);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
}

.brand img {
  display: block;
  width: min(190px, 40vw);
  height: auto;
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a {
  color: var(--dim);
  text-decoration: none;
  transition: color 120ms ease;
}

.nav a:hover { color: var(--text); }

.nav-cta {
  border: 1px solid rgba(196, 152, 62, 0.4);
  border-radius: 2px;
  padding: 9px 18px;
  color: var(--gold) !important;
  background: var(--gold-dimmer);
  letter-spacing: 0.1em;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease !important;
}

.nav-cta:hover {
  border-color: var(--gold) !important;
  background: var(--gold-dim) !important;
  color: var(--gold-hi) !important;
  box-shadow: var(--gold-glow);
}

/* ─── Hero — full-screen video ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Video layer */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Multi-stop overlay: subtle top, heavy at bottom so text reads cleanly */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 8, 0.25) 0%,
    rgba(6, 6, 8, 0.0)  20%,
    rgba(6, 6, 8, 0.0)  45%,
    rgba(6, 6, 8, 0.72) 72%,
    rgba(6, 6, 8, 0.97) 100%
  );
}

/* Content sits above video */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(140px, 18vw, 240px) clamp(20px, 4vw, 52px) clamp(56px, 7vw, 96px);
}

/* Legacy .photo-credit — kept for potential reuse */
.photo-credit {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  color: rgba(237, 232, 219, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.poster {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 32px 28px;
  display: grid;
  gap: 6px;
}

.poster-kicker,
.poster-subtitle {
  color: rgba(237, 232, 219, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.poster-title {
  font-size: clamp(52px, 8.5vw, 120px);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

/* Hero content */
.hero-copy,
.section p,
.bio {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 36px;
  font-size: 17px;
  color: rgba(237, 232, 219, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Hero stats ──────────────────────────────────────────────────────────── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 48px 0 0;
  background: var(--line-strong);
  overflow: hidden;
}

.hero-stats div {
  background: var(--panel);
  padding: 22px 18px;
  position: relative;
}

.hero-stats div::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-stats div:hover::before {
  transform: scaleX(1);
}

.hero-stats dt {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--gold);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-shadow: var(--gold-glow);
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 13px 24px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 180ms ease,
              background 180ms ease,
              box-shadow 180ms ease;
  cursor: crosshair;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 232, 219, 0.3);
}

.button.primary {
  background: var(--gold);
  border-color: transparent;
  color: #06050a;
  font-weight: 800;
}

.button.primary:hover {
  background: var(--gold-hi);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

.button.full { width: 100%; }


/* ─── Impact band — full bleed ────────────────────────────────────────────── */
.impact-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: none;
  margin: 0 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.impact-band div {
  position: relative;
  min-height: 140px;
  border-right: 1px solid var(--line);
  background: var(--panel);
  padding: 28px clamp(20px, 3vw, 36px);
  overflow: hidden;
  transition: background 220ms ease;
}

.impact-band div:last-child { border-right: none; }

.impact-band div:hover { background: var(--panel-2); }

/* Gold sweep from top */
.impact-band div::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.impact-band div:hover::before { transform: scaleX(1); }

.impact-band span,
.impact-band strong {
  display: block;
}

.impact-band span {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--text);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.impact-band strong {
  margin-top: 14px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─── Section base ────────────────────────────────────────────────────────── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(88px, 11vw, 144px) clamp(20px, 4vw, 40px);
}

.section + .section {
  border-top: 1px solid var(--line);
}

/* ─── Two-column layouts ──────────────────────────────────────────────────── */
.proof-grid,
.split,
.press,
.release-feature,
.tour-dates {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

/* ─── Proof / momentum cards ──────────────────────────────────────────────── */
.proof-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
  overflow: hidden;
}

.proof-cards article {
  background: var(--panel);
  padding: 32px 26px;
  transition: background 220ms ease;
}

.proof-cards article:hover { background: var(--panel-2); }

.proof-cards strong {
  display: block;
  margin-bottom: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}

.proof-cards span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ─── Release feature ─────────────────────────────────────────────────────── */
.release-feature {
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: clamp(80px, 10vw, 120px);
}

.release-points {
  display: grid;
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  overflow: hidden;
}

.release-points article {
  background: var(--panel);
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  transition: background 220ms ease, border-color 220ms ease;
}

.release-points article:hover {
  background: var(--panel-2);
  border-color: var(--gold-hi);
}

.release-points strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

.release-points span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.release-stack { display: grid; gap: 16px; }

.embed-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  padding: 10px;
}

.remix-note {
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  background: var(--panel);
  padding: 24px;
}

.remix-note h3 { color: var(--text); }

.remix-note p {
  color: var(--muted);
  font-size: 15px;
}

.remix-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 152, 62, 0.35);
  transition: border-color 150ms ease, color 150ms ease;
}

.remix-note a:hover {
  color: var(--gold-hi);
  border-color: var(--gold);
}

/* ─── Tour dates ──────────────────────────────────────────────────────────── */
.dates-list {
  border: 1px solid var(--line-strong);
  overflow: hidden;
}

.date-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  transition: background 180ms ease;
  position: relative;
  overflow: hidden;
}

/* Gold sweep on hover */
.date-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.date-row:hover::before { transform: scaleY(1); }
.date-row:last-child { border-bottom: none; }
.date-row:hover { background: var(--panel-2); }

.date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  text-align: center;
  flex-shrink: 0;
}

.date-month {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.date-day {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--text);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-shadow: var(--gold-glow);
}

.date-info {
  flex: 1;
  min-width: 0;
}

.date-info strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.date-info span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.date-cta {
  flex-shrink: 0;
  font-size: 10px;
  padding: 9px 16px;
  min-height: 36px;
  letter-spacing: 0.14em;
}

/* ─── Photos ──────────────────────────────────────────────────────────────── */
.photos-section { border-top: 1px solid var(--line); }

.section-heading {
  max-width: 840px;
  margin-bottom: 40px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background: var(--panel);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(6, 6, 8, 0.28) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.photo-card.large {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 580px;
}

.photo-card:not(.large):not(.wide) { grid-column: span 3; }

.photo-card.wide {
  grid-column: 1 / -1;
  min-height: 420px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 700ms ease;
  filter: saturate(0.9);
}

.photo-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

/* ─── Listen / music ──────────────────────────────────────────────────────── */
.link-row {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.link-row a {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 130ms ease, padding-left 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.link-row a:first-child { border-top: 1px solid var(--line); }

.link-row a:hover {
  color: var(--text);
  padding-left: 10px;
}

.link-row a::after {
  content: "→";
  margin-left: auto;
  color: var(--dim);
  font-size: 15px;
  transition: color 130ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.link-row a:hover::after {
  color: var(--gold);
  transform: translateX(6px);
}

/* ─── Live show section ───────────────────────────────────────────────────── */
.live-section {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
  padding: clamp(80px, 10vw, 128px) clamp(20px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

/* Ghost text in the background */
.live-section::before {
  content: "LIVE";
  position: absolute;
  right: -0.05em;
  bottom: -0.15em;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(180px, 25vw, 400px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 232, 219, 0.04);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.live-section > * { position: relative; z-index: 1; }

.live-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.live-copy {
  max-width: 900px;
  margin-bottom: 56px;
}

.show-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
  overflow: hidden;
}

.show-types article {
  background: var(--panel);
  padding: 36px 30px;
  transition: background 220ms ease;
  position: relative;
}

.show-types article::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.show-types article:hover { background: var(--panel-2); }
.show-types article:hover::before { transform: scaleX(1); }

.show-types span {
  display: block;
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: var(--gold-glow);
}

.show-types h3 {
  color: var(--text);
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 14px;
}

.show-types p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ─── Press section ───────────────────────────────────────────────────────── */
.press { align-items: start; }

.bio {
  font-size: 16px;
  line-height: 1.75;
  max-width: 72ch;
  color: var(--muted);
}

.press-panel {
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--gold);
  background: var(--panel);
  padding: 36px;
}

.press-panel h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 24px;
}

.press-panel ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.press-panel li {
  color: var(--muted);
  font-size: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.45;
}

.press-panel li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: var(--gold-glow);
}

.press-panel li:last-child { border-bottom: none; }

/* ─── Booking close ───────────────────────────────────────────────────────── */
.booking-close {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(88px, 11vw, 144px);
  padding-bottom: clamp(88px, 11vw, 144px);
  position: relative;
  overflow: hidden;
}

/* Ghost echo behind the heading */
.booking-close::before {
  content: "BOOK";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(120px, 18vw, 300px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 152, 62, 0.07);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
}

.booking-close > * { position: relative; z-index: 1; }

.booking-close h2 { max-width: 100%; }

.booking-close p {
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 17px;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 12px;
}

.footer-legal {
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
  color: var(--dim);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.footer-legal a {
  color: var(--dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.footer strong {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.footer span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: var(--dim);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 150ms ease;
}

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

/* ─── Responsive — 1100px ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .impact-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-band div:nth-child(2n) { border-right: none; }
  .impact-band div:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ─── Responsive — 900px ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    gap: 18px;
  }

  .proof-grid,
  .split,
  .press,
  .release-feature,
  .tour-dates {
    grid-template-columns: 1fr;
  }

  .hero { min-height: 100svh; }

  .show-types,
  .proof-cards {
    grid-template-columns: 1fr;
  }

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

  .photo-card.large,
  .photo-card:not(.large) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 300px;
  }

  .photo-card.large {
    grid-column: span 2;
    min-height: 400px;
  }
}

/* ─── Responsive — 560px ──────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .site-header { padding: 14px 16px; }

  .nav { gap: 14px; font-size: 10px; white-space: nowrap; }
  .nav-cta { padding: 7px 12px; }

  .hero,
  .section,
  .impact-band { padding-left: 16px; padding-right: 16px; }

  .hero { overflow: hidden; }
  .hero-content { width: 100%; min-width: 0; }

  h1 { font-size: clamp(52px, 14vw, 80px); }
  h2 { font-size: clamp(38px, 11vw, 60px); }

  .hero-copy, .section p, .bio { font-size: 16px; width: 100%; }

  .hero-actions .button { width: 100%; }

  .hero-stats { grid-template-columns: 1fr; gap: 1px; }

  .impact-band {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .impact-band div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .impact-band div:last-child { border-bottom: none; }

  .show-types { grid-template-columns: 1fr; }

  .date-row { flex-wrap: wrap; gap: 12px; }
  .date-cta { width: 100%; }

  .photo-grid { grid-template-columns: 1fr; }
  .photo-card.large, .photo-card:not(.large) {
    grid-column: span 1;
    min-height: 260px;
  }

  .footer { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }

  .booking-close { text-align: left; margin: 0; }
  .booking-close::before { display: none; }
  .booking-close p { margin: 0 0 32px; }
}

/* ─── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body::before { animation: none; }

  .photo-card img { transition: none; }
  .button { transition: none; }
}
