.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero { height: 70vh; }
}

/* Background image / video */
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
  background-color: var(--black);
}
.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.8s var(--ease-luxury);
}

.mobile-video { display: none; }
.desktop-video { display: block; }

/* Overlay: transparent top, 70% black bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.50) 40%,
    rgba(10,10,10,0.10) 70%,
    transparent 100%
  );
}

/* Content — positioned bottom-left */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 60px 72px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(28px);
  /* Animated in via JS after curtain opens */
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}

.hero-cta { margin-top: 8px; }

/* === CURTAIN PANELS === */
.curtain-left,
.curtain-right {
  position: fixed;
  top: 0; bottom: 0;
  width: 50vw;
  background: var(--black);
  z-index: var(--z-curtain);
  transition: transform var(--dur-curtain) var(--ease-snap);
}
.curtain-left  { left: 0;  transform-origin: left center; }
.curtain-right { right: 0; transform-origin: right center; }

.curtain-left.open  { transform: translateX(-100%); }
.curtain-right.open { transform: translateX(100%); }

@media (max-width: 768px) {
  .hero {
    height: 85svh;
    min-height: 500px;
  }

  /* When video is added: show portrait video on mobile */
  .hero-bg {
    object-position: center center;
  }
  
  .mobile-video { display: block; }
  .desktop-video { display: none; }

  .hero-content {
    padding: 0 24px 56px;
    max-width: 100%;
  }

  .hero-tagline {
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.2;
  }

  .hero-cta { display: block; text-align: center; }

  /* Curtain panels stay the same — they still work on mobile */
}
