:root {
  --color-bg: #101010;
  --color-bg-deep: #0a0a0a;
  --color-panel: #171717;
  --color-paper: #f5efe6;
  --color-muted: rgba(245, 239, 230, 0.72);
  --color-soft: rgba(245, 239, 230, 0.1);
  --color-line: rgba(245, 239, 230, 0.15);
  --color-red: #ef4059;
  --color-yellow: #ffd65b;
  --color-blue: #64b8d6;
  --max-width: 1160px;
  --section-pad: clamp(4.5rem, 8vw, 7.5rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--color-paper);
  background:
    linear-gradient(135deg, rgba(239, 64, 89, 0.18), transparent 32rem),
    radial-gradient(circle at 90% 4rem, rgba(255, 214, 91, 0.12), transparent 22rem),
    var(--color-bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: 0.75rem;
  background: rgba(16, 16, 16, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  color: var(--color-paper);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1rem;
  line-height: 0.92;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.site-nav a {
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.section {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--color-yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.86;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.hero-lede,
.section-heading p,
.section-copy p,
.about-card p,
.contact-section p {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-lede {
  max-width: 38rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button {
  padding: 0.85rem 1.1rem;
}

.button-primary {
  background: var(--color-red);
  color: white;
}

.button-primary:hover {
  background: #ff5269;
}

.button-secondary {
  border: 1px solid rgba(245, 239, 230, 0.35);
  color: var(--color-paper);
}

.button-secondary:hover {
  border-color: var(--color-paper);
}

.text-link {
  color: var(--color-yellow);
}

.hero-shows,
.show-grid,
.info-grid {
  display: grid;
  gap: 1rem;
}

.show-card {
  display: grid;
  gap: 0.45rem;
  min-height: 12rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 214, 91, 0.28);
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, rgba(239, 64, 89, 0.13), transparent 70%),
    rgba(245, 239, 230, 0.045);
  box-shadow: 0.45rem 0.45rem 0 rgba(239, 64, 89, 0.22);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.show-card:nth-child(even) {
  box-shadow: 0.45rem 0.45rem 0 rgba(100, 184, 214, 0.24);
}

.show-card:hover {
  border-color: rgba(255, 214, 91, 0.52);
  transform: translateY(-0.18rem);
}

.show-card-small {
  min-height: 9rem;
}

.show-card time {
  color: var(--color-yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.show-card strong {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1;
}

.show-card span {
  color: rgba(245, 239, 230, 0.66);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--color-line);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.info-grid article,
.about-card,
.about-note,
.contact-section {
  border: 1px solid var(--color-line);
  border-radius: 0.9rem;
  background: rgba(245, 239, 230, 0.045);
}

.info-grid article {
  padding: 1.2rem;
}

.info-grid p {
  color: rgba(245, 239, 230, 0.68);
  font-size: 0.95rem;
}

.show-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-section {
  padding: 3rem 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.band-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.band-list a {
  border: 1px solid rgba(245, 239, 230, 0.22);
  border-radius: 999px;
  padding: 0.75rem 0.95rem;
  background: rgba(245, 239, 230, 0.045);
  color: rgba(245, 239, 230, 0.86);
  font-weight: 800;
  text-decoration: none;
}

.band-list a:hover {
  border-color: var(--color-yellow);
  color: var(--color-paper);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: 1rem;
  align-items: stretch;
}

.about-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.about-note {
  display: grid;
  align-content: end;
  gap: 0.8rem;
  min-height: 18rem;
  padding: 1.5rem;
  background:
    linear-gradient(145deg, rgba(255, 214, 91, 0.14), transparent 55%),
    rgba(245, 239, 230, 0.045);
}

.about-note strong {
  font-size: 1.7rem;
  line-height: 1.05;
}

.about-note span {
  color: var(--color-muted);
}

.contact-section {
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.contact-section .button-row {
  justify-content: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .show-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav {
    gap: 0.65rem;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .button,
  .text-link {
    width: 100%;
  }

  .show-card {
    min-height: 0;
  }

  .show-card-small {
    padding: 1rem;
  }

  .hero-shows .show-card-small:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 1rem, var(--max-width));
    margin-top: 0.5rem;
    padding: 0.8rem;
  }

  .section {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
