:root {
  --bg: #1b1b1a;
  --bg-deep: #111110;
  --text: #f0ede6;
  --muted: #c7c2b8;
  --gold: #c8a04a;
  --line: rgba(200,160,74,.48);
  --max: 980px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.025), transparent 36rem),
    linear-gradient(180deg, #1b1b1a 0%, #171716 60%, #121211 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

img { display: block; max-width: 100%; }

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

.hero {
  padding: 34px 20px 22px;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  margin: 0 auto 12px;
}

.band-name {
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 6.8rem);
  line-height: .95;
  letter-spacing: .32em;
  padding-left: .32em;
  font-weight: 600;
}

.rule-star {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  max-width: 560px;
  margin: 22px auto 10px;
  color: var(--gold);
}

.rule-star span,
.section-heading > span {
  height: 1px;
  background: var(--line);
}

.rule-star b {
  font-size: .8rem;
  font-weight: 400;
}

.tagline {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.42;
}

.band-photo-wrap {
  width: 100%;
  background: #000;
  overflow: hidden;
}

.band-photo {
  width: 100%;
  height: auto;
}

.quick-links {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.05rem;
  transition: color .18s ease, transform .18s ease;
}

.quick-link:hover,
.quick-link:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #171716;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
}

.venmo-mark,
.instagram-mark {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #171716;
  font-weight: 900;
  font-size: 1.45rem;
  font-style: italic;
}

.quick-divider {
  width: 1px;
  height: 42px;
  background: var(--line);
}

.shows,
.booking {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 42px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 20px;
}

.section-heading h2 {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.month {
  margin-top: 24px;
}

.month h3 {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1rem;
}

.show {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,160,74,.24);
}

.show:last-child {
  border-bottom: 0;
}

.date-card {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
}

.date-card small {
  font-size: .72rem;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.date-card strong {
  font-size: 1.8rem;
  font-weight: 700;
}

.show-info h4 {
  margin: 0 0 3px;
  font-size: clamp(1rem, 2.4vw, 1.28rem);
  text-transform: uppercase;
  letter-spacing: .035em;
  font-weight: 500;
}

.show-info p {
  margin: 0;
  color: var(--gold);
  font-size: .98rem;
}

.show-info p span {
  margin: 0 .45em;
}

.booking {
  padding-top: 14px;
  padding-bottom: 64px;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(340px, 1.1fr);
  gap: 36px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.booking-person {
  display: grid;
  gap: 10px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  font-size: 1.1rem;
}

a.contact-row:hover,
a.contact-row:focus-visible {
  color: var(--gold);
}

.contact-icon {
  color: var(--gold);
  font-size: 1.7rem;
  width: 34px;
  text-align: center;
  flex: 0 0 34px;
}

.booking-email {
  overflow-wrap: anywhere;
}

@media (max-width: 700px) {
  .hero { padding-top: 24px; }
  .logo { width: 92px; height: 92px; }
  .band-name { font-size: clamp(3rem, 18vw, 5rem); }
  .tagline { font-size: clamp(1.2rem, 5.2vw, 1.55rem); }

  .quick-links {
    gap: 18px;
    padding: 18px 16px 26px;
  }

  .quick-link {
    font-size: .92rem;
    gap: 9px;
  }

  .icon-circle, .venmo-mark, .instagram-mark {
    width: 34px;
    height: 34px;
  }

  .quick-divider { height: 36px; }

  .shows,
  .booking {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-heading {
    gap: 10px;
  }

  .show {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }

  .date-card {
    width: 56px;
    height: 56px;
  }

  .date-card strong { font-size: 1.55rem; }
  .show-info h4 { line-height: 1.25; }
  .show-info p { font-size: .9rem; }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 520px;
  }

  .booking-email {
    padding-top: 8px;
    border-top: 1px solid rgba(200,160,74,.22);
  }
}

@media (max-width: 430px) {
  .quick-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
  .quick-divider { display: none; }
  .section-heading h2 { font-size: 1.45rem; }
  .shows { padding-bottom: 34px; }
}
