/* ═══════════════════════════════════════════
   CINEMATOGRAPHY PAGE — cinematography.css
   ═══════════════════════════════════════════ */

/* ── VIDEO HERO ── */
.hero-wrap { position: relative; }

.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 100vh * 16/9 — ensures width always exceeds viewport */
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw; /* 100vw * 9/16 — ensures height always exceeds viewport */
  transform: translate(-50%, -50%);
  border: none;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.10) 40%,
    rgba(0,0,0,.45) 100%
  );
  pointer-events: none;
}
.video-caption {
  position: absolute;
  bottom: 10%;
  left: 6%;
  z-index: 2;
  color: #fff;
}
.video-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  opacity: .7;
  margin-bottom: .6rem;
}
.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}
.video-title em {
  font-style: italic;
  color: var(--gold);
}
.video-sub {
  margin-top: .8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  letter-spacing: .15em;
  opacity: .6;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5%;
  right: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  opacity: .5;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: #fff;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%      { opacity: 1;  transform: scaleY(1); }
}


/* ══════════════════════════════════════
   SECTION HEADINGS  (shared)
   ══════════════════════════════════════ */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-header-center { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-desc-center {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--ink-muted, var(--ink));
  opacity: .7;
  margin-top: .8rem;
  line-height: 1.7;
}


/* ══════════════════════════════════════
   INTRO SECTION
   ══════════════════════════════════════ */
.cine-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 5%;
  align-items: start;
}
.cine-intro-body {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  line-height: 1.85;
  color: var(--ink);
  opacity: .8;
  margin-bottom: 2.4rem;
}
.cine-stats {
  display: flex;
  gap: 2.5rem;
}
.cine-stat {
  display: flex;
  flex-direction: column;
}
.cine-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}
.cine-stat-num em { font-style: normal; }
.cine-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink);
  opacity: .5;
  margin-top: .3rem;
}


/* ══════════════════════════════════════
   FEATURED FILMS SECTION
   ══════════════════════════════════════ */
.cine-films {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Video wrap (shared) */
.film-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}
.film-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
.film-ratio-portrait {
  padding-top: 120%;
}

/* Play overlay */
.film-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  background: rgba(0,0,0,.25);
  transition: background .4s ease, opacity .4s ease;
}
.film-play-overlay:hover { background: rgba(0,0,0,.15); }
.film-play-overlay.playing { opacity: 0; pointer-events: none; }

.play-btn-ring {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, border-color .3s ease;
}
.film-play-overlay:hover .play-btn-ring {
  transform: scale(1.12);
  border-color: var(--gold);
}
.play-btn-ring i {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 3px;
}

/* Captions — now inline info panel */
.film-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
}
.film-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  color: var(--gold);
  opacity: .6;
}
.film-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--ink);
  margin: .3rem 0 .6rem;
}
.film-date {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--gold);
  margin-bottom: .3rem;
}
.film-location {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink);
  opacity: .5;
}

/* === Film row — alternating layout === */
.film-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.film-row.revealed {
  opacity: 1;
  transform: translateY(0);
}
.film-row-reverse {
  grid-template-columns: 1fr 1.6fr;
}
.film-row-reverse .film-video-wrap {
  order: 2;
}
.film-row-reverse .film-info {
  order: 1;
  text-align: right;
}
/* Stagger odd/even */
.film-row:nth-child(even) { transition-delay: .1s; }


/* ══════════════════════════════════════
   PROCESS TIMELINE
   ══════════════════════════════════════ */
.cine-process {
  padding: 7rem 5% 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.process-step.revealed {
  opacity: 1;
  transform: translateY(0);
}
.process-step:nth-child(2) { transition-delay: .1s; }
.process-step:nth-child(3) { transition-delay: .2s; }
.process-step:nth-child(4) { transition-delay: .3s; }

/* Vertical line */
.step-line {
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: var(--border-soft, rgba(0,0,0,.1));
}
.process-step:last-child .step-line { display: none; }

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.step-dot span {
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  color: var(--gold);
}
.step-content { padding-top: .35rem; }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 .4rem;
}
.step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: .65;
}


/* ══════════════════════════════════════
   PACKAGES  / WHAT'S INCLUDED
   ══════════════════════════════════════ */
.cine-packages {
  padding: 3rem 5% 7rem;
  max-width: 1200px;
  margin: 0 auto;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pkg-card {
  background: var(--bg);
  border: 1px solid var(--border-soft, rgba(0,0,0,.08));
  border-radius: 14px;
  padding: 2.4rem 2rem;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
  opacity: 0;
  transform: translateY(30px);
}
.pkg-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.pkg-card:nth-child(2) { transition-delay: .07s; }
.pkg-card:nth-child(3) { transition-delay: .14s; }
.pkg-card:nth-child(4) { transition-delay: .21s; }
.pkg-card:nth-child(5) { transition-delay: .28s; }
.pkg-card:nth-child(6) { transition-delay: .35s; }

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.07);
}
.pkg-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  background: var(--gold-pale, rgba(193,167,114,.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-icon i {
  font-size: 1.2rem;
  color: var(--gold);
}
.pkg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 .5rem;
}
.pkg-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: .6;
}


/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
.cine-cta {
  text-align: center;
  padding: 120px 56px;
  background: var(--gold-pale);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.cine-cta::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(176,141,87,0.28);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cine-cta::after {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(176,141,87,0.13);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cine-cta-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.cine-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.cine-cta-title em { font-style: italic; color: var(--gold); }
.cine-cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.btn-dark {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 15px 36px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-dark:hover { background: var(--gold); }
.btn-ghost-dark {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 15px 36px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(28,24,18,0.25);
  transition: all 0.3s;
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .video-hero { height: 100svh; }
  .video-caption { padding: 0 20px; }
  .video-eyebrow { font-size: 11px; letter-spacing: 0.3em; }
  .video-title { font-size: clamp(44px, 12vw, 80px); line-height: 0.92; }
  .video-sub { font-size: 10px; letter-spacing: 0.18em; }
  .scroll-hint { display: none; }

  .cine-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 5%;
  }
  .film-row,
  .film-row-reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .film-row-reverse .film-video-wrap { order: 0; }
  .film-row-reverse .film-info { order: 0; text-align: left; }
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .video-hero { height: 100svh; }
  .video-caption { left: 5%; bottom: 14%; padding: 0 16px; }
  .video-eyebrow { font-size: 10px; letter-spacing: 0.3em; }
  .video-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .video-sub { font-size: 10px; letter-spacing: 0.15em; }
  .scroll-hint { display: none; }
  .cine-stats {
    gap: 1.6rem;
    flex-wrap: wrap;
  }
  .cine-stat-num { font-size: 2rem; }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .cine-cta { padding: 80px 24px; }
  .cine-cta-btns { flex-direction: column; align-items: center; }
  .play-btn-ring {
    width: 56px;
    height: 56px;
  }
  .play-btn-ring i { font-size: 1rem; }
  .film-title { font-size: 1.2rem; }
}
