/* ==========================================================================
   VAYUPUTRA CINEMATIC STUDIO — DESIGN TOKENS
   ========================================================================== */
:root {
  --black: #0A0908;
  --charcoal: #1C1815;
  --charcoal-2: #241F1A;
  --gold: #D4AF37;
  --gold-light: #E8C766;
  --bronze: #B8860B;
  --red: #8B1E1E;
  --parchment: #F5EFE0;
  --parchment-dim: #C9C1AE;

  /* Hindi-first type stacks — Devanagari faces load first, Latin as fallback */
  --font-display: "Noto Serif Devanagari", "Cormorant Garamond", Georgia, serif;
  --font-body: "Noto Sans Devanagari", "Inter", -apple-system, sans-serif;

  --container-w: 1180px;
  --radius: 3px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  z-index: 300;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.br-desktop { display: none; }
@media (min-width: 700px) { .br-desktop { display: inline; } }

/* ==========================================================================
   SIGNATURE ELEMENT — SCROLL FLAME LINE
   ========================================================================== */
.flame-track {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 150;
  background: rgba(212, 175, 55, 0.08);
}
.flame-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bronze), var(--gold));
  transition: width 0.08s linear;
}
.flame-tip {
  position: absolute;
  top: -3px;
  left: 0%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 6px 1px rgba(232, 199, 102, 0.45);
  transform: translateX(-50%);
  transition: left 0.08s linear;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 3px;
  z-index: 100;
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark,
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--parchment);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text-sub {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-toggle {
  position: relative;
  z-index: 210;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.6);
  backdrop-filter: blur(2px);
  z-index: 190;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.nav-backdrop.is-visible { opacity: 1; }
.nav-backdrop[hidden] { display: none; }

.primary-nav {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: min(78vw, 320px);
  height: 100dvh;
  background: var(--charcoal);
  border-left: 1px solid rgba(212, 175, 55, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 20px 32px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  z-index: 200;
}
.primary-nav.is-open { transform: translateX(0); }
.primary-nav a {
  padding: 15px 0;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid rgba(245, 239, 224, 0.07);
  color: var(--parchment-dim);
  transition: color 0.2s, padding-left 0.2s var(--ease);
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--gold); padding-left: 6px; }
.nav-cta { color: var(--gold) !important; font-weight: 600; }

@media (min-width: 900px) {
  .nav-toggle, .nav-backdrop { display: none; }
  .primary-nav {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 34px;
    padding: 0;
    background: none;
    border: none;
    transform: none;
  }
  .primary-nav a { padding: 0; border: none; font-size: 14.5px; font-weight: 500; }
  .primary-nav a:hover, .primary-nav a:focus-visible { padding-left: 0; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-rays, .hero-silhouette {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
}
.hero-silhouette { opacity: 0.9; }
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  animation: drift 14s linear infinite;
}
.hero-particles span:nth-child(1) { left: 8%;  top: 90%; animation-delay: 0s;  }
.hero-particles span:nth-child(2) { left: 22%; top: 95%; animation-delay: 2.2s; }
.hero-particles span:nth-child(3) { left: 41%; top: 88%; animation-delay: 4.6s; }
.hero-particles span:nth-child(4) { left: 63%; top: 96%; animation-delay: 1.3s; }
.hero-particles span:nth-child(5) { left: 78%; top: 90%; animation-delay: 6.8s; }
.hero-particles span:nth-child(6) { left: 90%; top: 93%; animation-delay: 3.5s; }
@keyframes drift {
  0%   { opacity: 0; transform: translateY(0) scale(0.8); }
  10%  { opacity: 0.55; }
  80%  { opacity: 0.25; }
  100% { opacity: 0; transform: translateY(-70vh) scale(1.2); }
}
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--black));
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-emblem {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4), 0 8px 30px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0s forwards;
}
.text-gold-link {
  color: var(--gold-light);
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  transition: border-color 0.2s;
}
.text-gold-link:hover { border-color: var(--gold-light); }
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.05s forwards;
}
.hero-title {
  font-size: clamp(2.1rem, 8.5vw, 4.1rem);
  line-height: 1.18;
  color: var(--parchment);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.18s forwards;
}
.text-gold {
  background: linear-gradient(160deg, var(--gold-light), var(--bronze));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 22px;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--parchment-dim);
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.42s forwards;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  display: none;
}
.scroll-cue-line {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold-light);
  animation: scrollCue 1.8s var(--ease-soft) infinite;
}
@keyframes scrollCue {
  0%   { opacity: 0; top: 6px; }
  30%  { opacity: 1; }
  80%  { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 18px; }
}
@media (min-width: 640px) { .scroll-cue { display: block; } }

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s, color 0.25s, box-shadow 0.3s;
}
.btn-primary {
  background: linear-gradient(160deg, var(--gold-light), var(--bronze));
  color: var(--black);
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(212, 175, 55, 0.45);
}
.btn-ghost {
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--parchment);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.7; cursor: default; transform: none !important; }
.btn-label-loading { display: none; }
.btn.is-loading .btn-label-default { display: none; }
.btn.is-loading .btn-label-loading { display: inline; }

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */
.section { padding: 88px 0; }
.section-alt { background: var(--charcoal); }
.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  margin-top: 10px;
  color: var(--parchment);
  line-height: 1.25;
}
.section-sub {
  margin-top: 16px;
  color: var(--parchment-dim);
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.8;
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.link-arrow:hover { opacity: 0.75; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { animation: fadeUp 0.6s var(--ease) forwards; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  margin-top: 36px;
  display: grid;
  gap: 36px;
}
.about-lead {
  font-size: 18.5px;
  line-height: 1.9;
  color: var(--parchment-dim);
  max-width: 640px;
}
.about-points {
  display: grid;
  gap: 18px;
}
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.03);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.about-points li:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.06);
  transform: translateX(4px);
}
.point-icon { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.point-label {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
}
.point-text { color: var(--parchment-dim); font-size: 14px; line-height: 1.6; display: block; margin-top: 3px; }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
}

/* ==========================================================================
   VIDEOS — Spotlight + Grid (single unified component system)
   ========================================================================== */
.video-spotlight { margin-top: 40px; }
.spotlight-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-2);
}
.spotlight-media {
  position: relative;
  aspect-ratio: 9 / 12;
  cursor: pointer;
  overflow: hidden;
}
.spotlight-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.spotlight-media:hover img { transform: scale(1.04); }
.spotlight-media::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,9,8,0.75), rgba(10,9,8,0.1) 55%);
}
.spotlight-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.spotlight-body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.spotlight-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.spotlight-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--parchment);
  line-height: 1.4;
}
.spotlight-cta { align-self: flex-start; margin-top: 4px; }

@media (min-width: 760px) {
  .spotlight-card { grid-template-columns: 1fr 1fr; }
  .spotlight-media { aspect-ratio: auto; height: 100%; min-height: 380px; }
}

.video-grid {
  margin-top: 22px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .video-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1000px) { .video-grid { grid-template-columns: repeat(5, 1fr); } }

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-2);
  border: 1px solid rgba(212, 175, 55, 0.16);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.video-card:hover, .video-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 14px 34px -14px rgba(212, 175, 55, 0.35);
}
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,9,8,0.88) 0%, rgba(10,9,8,0.08) 58%);
}
.video-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.video-card:hover .video-thumb { transform: scale(1.06); }
.video-card iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 2;
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.65);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.12); background: rgba(212, 175, 55, 0.22); }
.video-play svg { width: 13px; height: 13px; fill: var(--gold-light); margin-left: 2px; }
.video-meta {
  position: relative;
  z-index: 2;
  padding: 13px;
  width: 100%;
}
.video-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 6px;
}
.video-title { font-size: 12.5px; font-weight: 600; line-height: 1.45; color: var(--parchment); display: block; }

/* ==========================================================================
   AI GALLERY
   ========================================================================== */
.gallery-grid {
  margin-top: 36px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.16);
  position: relative;
  overflow: hidden;
  background: var(--charcoal-2);
  cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.gallery-item:hover, .gallery-item:focus-visible {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 14px 34px -14px rgba(212, 175, 55, 0.35);
}
.gallery-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover .gallery-thumb-img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gallery-item.tone-gold::after { background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.20), transparent 65%), linear-gradient(to top, rgba(10,9,8,0.75), transparent 55%); }
.gallery-item.tone-red::after { background: radial-gradient(circle at 70% 25%, rgba(139,30,30,0.24), transparent 65%), linear-gradient(to top, rgba(10,9,8,0.75), transparent 55%); }
.gallery-item.tone-bronze::after { background: radial-gradient(circle at 40% 70%, rgba(184,134,11,0.22), transparent 65%), linear-gradient(to top, rgba(10,9,8,0.75), transparent 55%); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--parchment);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  margin-top: 30px;
  display: grid;
  gap: 42px;
}
.hidden-field { position: absolute; left: -9999px; }
.contact-form { display: grid; gap: 16px; max-width: 480px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.02em; }
.field input, .field textarea {
  background: var(--black);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 14.5px;
  resize: vertical;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.form-status { font-size: 13.5px; color: var(--gold-light); min-height: 18px; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand-text { display: flex; flex-direction: column; gap: 4px; }
.footer-tagline { font-size: 12px; color: var(--parchment-dim); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13.5px; color: var(--parchment-dim); }
.footer-nav a { transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.25s var(--ease);
}
.footer-socials a:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); transform: translateY(-2px); }
.footer-socials svg { width: 16px; height: 16px; fill: var(--gold-light); }
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 239, 224, 0.06);
  font-size: 12.5px;
  color: var(--parchment-dim);
}

@media (min-width: 700px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.94);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-content {
  max-width: 420px;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.lightbox-content iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  z-index: 1;
  transition: border-color 0.2s, background 0.2s;
}
.lightbox-close:hover { border-color: var(--gold); background: rgba(212,175,55,0.1); }
