.lv-hero-section { margin: 0; padding: 0; background: #000; }

.lv-hero-driver {
  position: relative;
  height: 320vh; /* ~5s film given room to scrub without racing */
}

.lv-hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh; /* avoids iOS Safari URL-bar collapse jump; 100vh stays as fallback */
  width: 100%;
  overflow: hidden;
  background: #000;
}

.lv-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.lv-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}

.lv-brand {
  position: absolute;
  top: 6vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(46vw, 320px);
  opacity: 0;
  transition: opacity .6s ease;
  filter: drop-shadow(0 2px 18px rgba(212, 175, 55, .35));
}
.lv-brand.is-visible { opacity: 1; }
.lv-brand svg, .lv-logo-img { width: 100%; height: auto; display: block; }

.lv-copy {
  position: absolute;
  left: 50%;
  bottom: calc(9vh - 10px);
  transform: translate(-50%, 12px);
  text-align: center;
  color: #f3e6c8;
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
  padding: 0 24px;
  max-width: 560px;
}
.lv-copy.is-visible { opacity: 1; transform: translate(-50%, 0); }

.lv-eyebrow {
  font: 600 12px/1 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #d4af37;
  margin: 0 0 10px;
}

.lv-headline {
  font: 400 clamp(17px, 2.8vw, 45px)/1.15 var(--lv-font-script, 'Alex Brush', cursive);
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: .01em;
  white-space: nowrap;
  text-align: center;
}

.lv-sub {
  font: 400 15px/1.6 'Helvetica Neue', Arial, sans-serif;
  color: rgba(243, 230, 200, .78);
  margin: 0 0 22px;
}

.lv-cta {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #d4af37;
  color: #f3e6c8;
  text-decoration: none;
  font: 600 12px/1 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease;
}
.lv-cta:hover { background: #d4af37; color: #000; }

.lv-loader {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgba(212, 175, 55, .15);
  transition: opacity .4s ease;
}
.lv-loader-bar {
  height: 100%;
  width: 0%;
  background: #d4af37;
  transition: width .2s ease;
}
.lv-loader.is-done { opacity: 0; pointer-events: none; }

.lv-noscript-img { width: 100%; height: 100vh; object-fit: cover; }

.lv-hero__scrollcue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: lv-cue-in 1s ease-out 1.5s both;
  transition: opacity .4s ease;
}
.lv-hero__scrollcue span {
  font: 600 10px/1 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(243, 230, 200, .65);
}
.lv-hero__scrollcue svg { animation: lv-cue-drift 2.2s ease-in-out infinite; }
.lv-hero__scrollcue.is-hidden { opacity: 0; pointer-events: none; }

@keyframes lv-cue-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lv-cue-drift {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .lv-hero-driver { height: auto; }
  .lv-hero-stage { position: relative; height: 70vh; }
  .lv-brand, .lv-copy { opacity: 1; transform: none; }
  .lv-hero__scrollcue { animation: none; opacity: .7; }
  .lv-hero__scrollcue svg { animation: none; }
}

@media (max-width: 700px) {
  .lv-hero-driver { height: 260vh; }
  .lv-brand { top: 5vh; width: 60vw; }
  .lv-copy { bottom: 6vh; }
  .lv-hero__scrollcue { bottom: 18px; }
}
