:root {
  --background: oklch(0.1 0 0);
  --foreground: oklch(0.95 0 0);
  --card: oklch(0.14 0 0);
  --card-foreground: oklch(0.95 0 0);
  --primary: oklch(0.65 0.2 25);
  --primary-foreground: oklch(0.98 0 0);
  --secondary: oklch(0.2 0 0);
  --secondary-foreground: oklch(0.9 0 0);
  --muted: oklch(0.25 0 0);
  --muted-foreground: oklch(0.65 0 0);
  --border: oklch(0.25 0 0);
  --ring: oklch(0.65 0.2 25 / 0.5);
  --radius: 4px;
  --font-sans: "Inter", "Inter Fallback", system-ui, -apple-system, sans-serif;
  --font-heading: "Oswald", "Oswald Fallback", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--card {
  background: var(--card);
}

.section--secondary {
  background: var(--secondary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 3vw + 1rem, 3.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 32px;
}

.section-divider {
  width: 64px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto 48px;
}

.muted {
  color: var(--muted-foreground);
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.2em;
}

.tracking-wider {
  letter-spacing: 0.3em;
}

.tracking-widest {
  letter-spacing: 0.4em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: color-mix(in oklch, var(--primary) 90%, black 10%);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--foreground);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: color-mix(in oklch, var(--background) 90%, transparent 10%);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav {
  display: none;
  gap: 32px;
}

.nav a {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

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

.social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social a {
  color: var(--muted-foreground);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, color-mix(in oklch, var(--background) 60%, transparent 40%), transparent 40%, var(--background));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw + 1rem, 7rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero-location {
  font-size: 1rem;
  color: var(--muted-foreground);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-foreground);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -8px);
  }
  60% {
    transform: translate(-50%, -4px);
  }
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--muted);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0;
  cursor: pointer;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px;
  background: color-mix(in oklch, black 60%, transparent);
  color: var(--foreground);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, black 95%, transparent);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.lightbox-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 16px;
  font-size: 1.1rem;
}

.lightbox-btn {
  position: absolute;
  top: 16px;
  color: var(--foreground);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.lightbox-btn svg {
  width: 32px;
  height: 32px;
}

.lightbox-close {
  right: 16px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.shows-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.show-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--card);
}

.show-card.featured {
  border-color: var(--primary);
  background: color-mix(in oklch, var(--primary) 5%, var(--card));
}

.show-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.show-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.show-subtitle {
  margin: 0 0 16px;
  color: var(--muted-foreground);
}

.show-meta {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.show-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--foreground);
}

.show-meta-row.muted {
  color: var(--muted-foreground);
  align-items: flex-start;
}

.show-meta svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex: 0 0 auto;
  margin-top: 2px;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.band-card {
  text-align: center;
}

.band-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--muted);
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.band-card:hover .band-icon {
  background: color-mix(in oklch, var(--primary) 20%, var(--muted));
}

.band-card svg {
  width: 32px;
  height: 32px;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.band-card:hover svg {
  color: var(--primary);
}

.footer {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.footer .container {
  text-align: center;
}

.footer-cta {
  max-width: 600px;
  margin: 0 auto 48px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--muted);
  color: var(--muted-foreground);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-1px);
}

.footer-meta {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .hero-location {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    flex-direction: column;
    gap: 16px;
  }

  .brand {
    font-size: 1.3rem;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
