/* ============================================================
   Desperate Man — cowpunk theme
   Palette: warm near-black, rust red, dust gold, bone white
   ============================================================ */

:root {
  --bg:        #0a0a0a;
  --surface:   #141414;
  --surface-2: #1d1d1d;
  --line:      #333333;
  --rust:      #f5f5f5;  /* primary accent — now bone white */
  --rust-hi:   #ffffff;  /* hover accent */
  --gold:      #e6e6e6;  /* secondary accent — light grey */
  --text:      #f2f2f2;
  --muted:     #8a8a8a;
  --max:       1100px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .8rem 1.6rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rust); color: var(--bg); border-color: var(--rust); }
.btn-primary:hover { background: var(--bg); color: var(--text); border-color: var(--text); }
.btn-ghost { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-ghost:hover { background: var(--gold); color: var(--bg); }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(20, 16, 13, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: "Rye", serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: .02em;
}
.brand-logo {
  height: 38px;
  width: auto;
  mix-blend-mode: lighten; /* drops the image's black background */
}
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .9rem;
  color: var(--text);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--rust-hi); }
.nav-cta { color: var(--gold) !important; border: 1px solid var(--gold); padding: .4rem .9rem; }
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--gold); transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 4rem clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(rgba(10,10,10,.55), rgba(10,10,10,.92)),
    repeating-linear-gradient(45deg, #121212 0 22px, #0d0d0d 22px 44px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: var(--max); margin: 0 auto; }
.hero-banner {
  width: min(760px, 92%);
  margin: 0 auto 1.5rem;
  mix-blend-mode: lighten; /* drops the image's black background */
}
.hero-kicker {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .35em;
  color: var(--rust-hi);
  font-size: .9rem;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: "Rye", serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 9vw, 6rem);
  line-height: 1.02;
  color: var(--text);
  text-shadow: 3px 3px 0 var(--rust);
}
.hero-sub { color: var(--muted); max-width: 600px; margin: 1.4rem auto 2.2rem; font-size: 1.1rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 5rem clamp(1rem, 4vw, 3rem); }
.section-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: .6rem;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 70px; height: 4px;
  background: var(--rust);
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; }
.about-text p { margin-bottom: 1.1rem; color: #cfcfcf; }
.lineup { list-style: none; margin-top: 1.6rem; border-top: 1px solid var(--line); }
.lineup li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.lineup-name { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.lineup-role { color: var(--muted); font-size: .9rem; text-align: right; }
.signup {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.8rem;
}
.signup h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.signup p { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.signup-form { display: flex; flex-direction: column; gap: .8rem; }
.signup-form input[type="email"] {
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: .8rem;
  font-size: 1rem;
}
.signup-form input[type="email"]:focus { outline: 2px solid var(--rust); }
.consent { display: flex; gap: .5rem; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.form-msg { font-size: .9rem; color: var(--gold); min-height: 1.2em; }

/* ---------- Music ---------- */
.coming-soon {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--muted);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
}
.album-art img { width: 100%; height: 100%; object-fit: cover; }
.music-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.6rem; }
.album { background: var(--surface); border: 1px solid var(--line); transition: transform .15s ease, border-color .2s ease; }
.album:hover { transform: translateY(-4px); border-color: var(--rust); }
.album-art {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.album-art-label {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  border: 1px dashed rgba(255,255,255,.35);
  padding: .3rem .7rem;
}
.art-1 { background: linear-gradient(135deg, #1a1a1a, #555); }
.art-2 { background: linear-gradient(135deg, #0f0f0f, #3a3a3a); }
.art-3 { background: linear-gradient(135deg, #2b2b2b, #6a6a6a); }
.art-4 { background: linear-gradient(135deg, #101010, #2c2c2c); }
.album-title { font-family: "Oswald", sans-serif; font-size: 1.1rem; padding: 1rem 1rem .2rem; }
.listen { display: inline-block; padding: 0 1rem 1rem; color: var(--rust-hi); font-weight: 600; font-size: .9rem; }
.listen:hover { color: var(--gold); }

/* ---------- Tour ---------- */
.tour-leg {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin: 2rem 0 1rem;
  font-size: 1.3rem;
}
.shows { list-style: none; }
.show {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.show-date {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: var(--rust-hi);
  min-width: 70px;
  font-size: 1.05rem;
}
.show-info { flex: 1; display: flex; flex-direction: column; }
.show-venue { font-weight: 600; }
.show-city { color: var(--muted); font-size: .9rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 3rem clamp(1rem, 4vw, 3rem); text-align: center; background: var(--surface); }
.footer-logo {
  width: 160px;
  margin: 0 auto 1.8rem;
  mix-blend-mode: lighten; /* drops the image's black background */
}
.socials { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; margin-bottom: 1.5rem; }
.socials a {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .85rem;
  color: var(--muted);
  transition: color .2s ease;
}
.socials a:hover { color: var(--rust-hi); }
.copyright { color: var(--muted); font-size: .85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a { padding: 1rem clamp(1rem, 4vw, 3rem); width: 100%; border-top: 1px solid var(--line); }
  .nav-cta { border: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .show { flex-wrap: wrap; gap: .6rem 1rem; }
}
