:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f4f4f4;
  --muted: #b5b5bb;
  --accent: #6fd3d9;
  --accent-visited: #57a9ad;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    linear-gradient(rgba(3, 3, 3, 0.55), rgba(3, 3, 3, 0.8)),
    url("/assets/background.jpg") no-repeat center top fixed;
  background-size: cover;
}

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

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 22px 60px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 22px;
}

.site-nav-logo img {
  height: 36px;
  display: block;
}

.site-nav nav {
  display: flex;
  gap: 22px;
}

.site-nav nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-footer {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 30px 22px 50px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

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

.hero {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  padding: 34px;
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  margin: 8px 0 18px;
}

.headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  max-width: 700px;
}

.subcopy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
  margin: 0;
}

.section-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  padding: 22px;
  margin-bottom: 18px;
}

.section-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.post-card .post-date,
.post-detail .post-date {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.post-card h3 a,
.post-detail h1 {
  color: var(--text);
  text-decoration: none;
}

.post-card img,
.post-detail img {
  width: 100%;
  border-radius: 14px;
  margin: 12px 0;
  display: block;
  cursor: zoom-in;
}

.post-body p {
  line-height: 1.7;
  color: #d7d7db;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.post-tags .tag {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 10px;
}

.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  display: block;
}

.photo-strip img.pan-top {
  object-position: center var(--pan-y, 12%);
}

.photo-strip img.pan-left {
  object-position: var(--pan-x, 10%) center;
}

.photo-strip-more {
  text-align: right;
  margin: 0 0 28px;
}

.photo-strip-more a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.photo-strip-more a:hover {
  color: var(--text);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  cursor: zoom-in;
  display: block;
  border: 1px solid var(--line);
}

.shows-list {
  display: grid;
  gap: 14px;
}

.show-card {
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.show-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
}

.show-date {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  min-width: 110px;
}

.show-venue {
  font-weight: 600;
}

.show-support {
  color: var(--muted);
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 22px;
}

.lightbox.open {
  display: flex;
}

.lightbox-stage {
  position: relative;
  width: min(96vw, 1300px);
  height: min(90vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-control {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 10, 10, 0.65);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.lightbox-close {
  top: 12px;
  right: 12px;
  font-size: 26px;
}

.lightbox-control {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

@media (max-width: 720px) {
  .site-nav {
    flex-direction: column;
    gap: 12px;
  }

  .gallery,
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .show-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
