.hero-scroll-wrap {
  position: relative;
  height: 300vh;
}

#hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* Video */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* Texto principal */
.hero-headline {
  position: absolute;
  top: 40%;
  left: var(--pad-x);
  transform: translateY(-50%);
  z-index: 2;
}

.hero-headline h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
}

.hero-text-2 {
  position: absolute;
  top: 0;
  left: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: var(--pad-x);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}
.sl-label {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  font-weight: 700;
}
.sl-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: slPulse 2.4s ease-in-out infinite;
}
@keyframes slPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@media (max-width: 768px) {
  .hero-headline { left: var(--pad-x-sm); right: var(--pad-x-sm); top: 35%; }
  .scroll-hint { right: var(--pad-x-sm); bottom: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline h1 {
    font-size: 7.5vw;
  }
}