/* ============================================================
   GOT STONES! — Dark Rock Design System v2
   ============================================================ */

@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');

/* ── Variables ─────────────────────────────────────────────── */
: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,.07);
  --bdr-red:  rgba(208,24,24,.4);
  --font-h:   'Big Shoulders Display', 'Impact', sans-serif;
  --font-d:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-b:   'Inter', system-ui, sans-serif;
  --max:      1200px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay */
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: .055;
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  mix-blend-mode: normal;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .06em;
  color: #fff;
}
.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  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: 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 {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.04);
}

/* Multi-layer overlay: dark vignette + red tint at top + heavy bottom fade */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,5,4,.85) 0%, rgba(6,5,4,.3) 60%, rgba(6,5,4,.7) 100%),
    linear-gradient(to top,   rgba(6,5,4,1)   0%, rgba(6,5,4,.1) 55%, rgba(6,5,4,.6) 100%);
}

/* Diagonal red stripe */
.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 40px 72px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(96px, 16vw, 200px);
  line-height: .88;
  letter-spacing: -.01em;
  color: #fff;
  text-transform: uppercase;
}
.hero-title .outline {
  color: rgba(255,255,255,.82);
}
.hero-title .red { color: var(--accent); }

.hero-divider {
  width: 100%;
  max-width: 560px;
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 28px 0;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 860px;
}

.hero-sub {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  max-width: 480px;
  line-height: 1.4;
}

.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, transform .15s;
  white-space: nowrap;
}
.hero-cta:hover { background: var(--accent-h); transform: translateX(4px); }
.hero-cta svg { transition: transform .2s; }
.hero-cta:hover svg { transform: translateX(4px); }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-text {
  padding: 96px 64px 96px 40px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text-inner { max-width: 520px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.tag::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--accent);
}

.about-headline {
  font-family: var(--font-h);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 900;
  line-height: .95;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: #fff; font-weight: 500; }

.about-photo {
  position: relative;
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.7) brightness(.85);
  transition: filter .6s;
}
.about-photo:hover img { filter: saturate(.9) brightness(.95); }
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,5,4,.5) 0%, transparent 50%);
}

/* Setlist marquee */
.setlist-bar {
  background: var(--accent);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.setlist-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.setlist-bar span {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 0 32px;
}
.setlist-bar span::before { content: '◆  '; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-heading {
  font-family: var(--font-h);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.section-link {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.section-link:hover { color: var(--gold); }

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}
.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: 96px 0;
}
.tour .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.tour-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--bdr);
  padding-bottom: 24px;
}

.tour-list { display: flex; flex-direction: column; }

.tour-item {
  display: grid;
  grid-template-columns: 80px 48px 1fr auto;
  gap: 0 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--bdr);
  transition: padding-left .2s;
  position: relative;
}
.tour-item::before {
  content: '';
  position: absolute;
  left: -40px; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width .2s;
  opacity: .07;
  z-index: 0;
  pointer-events: none;
}
.tour-item:hover { padding-left: 8px; }
.tour-item:hover::before { width: calc(100% + 80px); }

.tour-num {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .1em;
  position: relative;
  z-index: 1;
}
.tour-date-big, .tour-info, .btn-ticket, .soon {
  position: relative;
  z-index: 1;
}

.tour-date-big {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.tour-info {}
.tour-venue {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  text-transform: uppercase;
}
.tour-city {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-top: 4px;
  text-transform: uppercase;
}

.btn-ticket {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(208,24,24,.5);
  color: var(--accent);
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-ticket:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.soon {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── PAST SHOWS ─────────────────────────────────────────────── */
.past {
  padding: 96px 0;
  border-top: 1px solid var(--bdr);
}
.past .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.past-sticky {
  position: sticky;
  top: 100px;
}
.past-sticky .section-heading { margin-bottom: 16px; }
.past-sub {
  font-family: var(--font-d);
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--text-3);
  text-transform: uppercase;
}

.past-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.past-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.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; }

/* ── BOOKING ────────────────────────────────────────────────── */
.booking {
  position: relative;
  overflow: hidden;
  padding: 120px 40px;
  text-align: left;
  border-top: 1px solid var(--bdr);
  background: var(--bg-2);
}
.booking-bg-text {
  position: absolute;
  top: 50%; left: -20px;
  transform: translateY(-50%);
  font-family: var(--font-h);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}
.booking-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}
.booking-title {
  font-family: var(--font-h);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: .9;
  margin-bottom: 36px;
}
.booking-title span { color: var(--accent); display: block; }
.booking-email {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color .2s;
  border-bottom: 1px solid rgba(212,146,28,.2);
  padding-bottom: 8px;
}
.booking-email:hover { color: #fff; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 64px;
  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(.2) saturate(.4);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 20%, 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: 100px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(72px, 12vw, 144px);
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
  line-height: .9;
  text-transform: uppercase;
}
.page-hero-title .outline {
  color: rgba(255,255,255,.82);
}
.page-hero-sub {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 16px;
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery { padding: 64px 0 96px; }
.gallery .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.gallery-grid {
  columns: 3 260px;
  gap: 10px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease, filter .4s;
  filter: saturate(.75) brightness(.85);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(208,24,24,0);
  transition: background .3s;
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1) brightness(.95); }
.gallery-item:hover::after { background: rgba(208,24,24,.06); }

/* ── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.97);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 32px;
  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,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 22px;
  transition: background .2s, color .2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── VIDEOS ─────────────────────────────────────────────────── */
.videos-section { padding: 64px 0 96px; }
.videos-section .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.video-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--bdr);
  transition: border-color .2s, transform .2s;
}
.video-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.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(.75);
  transition: filter .3s;
}
.video-card:hover .video-thumb img { filter: saturate(.9) brightness(.9); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  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); transform: translate(-50%,-50%) scale(1.1); }
.play-btn svg { margin-left: 4px; }
.video-card-label {
  padding: 14px 16px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-3);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.video-card:hover .video-card-label { color: var(--accent); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  border-top: 4px solid var(--accent);
  padding: 40px 0;
  background: #000;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
}
.footer-logo span { color: rgba(208,24,24,.8); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .06em; }
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  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: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,146,28,.35);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.footer-dm strong { font-weight: 800; }
.footer-dm:hover { color: #fff; border-color: rgba(255,255,255,.4); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about-photo { height: 360px; }
  .about-text { padding: 64px 24px; }
  .about-text-inner { max-width: 100%; }

  .tour-item { grid-template-columns: 60px 1fr auto; gap: 16px; }
  .tour-date-big { font-size: 36px; }
  .tour-num { display: none; }

  .past .wrap { grid-template-columns: 1fr; gap: 40px; }
  .past-sticky { position: static; }
  .past-list { grid-template-columns: 1fr; }

  .nav-social { display: none; }
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 0 20px 60px; }
  .page-hero { padding: 0 20px 48px; }
  .featured-video { padding: 64px 20px; }
  .tour .wrap, .past .wrap, .gallery .wrap, .videos-section .wrap { padding: 0 20px; }
  .booking { padding: 80px 20px; }
  .footer-inner { padding: 0 20px; }
}

@media (max-width: 600px) {
  .tour-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .gallery-grid { columns: 2 160px; gap: 6px; }
  .gallery-item { margin-bottom: 6px; }
  .hero-title { font-size: clamp(72px, 20vw, 120px); }
  .nav-links { gap: 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
