:root {
  --bg: #1b1411;
  --bg-soft: #261b17;
  --panel: rgba(255, 248, 239, 0.06);
  --text: #f6eadf;
  --muted: #d8c2ae;
  --accent: #c96a3d;
  --accent-2: #d6a45e;
  --line: rgba(255, 240, 225, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 106, 61, 0.15), transparent 30%),
    linear-gradient(180deg, #1a1310 0%, #221814 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 14, 12, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav nav a {
  color: var(--muted);
}

.nav nav a:hover {
  color: var(--text);
}

.hero,
.page-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero {
  background:
    linear-gradient(rgba(24, 16, 13, 0.45), rgba(24, 16, 13, 0.82)),
    url("img/hero-band.jpg") center/cover no-repeat;
}

.page-hero-live {
  min-height: 58vh;
  background:
    linear-gradient(rgba(24, 16, 13, 0.55), rgba(24, 16, 13, 0.84)),
    url("img/live-bg.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 164, 94, 0.12), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(201, 106, 61, 0.16), transparent 25%);
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 10px;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-text,
.narrow {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 680px;
}

.hero-actions,
.cta-actions,
.section-head {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.section-head {
  justify-content: space-between;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #db875f);
  color: #fff7ef;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-secondary {
  border: 1px solid rgba(255, 235, 220, 0.24);
  background: rgba(255, 250, 244, 0.06);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 250, 244, 0.1);
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-2);
  font-weight: 700;
}

.text-link:hover {
  color: #f0c688;
}

.section {
  padding: 96px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.highlight-box,
.card,
.member-card,
.video-card,
.history-card,
.cta-box,
.date-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-box {
  padding: 28px;
}

.highlight-box ul {
  padding-left: 20px;
  margin: 0;
}

.cards-4,
.cards-3,
.members-grid,
.video-grid,
.history-grid {
  display: grid;
  gap: 20px;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 26px;
}

.members-grid {
  grid-template-columns: repeat(4, 1fr);
}

.member-card {
  padding: 18px;
  text-align: center;
}

.member-photo {
  height: 180px;
  border-radius: 16px;
  margin-bottom: 14px;
  background:
    linear-gradient(135deg, rgba(214, 164, 94, 0.35), rgba(201, 106, 61, 0.2)),
    rgba(255, 248, 239, 0.05);
  border: 1px solid var(--line);
}

.center-cta {
  text-align: center;
  margin-top: 26px;
}

.dates-list {
  display: grid;
  gap: 16px;
}

.date-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 18px;
  align-items: center;
}

.date-day {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff7ef;
}

.date-info h3 {
  margin-bottom: 4px;
}

.date-info p {
  margin: 0 0 4px;
  color: var(--text);
}

.date-info span {
  color: var(--muted);
  font-size: 0.95rem;
}

.featured-video {
  margin-bottom: 24px;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(0, 0, 0, 0.25);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-grid {
  grid-template-columns: repeat(5, 1fr);
}

.video-card a {
  display: block;
  padding: 14px;
}

.video-thumb {
  height: 120px;
  border-radius: 14px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: #fff3e9;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(201, 106, 61, 0.4), rgba(214, 164, 94, 0.2)),
    rgba(255, 255, 255, 0.04);
}

.history-grid {
  grid-template-columns: repeat(4, 1fr);
}

.history-card {
  padding: 20px;
}

.cta-box {
  padding: 42px;
  text-align: center;
}

.contact-note {
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: rgba(16, 11, 9, 0.5);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1100px) {
  .cards-4,
  .members-grid,
  .video-grid,
  .history-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .grid-2,
  .date-item {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 120px 0 90px;
  }

  .section-head {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .cards-4,
  .members-grid,
  .video-grid,
  .history-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav nav {
    width: 100%;
  }

  .member-photo {
    height: 220px;
  }

  .cta-box {
    padding: 28px 20px;
  }
}