/* ============================================================
   THE AWAKENING — Cinematic Pictures Design System
   Based on Cinematic Pictures Brand DNA v1.0
   Font: Cinzel (headings) · Barlow (logo/ui) · Poppins (fine print)
   Palette: #000 base · #fff text · #0047AB blue glow · #D4AF37 gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Poppins:wght@200;300;400&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #000000;
  --white:     #ffffff;
  --blue-glow: #0047AB;
  --gold:      #D4AF37;
  --muted:     #7B736F;
  --dim:       rgba(255,255,255,0.07);
  --border:    rgba(255,255,255,0.12);
  --nav-h:     72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── GLOBAL VIGNETTE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  box-shadow: inset 0 0 220px 60px rgba(0, 71, 171, 0.18);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.8rem, 7vw, 6.5rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1rem; letter-spacing: 0.2em; font-weight: 400; }

p { font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: rgba(255,255,255,0.82); }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.8; }
.fine { font-family: 'Poppins', sans-serif; font-weight: 200; font-size: 0.8rem; color: var(--muted); letter-spacing: 0.08em; }
.gold { color: var(--gold); }
.muted { color: var(--muted); }

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}
#navbar.scrolled { background: rgba(0,0,0,0.97); }

.nav-logo {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
}
.nav-logo span { display: block; font-size: 0.62rem; letter-spacing: 0.35em; color: var(--muted); font-weight: 300; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }

.btn-ghost {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  cursor: pointer;
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn-ghost.gold-border { border-color: var(--gold); color: var(--gold); }
.btn-ghost.gold-border:hover { background: rgba(212,175,55,0.1); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: var(--white); display: block; transition: 0.3s; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: flex-start;
  padding: 15vh clamp(1.5rem, 8vw, 8rem) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/photos/004B.jpg') center center / cover no-repeat;
  transform: scaleX(-1) scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scaleX(-1) scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 1.2rem;
  white-space: nowrap;
}
.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero-logline {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}
.hero-synopsis {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }


.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll span { font-family: 'Poppins', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--muted); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--muted), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.3)} }

/* ── FILM OVERVIEW ── */
#film-overview {
  padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 8vw, 8rem);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
#film-overview h2 {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}
.overview-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin: 1.5rem 0;
  flex-wrap: nowrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

.film-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.meta-cell {
  padding: 1.5rem;
  border: 1px solid var(--border);
  text-align: left;
}
.meta-cell .fine { display: block; margin-bottom: 0.4rem; text-transform: uppercase; }
.meta-cell .value { display: block; font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--white); }

/* ── CHAPTER SECTION (generic) ── */
.chapter-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}
.chapter-section.reverse { direction: rtl; }
.chapter-section.reverse > * { direction: ltr; }

.chapter-image {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  background: var(--black); /* Ensure black background for 'contain' gaps */
  display: flex;
  align-items: center;
  justify-content: center;
}
.chapter-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 8s ease;
}
.chapter-section:hover .chapter-image img { transform: scale(1.02); }

.chapter-image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.chapter-content {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
}
.chapter-number {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.chapter-location {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2rem;
}
.chapter-content h2 { margin-bottom: 0.4rem; }
.chapter-welsh {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.chapter-content p { margin-bottom: 1rem; }
.chapter-quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  background: rgba(212,175,55,0.04);
}
.chapter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
}

/* ── FULL-WIDTH ATMOSPHERIC ── */
.chapter-full {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.chapter-full-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chapter-full-bg img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.chapter-full-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);
}
.chapter-full-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
}

/* ── DATA STRIP ── */
.data-strip {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 5vh, 4rem) clamp(1.5rem, 8vw, 8rem);
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.data-item { }
.data-item .data-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.data-item .data-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.data-item .data-sub { font-family: 'Poppins', sans-serif; font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }

/* ── COMMAND SECTION (Ch VIII) ── */
#chapter-8 {
  background: #000;
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 8vw, 8rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#chapter-8 .bg-img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.35;
}
.command-lines { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.command-line {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
  font-style: italic;
  transition: color 0.4s;
}
.command-line.final { color: var(--white); font-size: clamp(1.4rem, 3.5vw, 2.4rem); font-weight: 700; font-style: normal; }
.command-silence {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2.5rem;
}
.closing-captions {
  max-width: 600px;
  margin: 4rem auto 0;
  position: relative;
  z-index: 2;
}
.closing-caption {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.closing-caption:last-child { border-bottom: none; }

/* ── DIRECTOR SECTION ── */
#director {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: stretch;
  background: var(--black);
}
.director-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.director-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.director-image-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}
.director-content {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
}
.director-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 2rem 0;
}
.credential {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.cred-num { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold); min-width: 60px; }
.cred-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ── AWARDS ── */
#awards {
  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 8vw, 8rem);
  text-align: center;
}
.awards-header { margin-bottom: 3rem; }
.laurel-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}
.laurel {
  border: 1px solid rgba(212,175,55,0.3);
  padding: 1.2rem 1.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-align: center;
  background: rgba(212,175,55,0.04);
  line-height: 1.5;
  min-width: 160px;
}
.laurel .year { font-family: 'Poppins', sans-serif; font-size: 0.65rem; color: var(--muted); display: block; margin-top: 0.3rem; }

/* ── SCREENER / CONTACT ── */
#screener {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 8vw, 8rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.screener-intro { margin: 1.5rem 0 3rem; }
.screener-form {
  display: grid;
  gap: 1rem;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-family: 'Poppins', sans-serif; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--dim);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(255,255,255,0.4); }
.form-field select option { background: #111; }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-submit { text-align: center; margin-top: 1rem; }
.btn-submit {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: background 0.25s;
  width: 100%;
}
.btn-submit:hover { background: rgba(255,255,255,0.07); }

/* ── CHAPTER NAV (vertical progress) ── */
.chapter-nav-strip {
  padding: clamp(2.5rem, 5vh, 4rem) clamp(1.5rem, 8vw, 8rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.chapter-nav-inner {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.chapter-nav-inner::-webkit-scrollbar { display: none; }
.chapter-nav-item {
  flex: 1;
  min-width: 110px;
  padding: 1rem 0.8rem;
  text-align: center;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.chapter-nav-item:last-child { border-right: none; }
.chapter-nav-item:hover { background: var(--dim); }
.chapter-nav-item .cn-num { font-family: 'Cinzel', serif; font-size: 0.7rem; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.chapter-nav-item .cn-title { font-family: 'Poppins', sans-serif; font-size: 0.65rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); text-transform: uppercase; }

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0;
}

/* ── SEPARATOR TEXT ── */
.section-label {
  text-align: center;
  padding: 3.5rem 0 1rem;
}
.section-label h4 {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── FOOTER ── */
#footer {
  padding: 3rem clamp(1.5rem, 8vw, 8rem);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-copy { font-family: 'Poppins', sans-serif; font-size: 0.7rem; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--muted); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .chapter-section,
  .chapter-section.reverse,
  #director { grid-template-columns: 1fr; direction: ltr; }
  .chapter-section.reverse > * { direction: ltr; }
  .chapter-image { min-height: 50vw; max-height: 55vh; }
  .director-image { min-height: 50vw; max-height: 50vh; }
  .director-image-overlay { background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7)); }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(0,0,0,0.97);
    padding: 3rem 2rem;
    gap: 2rem;
    z-index: 899;
  }
  .nav-links.open a { font-size: 1rem; }
  .hamburger { display: flex; }
  .hero-scroll { display: none; }
}

@media (max-width: 600px) {
  .overview-stats { gap: 2rem; }
  .film-meta-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { gap: 1rem; }
}

/* ── PRODUCTION GALLERY ── */
#production-gallery {
  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 4rem);
  background: #000;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  opacity: 1;
  pointer-events: none;
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
}

/* ── PRIVATE PLAYBACK ── */
#watch {
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: radial-gradient(circle at center, rgba(0, 71, 171, 0.08) 0%, transparent 80%);
}

/* ── TEASER VIDEOS ── */
.teaser-video {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}
.teaser-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border: 1px solid var(--gold);
  background: #000;
  box-shadow: 0 0 40px rgba(0, 71, 171, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.teaser-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 50px rgba(0, 71, 171, 0.25);
}
.teaser-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: #050505;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.video-container:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 40px 120px -20px rgba(212, 175, 55, 0.15);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}
