:root {
  color-scheme: dark;
  --ink: #09070b;
  --ink-soft: #17111b;
  --paper: #fff8e8;
  --muted: #d6c7bb;
  --red: #d71920;
  --red-bright: #f5352f;
  --blue: #1747c7;
  --gold: #ffd65a;
  --bone: #e9d0a2;
  --purple: #4a245f;
  --line: rgba(255, 248, 232, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(215, 25, 32, 0.22), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(23, 71, 199, 0.24), transparent 30rem),
    linear-gradient(180deg, #080509 0%, #151019 52%, #09070b 100%);
  color: var(--paper);
  font-family: Avenir Next, Avenir, Inter, Segoe UI, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 8px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 46px);
  background: rgba(9, 7, 11, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 32px;
  object-fit: contain;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 7, 11, 0.94) 0%, rgba(9, 7, 11, 0.74) 42%, rgba(9, 7, 11, 0.35) 100%),
    linear-gradient(0deg, rgba(9, 7, 11, 0.95), rgba(9, 7, 11, 0.12));
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 40px;
  align-items: center;
  max-width: var(--max);
  min-height: 620px;
  margin: 0 auto;
  padding: 58px 24px 36px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-weight: 950;
}

h1 {
  max-width: 10ch;
  font-size: 76px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 24px;
}

.lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-bright);
}

.button-secondary {
  border-color: rgba(255, 248, 232, 0.32);
  background: rgba(255, 248, 232, 0.08);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
}

.hero-logo-panel {
  padding: 24px;
  border: 1px solid rgba(255, 248, 232, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.26), rgba(23, 71, 199, 0.22)),
    rgba(9, 7, 11, 0.72);
  box-shadow: var(--shadow);
}

.hero-logo-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.section {
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 24px;
}

.intro-strip {
  background: var(--paper);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.intro-grid p {
  margin: 0;
  font-size: 20px;
  font-weight: 760;
}

.inline-link {
  color: var(--red);
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 380px);
  gap: 28px;
  max-width: none;
  align-items: end;
}

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

.gig-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.08);
}

.gig-date {
  color: var(--gold);
  font-weight: 900;
}

.gig-band,
.gig-location {
  display: block;
}

.gig-band {
  font-size: 20px;
  font-weight: 950;
}

.gig-location {
  color: var(--muted);
}

.split-layout,
.booking-grid,
.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.album-card,
.booking-card,
.social-card,
.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.album-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.album-card div {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.album-card strong {
  font-size: 20px;
}

.album-card span,
.social-card p,
.video-card span,
.fallback-note,
.loading {
  color: var(--muted);
}

.videos-section {
  background:
    linear-gradient(135deg, rgba(74, 36, 95, 0.52), rgba(9, 7, 11, 0.22)),
    rgba(9, 7, 11, 0.45);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-card div {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.video-card strong {
  font-size: 18px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.social-card {
  display: grid;
  min-height: 190px;
  gap: 12px;
  align-content: space-between;
  padding: 20px;
  text-decoration: none;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: var(--gold);
}

.social-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card strong {
  font-size: 26px;
}

.press-section {
  background: var(--paper);
  color: var(--ink);
}

blockquote {
  margin: 0;
  padding: 0;
}

blockquote p {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.24;
}

cite {
  color: #5c4b40;
  font-style: normal;
  font-weight: 800;
}

.booking-copy p {
  color: var(--muted);
}

.email-link {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
}

.booking-card img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.quick-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 18px 18px 36px;
}

.quick-list li::marker {
  color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 46px);
  color: var(--muted);
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header,
  .nav-links {
    align-items: flex-start;
  }

  .site-header {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner,
  .split-layout,
  .booking-grid,
  .press-layout,
  .heading-split,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .video-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .gig-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .section-inner {
    padding: 56px 18px;
  }

  .intro-grid {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-actions,
  .button-row,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 46px;
  }
}
