:root {
  --bg: #12010a;
  --panel: rgba(28, 4, 18, 0.72);
  --panel-soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #fff4d6;
  --text-soft: rgba(255, 244, 214, 0.78);
  --gold: #ffef88;
  --hot-pink: #f558d9;
  --red: #f03f55;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --bg-image: url("optimized/poster/bg-1920.jpg");
  --butt-image: url("optimized/poster/butt-alpha-1920.png");
}

body.format-webp {
  --bg-image: url("optimized/poster/bg-1920.webp");
  --butt-image: url("optimized/poster/butt-alpha-1920.webp");
}

body.format-avif {
  --bg-image: url("optimized/poster/bg-1920.avif");
  --butt-image: url("optimized/poster/butt-alpha-1920.avif");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(8, 0, 7, 0.72), rgba(8, 0, 7, 0.9)),
    var(--bg-image) center top / cover no-repeat fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    var(--butt-image) center center / cover no-repeat,
    radial-gradient(circle at 18% 24%, rgba(240, 63, 85, 0.28), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(245, 88, 217, 0.25), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.46));
  opacity: 0.22;
}

.page-shell {
  position: relative;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 1, 12, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand,
.site-nav a {
  color: var(--text);
  text-decoration: none;
}

a:visited {
  color: inherit;
}

.brand {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.site-nav a:visited {
  color: var(--text-soft);
}

.site-footer {
  margin-top: 2.4rem;
  padding: 1rem 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 1, 12, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-footer a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer a:visited {
  color: var(--text-soft);
}

.site-footer a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 840px;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(14, 0, 11, 0.15), rgba(14, 0, 11, 0.5)),
    rgba(14, 0, 11, 0.18);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 0, 7, 0.22) 0%, rgba(8, 0, 7, 0.1) 40%, rgba(8, 0, 7, 0.72) 100%),
    var(--bg-image) center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(240, 63, 85, 0.28), transparent 35%),
    linear-gradient(270deg, rgba(245, 88, 217, 0.24), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.75rem 0 31rem;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.title-art {
  width: min(100%, 680px);
  height: auto;
  filter:
    drop-shadow(0 0 28px rgba(255, 239, 136, 0.18))
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.4));
}

.hero-text,
.section-copy p,
.info-card p,
.ticket-note,
.stat span,
.site-nav a {
  color: var(--text-soft);
}

.hero-text {
  max-width: 40rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  position: absolute;
  left: 50%;
  bottom: 19rem;
  z-index: 4;
  transform: translateX(-50%);
}

.hero-instagram {
  position: absolute;
  left: 50%;
  bottom: 9.5rem;
  z-index: 4;
  color: var(--gold);
  text-decoration: none;
  transform: translateX(-50%);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero-instagram:hover {
  transform: translateX(-50%) translateY(-1px);
  opacity: 0.9;
}

.hero-instagram svg {
  width: 3.75rem;
  height: 3.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-instagram svg .dot {
  fill: currentColor;
  stroke: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #2c000d;
  background: linear-gradient(135deg, var(--gold), #ffd36d);
  box-shadow: 0 16px 34px rgba(255, 211, 109, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-full {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-meta li,
.stat,
.info-card,
.feature-image-card,
.quote-strip,
.ticket-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-meta li {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
}

.player {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: clamp(320px, 41vw, 560px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  transform-origin: bottom center;
}

.player-left {
  left: -4.5%;
  bottom: -0.5%;
  transform: scale(1.05);
}

.player-right {
  right: -5%;
  bottom: -0.5%;
  transform: scale(1.06);
}

.section {
  position: relative;
  z-index: 2;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.stat,
.info-card,
.ticket-panel,
.feature-image-card,
.quote-strip {
  border-radius: 28px;
}

.stat {
  padding: 1.25rem;
}

.stat span {
  display: block;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.stat strong {
  font-size: 1.05rem;
}

.split-section,
.tickets {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 1.2rem;
  align-items: center;
  padding-top: 3rem;
}

.tickets {
  grid-template-columns: 1fr;
  align-items: start;
}

.section-copy h2,
.section-heading h2 {
  margin: 0 0 1rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--gold);
}

.section-copy p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.press-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--gold);
}

.inline-link {
  color: var(--gold);
  text-decoration-color: rgba(255, 239, 136, 0.6);
  text-underline-offset: 0.15em;
}

.inline-link:visited {
  color: #ffe08a;
}

.inline-link:hover {
  text-decoration-color: rgba(255, 239, 136, 1);
}

.showtimes {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.showtimes li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.showtimes li:first-child {
  padding-top: 0.2rem;
}

.showtimes li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.feature-image-card {
  padding: 1rem;
}

.feature-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.expandable-image {
  cursor: zoom-in;
}

.section-heading {
  max-width: 760px;
  padding-top: 3rem;
}

.announcements-section .section-heading {
  max-width: 680px;
}

.announcements-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
}

.announcement-image-card img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.announcement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.announcement-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.announcement-tag {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.announcement-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  color: var(--gold);
}

.announcement-card p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.company-section {
  align-items: start;
}

.company-image-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.quote-strip {
  margin-top: 2rem;
  padding: 1.6rem;
  text-align: center;
}

.quote-strip p {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--gold);
}

.image-break {
  padding-top: 2.5rem;
}

.image-break-card {
  padding: 1rem;
}

.image-break-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}

.ticket-panel {
  padding: 1.5rem;
}

.ticket-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ticket-option {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.ticket-option h3 {
  margin: 0 0 0.9rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--gold);
}

.venue-logo {
  display: block;
  width: auto;
  height: 2.2rem;
  max-width: min(260px, 100%);
  margin: 0 0 0.85rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.35));
}

.price {
  margin-bottom: 1rem;
}

.price span {
  display: block;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.price strong {
  font-family: "Oswald", sans-serif;
  font-size: 4.4rem;
  line-height: 0.9;
  color: var(--gold);
}

.ticket-option .price strong {
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1;
}

.ticket-note {
  margin: 1rem 0 0;
  line-height: 1.7;
}

.venue-facts {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.gallery-section {
  padding-top: 3rem;
}

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

.gallery-card {
  margin: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card-wide img {
  aspect-ratio: 16 / 9;
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card-tall img {
  aspect-ratio: 3 / 4;
}

.gallery-card-portrait img {
  aspect-ratio: 4 / 5;
}

.gallery-card-monologue img {
  object-position: center 18%;
}

.gallery-card:not(.gallery-card-wide):not(.gallery-card-tall):not(.gallery-card-portrait) img {
  aspect-ratio: 1 / 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 7, 0.86);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(96vw, 1600px);
  max-height: 94vh;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.lightbox-close {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff4d6;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(94vh - 3.2rem);
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-bottom: 28rem;
  }

  .player {
    width: clamp(290px, 37vw, 470px);
  }

  .player-left {
    left: -7%;
  }

  .player-right {
    right: -7%;
  }

  .hero-cta {
    bottom: 17.5rem;
  }

  .hero-instagram {
    bottom: 8.6rem;
  }
}

@media (max-width: 900px) {
  .stats-band,
  .split-section,
  .announcements-layout,
  .announcement-grid,
  .gallery-grid,
  .ticket-options,
  .tickets {
    grid-template-columns: 1fr;
  }

  .gallery-card-wide,
  .gallery-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 2.8rem 1rem 23rem;
  }

  .player {
    width: clamp(250px, 43vw, 360px);
  }

  .player-left {
    left: -10%;
  }

  .player-right {
    right: -10%;
  }

  .hero-cta {
    bottom: 15.5rem;
  }

  .hero-instagram {
    bottom: 7.4rem;
  }
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  .page-shell {
    width: min(100% - 1rem, 1200px);
  }

  .site-header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    border-radius: 30px;
  }

  .hero-content {
    width: min(100% - 1rem, 760px);
    padding: 2rem 0.25rem 18rem;
  }

  .hero-text {
    max-width: 22rem;
    font-size: 0.94rem;
  }

  .player {
    width: 60vw;
    max-width: 270px;
  }

  .player-left {
    left: -20%;
  }

  .player-right {
    right: -20%;
  }

  .hero-cta {
    bottom: 11.8rem;
  }

  .hero-instagram {
    bottom: 5.8rem;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .price strong {
    font-size: 3.6rem;
  }
}
