:root {
  color-scheme: dark;
  --background: #080706;
  --surface: #130f0c;
  --surface-strong: #1d1410;
  --foreground: #f5f0e7;
  --muted: #c8bba9;
  --muted-strong: #dfd0bd;
  --accent: #d95438;
  --accent-soft: #f2b15f;
  --line: rgba(245, 240, 231, 0.16);
  --shadow: rgba(0, 0, 0, 0.38);
  --max-width: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--background);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.02), rgba(8, 7, 6, 0.72));
  content: "";
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 30;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  color: var(--background);
  background: var(--accent-soft);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(245, 240, 231, 0.12);
  background: rgba(8, 7, 6, 0.84);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-link__mark {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0.65rem 1.4rem rgba(217, 84, 56, 0.24));
}

.brand-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  color: rgba(245, 240, 231, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--foreground);
  background: rgba(245, 240, 231, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: 76vh;
  padding: 3.75rem 1.25rem 2.75rem;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.hero::before {
  background:
    url("assets/stage-background.jpg") 68% center / cover no-repeat,
    var(--background);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.97) 0%, rgba(8, 7, 6, 0.78) 42%, rgba(8, 7, 6, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.06) 0%, rgba(8, 7, 6, 0.34) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero__mark {
  width: 5.85rem;
  margin: 0 0 1rem;
  filter: drop-shadow(0 1rem 2.2rem rgba(217, 84, 56, 0.24));
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 48rem;
  margin-bottom: 1rem;
  color: var(--foreground);
  font-size: 5.05rem;
  line-height: 0.92;
  text-wrap: balance;
}

.name-lock {
  white-space: nowrap;
}

h1 .name-lock {
  display: block;
}

.hero__lede {
  max-width: 42rem;
  margin-bottom: 0.65rem;
  color: var(--muted-strong);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero__note {
  max-width: 34rem;
  margin-bottom: 1.55rem;
  color: rgba(245, 240, 231, 0.76);
  font-size: 1.12rem;
}

.action-row,
.text-link-row,
.site-footer__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  border-color: rgba(242, 177, 95, 0.72);
  color: #1b100c;
  background: var(--accent-soft);
}

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

.button--secondary {
  color: var(--foreground);
  background: rgba(245, 240, 231, 0.08);
}

.button--secondary:hover {
  border-color: rgba(245, 240, 231, 0.32);
  background: rgba(245, 240, 231, 0.13);
}

.live-photo {
  position: relative;
  overflow: hidden;
  height: clamp(16rem, 44vw, 38rem);
  border-block: 1px solid rgba(245, 240, 231, 0.12);
  background: var(--surface);
}

.live-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.18)),
    linear-gradient(180deg, rgba(8, 7, 6, 0.1), rgba(8, 7, 6, 0.36));
  content: "";
}

.live-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.section {
  padding: 5.5rem 1.25rem;
  border-top: 1px solid rgba(245, 240, 231, 0.1);
}

.section--bio {
  background:
    linear-gradient(90deg, rgba(19, 15, 12, 0.84), rgba(19, 15, 12, 0.5));
}

.section--music {
  background:
    linear-gradient(90deg, rgba(217, 84, 56, 0.13), rgba(242, 177, 95, 0.05)),
    rgba(8, 7, 6, 0.66);
}

.section--shows {
  background: rgba(8, 7, 6, 0.74);
}

.section__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.74fr) minmax(0, 1fr);
  gap: 3.25rem;
  align-items: start;
}

.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: 2.65rem;
  line-height: 1;
  text-wrap: balance;
}

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

.section-heading--wide h2 {
  max-width: none;
}

.section-copy {
  color: var(--muted-strong);
  font-size: 1.18rem;
}

.section-copy p {
  max-width: 44rem;
  margin-bottom: 0;
}

.text-link-row {
  margin-top: 1.5rem;
}

.text-link-row a,
.site-footer__links a {
  padding-bottom: 0.18rem;
  border-bottom: 1px solid rgba(242, 177, 95, 0.72);
  color: var(--foreground);
  font-weight: 800;
  text-decoration: none;
}

.text-link-row a:hover,
.site-footer__links a:hover {
  color: var(--accent-soft);
}

.show-list {
  display: grid;
  gap: 1rem;
}

.empty-state {
  max-width: 42rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.empty-state p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.empty-state__label {
  color: var(--foreground);
  font-size: 1.45rem;
  font-weight: 800;
}

.show-card {
  display: grid;
  grid-template-columns: 6.75rem minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  min-height: 8.75rem;
  padding: 1rem;
  border: 1px solid rgba(245, 240, 231, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(29, 20, 16, 0.96), rgba(19, 15, 12, 0.82)),
    var(--surface);
  box-shadow: 0 1.2rem 2.4rem var(--shadow);
}

.show-card__date {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 6.75rem;
  padding: 0.8rem;
  border: 1px solid rgba(242, 177, 95, 0.45);
  border-radius: 6px;
  color: var(--accent-soft);
  background: rgba(8, 7, 6, 0.42);
  font-weight: 800;
  text-transform: uppercase;
}

.show-card__date strong {
  color: var(--foreground);
  font-size: 2.05rem;
  line-height: 1;
}

.show-card__details h3 {
  margin-bottom: 0.25rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.show-card__meta,
.show-card__notes {
  margin-bottom: 0;
  color: var(--muted);
}

.show-card__notes {
  margin-top: 0.45rem;
}

.show-card__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.show-card__action {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.62rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.show-card__action--primary {
  border-color: rgba(242, 177, 95, 0.72);
  color: #1b100c;
  background: var(--accent-soft);
}

.show-card__action--secondary {
  color: var(--foreground);
  background: rgba(245, 240, 231, 0.08);
}

.site-footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid rgba(245, 240, 231, 0.13);
  background: rgba(8, 7, 6, 0.92);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.site-footer__mark {
  width: 3.25rem;
  filter: drop-shadow(0 0.8rem 1.6rem rgba(217, 84, 56, 0.24));
}

.site-footer__title {
  margin-bottom: 0.15rem;
  font-weight: 900;
}

.site-footer__copy {
  margin-bottom: 0;
  color: var(--muted);
}

.noscript-message {
  margin: 0;
  padding: 1rem;
  color: var(--background);
  background: var(--accent-soft);
  font-weight: 800;
}

@media (max-width: 56rem) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 76vh;
    padding-top: 3.25rem;
  }

  .hero::before {
    background:
      url("assets/stage-background.jpg") 76% center / cover no-repeat,
      var(--background);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.78) 0%, rgba(8, 7, 6, 0.64) 48%, rgba(8, 7, 6, 0.3) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.62) 58%, rgba(8, 7, 6, 0.14) 100%);
  }

  .hero__mark {
    width: 5.4rem;
  }

  h1 {
    max-width: 100%;
    font-size: 3.45rem;
  }

  .hero__lede {
    font-size: 1.32rem;
  }

  .live-photo {
    height: clamp(14rem, 62vw, 24rem);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading h2 {
    max-width: 16ch;
    font-size: 2.25rem;
  }

  .show-card {
    grid-template-columns: 5.65rem minmax(0, 1fr);
  }

  .show-card__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-footer__inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-footer__links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 38rem) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand-link {
    max-width: 100%;
  }

  .hero,
  .section,
  .site-footer {
    padding-inline: 1rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero__lede {
    font-size: 1.18rem;
  }

  .hero__note,
  .section-copy {
    font-size: 1rem;
  }

  .section {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .section-heading h2 {
    font-size: 1.9rem;
  }

  .show-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0.85rem;
  }

  .show-card__date {
    min-height: 0;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 0.35rem;
    width: 100%;
  }

  .show-card__date strong {
    font-size: 1rem;
  }
}

@media (max-width: 22rem) {
  h1 {
    font-size: 2.35rem;
  }
}
