.hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
  background: radial-gradient(ellipse at top, rgba(201, 161, 91, 0.14), transparent 70%);
}

.hero h1 {
  font-size: clamp(4rem, 14vw, 8rem);
  color: var(--accent);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.hero-logo-heading {
  margin: 0 0 1rem;
  font-size: 0;
  line-height: 0;
}
.hero-logo {
  display: block;
  margin: 0 auto;
  width: min(90%, 38rem);
  height: auto;
  max-height: 12rem;
  object-fit: contain;
}
@media (max-width: 640px) {
  .hero-logo { width: min(92%, 22rem); max-height: 8rem; }
}

/* Hero photo variant — full-bleed landscape image instead of the wordmark. */
.hero-photo {
  display: block;
  margin: 0 auto;
  width: min(96%, 60rem);
  height: auto;
  max-height: 32rem;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.45);
}
@media (max-width: 640px) {
  /* Full-bleed on phones — bust out of the hero's horizontal padding so
   * the photo fills the viewport edge-to-edge. Drop max-height + cover
   * so the full image shows at its natural 3:2 aspect ratio instead of
   * being letterboxed-crop cropped at a fixed height. */
  .hero { padding-left: 0; padding-right: 0; }
  .hero-photo {
    width: 100vw;
    max-width: 100vw;
    max-height: none;
    object-fit: unset;
    border-radius: 0;
    box-shadow: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--gold);
  margin: 0.5rem 0 1.5rem;
}

.hero-lede {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--fg-dim);
  font-size: 1.1rem;
}

.upcoming {
  margin-bottom: 5rem;
}

.landing-videos,
.landing-gallery {
  max-width: 72rem;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}
.landing-videos h2,
.landing-gallery h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.landing-lede {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.landing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}
.landing-gallery-tile {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.3rem;
  background: var(--border);
}
.landing-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.landing-gallery-tile:hover img {
  transform: scale(1.05);
}

.merch {
  max-width: 72rem;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}
.merch h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.merch-lede {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--fg-dim);
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.merch-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
  background: var(--card-bg, rgba(255, 255, 255, 0.02));
}
.merch-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.merch-art {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-color: var(--border);
}
.merch-art-placeholder {
  display: grid;
  place-items: center;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  background:
    radial-gradient(ellipse at center, rgba(201, 161, 91, 0.08), transparent 70%),
    var(--border);
}
.merch-meta {
  padding: 0.9rem 1rem 1rem;
}
.merch-meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--fg);
}
.merch-price {
  margin: 0;
  color: var(--gold);
  font-size: 0.95rem;
}
.merch-price .oos {
  color: var(--muted);
  font-size: 0.8rem;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.see-all {
  text-align: center;
  margin-top: 2rem;
  letter-spacing: 0.05em;
}

.values,
.about {
  max-width: 42rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.values h2,
.about h2 { margin-bottom: 1.5rem; }
.values p,
.about p { margin: 1rem 0; color: var(--fg-dim); }
.values { border-top: 1px solid var(--border); padding-top: 3rem; }

/* Show cards grid (shared with /shows).
 * Masonry: fine 4 px row tracks + JS-computed row span per card. Gives
 * row-major reading order (first show top-left) with tight vertical
 * packing even when posters have different aspect ratios. When JS fails
 * the browser falls back to a normal grid with aligned row heights. */
.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 420px));
  justify-content: center;
  gap: 1.5rem;
}

.show-card {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.show-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.show-card .poster {
  flex: 1;
  min-height: 0;
  margin: 0;
  background: #0b0509;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-card .poster img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.show-card .poster-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 3rem;
}
.show-card h3 {
  margin: 0;
  padding: 0.65rem 1rem 0.15rem;
  color: var(--fg);
}
.show-card .when {
  color: var(--gold);
  font-size: 0.9rem;
  margin: 0;
  padding: 0 1rem;
}
.show-card .where {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
  padding: 0.1rem 1rem 0.65rem;
}
