/* ==========================================================================
   Vysyonary Media — brand stylesheet
   Colors: Vysyonary Gold #C89B3C · Cinematic Black #090909
           Charcoal #1C1C1C · Soft Ivory #F2EEE6
   Type: Cinzel (display) · Manrope (body)
   ========================================================================== */

:root {
  --black: #090909;
  --black-2: #050505;
  --charcoal: #1c1c1c;
  --panel: #121110;
  --gold: #c89b3c;
  --gold-light: #e9c77b;
  --gold-dim: #6e5323;
  --ivory: #f2eee6;
  --muted: #b9b2a4;
  --line: #3a2f18;
  --radius: 14px;
  --max: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
  color: var(--ivory);
  margin: 0 0 .5em;
  letter-spacing: .02em;
  font-weight: 600;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.muted { color: var(--muted); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 110px 0; position: relative; }
section.tight { padding: 80px 0; }
section[id] { scroll-margin-top: 84px; }

.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.divider::after { background: linear-gradient(90deg, var(--gold-dim), transparent); }
.divider h2 { margin: 0; white-space: nowrap; font-size: 30px; }
.divider.center { justify-content: center; }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: 34px; }
.section-head p { font-size: 17px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: #0a0a0a;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,155,60,.28); }
.btn-outline {
  background: transparent;
  border-color: var(--gold-dim);
  color: var(--ivory);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ===== Header ===== */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9,9,9,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,155,60,.14);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { height: 32px; width: 32px; border-radius: 50%; display: block; object-fit: cover; }
.brand-text {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: .1em;
  white-space: nowrap;
}
.brand-text em { font-style: normal; color: var(--gold-dim); font-weight: 400; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 1 auto;
  min-width: 0;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.nav-login { color: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  background: none; border: 0;
  width: 40px; height: 36px; cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ivory);
  width: 26px;
  transition: width .2s;
}
.nav-toggle:hover span { width: 20px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%; height: 100%; object-fit: cover; opacity: .92;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,9,9,.82) 0%, rgba(9,9,9,.15) 38%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 32px 64px;
}
.hero-sub {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  letter-spacing: .12em;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--ivory);
}
.hero-content h1 .gold { color: var(--gold-light); }
.hero-content p.lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(242,238,230,.82);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Sound toggle ===== */
.sound-toggle {
  position: absolute;
  bottom: 34px; right: 32px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(242,238,230,.35);
  background: rgba(9,9,9,.4);
  backdrop-filter: blur(4px);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.sound-toggle:hover { border-color: var(--gold); background: rgba(9,9,9,.6); }
.sound-toggle svg { width: 18px; height: 18px; }
.sound-toggle .icon-unmuted { display: none; }
.sound-toggle.is-unmuted .icon-muted { display: none; }
.sound-toggle.is-unmuted .icon-unmuted { display: block; }
.reel-panel .sound-toggle { bottom: 44px; }

/* ===== Positioning statement ===== */
.statement {
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--black));
}
.statement h2 {
  font-size: clamp(28px, 4.2vw, 46px);
  max-width: 820px;
  margin: 0 auto 22px;
}
.statement p { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 17px; }

/* ===== Discovery call banner ===== */
.discovery-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--black));
}

/* ===== Cards (generic) ===== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.15));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ===== About / philosophy ===== */
.pillars { gap: 26px; }
.pillar .eyebrow { margin-bottom: 10px; }

.values-grid { grid-template-columns: repeat(3, 1fr); margin-top: 50px; }
.value-card { text-align: left; }
.value-num {
  font-family: 'Cinzel', serif;
  color: var(--gold-dim);
  font-size: 13px;
  letter-spacing: .2em;
  margin-bottom: 12px;
  display: block;
}

.manifesto {
  margin-top: 60px;
  text-align: center;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--gold-light);
}

/* ===== Services ===== */
.services-grid { grid-template-columns: repeat(4, 1fr); }
.audience-grid { grid-template-columns: repeat(4, 1fr); }
.audience-grid .card h3 { color: var(--gold-light); font-family: 'Cinzel', serif; font-size: 17px; margin-bottom: 10px; }
.service-card { position: relative; padding-top: 34px; }
.service-index {
  position: absolute; top: 18px; right: 20px;
  font-family: 'Cinzel', serif; color: var(--gold-dim); font-size: 13px;
}

/* ===== Process ===== */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 20px;
  position: relative;
}
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  background: var(--panel);
  text-align: center;
  position: relative;
}
.process-step .step-no {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 15px;
}
.process-step h3 { font-size: 16px; margin-bottom: 8px; letter-spacing: .06em; text-transform: uppercase; }
.process-step p { font-size: 13.5px; color: var(--muted); }

/* ===== Work (full-bleed reel) ===== */
.work-reel-section { position: relative; background: #000; }
.ai-disclosure {
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(242,238,230,.88);
  white-space: nowrap;
  background: rgba(9,9,9,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(242,238,230,.16);
  border-radius: 999px;
  padding: 8px 18px;
  /* Never let the pill overhang the viewport: it is centred with
     translateX(-50%), so an unconstrained width pushes past both edges. */
  max-width: calc(100% - 32px);
}
.reel-panel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.06);
}
.reel-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-panel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, transparent 32%);
  pointer-events: none;
}
.reel-caption {
  position: absolute;
  bottom: 44px; left: 32px;
  z-index: 2;
  color: var(--ivory);
}
.reel-caption h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin: 0 0 6px; }
.reel-caption span { font-size: 14px; color: rgba(242,238,230,.75); }

.more-work { max-width: var(--max); margin: 0 auto; padding: 110px 28px 10px; }
#services { padding-top: 40px; }
.more-work h3 { font-family: 'Cinzel', serif; color: var(--gold-light); font-size: 20px; margin-bottom: 30px; }
.work-list { grid-template-columns: repeat(3, 1fr); }
.work-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: var(--panel);
}
.work-card.video-card { padding: 16px 16px 20px; }
.work-card.video-card .work-reel { margin-bottom: 14px; }
.work-reel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  background: #000;
}
.work-reel video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
.work-reel.ratio-9-16 { aspect-ratio: 9 / 16; }
.work-card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.work-card h3 { font-size: 17px; margin: 0; }
.work-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 34px; }

/* ===== Pricing ===== */
.pricing-row { align-items: stretch; margin-bottom: 22px; }
.pricing-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-row.cols-2 { grid-template-columns: repeat(2, 1fr); }
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(200,155,60,.16);
}
.price-card.featured::before {
  position: absolute; top: -1px; left: -1px; right: -1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 8px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.price-card.featured.tag-best::before { content: "BEST VALUE"; }
.price-card.featured.tag-popular::before { content: "MOST POPULAR"; }
.price-card.featured { padding-top: 56px; }
.price-name {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 21px;
  letter-spacing: .1em;
}
.price-duration { color: var(--muted); font-size: 13px; margin: 6px 0 16px; }
.price-desc { color: var(--muted); font-size: 14px; min-height: 42px; }
.price-amount {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 34px;
  margin: 18px 0 2px;
}
.price-note { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 22px; }
.price-card ul { text-align: left; margin: 0 0 26px; padding-left: 18px; color: var(--muted); font-size: 13.5px; flex: 1; }
.price-card ul li { margin-bottom: 6px; }
.price-card ul li::marker { color: var(--gold); }

.included-panel, .addons-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  background: var(--panel);
  margin-top: 26px;
}
.included-panel h4, .addons-panel h4 {
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.chip {
  font-size: 13px;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
}
.addons-panel table { width: 100%; border-collapse: collapse; }
.addons-panel td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.addons-panel td:last-child { text-align: right; color: var(--gold-light); font-family: 'Cinzel', serif; }
.pricing-footnote { text-align: center; color: var(--gold-dim); font-size: 12.5px; margin-top: 26px; letter-spacing: .03em; }

/* ===== Contact ===== */
.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.contact-wrap.has-form {
  max-width: 1020px;
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 56px;
  text-align: left;
  align-items: start;
}
.contact-wrap.has-form .contact-copy { text-align: left; margin: 0; }
.contact-copy .manifesto-line {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 20px;
  margin: 22px 0 30px;
}
.contact-copy .btn { display: inline-flex; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 16px;
  justify-content: center;
  text-align: left;
  max-width: 320px;
}
.contact-wrap.has-form .contact-detail { margin: 0 0 16px; justify-content: flex-start; }
.contact-detail .ico {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== Inquiry form ===== */
.contact-form-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.form-title { font-size: 21px; margin-bottom: 8px; }
.form-sub { color: var(--muted); font-size: 14px; margin-bottom: 26px; }

.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; letter-spacing: .03em; color: var(--muted); margin-bottom: 7px; }
.field .req { color: var(--gold); }
.field .opt { color: var(--gold-dim); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; margin-left: 4px; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ivory);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 14.5px;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
outline: 2px solid var(--gold);
outline-offset: 2px;
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #d3574a;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-error {
  display: block;
  min-height: 16px;
  color: #e08a7c;
  font-size: 12px;
  margin-top: 6px;
}

.field-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 4px; }
.field-checkbox input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.field-checkbox label { margin: 0; color: var(--muted); font-size: 13px; }
.field-checkbox label a { color: var(--gold-light); text-decoration: underline; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  min-height: 20px;
  font-size: 13.5px;
  margin: 18px 0 16px;
}
.form-status.is-error { color: #e08a7c; }
.form-status.is-success { color: var(--gold-light); }
.form-status.is-loading { color: var(--muted); }

.form-success {
  margin: 8px 0 4px;
  padding: 22px 24px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  background: rgba(200,155,60,.08);
}
.form-success-heading {
  font-size: 19px;
  color: var(--gold-light);
  margin: 0 0 8px;
}
.form-success-heading:focus,
.form-success:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.form-success-message {
  color: var(--ivory);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.form-submit { position: relative; width: 100%; gap: 10px; }
.form-submit .btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(10,10,10,.3);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.form-submit.is-loading .btn-label { opacity: .6; }
.form-submit.is-loading .btn-spinner { display: inline-block; }
.form-submit:disabled { cursor: not-allowed; opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Footer (minimal) ===== */
footer.minimal-footer {
  padding: 140px 0 34px;
  background: var(--black);
  text-align: center;
}
.footer-cta {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 5vw, 56px);
  color: var(--ivory);
  margin-bottom: 44px;
  transition: color .2s;
}
.footer-cta:hover { color: var(--gold-light); }
.footer-links-min { display: flex; justify-content: center; gap: 28px; margin-bottom: 18px; }
.footer-links-min a { font-size: 13px; color: var(--muted); }
.footer-links-min a:hover { color: var(--gold-light); }
.footer-nav-min { display: flex; justify-content: center; gap: 22px; margin-bottom: 18px; }
.footer-nav-min a { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dim); }
.footer-nav-min a:hover { color: var(--gold-light); }
.footer-legal-min { display: flex; justify-content: center; gap: 22px; margin-bottom: 40px; }
.footer-legal-min a { font-size: 12px; color: var(--gold-dim); }
.footer-legal-min a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 11.5px;
  color: var(--gold-dim);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 20px;
}

/* ===== Reveal-on-scroll ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
     .nav-links, .nav-actions .btn-outline { display: none; }
     .nav-toggle { display: flex; }
  .services-grid, .grid-3, .work-list, .audience-grid, .pricing-row.cols-3, .pricing-row.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .contact-wrap.has-form { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  /* Allow the AI disclosure to wrap instead of forcing horizontal scroll. */
  .ai-disclosure {
    white-space: normal;
    text-align: center;
    line-height: 1.45;
    border-radius: 14px;
  }
  .services-grid, .grid-3, .work-list, .audience-grid, .pricing-row.cols-3, .pricing-row.cols-2, .process-track, .values-grid { grid-template-columns: 1fr; }
  section { padding: 76px 0; }
  .hero-actions .btn { width: 100%; }
  .reel-caption { left: 20px; bottom: 30px; }
  .footer-links-min, .footer-nav-min, .footer-legal-min { flex-wrap: wrap; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 26px 20px; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(5,5,5,.98);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Cinzel', serif; font-size: 20px; letter-spacing: .1em; color: var(--ivory); }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav a.mobile-login {
  margin-top: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--gold-light);
}

/* ===== Video load failure fallback ===== */
/* Sits over the poster so a visitor is never left with a frozen frame
   or an endless loading state. */
.video-fallback {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  max-width: 88%;
  text-align: center;
  border: 1px solid rgba(200,155,60,.34);
  border-radius: 10px;
  background: rgba(9,9,9,.86);
  backdrop-filter: blur(6px);
  color: var(--ivory);
  font-size: 14px;
  line-height: 1.45;
}
.video-fallback a { color: var(--gold-light); text-decoration: underline; }
.hero-media .video-fallback { font-size: 15px; }

/* Reduced motion: never animate the reveal, and let posters sit still. */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { transition: none !important; transform: none !important; opacity: 1 !important; }
  .sound-toggle { transition: none !important; }
}
