/* ============================================================
   show.css — spettacolo page styles (shared)
   ============================================================ */

/* ── Show Hero ─────────────────────────────────────────────── */
.show-hero {
  position: relative;
  height: 85svh;
  display: flex;
  align-items: flex-end;
  padding: 5rem 3rem;
  overflow: hidden;
}

.show-hero-bg {
  position: absolute;
  inset: 0;
  filter: brightness(.58) contrast(1.15);
  transition: transform 8s linear;
}

.show-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,9,.2) 0%, rgba(12,11,9,.88) 100%),
    radial-gradient(ellipse 60% 80% at 30% 60%, rgba(201,169,110,.06), transparent);
}

.show-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.show-hero-label {
  font-size: .68rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.show-hero-title {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 300;
  font-style: italic;
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.show-hero-tagline {
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,230,211,.7);
  max-width: 520px;
  line-height: 1.6;
}

/* ── Show Body ─────────────────────────────────────────────── */
.show-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.show-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  margin: 3.5rem 0 1.2rem;
  color: var(--gold);
}

.show-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(240,230,211,.82);
  margin-bottom: 1.3rem;
}

blockquote {
  margin: 3rem 0;
  padding: 1.5rem 2.5rem;
  border-left: 1px solid var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
}
blockquote cite {
  display: block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
  margin-top: .8rem;
}

/* ── Scene image ──────────────────────────────────────────── */
.scene-img {
  width: 100%;
  margin: 3.5rem 0;
  overflow: hidden;
}

.scene-img .img-placeholder {
  width: 100%;
  background: var(--surface);
}

.scene-img figcaption {
  margin-top: .8rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

/* sizes */
.scene-img.wide  .img-placeholder { height: 520px; }
.scene-img.tall  .img-placeholder { height: 680px; }
.scene-img.short .img-placeholder { height: 360px; }

/* full-bleed variant */
.scene-img.bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.scene-img.bleed .img-placeholder { height: 600px; }
.scene-img.bleed figcaption { padding-right: 3rem; }

/* two-column images */
.scene-duo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 3.5rem 0;
}
.scene-duo .img-placeholder { height: 380px; }
.scene-strip {
  display: flex;
  gap: .6rem;
  margin: 3.5rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.scene-strip::-webkit-scrollbar { display: none; }

.scene-strip .img-placeholder,
.scene-strip img {
  flex: 0 0 30vw;
  height: 320px;
  object-fit: cover;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .scene-strip .img-placeholder,
  .scene-strip img {
    flex: 0 0 80vw;
    height: 260px;
  }
}
/* ── Credits ───────────────────────────────────────────────── */
.credits {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

.credit-item dt {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: .3rem;
}

.credit-item dd {
  font-size: .95rem;
  font-style: italic;
  color: var(--cream);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .show-hero { padding: 5rem 1.5rem 3rem; height: auto; min-height: 75svh; }
  .show-body { padding: 4rem 1.5rem; }
  .scene-img.wide  .img-placeholder { height: 280px; }
  .scene-img.tall  .img-placeholder { height: 340px; }
  .scene-img.bleed .img-placeholder { height: 320px; }
  .scene-duo { grid-template-columns: 1fr; }
  .scene-duo .img-placeholder { height: 260px; }
}

/* ── Download button ─────────────────────────────────────────── */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin: 2rem 0;
  padding: 1rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.btn-download:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn-download-icon {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .25s;
}
.btn-download:hover .btn-download-icon {
  transform: translateY(3px);
}


pre.poesia {
  white-space: pre-wrap;
  font-family: var(--font);
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1.9;
  color: rgba(240,230,211,.85);
  margin: 2.5rem 0;
  background: none;
  border: none;
  padding: 0;
}
.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 3.5rem 0;
  background: var(--surface);
}

.video-player video,
.video-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}