:root {
  --bg: #0b0a09;
  --bg-2: #14110f;
  --panel: #1c1713;
  --text: #f4eadc;
  --muted: #c9b79d;
  --dim: #8e8171;
  --rust: #a72a26;
  --blood: #7d1716;
  --amber: #f3b35b;
  --bone: #fff2d8;
  --white: #fffaf0;
  --teal: #66b3a6;
  --line: rgba(255, 242, 216, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max-width: 1120px;
  --display-font: "Pirata One", "Old English Text MT", Georgia, serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(167, 42, 38, 0.22), transparent 26rem),
    linear-gradient(180deg, #080706 0%, var(--bg) 42%, #100d0b 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mix-blend-mode: screen;
  z-index: -1;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  background: var(--bone);
  color: #17110d;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: linear-gradient(90deg, rgba(9, 7, 7, 0.96), rgba(70, 13, 12, 0.86));
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  min-height: 4.25rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.brand {
  color: var(--white);
  font-family: var(--display-font);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 0.95;
  text-decoration: none;
  text-shadow:
    2px 2px 0 #050505,
    -1px -1px 0 #050505,
    0 0 16px rgba(167, 42, 38, 0.7);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: rgba(255, 242, 216, 0.08);
  color: var(--text);
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle__bar {
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  position: absolute;
  left: 0;
}

.nav-toggle__bar::before {
  top: -0.42rem;
}

.nav-toggle__bar::after {
  top: 0.42rem;
}

.nav-menu {
  position: absolute;
  top: 4.25rem;
  left: 1rem;
  right: 1rem;
  display: none;
  margin: 0;
  padding: 0.75rem;
  list-style: none;
  background: rgba(20, 17, 15, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-menu.is-open {
  display: grid;
}

.nav-menu a {
  display: block;
  padding: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-menu a:hover {
  color: var(--bone);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--rust);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 34rem;
  height: 74svh;
  max-height: 46rem;
  overflow: clip;
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.92), rgba(54, 10, 9, 0.56) 48%, rgba(8, 7, 6, 0.2)),
    linear-gradient(0deg, var(--bg) 0%, transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(167, 42, 38, 0.35), transparent 22rem);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 7rem 0 4rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--white);
  font-family: var(--display-font);
  font-weight: 400;
  line-height: 0.92;
  text-shadow:
    3px 3px 0 #050505,
    -1px -1px 0 #050505,
    0 0 22px rgba(167, 42, 38, 0.62);
}

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: 4.2rem;
}

h2 {
  margin-bottom: 0;
  font-size: 2.4rem;
}

h3 {
  margin-bottom: 0.25rem;
  color: var(--bone);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero__tagline {
  max-width: 38rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__value {
  max-width: 42rem;
  margin-bottom: 1.5rem;
  color: var(--bone);
  font-size: 0.98rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary {
  border-color: var(--white);
  background: var(--rust);
  color: var(--white);
  box-shadow: 5px 5px 0 #050505;
}

.button--primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: #150d08;
}

.button--ghost {
  color: var(--bone);
  background: rgba(255, 242, 216, 0.06);
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading--row {
  display: grid;
  gap: 1rem;
}

.slider {
  display: grid;
  gap: 0.85rem;
}

.slider__viewport {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.slider__slide.is-active {
  position: relative;
  opacity: 1;
}

.slider__slide img {
  width: 100%;
  height: min(72svh, 42rem);
  min-height: 20rem;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08);
}

.slider__controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.slider__button {
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  background: rgba(255, 242, 216, 0.06);
  color: var(--bone);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slider__button:hover {
  border-color: var(--amber);
}

.slider__status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.video-placeholder {
  margin-top: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-placeholder h3 {
  font-size: 1.35rem;
}

.video-placeholder p:last-child {
  margin-bottom: 0;
}

.section--about {
  background:
    linear-gradient(135deg, rgba(125, 23, 22, 0.48), rgba(9, 8, 7, 0.82) 38%, rgba(255, 242, 216, 0.03)),
    var(--bg);
  border-block: 1px solid var(--line);
}

.about-layout,
.social-layout {
  display: grid;
  gap: 1.5rem;
}

.copy-block {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.highlight-list {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  padding: 0.65rem 0.8rem;
  border-left: 3px solid var(--rust);
  background: rgba(255, 242, 216, 0.06);
  color: var(--white);
  font-weight: 900;
}

.copy-block em {
  color: var(--white);
  font-style: normal;
}

.copy-block strong {
  color: var(--bone);
}

.shows-grid {
  display: grid;
  gap: 0.75rem;
}

.shows-section {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.shows-empty {
  max-width: 42rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shows-empty p {
  margin-bottom: 0;
  color: var(--muted);
}

.shows-cta {
  margin-bottom: 0;
  color: var(--muted);
}

.shows-cta a,
.contact-simple a {
  color: var(--white);
  font-weight: 900;
}

.past-shows {
  max-width: 52rem;
}

.past-shows summary {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--bone);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.past-shows summary:hover {
  border-color: var(--amber);
}

.past-shows .shows-grid {
  margin-top: 0.85rem;
}

.show-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(28, 23, 19, 0.96), rgba(79, 17, 15, 0.82));
}

.show-card time {
  display: grid;
  place-items: center;
  width: 4.5rem;
  min-height: 4.5rem;
  border: 1px solid rgba(243, 179, 91, 0.5);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.show-card time span {
  display: block;
  color: var(--bone);
  font-size: 1.7rem;
}

.show-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.show-card a {
  grid-column: 1 / -1;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 242, 216, 0.08);
  color: var(--bone);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.section--social {
  background: #0f0f0c;
}

.section--bookers {
  background:
    linear-gradient(135deg, rgba(125, 23, 22, 0.32), rgba(9, 8, 7, 0.9) 42%, rgba(255, 242, 216, 0.03)),
    var(--bg);
  border-top: 1px solid var(--line);
}

.bookers-layout {
  display: grid;
  gap: 1.5rem;
}

.bookers-panel {
  max-width: 46rem;
  color: var(--muted);
}

.bookers-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0;
}

.bookers-list div {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.bookers-list dt {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.bookers-list dd {
  margin: 0.25rem 0 0;
}

.bookers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-panel {
  display: grid;
  gap: 0.75rem;
}

.social-intro {
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.social-link,
.contact-email {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 242, 216, 0.06);
  color: var(--bone);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.social-link:hover,
.contact-email:hover {
  border-color: var(--amber);
}

.social-link--muted {
  color: var(--muted);
}

.instagram-icon-link {
  display: inline-grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  background: rgba(255, 242, 216, 0.06);
  color: var(--white);
  text-decoration: none;
}

.instagram-icon-link:hover {
  border-color: var(--amber);
  background: rgba(167, 42, 38, 0.28);
}

.instagram-icon {
  width: 1.9rem;
  height: 1.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section--contact {
  background:
    linear-gradient(180deg, rgba(167, 42, 38, 0.23), rgba(11, 10, 9, 0)),
    var(--bg-2);
}

.section--contact p {
  max-width: 32rem;
  color: var(--muted);
}

.contact-simple {
  max-width: var(--max-width);
}

.contact-simple a {
  overflow-wrap: anywhere;
}

.contact-notes {
  display: grid;
  gap: 0.4rem;
  max-width: 44rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.site-footer {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.9rem;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
}

.footer-layout p {
  margin-bottom: 0;
}

.footer-layout a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 680px) {
  h1 {
    font-size: 7.25rem;
  }

  h2 {
    font-size: 3.8rem;
  }

  .hero__tagline {
    font-size: 1.2rem;
  }

  .hero__value {
    font-size: 1.08rem;
  }

  .section {
    padding: 6rem 0;
  }

  .section-heading--row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

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

  .show-card a {
    grid-column: auto;
  }
}

@media (min-width: 860px) {
  .brand {
    font-size: 3rem;
  }

  h1 {
    font-size: 10rem;
  }

  h2 {
    font-size: 5rem;
  }

  .hero__tagline {
    font-size: 1.35rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 0.65rem 0.8rem;
  }

  .about-layout,
  .social-layout,
  .bookers-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .hero__content {
    padding-bottom: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
