/* ──────────────────────────────────────────────────
   BWEN — SOVEREIGN ELECTRIC
   Shared stylesheet for all pages
   ────────────────────────────────────────────────── */

:root {
  --void:    #030208;
  --abyss:   #07040F;
  --pit:     #0E0820;
  --deep:    #160D35;
  --crater:  #1F1248;

  --neon:    #7C3AED;
  --electric:#A855F7;
  --plasma:  #C084FC;
  --spark:   #E879F9;
  --arc:     #F0ABFC;

  --gold:    #F59E0B;
  --gilded:  #FCD34D;
  --bronze:  #D97706;

  --white:   #FFFFFF;
  --silver:  #EFEAF5;
  --mist:    #D8D2E2;
  --dust:    #ADA6BD;

  --rule:    rgba(168, 85, 247, 0.15);
  --border:  rgba(192, 132, 252, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Syne', sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--silver);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3.5rem;
  background: rgba(3,2,8,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.32em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--neon), var(--spark));
}

.nav-links { display: flex; gap: 2.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--plasma); }

.nav-donate {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void) !important;
  background: var(--electric);
  padding: 0.6rem 1.5rem;
  border-radius: 1px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(168,85,247,0.4);
}
.nav-donate:hover { background: var(--spark) !important; box-shadow: 0 0 30px rgba(232,121,249,0.5); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--plasma); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--void);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--silver);
  text-decoration: none;
  font-style: italic;
}
.mobile-nav a:hover { color: var(--plasma); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--dust);
  font-size: 1.5rem;
  cursor: pointer;
  font-family: var(--font-mono);
}

/* ─── BUTTONS ─── */
.btn-neon {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--electric);
  padding: 0.9rem 2.2rem;
  border-radius: 1px;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(168,85,247,0.45);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-neon:hover { background: var(--spark); box-shadow: 0 0 40px rgba(232,121,249,0.55); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plasma);
  background: transparent;
  padding: 0.9rem 2.2rem;
  border-radius: 1px;
  border: 1px solid rgba(192,132,252,0.3);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.btn-ghost:hover { border-color: var(--plasma); box-shadow: inset 0 0 20px rgba(192,132,252,0.05); }

.btn-gold {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  padding: 0.9rem 2.2rem;
  border-radius: 1px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(245,158,11,0.35);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gilded); box-shadow: 0 0 35px rgba(252,211,77,0.45); }

.btn-ghost-gold {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 0.9rem 2.2rem;
  border-radius: 1px;
  border: 1px solid rgba(245,158,11,0.3);
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-ghost-gold:hover { border-color: var(--gold); }

/* ─── LAYOUT ─── */
section { padding: 7rem 0; position: relative; z-index: 2; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 3.5rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before { content: '//'; color: var(--electric); opacity: 0.85; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--plasma); font-weight: 300; }
.section-title strong { font-weight: 700; color: var(--white); }

hr.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ─── PAGE HERO (smaller than home hero) ─── */
.page-hero {
  padding: 12rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-ambient {
  position: absolute;
  top: -20%; right: -10%;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--plasma); font-weight: 300; }
.page-hero h1 strong { font-weight: 700; }

.page-hero p {
  max-width: 580px;
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.8;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.breadcrumb a { color: var(--dust); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--plasma); }
.breadcrumb span { opacity: 0.65; }

/* ─── SHARED COMPONENTS ─── */
.glow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.glow-link:hover { color: var(--spark); gap: 0.9rem; }

.chip {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plasma);
  background: rgba(192,132,252,0.08);
  border: 1px solid rgba(192,132,252,0.18);
  padding: 0.35rem 0.9rem;
  border-radius: 1px;
  display: inline-block;
}

/* Image placeholders — for use until real photography is added */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--crater) 0%, var(--pit) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.img-placeholder::after {
  content: 'IMAGE';
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(192,132,252,0.55);
  font-weight: 500;
}
.img-placeholder[data-filename]::after,
.prog-img-placeholder[data-filename]::after {
  content: 'DROP: ' attr(data-filename);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: rgba(192,132,252,0.55);
  text-transform: lowercase;
  font-weight: 500;
}
.img-placeholder svg { opacity: 0.15; }
.img-aspect-16-9 { aspect-ratio: 16/9; }
.img-aspect-4-3 { aspect-ratio: 4/3; }
.img-aspect-1-1 { aspect-ratio: 1/1; }
.img-aspect-3-4 { aspect-ratio: 3/4; }

/* Drop-and-go image overlay system
   Live <img> sits on top of placeholder; onerror removes it if file missing
   so placeholder shows. Drop a file with the right filename into images/
   and it appears automatically.
   The WRAPPER carries aspect-ratio so it always has height whether the
   real image or the placeholder is showing. */
.featured-img-wrap, .prog-img {
  position: relative;
  aspect-ratio: 4/3;          /* default; overridden below for tall slots */
  width: 100%;
  overflow: hidden;
}
.featured-img-wrap.image-stack-tall,
.featured-img-wrap:has(> .img-aspect-3-4),
.prog-img:has(> .img-aspect-3-4) { aspect-ratio: 3/4; }
.featured-img-wrap:has(> .img-aspect-1-1),
.prog-img:has(> .img-aspect-1-1) { aspect-ratio: 1/1; }
.featured-img-wrap:has(> .img-aspect-16-9),
.prog-img:has(> .img-aspect-16-9) { aspect-ratio: 16/9; }
.featured-img-wrap > img.drop-img,
.prog-img > img.drop-img,
.img-slot > img.drop-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.prog-card:hover .prog-img > img.drop-img { transform: scale(1.04); transition: transform 0.5s ease; }
.img-placeholder.drop-target,
.prog-img-placeholder.drop-target {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Real image styling */
.img-frame {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.img-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ─── NEWSLETTER ─── */
#newsletter {
  background: var(--pit);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nl-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.nl-inner h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.nl-inner p { font-size: 0.88rem; color: var(--dust); margin-bottom: 2rem; }
.nl-form { display: flex; max-width: 420px; margin: 0 auto; }
.nl-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--silver);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  border-radius: 0;
  outline: none;
}
.nl-form input::placeholder { color: var(--dust); }
.nl-form input:focus { border-color: rgba(168,85,247,0.4); }
.nl-form button {
  padding: 0.9rem 1.5rem;
  background: var(--neon);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.nl-form button:hover { background: var(--electric); }
.nl-privacy { font-family: var(--font-mono); font-size: 0.7rem; color: var(--dust); margin-top: 1rem; letter-spacing: 0.1em; }

/* ─── FOOTER ─── */
footer { background: var(--void); color: var(--dust); padding: 5rem 0 3rem; position: relative; z-index: 2; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.footer-brand-logo {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  display: block;
  position: relative;
  text-decoration: none;
}
.footer-brand-logo::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 2rem; height: 1px;
  background: var(--neon);
}
.footer-brand p { font-size: 0.82rem; color: var(--dust); margin: 1.2rem 0; max-width: 280px; line-height: 1.8; }
.footer-brand address { font-style: normal; font-size: 0.78rem; color: rgba(100,80,140,0.6); line-height: 1.9; }
.footer-brand address a { color: rgba(120,90,170,0.55); text-decoration: none; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { font-size: 0.82rem; color: var(--dust); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--plasma); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-family: var(--font-mono); font-size: 0.7rem; color: var(--dust); letter-spacing: 0.08em; }
.footer-bottom a { color: var(--mist); text-decoration: none; }
.footer-bottom a:hover { color: var(--plasma); }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--dust);
  text-decoration: none;
  transition: color 0.2s;
}
.ig-link:hover { color: var(--plasma); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 1.5rem; }
  section { padding: 5rem 0; }
  .page-hero { padding: 9rem 0 4rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 540px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nl-form { flex-direction: column; }
  .nl-form input { border-right: 1px solid var(--border); border-bottom: none; }
}

/* ─── VIDEO EMBEDS ──────────────────────────────────────────
   YouTube / Vimeo embeds, inline + gallery patterns.
   Privacy-friendly: use youtube-nocookie.com and Vimeo's
   ?dnt=1 param to disable tracking by default.
   ─────────────────────────────────────────────────────────── */

/* Inline embed — single video block within a page */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--crater) 0%, var(--pit) 70%, var(--abyss) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
}
.video-embed::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric), var(--spark), transparent);
  z-index: 4;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}

/* Embed placeholder — shows when no video URL is set */
.video-embed-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}
.video-embed-placeholder .play-icon {
  width: 64px; height: 64px;
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168,85,247,0.05);
}
.video-embed-placeholder .play-icon::after {
  content: '';
  border-style: solid;
  border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent var(--electric);
  margin-left: 5px;
  opacity: 0.7;
}
.video-embed-placeholder .placeholder-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(192,132,252,0.6);
}

.video-caption {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--dust);
  line-height: 1.5;
}

/* Video gallery — Watch page */
.watch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.watch-card {
  background: var(--pit);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  cursor: pointer;
  transition: background 0.25s, transform 0.3s;
  overflow: hidden;
}
.watch-card:hover { background: var(--crater); transform: translateY(-2px); }
.watch-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--spark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 5;
}
.watch-card:hover::after { transform: scaleX(1); }

.watch-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--crater) 0%, var(--pit) 100%);
  overflow: hidden;
}
.watch-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.watch-thumb .play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 50%, rgba(3,2,8,0.5) 100%);
  transition: background 0.3s;
}
.watch-card:hover .watch-thumb .play-overlay {
  background: linear-gradient(180deg, rgba(168,85,247,0.1) 0%, rgba(3,2,8,0.6) 100%);
}
.watch-thumb .play-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(168,85,247,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(168,85,247,0.5);
  transition: transform 0.3s;
}
.watch-card:hover .watch-thumb .play-circle { transform: scale(1.1); }
.watch-thumb .play-circle::after {
  content: '';
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 4px;
}

.watch-body { padding: 1.4rem 1.6rem 1.6rem; }
.watch-meta {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.6rem;
}
.watch-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.watch-desc {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.7;
}

/* Lightbox modal for video play */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 8, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}
.video-lightbox.active { display: flex; }
.video-lightbox-inner {
  width: 100%;
  max-width: 1100px;
  position: relative;
}
.video-lightbox-close {
  position: absolute;
  top: -3rem; right: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--silver);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.video-lightbox-close:hover { background: var(--crater); color: var(--white); }
.video-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--void);
  border: 1px solid var(--border);
}
.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .watch-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .watch-grid { grid-template-columns: 1fr; }
  .video-lightbox { padding: 2rem 1rem; }
  .video-lightbox-close { top: -2.5rem; }
}
