:root {
  color-scheme: dark;
  --bg: #1b1008;
  --paper: #f2d09a;
  --panel: #24170e;
  --panel-2: #3d2818;
  --text: #f6ddb4;
  --muted: #dab984;
  --line: rgba(242, 208, 154, 0.24);
  --gold: #d98512;
  --brick: #bd3d15;
  --green: #455f5a;
  --ink: #160d08;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 133, 18, 0.18), transparent 28%),
    linear-gradient(180deg, #201108 0%, var(--bg) 46%, #110b07 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(242, 208, 154, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 208, 154, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px clamp(18px, 4vw, 44px);
  background: linear-gradient(180deg, rgba(22, 13, 8, 0.92), rgba(22, 13, 8, 0.42) 78%, transparent);
}

.brand {
  text-decoration: none;
}

.brand img {
  width: auto;
  height: clamp(54px, 6.5vw, 74px);
  max-width: min(280px, 50vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.4vw, 24px);
  color: rgba(246, 221, 180, 0.84);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 108px clamp(16px, 4vw, 42px) 56px;
  background:
    radial-gradient(circle at 78% 40%, rgba(217, 133, 18, 0.25), transparent 34%),
    linear-gradient(135deg, rgba(69, 95, 90, 0.16), transparent 42%),
    var(--bg);
}

.hero-banner-main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1500px, 96vw);
  max-height: calc(100svh - 188px);
  object-fit: contain;
  border: 1px solid rgba(242, 208, 154, 0.22);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero-quick-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.36);
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.platform-links a,
.show-card > a,
.booking-form button,
.signup-band button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary,
.booking-form button,
.signup-band button {
  background: var(--brick);
  color: var(--paper);
  border-color: var(--brick);
}

.button.secondary,
.platform-links a,
.show-card > a {
  background: rgba(242, 208, 154, 0.08);
  color: var(--text);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.shows-section {
  padding-top: 70px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.show-list {
  display: grid;
  gap: 12px;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 28px;
}

.icon-row img {
  width: 76px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.show-card {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(189, 61, 21, 0.16), rgba(242, 208, 154, 0.04));
}

.show-card time {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 183, 95, 0.5);
  border-radius: 4px;
}

.show-card time span,
.show-card p {
  color: var(--muted);
}

.show-card time strong {
  font-size: 2rem;
  line-height: 0.8;
}

.show-card.muted {
  opacity: 0.78;
}

.music-grid,
.about-section,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.feature-panel,
.setlist-panel,
.about-graphic,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 6px;
}

.feature-panel,
.setlist-panel,
.booking-form {
  padding: clamp(22px, 4vw, 34px);
}

.feature-panel,
.setlist-panel {
  position: relative;
  overflow: hidden;
}

.panel-badge {
  width: 150px;
  margin: 0 0 24px;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.feature-panel {
  background:
    linear-gradient(135deg, rgba(69, 95, 90, 0.2), transparent 42%),
    var(--panel);
}

.feature-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.feature-panel p,
.about-copy p,
.booking-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.setlist-panel {
  background:
    linear-gradient(135deg, rgba(217, 133, 18, 0.16), transparent 48%),
    var(--panel-2);
}

.tour-square {
  width: min(100%, 320px);
  margin: 0 auto 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.setlist-panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.5;
}

.about-section {
  align-items: center;
}

.story-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: 12px auto 10px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(22px, 5vw, 48px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(217, 133, 18, 0.46);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(189, 61, 21, 0.24), rgba(69, 95, 90, 0.16)),
    var(--panel);
}

.story-strip img {
  width: 100%;
  border-radius: 50%;
}

.story-strip p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-graphic {
  width: 100%;
  align-self: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.booking-section {
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.signup-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 20px auto 92px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(231, 183, 95, 0.38);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(217, 133, 18, 0.18), rgba(69, 95, 90, 0.2));
}

.signup-band form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: min(320px, 70vw);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .hero-banner-main {
    max-height: calc(100svh - 210px);
    border-radius: 8px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.6rem);
  }

  .section {
    padding: 62px 0;
  }

  .section-heading,
  .music-grid,
  .about-section,
  .booking-section,
  .story-strip,
  .signup-band {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .show-card {
    grid-template-columns: 62px 1fr;
  }

  .icon-row img {
    width: 58px;
  }

  .show-card > a {
    grid-column: 1 / -1;
  }

  .signup-band form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
