/* ============ COVER ============ */
.cover {
  position: relative;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}

.cover-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  width: 100%;
}

.cover-presenting {
  margin-bottom: 28px;
}

.cover-rule {
  width: 200px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cover-title {
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  font-size: clamp(80px, 18vw, 220px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  color: var(--paper);
  margin: 24px 0;
  text-transform: lowercase;
  text-shadow:
    0 0 40px rgba(212, 168, 75, 0.3),
    0 0 80px rgba(212, 168, 75, 0.15),
    0 6px 24px rgba(0, 0, 0, 0.7);
}

.cover-tag {
  margin: 24px 0 8px;
}

.cover-cast {
  margin: 56px 0 48px;
}
.cast-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--paper-deep);
  letter-spacing: 0.05em;
  margin: 6px 0;
}
.cast-names {
  font-family: 'Cinzel', serif;
  font-size: clamp(13px, 1.6vw, 18px);
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  margin: 10px 0;
  text-transform: uppercase;
}

.cover-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0 56px;
}

.cover-credit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--ink-mid);
  font-style: italic;
  letter-spacing: 0.08em;
  margin-top: 64px;
}

/* ============ COVER SUNBURST ============ */
.cover-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1400px;
  height: 1400px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  color: var(--gold);
  opacity: 0.18;
  background-image: conic-gradient(
    from 0deg,
    transparent 0deg, transparent 6deg, currentColor 6deg, currentColor 7deg,
    transparent 7deg, transparent 13deg, currentColor 13deg, currentColor 14deg,
    transparent 14deg, transparent 22deg, currentColor 22deg, currentColor 23deg,
    transparent 23deg
  );
  background-size: 100% 100%;
  border-radius: 50%;
  mask-image: radial-gradient(circle, black 0%, black 30%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle, black 0%, black 30%, transparent 65%);
  animation: sunSpin 240s linear infinite;
}

@keyframes sunSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fadeUp {
  from { transform: translateY(20px); }
  to { transform: translateY(0); }
}
  to { opacity: 1; transform: translateY(0); }
}

/* ============ ACTS ============ */
.acts-header {
  text-align: center;
  margin-bottom: 64px;
}
.acts-title {
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.02em;
  color: var(--paper);
  margin: 16px auto;
  max-width: 16ch;
  line-height: 1.1;
}

.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.act {
  position: relative;
  padding: 48px 32px 36px;
  border: 1px solid var(--gold-deep);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 75, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(26,20,16,0.8), rgba(10,9,8,0.95));
  text-align: center;
  transition: all 0.3s ease;
}
.act:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 24px rgba(212, 168, 75, 0.15);
}

.act-mid {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 75, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(36,28,20,0.85), rgba(14,12,10,0.95));
  border-color: var(--gold);
}

.act-numeral {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 0 20px rgba(212, 168, 75, 0.3);
}
.act-title {
  font-family: 'Poiret One', sans-serif;
  font-size: 26px;
  color: var(--paper);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.act-rooms {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.6;
}
.act-blurb {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--paper-deep);
  line-height: 1.6;
}

/* ============ MECHANICS ============ */
.mech-header { text-align: center; margin-bottom: 56px; }

.mech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mech-card {
  text-align: center;
  padding: 40px 28px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.mech-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-deep);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.mech-card:hover::before { opacity: 1; }

.mech-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
.mech-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mech-tesla { color: #b9d8f5; }
.mech-ember { color: #d97a3a; }
.mech-champagne { color: var(--gold-bright); }

.mech-name {
  font-family: 'Poiret One', sans-serif;
  font-size: 28px;
  color: var(--paper);
  margin-bottom: 6px;
  text-transform: lowercase;
}
.mech-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
}
.mech-blurb {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--paper-deep);
  line-height: 1.6;
  max-width: 30ch;
  margin: 0 auto;
}

/* ============ FINALE ============ */
.finale-card {
  text-align: center;
  padding: 56px 40px;
}
.finale-title {
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--paper);
  margin: 16px 0 24px;
  letter-spacing: 0.02em;
}
.finale-prose {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--paper-deep);
  max-width: 38ch;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============ MOBILE ============ */
@media (max-width: 720px) {
  .cover { padding: 48px 16px; min-height: 80vh; }
  .cover-cta { flex-direction: column; gap: 14px; }
  .cover-cta .btn-marquee, .cover-cta .btn-ghost { width: 100%; max-width: 280px; }
  .cover-cast { margin: 32px 0; }

  .acts-grid { grid-template-columns: 1fr; gap: 20px; }
  .act { padding: 36px 24px 28px; }

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

  .finale-card { padding: 36px 24px; }
}


/* Animations applied as enhancement only — content is visible by default */
@media (prefers-reduced-motion: no-preference) {
  .cover-presenting { animation: fadeUp 0.8s ease-out 0.1s both; }
  .cover-rule       { animation: fadeUp 0.8s ease-out 0.2s both; }
  .cover-title      { animation: fadeUp 1s   ease-out 0.3s both; }
  .cover-tag        { animation: fadeUp 0.8s ease-out 0.5s both; }
  .cover-cast       { animation: fadeUp 0.8s ease-out 0.6s both; }
  .cover-cta        { animation: fadeUp 0.8s ease-out 0.7s both; }
  .cover-credit     { animation: fadeUp 0.8s ease-out 0.8s both; }
}
