/* ═══════════════════════════════════════════════════════════
   SCOUTING EVENTS — El Programa · Velada de Gala
   Playbill · Serif editorial · Gold + Wine · Ornamental
   Liquid Glass para CTAs · Brand gradient preservado
   ═══════════════════════════════════════════════════════════ */

:root {
  --ev-bg:          #060606;
  --ev-stage:       #0b0a09;
  --ev-text:        #f5efe0;
  --ev-muted:       rgba(245, 239, 224, 0.6);
  --ev-dim:         rgba(245, 239, 224, 0.4);
  --ev-gold:        #d4af37;
  --ev-gold-dim:    rgba(212, 175, 55, 0.18);
  --ev-gold-soft:   #e8c968;
  --ev-wine:        #9b2c2c;
  --ev-wine-dim:    rgba(155, 44, 44, 0.22);
  --ev-ivory:       #f3e8c8;
  --ev-accent:      #a855f7;
  --ev-accent-2:    #38bdf8;
  --ev-gradient:    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  --ev-serif:       'Fraunces', 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --ev-body:        'Urbanist', sans-serif;
  --ev-mono:        'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  --ev-ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ev-ease-curtain: cubic-bezier(0.65, 0, 0.35, 1);
  --ev-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════════════════
   OVERTURA — Hero (playbill cover)
   ═══════════════════════════════════════════════════════════ */

.ev-overtura {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(155, 44, 44, 0.16) 0%, transparent 60%),
    radial-gradient(circle at 50% 20%, #121010 0%, #060606 70%);
  padding: 56px 40px 100px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

/* Stage curtain — red velvet drops from top */
.ev-curtain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34vh;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(70, 14, 14, 0.95) 0%,
      rgba(155, 44, 44, 0.55) 40%,
      rgba(155, 44, 44, 0.2) 75%,
      transparent 100%),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.12) 0px,
      rgba(0, 0, 0, 0.12) 24px,
      transparent 24px,
      transparent 72px);
  transform: translateY(-100%);
  animation: ev-curtain-drop 1.4s var(--ev-ease-curtain) 0.2s forwards;
}
@keyframes ev-curtain-drop {
  to { transform: translateY(0); }
}
.ev-curtain::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 26px;
  background: repeating-linear-gradient(
    90deg,
    var(--ev-gold) 0 6px,
    rgba(155, 44, 44, 0.8) 6px 16px
  );
  opacity: 0.35;
  filter: blur(0.4px);
  mask-image: linear-gradient(180deg, transparent, black 60%, black);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 60%, black);
}

/* Stage floor glow bottom */
.ev-stage-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24vh;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(212, 175, 55, 0.18) 0%, transparent 65%);
}

/* Marquee bulbs — string of lights top & bottom edges */
.ev-marquee-lights {
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  pointer-events: none;
  opacity: 0;
  animation: ev-fade-in 0.8s var(--ev-ease-out) 1.4s forwards;
}
.ev-marquee-lights--top { top: 32px; }
.ev-marquee-lights--bottom { bottom: 54px; }
.ev-bulb {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ev-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.9), 0 0 14px rgba(212, 175, 55, 0.4);
  animation: ev-bulb-flicker 3s ease-in-out infinite;
  flex-shrink: 0;
}
.ev-bulb:nth-child(odd) { animation-delay: -1s; }
.ev-bulb:nth-child(3n) { animation-delay: -2s; }
@keyframes ev-bulb-flicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 0.65; }
  50% { opacity: 1; }
  55% { opacity: 0.85; }
}

/* Header — playbill masthead */
.ev-playbill {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--ev-gold-dim);
  font-family: var(--ev-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ev-muted);
  opacity: 0;
  animation: ev-fade-down 0.8s var(--ev-ease-out) 1.1s forwards;
}
@keyframes ev-fade-down {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.ev-playbill__col { display: flex; align-items: center; gap: 14px; }
.ev-playbill__col--center {
  font-family: var(--ev-serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--ev-gold);
  font-weight: 400;
}
.ev-playbill__sep { color: var(--ev-gold); opacity: 0.75; }
.ev-playbill__year {
  font-family: var(--ev-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ev-ivory);
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Cover body */
.ev-overtura__stage {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

/* Presents line */
.ev-presents {
  font-family: var(--ev-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ev-gold);
  margin-bottom: 14px;
  opacity: 0;
  animation: ev-fade-in 0.7s var(--ev-ease-out) 1.5s forwards;
}
.ev-presents__brand {
  font-family: var(--ev-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ev-ivory);
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 13px;
  margin: 0 10px;
}

/* Ornamental flourish line */
.ev-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px 0;
  opacity: 0;
  animation: ev-fade-in 0.7s var(--ev-ease-out) 1.7s forwards;
}
.ev-flourish__line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ev-gold) 50%, transparent);
}
.ev-flourish__mark {
  color: var(--ev-gold);
  font-size: 18px;
  line-height: 1;
  font-family: var(--ev-serif);
}

/* Big title — editorial serif italic */
.ev-title {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: clamp(3.6rem, 10vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ev-text);
  margin: 0;
  font-style: italic;
  text-shadow: 0 2px 40px rgba(212, 175, 55, 0.2);
}
.ev-title__row {
  display: block;
  overflow: hidden;
}
.ev-title__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: ev-word-up 1s var(--ev-ease-out) forwards;
}
.ev-title__word--1 { animation-delay: 1.6s; }
.ev-title__word--2 { animation-delay: 1.78s; }
.ev-title__word--3 { animation-delay: 1.95s; }
.ev-title__word em {
  font-style: normal;
  background: var(--ev-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ev-title__word--gold {
  color: var(--ev-gold);
  font-weight: 400;
}
@keyframes ev-word-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Subtitle — playbill descriptor */
.ev-subtitle {
  font-family: var(--ev-serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ev-muted);
  max-width: 620px;
  margin: 40px auto 0;
  line-height: 1.55;
  opacity: 0;
  animation: ev-fade-in 0.9s var(--ev-ease-out) 2.3s forwards;
}
.ev-subtitle em {
  font-style: normal;
  color: var(--ev-gold);
  font-weight: 500;
}

/* CTAs row */
.ev-overtura__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: ev-slide-up 0.9s var(--ev-ease-out) 2.5s forwards;
}
@keyframes ev-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ev-fade-in { to { opacity: 1; } }

/* CTAs — liquid glass */
.ev-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--ev-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  transition: transform 0.3s var(--ev-ease-out), box-shadow 0.3s ease;
}
.ev-cta--primary {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%),
    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 10px 32px -6px rgba(168,85,247,0.55),
    0 4px 16px -4px rgba(0,0,0,0.45);
}
.ev-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 16px 40px -6px rgba(168,85,247,0.7);
}
.ev-cta--ghost {
  color: rgba(255,255,255,0.88);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
    rgba(18,16,14,0.5);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    0 4px 16px -4px rgba(0,0,0,0.5);
}
.ev-cta--ghost:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.2),
    inset 0 0 0 0.5px rgba(255,255,255,0.14),
    0 8px 24px -4px rgba(0,0,0,0.55);
}
.ev-cta svg { transition: transform 0.3s var(--ev-ease-out); }
.ev-cta:hover svg { transform: translateX(3px); }

/* Program info strip bottom of overtura */
.ev-program-info {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-family: var(--ev-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.45);
  opacity: 0;
  animation: ev-fade-in 0.7s var(--ev-ease-out) 2.8s forwards;
  padding: 0 40px;
}
.ev-program-info__item { display: inline-flex; align-items: center; gap: 8px; }
.ev-program-info__item strong {
  font-family: var(--ev-serif);
  font-style: italic;
  color: var(--ev-gold);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 12.5px;
}
.ev-program-info__sep { color: var(--ev-gold); opacity: 0.6; }

/* ═══════════════════════════════════════════════════════════
   ACTO — section container
   ═══════════════════════════════════════════════════════════ */

.ev-acto {
  position: relative;
  padding: 112px 40px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.ev-acto--dark {
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
}

/* Header (act labelling) */
.ev-acto__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--ev-gold-dim);
  position: relative;
}
.ev-acto__head::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--ev-gold);
  opacity: 0.8;
}
.ev-acto__num {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--ev-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ev-muted);
}
.ev-acto__num strong {
  font-family: var(--ev-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ev-gold);
  text-transform: none;
  line-height: 1;
}
.ev-acto__scene {
  font-family: var(--ev-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ev-ivory);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
}

/* Ornamental divider */
.ev-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 36px;
}
.ev-ornament__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ev-gold), transparent);
}
.ev-ornament__diamond {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--ev-gold);
}

/* Title block */
.ev-acto__title-block {
  max-width: 920px;
  margin-bottom: 64px;
}
.ev-acto__title-block--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ev-acto__title-block--right {
  margin-left: auto;
  text-align: right;
}

.ev-display {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ev-text);
  margin: 0;
  font-style: italic;
}
.ev-display em {
  font-style: normal;
  font-weight: 500;
  background: var(--ev-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ev-display__gold {
  font-style: normal;
  color: var(--ev-gold);
  font-weight: 400;
}

.ev-lede {
  font-family: var(--ev-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ev-muted);
  margin: 20px 0 0;
  max-width: 580px;
  font-weight: 400;
}
.ev-acto__title-block--center .ev-lede { margin-left: auto; margin-right: auto; }
.ev-acto__title-block--right .ev-lede { margin-left: auto; }

/* ═══════════════════════════════════════════════════════════
   ACTO I — ESCENAS (servicios)
   ═══════════════════════════════════════════════════════════ */

.ev-escenas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}
.ev-escena {
  position: relative;
  padding: 34px 30px 32px;
  background:
    linear-gradient(180deg, rgba(212,175,55,0.04) 0%, rgba(212,175,55,0.005) 100%),
    rgba(16,12,8,0.55);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 0 rgba(212,175,55,0.16),
    inset 0 0 0 0.5px rgba(212,175,55,0.12),
    0 8px 28px -8px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.45s var(--ev-ease-out), box-shadow 0.3s;
}
.ev-escena::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--ev-gold);
  opacity: 0;
  transition: opacity 0.3s, width 0.35s var(--ev-ease-out);
}
.ev-escena:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 0 rgba(212,175,55,0.26),
    inset 0 0 0 0.5px rgba(212,175,55,0.22),
    0 20px 48px -12px rgba(212,175,55,0.16),
    0 10px 24px -6px rgba(0,0,0,0.6);
}
.ev-escena:hover::before {
  opacity: 1;
  width: 80px;
}

.ev-escena__scene {
  font-family: var(--ev-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ev-gold);
}
.ev-escena__name {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ev-text);
  margin: 0;
  font-style: italic;
}
.ev-escena__desc {
  font-family: var(--ev-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245,239,224,0.66);
  margin: 0;
  flex: 1;
}
.ev-escena__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(212,175,55,0.2);
  font-family: var(--ev-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(245,239,224,0.5);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   ACTO II — EL REPARTO (cases)
   ═══════════════════════════════════════════════════════════ */

.ev-reparto {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 28px;
}
.ev-cast {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ev-ease-out);
}
.ev-cast:hover {
  transform: translateY(-6px);
}
.ev-cast--lead {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.ev-cast:nth-child(2) { grid-column: 2; grid-row: 1; }
.ev-cast:nth-child(3) { grid-column: 3; grid-row: 1; }
.ev-cast:nth-child(4) { grid-column: 2 / span 2; grid-row: 2; }

.ev-cast__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 3px;
  background: #0c0a08;
  box-shadow:
    inset 0 0 0 1px var(--ev-gold-dim),
    0 14px 36px -10px rgba(0,0,0,0.6);
}
.ev-cast--lead .ev-cast__frame { aspect-ratio: 4 / 5; }

.ev-cast__frame img,
.ev-cast__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ev-ease-out), filter 0.5s;
  filter: saturate(0.9) contrast(1.08) brightness(0.82);
}
.ev-cast:hover .ev-cast__frame img,
.ev-cast:hover .ev-cast__frame video {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.1) brightness(1);
}

/* Gold spotlight overlay */
.ev-cast__spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% 40%, transparent 0%, rgba(0,0,0,0.22) 55%, rgba(0,0,0,0.68) 100%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* Gold frame marks at corners */
.ev-cast__marks {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.ev-cast:hover .ev-cast__marks { opacity: 0.8; }
.ev-cast__marks span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--ev-gold);
  border-style: solid;
  border-width: 0;
}
.ev-cast__marks span:nth-child(1) { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.ev-cast__marks span:nth-child(2) { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.ev-cast__marks span:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.ev-cast__marks span:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

.ev-cast__ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 11px;
  background: var(--ev-gold);
  color: #0c0a04;
  font-family: var(--ev-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.4);
}
.ev-cast__ribbon--wine { background: var(--ev-wine); color: var(--ev-ivory); }

.ev-cast__body {
  padding: 18px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ev-cast__role {
  font-family: var(--ev-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ev-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ev-cast__role::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--ev-gold);
}
.ev-cast__title {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ev-text);
  margin: 0;
  font-style: italic;
}
.ev-cast--lead .ev-cast__title { font-size: clamp(1.6rem, 2.2vw, 2rem); }
.ev-cast__meta {
  font-family: var(--ev-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: rgba(245,239,224,0.45);
  text-transform: uppercase;
  margin-top: 4px;
}

.ev-cast__summary {
  font-family: var(--ev-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(245,239,224,0.58);
  margin: 8px 0 0;
}

/* ═══════════════════════════════════════════════════════════
   ACTO III — ASISTENCIA (metrics)
   ═══════════════════════════════════════════════════════════ */

.ev-asistencia {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 44px 32px;
}
.ev-tally {
  position: relative;
  padding: 28px 0 4px;
  border-top: 1px solid var(--ev-gold-dim);
}
.ev-tally::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 44px;
  height: 1px;
  background: var(--ev-gold);
}
.ev-tally__num {
  display: block;
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ev-text);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  font-style: italic;
}
.ev-tally--xl .ev-tally__num {
  font-size: clamp(3.2rem, 5.6vw, 5.4rem);
  color: var(--ev-gold);
}
.ev-tally__label {
  display: block;
  font-family: var(--ev-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ev-gold);
  margin-bottom: 10px;
}
.ev-tally__desc {
  font-family: var(--ev-body);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245,239,224,0.52);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   ACTO IV — EN ESCENA (process)
   ═══════════════════════════════════════════════════════════ */

.ev-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ev-gold-dim);
  border: 1px solid var(--ev-gold-dim);
  border-radius: 4px;
  overflow: hidden;
}
.ev-movement {
  padding: 42px 32px 36px;
  background:
    linear-gradient(180deg, rgba(212,175,55,0.025) 0%, rgba(0,0,0,0) 100%),
    #0b0907;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ev-movement__num {
  font-family: var(--ev-serif);
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--ev-gold);
  letter-spacing: 0.02em;
}
.ev-movement__scene {
  font-family: var(--ev-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.5);
}
.ev-movement__title {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin: 0;
  color: var(--ev-text);
  font-style: italic;
}
.ev-movement__desc {
  font-family: var(--ev-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245,239,224,0.58);
  margin: 0;
}
.ev-movement__cue {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--ev-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ev-gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ev-movement__cue::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--ev-gold);
}

/* ═══════════════════════════════════════════════════════════
   ACTO V — BOLETERÍA (pricing)
   ═══════════════════════════════════════════════════════════ */

.ev-tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ev-tier {
  position: relative;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(212,175,55,0.03) 0%, rgba(212,175,55,0.005) 100%),
    rgba(14,12,8,0.72);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 1px 0 0 rgba(212,175,55,0.18),
    inset 0 0 0 0.5px rgba(212,175,55,0.1),
    0 10px 28px -8px rgba(0,0,0,0.55);
  transition: transform 0.4s var(--ev-ease-out);
}
.ev-tier:hover { transform: translateY(-6px); }
.ev-tier--featured {
  background:
    linear-gradient(180deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.02) 100%),
    rgba(18,14,10,0.78);
  box-shadow:
    inset 0 1px 0 0 rgba(212,175,55,0.38),
    inset 0 0 0 0.5px rgba(212,175,55,0.28),
    0 16px 44px -10px rgba(212,175,55,0.3),
    0 6px 20px -4px rgba(155,44,44,0.18);
}

.ev-tier__ribbon {
  position: absolute;
  top: 0;
  left: 28px;
  padding: 5px 12px 7px;
  background: var(--ev-gold);
  color: #0c0a04;
  font-family: var(--ev-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}

.ev-tier__head {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--ev-gold-dim);
  text-align: center;
}
.ev-tier--featured .ev-tier__head { padding-top: 44px; }

.ev-tier__tier-code {
  font-family: var(--ev-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ev-gold);
  margin-bottom: 10px;
}
.ev-tier__name {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ev-text);
  margin: 0 0 8px;
}
.ev-tier__scope {
  font-family: var(--ev-body);
  font-size: 13px;
  color: rgba(245,239,224,0.55);
  margin: 0 0 18px;
}
.ev-tier__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed rgba(212,175,55,0.2);
}
.ev-tier__from {
  font-family: var(--ev-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.5);
}
.ev-tier__amount {
  font-family: var(--ev-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: var(--ev-text);
  font-variant-numeric: tabular-nums;
}
.ev-tier__currency {
  font-family: var(--ev-mono);
  font-size: 10.5px;
  color: rgba(245,239,224,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ev-tier__body {
  padding: 26px 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ev-tier__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ev-tier__features li {
  position: relative;
  padding-left: 24px;
  font-family: var(--ev-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(245,239,224,0.74);
}
.ev-tier__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--ev-gold);
  opacity: 0.78;
}
.ev-tier__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-family: var(--ev-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ev-ease-out), box-shadow 0.3s;
}
.ev-tier:not(.ev-tier--featured) .ev-tier__cta {
  color: rgba(255,255,255,0.88);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
    rgba(18,16,14,0.5);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.08);
}
.ev-tier:not(.ev-tier--featured) .ev-tier__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.2),
    inset 0 0 0 0.5px rgba(255,255,255,0.14);
}
.ev-tier--featured .ev-tier__cta {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%),
    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 10px 32px -6px rgba(168,85,247,0.55);
}
.ev-tier--featured .ev-tier__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 16px 40px -6px rgba(168,85,247,0.7);
}

/* ═══════════════════════════════════════════════════════════
   ACTO VI — RSVP (form)
   ═══════════════════════════════════════════════════════════ */

.ev-acto--rsvp { padding-bottom: 120px; }
.ev-rsvp {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.ev-rsvp__intro { padding-top: 8px; }
.ev-rsvp__lede {
  font-family: var(--ev-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.62;
  color: rgba(245,239,224,0.74);
  margin: 18px 0 28px;
}
.ev-rsvp__lede strong {
  font-style: normal;
  color: var(--ev-gold);
  font-weight: 500;
}
.ev-rsvp__etiquette {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ev-rsvp__etiquette li {
  font-family: var(--ev-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245,239,224,0.6);
  text-transform: uppercase;
  padding-left: 24px;
  position: relative;
}
.ev-rsvp__etiquette li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 2px;
  background: var(--ev-gold);
}

.ev-rsvp__card {
  position: relative;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(212,175,55,0.05) 0%, rgba(0,0,0,0) 100%),
    rgba(16,12,8,0.78);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 0 rgba(212,175,55,0.22),
    inset 0 0 0 0.5px rgba(212,175,55,0.12),
    0 14px 36px -10px rgba(0,0,0,0.6);
}

/* Invitation header (envelope flap style) */
.ev-rsvp__header {
  padding: 26px 30px;
  text-align: center;
  border-bottom: 1px solid var(--ev-gold-dim);
  background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, transparent 100%);
  position: relative;
}
.ev-rsvp__header::before,
.ev-rsvp__header::after {
  content: '';
  position: absolute;
  top: 14px;
  width: 30px;
  height: 1px;
  background: var(--ev-gold);
}
.ev-rsvp__header::before { left: 22px; }
.ev-rsvp__header::after { right: 22px; }
.ev-rsvp__header-label {
  font-family: var(--ev-mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ev-gold);
  display: block;
  margin-bottom: 8px;
}
.ev-rsvp__header-title {
  font-family: var(--ev-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ev-text);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.ev-rsvp__header-title em { color: var(--ev-gold); font-style: italic; }

.ev-rsvp__body {
  padding: 28px 30px 26px;
}

.ev-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ev-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.ev-field-row > .ev-field { margin-bottom: 0; }
.ev-field label {
  font-family: var(--ev-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(245,239,224,0.58);
  text-transform: uppercase;
  font-weight: 600;
}
.ev-field input,
.ev-field select,
.ev-field textarea {
  width: 100%;
  padding: 13px 15px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.08) 100%),
    rgba(10,8,6,0.5);
  border: none;
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 0 rgba(0,0,0,0.4),
    inset 0 0 0 0.5px rgba(212,175,55,0.16);
  color: var(--ev-text);
  font-family: var(--ev-body);
  font-size: 14px;
  outline: none;
  transition: box-shadow 0.25s;
}
.ev-field input:focus,
.ev-field select:focus,
.ev-field textarea:focus {
  box-shadow:
    inset 0 1px 0 0 rgba(0,0,0,0.4),
    inset 0 0 0 1px var(--ev-gold),
    0 0 0 4px rgba(212,175,55,0.08);
}
.ev-field textarea { resize: vertical; min-height: 96px; }
.ev-field input::placeholder, .ev-field textarea::placeholder { color: rgba(245,239,224,0.3); }
.ev-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(212,175,55,0.7)' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.08) 100%),
    rgba(10,8,6,0.5);
  background-repeat: no-repeat;
  background-position: right 14px center, 0 0, 0 0;
}
.ev-field select option { background: #0a0806; color: var(--ev-text); }

.ev-submit {
  width: 100%;
  margin-top: 14px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--ev-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%),
    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 10px 32px -6px rgba(168,85,247,0.55);
  transition: transform 0.25s var(--ev-ease-out), box-shadow 0.3s;
}
.ev-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 16px 40px -6px rgba(168,85,247,0.7);
}
.ev-submit.is-sent {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  pointer-events: none;
}
.ev-submit svg { transition: transform 0.25s var(--ev-ease-out); }
.ev-submit:hover svg { transform: translateX(4px); }

.ev-rsvp__disclaimer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(212,175,55,0.18);
  font-family: var(--ev-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgba(245,239,224,0.44);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   TELÓN — Back cover
   ═══════════════════════════════════════════════════════════ */

.ev-telon {
  padding: 72px 40px 56px;
  border-top: 1px solid var(--ev-gold-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(155, 44, 44, 0.06) 100%);
}
.ev-telon__curtain {
  width: 60px;
  height: 1px;
  background: var(--ev-gold);
}
.ev-telon__line {
  font-family: var(--ev-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.5);
}
.ev-telon__big {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ev-text);
  margin: 0;
}
.ev-telon__big em {
  font-style: italic;
  color: var(--ev-gold);
  font-weight: 400;
}
.ev-telon__stamp {
  font-family: var(--ev-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ev-gold);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════════════════════ */

.ev-float-cta {
  position: fixed;
  right: 32px;
  bottom: 56px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  font-family: var(--ev-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%),
    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 10px 32px -6px rgba(168,85,247,0.55),
    0 4px 16px -4px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.5s var(--ev-ease-out), transform 0.5s var(--ev-ease-out), box-shadow 0.3s ease;
  pointer-events: none;
  will-change: transform, opacity;
}
.ev-float-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.ev-float-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 16px 40px -6px rgba(168,85,247,0.7);
}
.ev-float-cta:active {
  transform: translateY(-1px) scale(0.99);
}
.ev-float-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ev-gold);
  box-shadow: 0 0 8px var(--ev-gold);
  animation: ev-bulb-flicker 2s ease-in-out infinite;
}
.ev-float-cta__arrow { transition: transform 0.3s var(--ev-ease-out); }
.ev-float-cta:hover .ev-float-cta__arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ev-ease-out), transform 0.8s var(--ev-ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .ev-acto { padding: 96px 32px; }
  .ev-escenas { grid-template-columns: 1fr 1fr; }
  .ev-reparto { grid-template-columns: 1fr 1fr; }
  .ev-cast--lead { grid-column: 1 / span 2; grid-row: 1; }
  .ev-cast--lead .ev-cast__frame { aspect-ratio: 16 / 10; }
  .ev-cast:nth-child(2) { grid-column: 1; grid-row: 2; }
  .ev-cast:nth-child(3) { grid-column: 2; grid-row: 2; }
  .ev-cast:nth-child(4) { grid-column: 1 / span 2; grid-row: 3; }
  .ev-asistencia { grid-template-columns: 1fr 1fr; }
  .ev-process { grid-template-columns: 1fr; }
  .ev-tickets { grid-template-columns: 1fr; }
  .ev-rsvp { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .ev-overtura { padding: 44px 20px 92px; }
  .ev-playbill { font-size: 10px; padding-bottom: 20px; }
  .ev-playbill__col--center { display: none; }
  .ev-curtain { height: 24vh; }
  .ev-marquee-lights--top { top: 24px; }
  .ev-marquee-lights--bottom { bottom: 46px; }
  .ev-overtura__stage { padding: 28px 0; }
  .ev-title { font-size: 14vw; }
  .ev-subtitle { font-size: 15px; margin-top: 28px; }
  .ev-overtura__ctas { flex-direction: column; align-items: stretch; margin-top: 28px; }
  .ev-cta { width: 100%; justify-content: center; }
  .ev-program-info { gap: 14px; font-size: 9.5px; padding: 0 20px; }
  .ev-program-info__item:nth-child(3) { display: none; }

  .ev-acto { padding: 72px 20px; }
  .ev-acto__head { flex-wrap: wrap; gap: 12px; padding-bottom: 18px; margin-bottom: 40px; }
  .ev-acto__title-block { margin-bottom: 40px; }

  .ev-escenas { grid-template-columns: 1fr; gap: 24px; }

  .ev-reparto { grid-template-columns: 1fr; gap: 28px; }
  .ev-cast--lead, .ev-cast:nth-child(2), .ev-cast:nth-child(3), .ev-cast:nth-child(4) {
    grid-column: 1; grid-row: auto;
  }

  .ev-asistencia { grid-template-columns: 1fr; gap: 32px; }

  .ev-tickets { grid-template-columns: 1fr; }
  .ev-tier__name { font-size: 24px; }

  .ev-rsvp__body { padding: 24px 22px 22px; }
  .ev-field-row { grid-template-columns: 1fr; gap: 14px; }
  .ev-field input, .ev-field textarea, .ev-field select { font-size: 16px; }

  .ev-telon { padding: 48px 20px 40px; }

  .ev-float-cta {
    right: 16px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 12px);
    padding: 12px 18px 12px 16px;
    font-size: 11.5px;
    gap: 9px;
  }
  .ev-float-cta__dot { width: 6px; height: 6px; }
}

/* Ultra-compact phones */
@media (max-width: 480px) {
  .ev-overtura { padding: 32px 16px 72px; }
  .ev-playbill { font-size: 9px; padding-bottom: 14px; }
  .ev-curtain { height: 20vh; }
  .ev-overtura__stage { padding: 20px 0; }
  .ev-title { font-size: 17vw; }
  .ev-subtitle { font-size: 13.5px; margin-top: 20px; }
  .ev-overtura__ctas { margin-top: 22px; gap: 10px; }
  .ev-cta { min-height: 46px; }
  .ev-program-info { font-size: 9px; padding: 0 16px; gap: 10px; }

  .ev-acto { padding: 56px 16px; }
  .ev-acto__head { font-size: 10px; gap: 8px; margin-bottom: 32px; }
  .ev-acto__title-block { margin-bottom: 30px; }

  .ev-cast__spotlight { padding: 18px; }
  .ev-asistencia { gap: 24px; }
  .ev-tier { padding: 24px 20px; }
  .ev-tier__name { font-size: 20px; }
  .ev-tier__amount { font-size: 28px; }

  .ev-rsvp__body { padding: 18px 16px 16px; }
  .ev-telon { padding: 36px 16px 28px; }

  .ev-float-cta {
    right: 12px;
    left: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 10px);
    padding: 11px 16px;
    font-size: 11px;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ev-curtain { transform: translateY(0); animation: none; }
  .ev-title__word { opacity: 1; transform: none; animation: none; }
  .ev-playbill, .ev-presents, .ev-flourish, .ev-subtitle, .ev-overtura__ctas, .ev-marquee-lights, .ev-program-info {
    opacity: 1; transform: none; animation: none;
  }
  .ev-bulb, .ev-float-cta__dot { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .ev-float-cta { transition: opacity 0.3s ease; }
  .ev-float-cta:hover { transform: translateY(0) scale(1); }
}
