/* ============================================================
   GOT STONES! — Mobile-First Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;800;900&family=Barlow+Condensed:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg:      #060504;
  --bg-2:    #0e0b08;
  --surface: #141009;
  --accent:  #d01818;
  --accent-h:#f01e1e;
  --gold:    #d4921c;
  --text-1:  #ffffff;
  --text-2:  #c8bfb0;
  --text-3:  #8a7b68;
  --bdr:     rgba(255,255,255,.08);
  --font-h:  'Big Shoulders Display', Impact, sans-serif;
  --font-d:  'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-b:  'Inter', system-ui, sans-serif;
  --pad:     20px;
  --max:     1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior-y: none;
}
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,5,4,.97);
  border-bottom: 1px solid rgba(208,24,24,.15);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo-text {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .05em;
}
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-social { display: none; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,5,4,.55) 0%, rgba(6,5,4,.15) 40%, rgba(6,5,4,.97) 100%),
    linear-gradient(to right,  rgba(6,5,4,.65) 0%, rgba(6,5,4,.1) 100%);
}
.hero-portrait  { display: none; }
.hero-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) 52px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(80px, 22vw, 180px);
  line-height: .85;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.hero-title .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,.7);
  color: transparent;
}
.hero-title .red { color: var(--accent); }
.hero-divider {
  width: 80px; height: 2px;
  background: rgba(208,24,24,.5);
  margin: 20px 0;
}
.hero-bottom { display: flex; flex-direction: column; gap: 20px; }
.hero-sub {
  font-family: var(--font-d);
  font-size: 16px;
  letter-spacing: .05em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  line-height: 1.5;
  max-width: 340px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background .2s;
  align-self: flex-start;
}
.hero-cta:hover { background: var(--accent-h); }

/* ── SETLIST MARQUEE ─────────────────────────────────────────── */
.setlist-bar {
  background: var(--accent);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.setlist-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.setlist-bar span {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  padding: 0 24px;
}
.setlist-bar span::before { content: '◆  '; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PHOTO STRIP (desktop only) ─────────────────────────────── */
.photo-strip { display: none; }

@media (min-width: 1024px) {
  .photo-strip {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 0.9fr;
    height: 280px;
    overflow: hidden;
  }
  .strip-item { position: relative; overflow: hidden; }
  .strip-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(.55) brightness(.68);
    transition: filter .6s, transform .7s;
  }
  .strip-item:hover img { filter: saturate(.95) brightness(.88); transform: scale(1.07); }
  .strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6,5,4,.65) 100%);
    pointer-events: none;
  }
  .strip-item + .strip-item { border-left: 2px solid rgba(6,5,4,.9); }
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about { display: flex; flex-direction: column; }
.about-text {
  padding: 56px var(--pad);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about-text::before {
  content: '89';
  position: absolute;
  right: -10px; bottom: -10px;
  font-family: var(--font-h);
  font-size: 200px;
  font-weight: 900;
  line-height: 1;
  color: rgba(208,24,24,.035);
  pointer-events: none;
  user-select: none;
}
.about-text-inner { position: relative; z-index: 1; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); }
.about-headline {
  font-family: var(--font-h);
  font-size: clamp(40px, 11vw, 60px);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-text p { font-size: 15px; color: var(--text-2); line-height: 1.85; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: #fff; font-weight: 500; }
.about-photo { position: relative; overflow: hidden; height: 340px; }
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.65) brightness(.82);
}
.about-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 4px;
  background: var(--accent);
  z-index: 2;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,5,4,.4) 100%);
  z-index: 1;
}

/* ── FEATURED VIDEO ─────────────────────────────────────────── */
.featured-video { padding: 56px var(--pad); }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.section-heading {
  font-family: var(--font-h);
  font-size: clamp(36px, 10vw, 68px);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
}
.section-link {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color .2s;
}
.section-link:hover { color: var(--gold); }
.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── TOUR ───────────────────────────────────────────────────── */
.tour { background: var(--bg-2); border-top: 1px solid var(--bdr); padding: 56px 0; }
.tour .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.tour-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--bdr);
  padding-bottom: 20px;
  flex-wrap: wrap;
}
.tour-badge { height: 56px; width: auto; opacity: .9; }
.tour-list { display: flex; flex-direction: column; }
.tour-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--bdr);
}
.tour-num { display: none; }
.tour-date-big {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.tour-date-big span { display: block; font-size: .38em; letter-spacing: .12em; color: var(--text-3); }
.tour-venue {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.2;
}
.tour-city {
  font-family: var(--font-d);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-top: 3px;
  text-transform: uppercase;
}
.btn-ticket {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 2px solid var(--accent);
  color: #ff3a3a;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 11px 20px;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-ticket:hover { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 0 20px rgba(208,24,24,.4); }
.soon {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  flex-shrink: 0;
}

/* ── PAST SHOWS ─────────────────────────────────────────────── */
.past { padding: 56px 0; border-top: 1px solid var(--bdr); }
.past .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.past-sticky { margin-bottom: 28px; }
.past-sticky .section-heading { margin-bottom: 8px; }
.past-sub {
  font-family: var(--font-d);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text-3);
  text-transform: uppercase;
}
.past-list { list-style: none; display: flex; flex-direction: column; }
.past-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.past-num {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 900;
  color: var(--text-3);
  letter-spacing: .05em;
  flex-shrink: 0;
  margin-top: 2px;
}
.past-venue { font-size: 14px; color: var(--text-2); line-height: 1.4; }
.past-venue strong { display: block; color: #fff; font-size: 15px; font-weight: 500; }

/* ── PHOTO TRIPTYCH ─────────────────────────────────────────── */
.triptych { position: relative; height: 300px; overflow: hidden; }
.triptych-side { display: none; }
.triptych-center {
  position: absolute;
  inset: 0;
}
.triptych-center img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.5) brightness(.55);
}
.triptych-center::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,5,4,.3) 0%, rgba(6,5,4,.75) 100%);
  z-index: 2;
}
.triptych-center-label {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
  padding: 0 var(--pad);
}
.triptych-center-label h3 {
  font-family: var(--font-h);
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
.triptych-center-label .sub {
  font-family: var(--font-d);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 8px 0 16px;
}
.triptych-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 11px 24px;
  transition: background .2s;
}
.triptych-cta:hover { background: var(--accent-h); }
.triptych::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 5;
}

/* ── BOOKING ────────────────────────────────────────────────── */
.booking {
  position: relative;
  overflow: hidden;
  padding: 72px var(--pad);
  border-top: 1px solid var(--bdr);
  background: var(--bg-2);
}
.booking-bg-text { display: none; }
.booking-photo   { display: none; }
.booking-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }
.booking-title {
  font-family: var(--font-h);
  font-size: clamp(44px, 13vw, 100px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .88;
  margin-bottom: 32px;
}
.booking-title span { color: var(--accent); display: block; }
.booking-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-h);
  font-size: clamp(18px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212,146,28,.25);
  padding-bottom: 6px;
  transition: color .2s;
  word-break: break-all;
}
.booking-email:hover { color: #fff; }
.booking-email svg { flex-shrink: 0; width: 20px; height: 20px; }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bdr);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.18) saturate(.4);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 15%, transparent 80%);
}
.page-hero-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  z-index: 3;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(56px, 15vw, 144px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: .88;
  text-transform: uppercase;
}
.page-hero-title .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,.7);
  color: transparent;
}
.page-hero-sub {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 14px;
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery { padding: 40px 0 72px; }
.gallery .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.gallery-grid { columns: 2; gap: 6px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  filter: saturate(.7) brightness(.82);
  transition: filter .4s, transform .5s;
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1) brightness(.92); }

/* ── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.97);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; cursor: default; }
.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 28px;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  background: none; border: none; padding: 8px;
  transition: color .2s;
  font-family: var(--font-d);
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background .2s, color .2s;
}
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── VIDEOS ─────────────────────────────────────────────────── */
.videos-section { padding: 40px 0 72px; }
.videos-section .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.video-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--bdr);
  transition: border-color .2s, transform .2s;
}
.video-card:hover { border-color: rgba(208,24,24,.5); transform: translateY(-3px); }
.video-thumb { position: relative; padding-bottom: 56.25%; overflow: hidden; background: #000; }
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.6) brightness(.72);
  transition: filter .3s;
}
.video-card:hover .video-thumb img { filter: saturate(.9) brightness(.88); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  background: rgba(208,24,24,.9);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.video-card:hover .play-btn { background: var(--accent-h); transform: translate(-50%,-50%) scale(1.1); }
.play-btn svg { margin-left: 4px; }
.video-card-label {
  padding: 12px 14px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-3);
  text-transform: uppercase;
  transition: color .2s;
}
.video-card:hover .video-card-label { color: var(--accent); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { border-top: 4px solid var(--accent); padding: 36px 0; background: #000; }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo { font-family: var(--font-h); font-size: 20px; font-weight: 900; letter-spacing: .08em; color: rgba(255,255,255,.5); }
.footer-logo span { color: rgba(208,24,24,.75); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .05em; }
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-social a:hover { color: var(--gold); }
.footer-dm {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,146,28,.3);
  padding-bottom: 2px;
  transition: color .2s;
}
.footer-dm strong { font-weight: 800; }
.footer-dm:hover { color: #fff; }

/* ============================================================
   TABLET  640px+
   ============================================================ */
@media (min-width: 640px) {
  :root { --pad: 32px; }
  .nav-inner { height: 68px; }
  .nav-logo-text { font-size: 22px; }
  .nav-links { gap: 32px; }
  .nav-links a { font-size: 13px; }
  .about-photo { height: 440px; }
  .tour-item { grid-template-columns: 64px 1fr auto; gap: 0 24px; }
  .tour-date-big { font-size: 48px; }
  .past-list { display: grid; grid-template-columns: 1fr 1fr; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 3; }
  .footer-inner { flex-direction: row; flex-wrap: wrap; justify-content: space-between; text-align: left; align-items: center; }
}

/* ============================================================
   DESKTOP  1024px+
   ============================================================ */
@media (min-width: 1024px) {
  :root { --pad: 40px; }

  /* Film grain — desktop only, safe here */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .05;
    pointer-events: none;
    z-index: 9999;
  }

  /* Nav — fixed on desktop with blur */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: linear-gradient(to bottom, rgba(6,5,4,.9) 0%, transparent 100%);
    border-bottom: none;
    transition: background .4s, box-shadow .4s;
  }
  .nav.scrolled {
    background: rgba(6,5,4,.94);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(208,24,24,.15);
    box-shadow: 0 2px 24px rgba(0,0,0,.6);
  }
  .nav-inner { height: 72px; }
  .nav-logo-text { font-size: 24px; }
  .nav-links { gap: 40px; }
  .nav-social { display: flex; gap: 18px; align-items: center; }
  .nav-social a { color: rgba(255,255,255,.35); transition: color .2s; }
  .nav-social a:hover { color: var(--gold); }

  /* Hero */
  .hero-overlay {
    background:
      linear-gradient(to right, rgba(6,5,4,.95) 0%, rgba(6,5,4,.5) 55%, rgba(6,5,4,.15) 100%),
      linear-gradient(to top,   rgba(6,5,4,1)   0%, rgba(6,5,4,.05) 60%, rgba(6,5,4,.5) 100%);
  }
  .hero-portrait {
    display: block;
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: clamp(280px, 34%, 480px);
    z-index: 2;
    overflow: hidden;
  }
  .hero-portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6,5,4,1) 0%, rgba(6,5,4,.55) 30%, rgba(6,5,4,.05) 70%, transparent 100%);
    z-index: 2;
  }
  .hero-portrait::after {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    z-index: 3;
  }
  .hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.65) brightness(.72); }
  .hero-portrait-label {
    position: absolute;
    bottom: 80px; right: 20px;
    font-family: var(--font-d);
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.22);
    writing-mode: vertical-rl;
    z-index: 4;
  }
  .hero-content { padding: 0 40px 72px; }
  .hero-bottom { flex-direction: row; align-items: flex-end; justify-content: space-between; max-width: 860px; }
  .hero-sub { font-size: 18px; max-width: 480px; }
  .hero-divider { width: 560px; height: 1px; background: linear-gradient(to right, rgba(208,24,24,.5), rgba(255,255,255,.1), transparent); margin: 28px 0; }

  /* About */
  .about { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
  .about-text { padding: 96px 64px 96px 40px; display: flex; flex-direction: column; justify-content: center; }
  .about-text-inner { max-width: 520px; }
  .about-photo { height: auto; }
  .about-photo:hover img { filter: saturate(.88) brightness(.92); transform: scale(1.03); }
  .about-photo img { transition: filter .7s, transform .7s; }

  /* Video */
  .featured-video { padding: 96px 40px; max-width: var(--max); margin: 0 auto; }

  /* Tour */
  .tour { padding: 96px 0; }
  .tour-num { display: block; font-family: var(--font-h); font-size: 12px; font-weight: 700; color: var(--text-3); letter-spacing: .12em; }
  .tour-item {
    grid-template-columns: 80px 64px 1fr auto;
    gap: 0 32px;
    padding: 28px 0;
    position: relative;
    transition: padding-left .25s;
  }
  .tour-item::before {
    content: '';
    position: absolute;
    left: -40px; top: 0; bottom: 0;
    width: 0;
    background: linear-gradient(to right, rgba(208,24,24,.08), rgba(208,24,24,.03));
    transition: width .3s;
    pointer-events: none;
  }
  .tour-item:hover { padding-left: 10px; }
  .tour-item:hover::before { width: calc(100% + 80px); }
  .tour-date-big { font-size: 52px; transition: color .2s; }
  .tour-item:hover .tour-date-big { color: var(--accent-h); }
  .tour-venue { font-size: 24px; }
  .tour-city { font-size: 13px; letter-spacing: .1em; }

  /* Past shows */
  .past { padding: 96px 0; }
  .past .wrap { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
  .past-sticky { position: sticky; top: 100px; margin-bottom: 0; }
  .past-list { display: grid; grid-template-columns: 1fr 1fr; }
  .past-list li { transition: padding-left .2s; }
  .past-list li:hover { padding-left: 6px; }

  /* Triptych */
  .triptych { display: grid; grid-template-columns: 1fr 1.9fr 1fr; gap: 3px; height: 520px; }
  .triptych-side { display: block; position: relative; overflow: hidden; }
  .triptych-side img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.5) brightness(.62); transition: filter .7s, transform .8s; }
  .triptych-side:hover img { filter: saturate(.82) brightness(.8); transform: scale(1.05); }
  .triptych-side::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(6,5,4,.7) 100%); pointer-events: none; }
  .triptych-center { position: relative; }
  .triptych-center img { transition: filter .7s, transform .8s; }
  .triptych-center:hover img { filter: saturate(.7) brightness(.7); transform: scale(1.04); }
  .triptych-center-label h3 { font-size: clamp(32px, 3.5vw, 52px); }

  /* Booking */
  .booking { padding: 130px 40px; }
  .booking-bg-text {
    display: block;
    position: absolute;
    top: 50%; left: -20px;
    transform: translateY(-50%);
    font-family: var(--font-h);
    font-size: clamp(100px, 16vw, 220px);
    font-weight: 900;
    color: rgba(255,255,255,.022);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
  }
  .booking-photo {
    display: block;
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40%;
    overflow: hidden;
    pointer-events: none;
  }
  .booking-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0) brightness(.55); opacity: .18; }
  .booking-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--bg-2), transparent 40%); z-index: 1; }
  .booking-email { font-size: clamp(22px, 3vw, 40px); word-break: normal; }
  .booking-email svg { width: 24px; height: 24px; }

  /* Videos */
  .videos-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  /* Gallery */
  .gallery { padding: 64px 0 96px; }
  .gallery-grid { columns: 3 260px; gap: 8px; }
  .gallery-item { margin-bottom: 8px; }
}
