:root {
  --bg: #080808;
  --card: #121212;
  --card2: #0f0f0f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --yellow: #FFB800;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 10px;
  --shadow: 0 10px 40px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--yellow); }

.skip-link {
  position: absolute; left: -999px; top: 10px;
  background: var(--yellow); color: #000;
  padding: 10px 14px; border-radius: 8px;
  font-weight: 700; z-index: 9999;
}
.skip-link:focus { left: 10px; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Topbar */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 6px;
  border-radius: 8px;
}
.nav a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: #fff;
}
.nav-open .nav { display: flex; }

/* Hero */
.hero {
  padding: clamp(70px, 10vw, 110px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,184,0,0.08) 0%, transparent 50%);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.95) 100%);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,184,0,0.10), rgba(18,18,18,0.85) 45%, rgba(18,18,18,1));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.stack { display: flex; flex-direction: column; line-height: 0.82; }
.big { font-family: "Oswald", sans-serif; font-size: clamp(64px, 12vw, 150px); font-weight: 700; }
.amp { font-family: "Oswald", sans-serif; font-size: clamp(42px, 8vw, 96px); color: var(--yellow); margin: 12px 0; }

.sub {
  color: var(--yellow);
  letter-spacing: 0.45em;
  font-weight: 700;
  margin: 18px 0 10px;
  font-size: clamp(11px, 2vw, 14px);
}

.hero-lead {
  margin: 0 auto 24px;
  max-width: 60ch;
  color: var(--muted);
}

/* Buttons & chips */
.btn {
  display: inline-block;
  padding: 15px 28px;
  font-weight: 800;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.btn-primary { background: var(--yellow); color: #000; }
.btn-primary:hover { filter: brightness(0.95); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: rgba(255,184,0,0.6); }

.cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 22px;
  flex-wrap: wrap;
}

.chip {
  background: transparent;
  border: 1px solid rgba(255,184,0,0.65);
  color: var(--yellow);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform .08s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { transform: translateY(-1px); }
.chip.active { background: var(--yellow); color: #000; border-color: var(--yellow); }

/* Sections */
.section { padding: 80px 0; }
.section.alt { background: var(--card2); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }

.section-heading {
  font-family: "Oswald", sans-serif;
  color: var(--yellow);
  font-size: 32px;
  margin: 0 0 22px;
  letter-spacing: 0.04em;
}

.lead { max-width: 70ch; color: var(--muted); }

/* Bio Section */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 20px;
}

.bio-image-placeholder {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-title {
  font-family: "Oswald", sans-serif;
  color: var(--yellow);
  font-size: 22px;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.bio-text {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 820px) {
  .bio-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bio-image-placeholder {
    max-width: 400px;
    margin: 0 auto;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.card {
  background: var(--card);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.card h3 { color: var(--yellow); margin-top: 0; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  position: relative;
}

.quote-icon {
  font-size: 72px;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.2;
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 20px;
  user-select: none;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 30px 0 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  color: var(--text);
  font-size: 15px;
}

.testimonial-author span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
}

/* Setlist */
.filter-status {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  margin-bottom: 18px;
}

.btn-text {
  background: none;
  border: 0;
  color: var(--yellow);
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn-text:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.song-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.song-item.is-hidden { display: none; }

/* Gigs table */
.table-container {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.row:last-child { border-bottom: 0; }
.header-row { color: var(--yellow); font-weight: 900; letter-spacing: 0.06em; }

/* Form */
.contact-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea {
  background: #141414;
  border: 1px solid var(--line);
  color: #fff;
  padding: 14px 14px;
  border-radius: 12px;
  font: inherit;
}
textarea { resize: vertical; min-height: 120px; }
input:focus, textarea:focus { border-color: rgba(255,184,0,0.8); outline: none; box-shadow: 0 0 0 3px rgba(255,184,0,0.12); }

.form-hint { color: var(--muted); margin: 6px 0 0; font-size: 13px; }

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    right: 4%;
    top: 64px;
    background: rgba(18,18,18,0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    flex-direction: column;
    min-width: 220px;
    box-shadow: var(--shadow);
  }
  .nav a { width: 100%; }
}

@media (max-width: 768px) {
  .row { grid-template-columns: 1fr 1fr; }
  .row div:nth-child(3), .row div:nth-child(4) { display: none; }
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .chip { transition: none; }
}

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #000;
  padding: 16px 28px;
  font-weight: 900;
  letter-spacing: .08em;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
  z-index: 999;
}

@media (max-width: 768px) {
  .mobile-cta { display: inline-block; }
}

@media (max-width: 768px) {
  .table-container { border-radius: 14px; overflow: hidden; }

  .row.header-row { display: none; }

  .row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 16px;
  }

  .row div:nth-child(1)::before { content: "DATE: "; color: var(--yellow); font-weight: 800; }
  .row div:nth-child(2)::before { content: "VENUE: "; color: var(--yellow); font-weight: 800; }
  .row div:nth-child(3)::before { content: "CITY: "; color: var(--yellow); font-weight: 800; }
  .row div:nth-child(4)::before { content: "TIME: "; color: var(--yellow); font-weight: 800; }
}
