/* ── CSS VARIABLES ─────────────────────────────── */
:root {
  --cream: #FAF6EE;
  --ivory: #FDF9F2;
  --deep: #16213A;
  --navy: #1E2D4A;
  --gold: #B8966A;
  --gold-light: #D4B48A;
  --sage: #7A9A84;
  --warm-gray: #8C8880;
  --border: rgba(184,150,106,0.18);
  --shadow: rgba(22,33,58,0.08);
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
#er-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--deep); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-gray); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--deep); }
.nav-cta {
  background: var(--deep) !important; color: var(--cream) !important;
  padding: 10px 22px !important; border-radius: 2px;
  letter-spacing: 0.1em !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--deep) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--deep); transition: all 0.3s;
}
.nav-mobile-menu {
  display: none; position: fixed; inset: 0; top: 64px; z-index: 999;
  background: var(--cream); padding: 32px 28px;
  border-top: 1px solid var(--border);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.nav-mobile-menu a {
  font-size: 1.1rem; font-weight: 500; color: var(--deep); text-decoration: none;
  letter-spacing: 0.06em;
}
.nav-mobile-menu .btn-primary { display: inline-block; text-align: center; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: var(--deep); color: var(--cream);
  padding: 16px 36px; border-radius: 2px;
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s;
  border: 2px solid var(--deep); display: inline-block;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--deep); }
.btn-ghost {
  color: var(--deep); padding: 16px 28px;
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid rgba(22,33,58,0.25); border-radius: 2px;
  transition: all 0.25s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION HELPERS ─────────────────────────────── */
section { position: relative; }
.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300; line-height: 1.2; color: var(--deep);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(184,150,106,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(122,154,132,0.06) 0%, transparent 60%);
}
.hero-orb {
  position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 680px; height: 680px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,106,0.12) 0%, rgba(184,150,106,0.04) 50%, transparent 70%);
  border: 1px solid rgba(184,150,106,0.15);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
  50% { transform: translateY(-50%) scale(1.04); opacity: 1; }
}
.hero-left {
  padding: 80px 64px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.5vw, 4.8rem);
  font-weight: 300; line-height: 1.12; color: var(--deep);
  margin-bottom: 28px; letter-spacing: -0.01em;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: var(--warm-gray); max-width: 460px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-proof {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; gap: 40px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 500; color: var(--deep); line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-gray); margin-top: 4px;
}
.hero-divider { width: 1px; background: var(--border); align-self: stretch; }
.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 80px 80px 40px;
  position: relative; z-index: 2;
  animation: fadeUp 0.9s 0.15s ease both;
}
.hero-card {
  background: white; border: 1px solid var(--border); border-radius: 4px;
  padding: 40px; max-width: 380px;
  box-shadow: 0 24px 80px var(--shadow), 0 4px 16px rgba(22,33,58,0.04);
  position: relative;
}
.hero-card::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 0 0 2px 2px;
}
.card-quote-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 0.7; color: var(--gold); opacity: 0.35; margin-bottom: 8px;
}
.card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; line-height: 1.65;
  color: var(--deep); font-style: italic; margin-bottom: 24px;
}
.card-author { display: flex; align-items: center; gap: 14px; }
.card-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--sage));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: white; font-weight: 500; flex-shrink: 0;
}
.card-name { font-size: 0.85rem; font-weight: 600; color: var(--deep); }
.card-title { font-size: 0.72rem; color: var(--warm-gray); letter-spacing: 0.06em; }
.card-stars { display: flex; gap: 3px; margin-bottom: 12px; color: var(--gold); font-size: 0.85rem; }

/* ── WHAT IS IT ──────────────────────────────────── */
.what {
  padding: 120px 80px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.what-body {
  font-size: 1rem; line-height: 1.85; color: var(--warm-gray);
  font-weight: 300; margin-bottom: 36px;
}
.what-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px;
  border: 1px solid var(--border); border-radius: 3px; background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pillar:hover { border-color: var(--gold); box-shadow: 0 4px 24px var(--shadow); }
.pillar-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,150,106,0.15), rgba(184,150,106,0.05));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; margin-top: 1px;
}
.pillar-name { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; color: var(--deep); margin-bottom: 3px; }
.pillar-desc { font-size: 0.8rem; color: var(--warm-gray); line-height: 1.5; }
.what-visual {
  aspect-ratio: 3/4; max-height: 520px; border-radius: 3px;
  background: linear-gradient(160deg, var(--navy) 0%, #0D1829 100%);
  position: relative; overflow: hidden;
  box-shadow: 0 32px 80px rgba(22,33,58,0.2);
}
.what-visual-inner {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184,150,106,0.2) 0%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 40px;
}
.verse-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 12px;
}
.verse-ref {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); opacity: 0.7;
}
.what-visual-glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,106,0.15) 0%, transparent 70%);
  animation: breathe 5s ease-in-out infinite;
}
.what-tag {
  position: absolute; bottom: -20px; right: -20px;
  background: white; border: 1px solid var(--border); border-radius: 3px;
  padding: 16px 20px; box-shadow: 0 8px 32px var(--shadow);
}
.what-tag-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 500; color: var(--gold); line-height: 1;
}
.what-tag-label { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--warm-gray); text-transform: uppercase; }
.what-left { position: relative; }

/* ── HOW IT WORKS ────────────────────────────────── */
.how { padding: 100px 80px; background: var(--deep); overflow: hidden; }
.how-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(184,150,106,0.06) 0%, transparent 60%);
}
.how-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.how-header { text-align: center; margin-bottom: 72px; }
.how .section-label { justify-content: center; color: var(--gold-light); }
.how .section-label::before { background: var(--gold-light); }
.how .section-title { color: var(--cream); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.step {
  padding: 48px 40px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); position: relative;
  transition: background 0.3s;
}
.step:hover { background: rgba(255,255,255,0.06); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300; line-height: 1;
  color: rgba(184,150,106,0.2); margin-bottom: 24px; display: block;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: rgba(255,255,255,0.9); margin-bottom: 14px;
}
.step-desc { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.45); }
.step-line {
  position: absolute; top: 50%; right: -1px;
  width: 1px; height: 40%; transform: translateY(-50%);
  background: linear-gradient(to bottom, transparent, rgba(184,150,106,0.3), transparent);
}

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials { padding: 120px 80px; background: var(--ivory); }
.test-inner { max-width: 1200px; margin: 0 auto; }
.test-header { text-align: center; margin-bottom: 72px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: white; border: 1px solid var(--border); border-radius: 3px;
  padding: 36px 32px; transition: box-shadow 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.tcard:hover { box-shadow: 0 12px 48px var(--shadow); transform: translateY(-3px); }
.tcard-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.tcard:hover .tcard-accent { opacity: 1; }
.tcard-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; font-weight: 400;
  line-height: 1.7; color: var(--deep); margin-bottom: 28px; opacity: 0.9;
}
.tcard-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.tcard-name { font-size: 0.82rem; font-weight: 600; color: var(--deep); }
.tcard-role { font-size: 0.7rem; color: var(--warm-gray); letter-spacing: 0.05em; margin-top: 2px; }
.tcard-icon { font-size: 1.5rem; opacity: 0.3; }

/* ── PRICING ─────────────────────────────────────── */
.pricing { padding: 120px 80px; max-width: 1000px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.pcard {
  border: 1px solid var(--border); border-radius: 4px; padding: 48px 40px;
  background: white; position: relative; transition: all 0.3s; overflow: hidden;
}
.pcard:hover { box-shadow: 0 20px 60px var(--shadow); }
.pcard.featured { border-color: var(--gold); background: var(--deep); box-shadow: 0 16px 60px rgba(22,33,58,0.2); }
.pcard-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--deep);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
.pcard-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.pcard-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 400; line-height: 1; color: var(--deep); margin-bottom: 6px;
}
.pcard.featured .pcard-price { color: var(--cream); }
.pcard-sub { font-size: 0.78rem; color: var(--warm-gray); margin-bottom: 32px; }
.pcard.featured .pcard-sub { color: rgba(250,246,238,0.5); }
.pcard-desc { font-size: 0.88rem; line-height: 1.75; color: var(--warm-gray); margin-bottom: 36px; }
.pcard.featured .pcard-desc { color: rgba(250,246,238,0.65); }
.pcard .btn-primary { width: 100%; text-align: center; }
.pcard.featured .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--deep); }
.pcard.featured .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.pricing-note { text-align: center; font-size: 0.82rem; color: var(--warm-gray); font-style: italic; line-height: 1.65; }
.pricing-note a { color: var(--gold); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-strip {
  padding: 80px; background: var(--cream);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.faq-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-left .section-title { font-size: 2.5rem; margin-bottom: 20px; }
.faq-left p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.75; margin-bottom: 28px; }
.faqs { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 0.9rem; font-weight: 500; color: var(--deep);
  transition: color 0.2s; user-select: none; gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  width: 20px; height: 20px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: transform 0.3s, background 0.2s; color: var(--warm-gray);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--gold); border-color: var(--gold); color: white; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.85rem; line-height: 1.8; color: var(--warm-gray); padding: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 20px; }
.faq-a p { margin: 0; }

/* ── FINAL CTA ───────────────────────────────────── */
.final-cta { padding: 120px 80px; text-align: center; background: var(--deep); overflow: hidden; }
.final-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(184,150,106,0.1) 0%, transparent 70%);
}
.final-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.final-cta .section-label { justify-content: center; color: var(--gold); }
.final-cta .section-label::before { background: var(--gold); }
.final-cta .section-title { color: var(--cream); margin: 16px 0 24px; }
.final-sub { font-size: 1rem; color: rgba(250,246,238,0.55); line-height: 1.75; margin-bottom: 48px; }
.final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--deep); }
.final-cta .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.final-cta .btn-ghost { border-color: rgba(250,246,238,0.2); color: rgba(250,246,238,0.6); }
.final-cta .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  padding: 32px 80px; border-top: 1px solid rgba(255,255,255,0.06);
  background: #0F1724; display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: rgba(250,246,238,0.6); text-decoration: none; }
.footer-logo span { color: var(--gold); }
.footer-right { font-size: 0.72rem; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.footer-right a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-right a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  #er-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 28px; }
  .hero-right { display: none; }
  .what { grid-template-columns: 1fr; padding: 60px 28px; gap: 40px; }
  .what-left { order: -1; }
  .how { padding: 80px 28px; }
  .how-steps { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .testimonials { padding: 80px 28px; }
  .test-grid { grid-template-columns: 1fr; }
  .pricing { padding: 80px 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-strip { padding: 60px 28px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .final-cta { padding: 80px 28px; }
  footer { padding: 24px 28px; flex-direction: column; gap: 12px; text-align: center; }
}

/* ── VIDEO INTRO (post-hero explainer) ───────────── */
.video-intro {
  background: var(--deep);
  padding: 100px 80px;
  position: relative; overflow: hidden;
}
.video-intro::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%,   rgba(184,150,106,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%,  rgba(122,154,132,0.05) 0%, transparent 60%);
}
.vi-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 44px; position: relative; z-index: 1;
}

/* Text header */
.vi-text { text-align: center; max-width: 600px; }
.vi-text .section-label { justify-content: center; color: var(--gold-light); }
.vi-text .section-label::before { background: var(--gold-light); }
.vi-text .section-title { color: var(--cream); margin: 14px 0 18px; }
.vi-caption {
  font-size: 1rem; font-weight: 300; line-height: 1.75;
  color: rgba(250,246,238,0.5); max-width: 480px; margin: 0 auto;
}

/* Frame wrapper with decorative corners */
.vi-frame-wrap {
  width: 100%; position: relative;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,150,106,0.15);
  border-radius: 4px;
}
.vi-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,150,106,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.vi-frame {
  position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 */
  border-radius: 2px; overflow: hidden; background: #0a1020;
}
.vi-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Gold corner accents */
.vi-frame-corner {
  position: absolute; width: 20px; height: 20px;
}
.vi-tl { top: 0;    left: 0;   border-top: 2px solid var(--gold); border-left:  2px solid var(--gold); border-radius: 4px 0 0 0; }
.vi-tr { top: 0;    right: 0;  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); border-radius: 0 4px 0 0; }
.vi-bl { bottom: 0; left: 0;   border-bottom: 2px solid var(--gold); border-left:  2px solid var(--gold); border-radius: 0 0 0 4px; }
.vi-br { bottom: 0; right: 0;  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); border-radius: 0 0 4px 0; }

/* CTA row below video */
.vi-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.vi-cta .btn-primary {
  background: var(--gold); border-color: var(--gold); color: var(--deep);
}
.vi-cta .btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
}
.vi-cta .btn-ghost {
  border-color: rgba(250,246,238,0.2); color: rgba(250,246,238,0.6);
}
.vi-cta .btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .video-intro { padding: 70px 28px; }
  .vi-frame-wrap { padding: 10px; }
}
