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

:root {
  --bg-deep: #06080e;
  --bg-mid: #0b0f1a;
  --gold: #d4a55a;
  --gold-soft: #c9975230;
  --gold-glow: #d4a55a40;
  --text-primary: #e8e4df;
  --text-secondary: #9a958d;
  --text-dim: #5a564f;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── PARTICLE CANVAS ─── */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
}

.hero__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s ease-out forwards;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  position: relative;
  opacity: 0;
  animation: fadeUp 1.4s 0.5s ease-out forwards;
}

.hero__title::after {
  content: '';
  position: absolute;
  bottom: -0.05em;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.hero__subtitle {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.9s ease-out forwards;
}

.hero__video {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1.4s 1.1s ease-out forwards;
}

.hero__video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #0e1118;
  border: 1px solid #ffffff10;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero__video .video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.hero__watch-link {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__watch-link a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.hero__watch-link a:hover {
  color: var(--gold);
}

.hero__credit {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-top: 2.5rem;
  max-width: 700px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1.2s 1.4s ease-out forwards;
}

.hero__credit span {
  color: var(--gold);
  margin: 0 0.4em;
}

/* ─── PULL QUOTE ─── */
.pullquote {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.pullquote__text {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.pullquote__attribution {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── SECTIONS ─── */
.section {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section--wide {
  max-width: 720px;
}

.section__label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section__text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.3vw, 1.25rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-primary);
}

.section__text + .section__text {
  margin-top: 1.25rem;
}

.section__text em {
  font-style: italic;
  color: var(--gold);
}

.section__text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color 0.3s, color 0.3s;
}
.section__text a:hover {
  border-color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}

/* ─── EPIGRAPH ─── */
.epigraph {
  margin: 0 0 2.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold-soft);
}

.epigraph p {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.epigraph p em {
  font-style: italic;
  color: var(--text-secondary);
}

.epigraph__attribution {
  margin-top: 0.75rem;
  font-size: 0.95rem !important;
  color: var(--text-dim) !important;
}

.epigraph__attribution em {
  color: var(--text-dim) !important;
}

/* ─── TRILOGY CHAPTERS ─── */
.trilogy-chapter {
  margin-top: 2.5rem;
}

.trilogy-chapter__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.trilogy-chapter__title em {
  font-style: italic;
  color: var(--gold);
}

.trilogy-synthesis {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ffffff0a;
}

/* ─── DIVIDER ─── */
.divider {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ─── COMPOSER ─── */
.composer {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.composer__layout {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.composer__image img {
  width: 100%;
  border-radius: 2px;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.composer__image img:hover {
  filter: grayscale(0%);
}

.composer__bio {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-primary);
}

.composer__bio em {
  font-style: italic;
  color: var(--gold);
}

.composer__full-bio-link {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.composer a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color 0.3s, color 0.3s;
}
.composer a:hover {
  border-color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}

.composer__full-bio-link a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.composer__full-bio-link a:hover {
  color: var(--gold);
}

/* ─── CREDITS ─── */
.credits {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.credits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.credits__item-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.credits__item-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ─── GET INVOLVED ─── */
.get-involved {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: left;
}

.get-involved__contact {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.3vw, 1.25rem);
  margin-top: 2rem;
  color: var(--text-primary);
}

.get-involved__contact a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color 0.3s;
}

.get-involved__contact a:hover {
  border-color: var(--gold);
}

.get-involved__follow {
  font-family: var(--sans);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.get-involved__follow a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid #ffffff15;
  transition: border-color 0.3s, color 0.3s;
}

.get-involved__follow a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.get-involved__follow span {
  color: var(--gold);
  margin: 0 0.5em;
}

/* ─── FOOTER ─── */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.footer a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover { color: var(--text-secondary); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 720px) {
  .hero {
    padding: 4rem 1rem 2rem;
    min-height: auto;
  }

  .composer__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .composer__image {
    max-width: 160px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .credits__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__credit {
    font-size: 0.75rem;
  }

  .hero__credit span {
    display: block;
    margin: 0.3em 0;
  }
}

/* ─── PREMIERE IMAGE ─── */
.premiere-image {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.premiere-image figure {
  margin: 0;
}

.premiere-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid #ffffff10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  filter: brightness(0.9) saturate(0.85);
  transition: filter 0.6s ease;
}

.premiere-image img:hover {
  filter: brightness(1) saturate(1);
}
