:root {
  color-scheme: dark;
  --bg: #090909;
  --surface: #151515;
  --surface-2: #211d17;
  --ink: #f6f1e5;
  --muted: #c4b9a7;
  --soft: #8d877d;
  --line: rgba(246, 241, 229, 0.16);
  --gold: #f0c84b;
  --amber: #bc6b16;
  --cyan: #72b8c8;
  --wine: #6f2431;
  --green: #53624a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body::selection {
  color: #111;
  background: var(--gold);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 48px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  width: 12px;
  height: 28px;
  border-radius: 2px;
  background: var(--gold);
  box-shadow:
    10px 0 0 var(--amber),
    20px 0 0 var(--cyan);
}

.nav {
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-picture,
.hero-picture img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.96) 0%, rgba(9, 9, 9, 0.72) 44%, rgba(9, 9, 9, 0.2) 100%),
    linear-gradient(0deg, #090909 0%, rgba(9, 9, 9, 0.16) 46%, rgba(9, 9, 9, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 180px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: 5.8rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.9rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: #eee8da;
  font-size: 1.28rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button-primary {
  color: #15100a;
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffe071;
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.event-strip {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 30px;
  width: min(1120px, calc(100% - 48px));
  transform: translateX(50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.event-strip div,
.info-list div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.event-strip div:last-child,
.info-list div:last-child {
  border-right: 0;
}

.event-strip span,
.info-list span,
.ticket-card span,
.artist-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.event-strip strong,
.info-list strong {
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-heading.center {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.intro-body p,
.venue-section p,
.artist-card p,
.guest-copy p {
  color: var(--muted);
  line-height: 1.68;
}

.intro-body,
.guest-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
  gap: 70px;
  align-items: start;
}

.guest-section {
  width: min(1120px, calc(100% - 48px));
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  padding: 48px;
  margin-top: 80px;
  border: 1px solid rgba(240, 200, 75, 0.34);
  background:
    linear-gradient(135deg, rgba(240, 200, 75, 0.1), rgba(83, 98, 74, 0.16)),
    var(--surface);
}

.guest-image {
  margin: 0;
  border: 1px solid var(--line);
  background: #0c0c0c;
}

.guest-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.guest-copy h2 {
  max-width: 720px;
}

.guest-copy .button {
  margin-top: 18px;
}

.quick-card,
.info-list {
  border: 1px solid var(--line);
  background: var(--surface);
}

.quick-card {
  padding: 24px;
}

.quick-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
}

.quick-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
}

.quick-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.artist-card {
  min-height: 440px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(188, 107, 22, 0.1), rgba(114, 184, 200, 0.08)),
    var(--surface);
}

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

.artist-card img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
}

.artist-media {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #120d0d;
}

.artist-media img {
  display: block;
}

.artist-bio-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 92px 18px 18px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(
    180deg,
    rgba(12, 9, 9, 0) 0%,
    rgba(12, 9, 9, 0.86) 30%,
    rgba(12, 9, 9, 0.98) 100%
  );
  color: #fff7e8;
}

.artist-bio-overlay strong {
  display: inline-block;
  margin-bottom: 9px;
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(240, 200, 75, 0.92);
  color: #140f0b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.artist-bio-overlay span {
  color: #f0c84b;
}

.artist-card p {
  max-width: 58ch;
  margin-bottom: 0;
  color: #fff7e8;
  font-size: 0.96rem;
  line-height: 1.5;
}

.artist-featured {
  grid-column: span 2;
  min-height: 500px;
  border-color: rgba(240, 200, 75, 0.72);
  background:
    linear-gradient(135deg, rgba(240, 200, 75, 0.16), rgba(111, 36, 49, 0.2)),
    var(--surface-2);
}

.artist-featured .artist-media {
  min-height: 500px;
}

.artist-featured h3 {
  font-size: 2.1rem;
}

.artist-pdf {
  margin-top: 14px;
}

.text-link {
  color: var(--cyan);
  font-weight: 900;
}

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

.venue-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.venue-section > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  border: 1px solid rgba(240, 200, 75, 0.28);
  background:
    linear-gradient(135deg, rgba(240, 200, 75, 0.1), rgba(114, 184, 200, 0.08)),
    var(--surface);
}

.venue-section .button {
  margin-top: 16px;
}

.venue-photo {
  min-height: 470px;
  margin: 0;
  border: 1px solid var(--line);
  background: #0c0c0c;
  overflow: hidden;
}

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

.venue-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.venue-gallery figure {
  min-height: 230px;
  margin: 0;
  border: 1px solid var(--line);
  background: #0c0c0c;
  overflow: hidden;
}

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

.venue-gallery figure:first-child {
  min-height: 300px;
}

.venue-facts {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ticket-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(83, 98, 74, 0.08)),
    var(--surface);
}

.ticket-card strong {
  font-size: 1.45rem;
}

.ticket-card small {
  color: var(--soft);
  font-weight: 800;
}

.ticket-card:hover,
.ticket-card:focus-visible {
  border-color: rgba(240, 200, 75, 0.72);
  transform: translateY(-2px);
}

.ticket-primary {
  color: #17120a;
  background: var(--gold);
  border-color: var(--gold);
}

.ticket-primary span,
.ticket-primary small {
  color: #4a3510;
}

.ticket-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.74;
}

.ticket-card.is-disabled:hover,
.ticket-card.is-disabled:focus-visible {
  transform: none;
}

.info-list {
  display: grid;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 3rem;
  }

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

  .intro-body,
  .venue-section,
  .guest-section {
    grid-template-columns: 1fr;
  }

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

  .venue-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .venue-gallery figure:first-child {
    grid-column: 1 / -1;
  }

  .artist-featured {
    grid-column: span 2;
  }

  .artist-featured .artist-media {
    min-height: 420px;
  }
}

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

  .brand span:last-child {
    max-width: 120px;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-picture,
  .hero-picture img,
  .hero-shade {
    position: absolute;
    min-height: 760px;
  }

  .hero-picture img {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #090909 0%, rgba(9, 9, 9, 0.22) 46%, rgba(9, 9, 9, 0.78) 100%),
      linear-gradient(90deg, rgba(9, 9, 9, 0.9), rgba(9, 9, 9, 0.42));
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 118px 0 34px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-actions,
  .section-heading.split,
  .footer {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .event-strip {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    margin: 0 auto 18px;
    transform: none;
  }

  .event-strip div,
  .info-list div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 15px 16px;
  }

  .venue-section > div:first-child {
    padding: 22px;
  }

  .venue-photo {
    min-height: 340px;
  }

  .venue-facts {
    grid-template-columns: 1fr;
  }

  .venue-gallery {
    grid-template-columns: 1fr;
  }

  .venue-gallery figure,
  .venue-gallery figure:first-child {
    grid-column: auto;
    min-height: 260px;
  }

  .event-strip div:last-child,
  .info-list div:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 36px);
    padding: 72px 0;
  }

  .guest-section {
    width: calc(100% - 36px);
    padding: 18px;
    margin-top: 52px;
    gap: 22px;
  }

  .artist-grid,
  .ticket-grid {
    grid-template-columns: 1fr;
  }

  .artist-card,
  .artist-featured {
    min-height: auto;
    grid-column: auto;
    grid-template-rows: auto;
  }

  .artist-media,
  .artist-featured .artist-media {
    min-height: 520px;
    aspect-ratio: 4 / 5;
  }

  .artist-bio-overlay {
    padding: 92px 16px 16px;
  }

  .artist-card p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .footer {
    padding: 24px 18px;
  }
}

@media (max-width: 420px) {
  .nav {
    max-width: 170px;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2rem;
  }
}
