:root {
  --bg: #10100f;
  --panel: #171716;
  --text: #f4efe4;
  --muted: #b8b0a2;
  --line: rgba(244, 239, 228, .14);
  --accent: #b96b3d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 34px;
  background: linear-gradient(to bottom, rgba(16,16,15,.88), rgba(16,16,15,.35), transparent);
  backdrop-filter: blur(8px);
}

.brand {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -.04em;
}

nav { display: flex; gap: 22px; font-size: 13px; color: var(--muted); }
nav a:hover { color: var(--text); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 24px 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(16,16,15,.25), var(--bg)),
    linear-gradient(to right, rgba(16,16,15,.8), rgba(16,16,15,.2), rgba(16,16,15,.8)),
    url('assets/live.jpg') center/cover;
  filter: saturate(.8) contrast(1.15);
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 35%, transparent 0, rgba(0,0,0,.55) 55%, rgba(0,0,0,.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}
.logo {
  width: min(240px, 55vw);
  border-radius: 50%;
  filter: drop-shadow(0 28px 55px rgba(0,0,0,.75));
  margin-bottom: 28px;
}
.eyebrow, .section-label, .status {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--muted);
}
h1, h2 {
  margin: 0;
  font-family: 'Bebas Neue', Inter, sans-serif;
  line-height: .92;
  letter-spacing: .02em;
}
h1 { font-size: clamp(70px, 13vw, 170px); }
h2 { font-size: clamp(42px, 7vw, 88px); }
.tagline {
  font-size: clamp(18px, 2.4vw, 28px);
  color: var(--muted);
  margin: 18px auto 34px;
  max-width: 680px;
}
.actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  background: rgba(255,255,255,.04);
}
.button.primary { background: var(--text); color: var(--bg); }
.button:hover { transform: translateY(-2px); }

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}
.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
}
.card {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  min-height: 310px;
}
.highlight { background: linear-gradient(135deg, rgba(185,107,61,.28), rgba(255,255,255,.035)); }
.big-date { font-size: clamp(34px, 6vw, 72px) !important; color: var(--text) !important; margin: 22px 0 0; font-weight: 900; }
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; font-size: clamp(22px, 4vw, 44px); font-weight: 900; }
.contact-links a { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.contact-links a:hover { color: var(--accent); }
.gallery {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.gallery img {
  display: block;
  width: 100%;
  border-radius: 28px;
  margin-top: 32px;
  border: 1px solid var(--line);
}
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 70px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .site-header { padding: 14px 18px; }
  nav { display: none; }
  .section { grid-template-columns: 1fr; gap: 22px; padding: 76px 0; }
  .gallery { padding: 76px 0; }
  .logo { width: 190px; }
}


.band-members {
  margin-top: 58px;
}

.band-members h3 {
  margin: 0 0 24px;
  font-family: 'Bebas Neue', Inter, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: .04em;
  line-height: 1;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.member {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.member:hover {
  transform: translateY(-3px);
  border-color: rgba(244,239,228,.28);
  background: rgba(255,255,255,.055);
}

.role {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 9px;
}

.member strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}

@media (max-width: 760px) {
  .members-grid { grid-template-columns: 1fr; }
  .band-members { margin-top: 42px; }
}
