:root {
  --bg: #ebe9e6;
  --bg-deep: #e0ddd8;
  --ink: #1a1614;
  --ink-muted: #564e49;
  --crimson: #9b1c2e;
  --crimson-deep: #6e1220;
  --brass: #b8893a;
  --brass-soft: #d4a85c;
  --pearl: #f7f5f2;
  --line: rgba(26, 22, 20, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4rem;
  /* Hero backdrop: red (default) or gold — see README */
  --hero-image: url("../assets/hero-stage-red.jpg");
  /* --hero-image: url("../assets/hero-stage-gold.jpg"); */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--crimson-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--crimson);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.5rem 0.75rem;
  background: var(--ink);
  color: var(--pearl);
  text-decoration: none;
  border-radius: 2px;
}

.skip-link:focus {
  top: 1rem;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: transparent;
  color: var(--pearl);
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(235, 233, 230, 0.94);
  color: var(--ink);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: inherit;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
  color: inherit;
}

@media (max-width: 560px) {
  .site-header {
    height: auto;
    min-height: var(--header-h);
    flex-wrap: wrap;
    align-items: center;
    padding: 0.65rem 0.9rem 0.55rem;
    row-gap: 0.35rem;
  }

  .logo {
    font-size: 1rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-end;
    gap: 0.85rem;
  }

  .nav a {
    font-size: 0.8rem;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--crimson);
  color: var(--pearl);
  border-color: var(--crimson);
}

.btn--primary:hover {
  background: var(--crimson-deep);
  border-color: var(--crimson-deep);
  color: var(--pearl);
}

.btn--ghost {
  background: transparent;
  color: var(--pearl);
  border-color: rgba(250, 247, 242, 0.55);
}

.btn--ghost:hover {
  background: rgba(250, 247, 242, 0.1);
  color: var(--pearl);
  border-color: var(--pearl);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--pearl);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-color: #1a1210;
  background-image:
    linear-gradient(
      160deg,
      rgba(42, 24, 22, 0.55) 0%,
      rgba(110, 18, 32, 0.45) 40%,
      rgba(15, 12, 11, 0.7) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: hero-breathe 14s var(--ease) infinite alternate;
}

@media (max-width: 720px) {
  /* Portrait phones crop cover; fit full stage so all three silhouettes stay visible */
  .hero__media {
    background-size: contain;
    background-position: center 32%;
    transform: none;
    animation: none;
  }
}

.hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 12, 11, 0.92) 0%,
    rgba(15, 12, 11, 0.45) 42%,
    rgba(15, 12, 11, 0.2) 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes hero-breathe {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.5%, -1%, 0);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(42rem, 100%);
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 5vw, 3.5rem)
    clamp(3.5rem, 10vh, 6rem);
}

.hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.25rem, 12vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero__lede {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.88);
}

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

/* —— Show —— */
.show {
  background: var(--pearl);
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 3.5rem);
}

.show__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.show__presenter {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.show__title {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--crimson-deep);
}

.show__tagline {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink-muted);
}

.show__meta {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink);
}

.show__meta p {
  margin: 0.25rem 0;
}

.show__dot {
  margin: 0 0.4rem;
  color: var(--brass);
}

.show__actions {
  margin-top: 1.5rem;
}

.show__body {
  margin-top: 2.5rem;
}

.show__body p {
  margin: 0 0 1.15rem;
  color: var(--ink-muted);
}

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

.show__credit {
  margin: 2rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-style: italic;
}

.tickets {
  margin-top: 3rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}

.tickets__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.tickets__note {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
}

.tickets__when {
  margin: 1.25rem 0 0;
  color: var(--ink);
}

/* —— About —— */
.about {
  background: var(--bg-deep);
  padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 5vw, 3.5rem);
}

.about__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.about h2,
.involved h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about p,
.involved p {
  margin: 1rem 0 0;
  color: var(--ink-muted);
}

/* —— Involved —— */
.involved {
  background: var(--bg);
  padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 5vw, 3.5rem);
}

.involved__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.involved .btn {
  margin-top: 1.5rem;
}

/* —— Footer —— */
.site-footer {
  padding: 2rem clamp(1.25rem, 5vw, 3.5rem) 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
}

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

/* —— Reveal motion —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.32s;
}

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

  .hero__media {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
