:root {
  --warm-black: #1A1410;
  --burgundy: #5C1F1F;
  --burnt-orange: #C75D2C;
  --dusty-red: #8B3A2E;
  --mustard: #D4A547;
  --cream: #F5EDDE;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--warm-black);
  color: var(--cream);
  font-family: 'Work Sans', -apple-system, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Bebas Neue', 'Work Sans', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--cream);
}

a { color: var(--mustard); text-decoration: none; }
a:hover { color: var(--burnt-orange); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26,20,16,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212,165,71,0.2);
}
.site-nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.05em; color: var(--cream);
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--cream); font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 600;
}
.nav-links a:hover { color: var(--mustard); }

@media (max-width: 720px) {
  .site-nav .wrap {
    flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 20px;
  }
  .nav-brand { font-size: 20px; }
  .nav-links {
    width: 100%; flex-wrap: wrap; gap: 10px 16px;
  }
  .nav-links a { font-size: 12px; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center 25%;
  background-image:
    linear-gradient(180deg, rgba(26,20,16,0.35) 0%, rgba(26,20,16,0.55) 55%, rgba(26,20,16,0.96) 100%),
    url('../images/hero.jpg');
}
@media (max-width: 700px) {
  /* "cover" crops the wide band photo down to a sliver on narrow screens;
     show it uncropped as a banner instead, with text below on the solid bg. */
  .hero {
    background-size: contain; background-repeat: no-repeat;
    background-position: top center; background-color: var(--warm-black);
  }
}
.hero-inner { padding: 0 24px 64px; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero .eyebrow {
  text-transform: uppercase; letter-spacing: 0.25em; font-size: 13px;
  color: var(--mustard); font-weight: 600; margin-bottom: 14px;
}
.hero h1 { font-size: clamp(56px, 12vw, 128px); }
.hero .tagline { max-width: 560px; font-size: clamp(16px, 2.2vw, 20px); margin: 18px 0 30px; color: var(--cream); opacity: 0.92; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-block; padding: 13px 26px; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 3px; border: 2px solid transparent; transition: all 0.2s ease;
}
.btn-primary { background: var(--burnt-orange); color: var(--cream); }
.btn-primary:hover { background: var(--dusty-red); color: var(--cream); }
.btn-outline { border-color: var(--mustard); color: var(--mustard); }
.btn-outline:hover { background: var(--mustard); color: var(--warm-black); }

/* Sections */
section { padding: 90px 0; }
.section-label {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 13px;
  color: var(--mustard); font-weight: 700; margin-bottom: 10px;
}
h2.section-title { font-size: clamp(34px, 6vw, 54px); margin-bottom: 28px; }

.divider {
  height: 1px; background: linear-gradient(90deg, transparent, rgba(212,165,71,0.4), transparent);
  margin: 0;
}

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-grid img { width: 100%; border-radius: 4px; filter: saturate(0.92) contrast(1.05); }
.about-copy p { margin-bottom: 18px; font-size: 17px; color: rgba(245,237,222,0.9); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag {
  border: 1px solid rgba(212,165,71,0.5); color: var(--mustard);
  padding: 6px 14px; border-radius: 20px; font-size: 13px; letter-spacing: 0.03em;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

/* Stats */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-top: 1px solid rgba(212,165,71,0.25);
  border-bottom: 1px solid rgba(212,165,71,0.25);
  padding: 36px 0; margin: 20px 0 0;
}
.stat { text-align: center; }
.stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--mustard); }
.stat .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
@media (max-width: 700px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }

/* Music */
.track-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.track {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid rgba(212,165,71,0.15);
}
.track-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.02em; }
.track-desc { font-size: 14px; color: rgba(245,237,222,0.7); margin-top: 4px; }
.embed-wrap { border-radius: 8px; overflow: hidden; margin-top: 30px; }
.video-embed { position: relative; width: 100%; padding-top: 56.25%; border-radius: 8px; overflow: hidden; margin-top: 40px; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Shows */
.show-card {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
  background: rgba(92,31,31,0.25); border: 1px solid rgba(212,165,71,0.3);
  border-radius: 6px; padding: 28px 30px; margin-bottom: 18px;
}
.show-date { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--mustard); min-width: 130px; }
.show-info h3 { font-size: 22px; font-family: 'Work Sans', sans-serif; font-weight: 700; }
.show-info p { font-size: 14px; color: rgba(245,237,222,0.75); margin-top: 4px; }
.past-shows { margin-top: 44px; }
.past-shows h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--cream); margin-bottom: 18px; }
.past-item { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(212,165,71,0.12); font-size: 15px; }
.past-item span:last-child { color: var(--mustard); font-weight: 600; }
.poster-thumb { max-width: 220px; border-radius: 6px; margin-top: 30px; }

/* EPK teaser + contact */
.split-cta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.card {
  background: rgba(199,93,44,0.1); border: 1px solid rgba(212,165,71,0.25);
  border-radius: 6px; padding: 34px; min-width: 0;
}
.card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 12px; }
.card p { color: rgba(245,237,222,0.85); margin-bottom: 20px; font-size: 15px; }
.card .btn { overflow-wrap: break-word; word-break: break-word; }
@media (max-width: 720px) { .split-cta { grid-template-columns: 1fr; } }

/* Footer */
footer {
  border-top: 1px solid rgba(212,165,71,0.2); padding: 40px 0; text-align: center;
}
footer .foot-brand { font-family: 'Bebas Neue', sans-serif; font-size: 22px; margin-bottom: 10px; }
.social-row { display: flex; justify-content: center; gap: 20px; margin: 16px 0; }
.social-row a { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
footer .fine { font-size: 12px; opacity: 0.55; margin-top: 14px; }

/* EPK page specific */
.epk-header {
  padding: 60px 0 30px; border-bottom: 1px solid rgba(212,165,71,0.25);
}
.epk-header .eyebrow { color: var(--mustard); text-transform: uppercase; letter-spacing: 0.2em; font-size: 13px; font-weight: 700; }
.epk-header h1 { font-size: clamp(40px, 8vw, 72px); margin: 8px 0 16px; }
.rider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; }
.rider-grid ul { list-style: none; }
.rider-grid li { padding: 6px 0; border-bottom: 1px dashed rgba(212,165,71,0.15); font-size: 15px; }
.rider-grid h4 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--mustard); margin-bottom: 10px; }
@media (max-width: 720px) { .rider-grid { grid-template-columns: 1fr; } }
.stageplot-img { width: 100%; border-radius: 6px; margin-top: 20px; background: #fff; padding: 10px; }

.print-note { font-size: 13px; opacity: 0.6; margin-top: 10px; }

.epk-photo { width: 100%; max-width: 320px; border-radius: 6px; margin: 26px 0 6px; filter: saturate(0.92) contrast(1.05); }
