
:root {
  --bg: #0e0f12;
  --bg-alt: #15161a;
  --text: #f2f3f7;
  --muted: #c9cbd3;
  --primary: #ff6a00;
  --secondary: #00c2ff;
  --accent: #ffd166;
  --border: #2a2d34;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 12px;
}

/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img, video { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
.container { width: min(1100px, 92%); margin: 0 auto; }
h1, h2, h3 { line-height: 1.25; margin: 0 0 .6rem; }
p { margin: 0 0 1rem; }
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 1.2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--accent); color: #000; padding: .5rem .75rem; border-radius: 6px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(21,22,26,0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 0;
}
.brand { display: flex; gap: .6rem; align-items: center; font-weight: 700; color: var(--text); }
.brand img { width: 36px; height: 36px; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); padding: .4rem .6rem; border-radius: 8px;
}
.nav-list { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.nav-list a { padding: .4rem .6rem; border-radius: 8px; }
.nav-list a:hover { background: var(--bg-alt); }

/* Hero */
.hero { padding: 3.5rem 0; background: linear-gradient(180deg, #121317, #0e0f12 60%); }
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.tagline { color: var(--muted); }
.btn {
  display: inline-block; padding: .6rem .9rem; border-radius: 10px; font-weight: 600;
  border: 1px solid var(--border);
}
.btn-primary { background: var(--primary); color: #000; }
.btn-secondary { background: var(--bg-alt); color: var(--text); }

/* Sections */
.about, .media-section, .setlist-section, .contact-section { padding: 2.5rem 0; }
.highlights { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .6rem; }
.highlights li { background: var(--bg-alt); padding: .6rem .8rem; border-radius: 10px; border: 1px solid var(--border); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.gallery-item { border: none; background: none; padding: 0; cursor: pointer; }
.gallery-item img { transition: transform .2s ease; }
.gallery-item:hover img { transform: scale(1.02); }

/* Audio & Video */
.audio-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1rem; }
.video-card { background: var(--bg-alt); padding: .8rem; border-radius: var(--radius); border: 1px solid var(--border); }

/* Setlist */
.setlist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.note { color: var(--muted); }

/* Contact & Pricing */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.2rem; }
.contact-card, .pricing-card {
  background: var(--bg-alt); padding: 1rem; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.pricing-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  background: #1b1d22; border: 1px solid var(--border); border-radius: 10px; padding: .6rem .8rem;
}
.price { font-weight: 700; color: var(--accent); }
.fine-print { color: var(--muted); font-size: .95rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 1.4rem 0; background: #0c0d10; margin-top: 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.site-footer nav a { margin-right: .8rem; }

/* Modal */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; }
.modal[aria-hidden="false"] { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.modal-content { position: relative; z-index: 2; background: var(--bg-alt); padding: .6rem; border-radius: var(--radius); border: 1px solid var(--border); max-width: 90vw; max-height: 90vh; }
.modal-close { position: absolute; top: .2rem; right: .4rem; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }
#modal-img { width: 80vw; max-width: 1000px; height: auto; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .setlist-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .nav-list { display: none; flex-direction: column; gap: .4rem; padding-top: .6rem; }
  .nav-list.open { display: flex; }
}
