:root {
  --bg: #050505;
  --bg-elev: #0c0e10;
  --panel: #121518;
  --ink: #f2f5f7;
  --muted: #9aa8b2;
  --steel: #9eb8c9;
  --steel-soft: #a8c4d4;
  --amber: #c4a574;
  --cherry: #b33a3a;
  --cherry-deep: #8f2e2e;
  --line: rgba(158, 184, 201, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 560px at 8% -8%, rgba(179, 58, 58, 0.12), transparent 55%),
    radial-gradient(900px 480px at 92% 4%, rgba(158, 184, 201, 0.10), transparent 50%),
    radial-gradient(700px 400px at 50% 100%, rgba(196, 165, 116, 0.06), transparent 55%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--steel-soft); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

.skip {
  position: absolute; left: -999px; top: auto;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 100;
  background: var(--steel); color: #0a0a0a; padding: 0.5rem 0.75rem; border-radius: 8px;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1100px; margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
}
.brand span { color: var(--steel); }
.nav-links {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav-links a:hover, .nav-links a:focus { color: var(--ink); }

main { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem 4rem; }

.hero {
  padding: 4.5rem 0 3rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}
.hero-copy { min-width: 0; }
.hero-photo {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(158, 184, 201, 0.28);
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16 / 9;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 1.5rem; height: 1px; background: var(--steel);
}
h1 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin: 0.2rem 0 0.8rem;
  max-width: 14ch;
}
.tagline {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  color: var(--muted);
  max-width: 38rem;
  margin: 0;
}
.genre-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 0.5rem;
}
.pill {
  border: 1px solid var(--line);
  background: rgba(18, 21, 24, 0.85);
  color: var(--steel-soft);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--cherry), var(--cherry-deep));
  color: #fff8f6;
  box-shadow: 0 8px 24px rgba(179, 58, 58, 0.28);
}
.btn-primary:hover { color: #fff; }
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

section {
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--line);
}
.section-kicker {
  color: var(--steel);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
  font-weight: 560;
}
.lead { color: var(--muted); max-width: 40rem; }

.draft-note {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(179, 58, 58, 0.12);
  color: #e8a0a0;
  font-size: 0.82rem;
  border: 1px solid rgba(179, 58, 58, 0.35);
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.5rem;
}
.card {
  background: linear-gradient(180deg, rgba(18,21,24,0.95), rgba(10,12,14,0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.music-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.25rem;
}
.embed-slot {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: 1px dashed rgba(158, 184, 201, 0.35);
  background:
    linear-gradient(135deg, rgba(158,184,201,0.08), rgba(179,58,58,0.06)),
    var(--panel);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--muted);
}
.embed-slot strong { display: block; color: var(--steel-soft); margin-bottom: 0.35rem; }

.shows {
  list-style: none; margin: 1.25rem 0 0; padding: 0;
  display: grid; gap: 0.75rem;
}
.show {
  display: grid;
  grid-template-columns: 6.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}
.show-date {
  font-family: var(--font-display);
  color: var(--amber);
  font-weight: 600;
  line-height: 1.2;
}
.show-date small { display: block; color: var(--muted); font-family: var(--font-body); font-weight: 500; }
.show-meta h3 { margin: 0; font-size: 1.05rem; font-family: var(--font-display); }
.show-meta p { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.92rem; }
.show-status {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
}

.contact-panel {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.2fr 1fr;
  margin-top: 1.25rem;
}
.contact-panel .card { margin: 0; }
label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
input, textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0a0c0e;
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  font: inherit;
  margin-bottom: 0.85rem;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(158, 184, 201, 0.45);
  outline-offset: 1px;
}
button.btn {
  cursor: pointer;
  width: 100%;
  border: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer strong { color: var(--ink); }

@media (max-width: 720px) {
  .show { grid-template-columns: 1fr; }
  .show-status { justify-self: start; }
  .contact-panel { grid-template-columns: 1fr; }
}

.roster-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.25rem;
}
.roster-card {
  background: linear-gradient(180deg, rgba(18,21,24,0.95), rgba(10,12,14,0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.roster-card .role {
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}
.roster-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
}
.roster-card .instruments {
  color: var(--amber);
  font-size: 0.92rem;
  margin: 0 0 0.75rem;
}
.roster-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.photo-slot {
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid rgba(158, 184, 201, 0.22);
  background: #000;
  margin-bottom: 1rem;
  overflow: hidden;
  padding: 0;
}
.photo-slot img,
.roster-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.date-time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 560px) {
  .date-time-row { grid-template-columns: 1fr; }
}
