/* ========================================
   HERO — CINEMATIC. SLOW. CONFIDENT.
   ======================================== */
.mb-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--black);
  margin-left: calc(-50vw + 50%);
}

.mb-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}

.mb-hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  display: none;
}
.mb-hero--poster-only .mb-hero__poster { display: block; }
.mb-hero--poster-only .mb-hero__video { display: none; }

/* Subtle gradient — just enough for text legibility */
.mb-hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to top,
    rgba(26,23,19,0.5) 0%,
    rgba(26,23,19,0.1) 50%,
    transparent 100%
  );
}

/* Content — centered, patient */
.mb-hero__content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: var(--s-3);
}

/* Staggered reveal — hold the dark, then emerge */
.reveal { opacity: 0; transform: translateY(8px); }
.reveal--1 { animation: hero-emerge 1.5s var(--ease) 1.5s forwards; }
.reveal--2 { animation: hero-emerge 1.5s var(--ease) 3s forwards; }
.reveal--3 { animation: hero-emerge 1.5s var(--ease) 4s forwards; }

@keyframes hero-emerge {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mb-hero__monogram {
  width: 88px; height: auto;
}

.mb-hero__tagline {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(244,231,210,0.75);
}
:lang(he) .mb-hero__tagline, .rtl .mb-hero__tagline {
  font-family: var(--ff-display-he);
  letter-spacing: 0.06em;
  font-size: 1.06rem;
}

.mb-hero__subline {
  font-family: var(--ff-body-he);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,230,208,0.55);
  max-width: none;
}
:lang(he) .mb-hero__subline, .rtl .mb-hero__subline {
  letter-spacing: 0.12em;
}

/* Scroll indicator — a single breathing line */
.mb-hero__scroll-cue {
  position: absolute;
  bottom: var(--s-5); left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.mb-hero__scroll-line {
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(176,141,87,0.5), transparent);
  animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 0.7; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none !important; }
  .mb-hero__scroll-line { animation: none; opacity: 0.4; }
}

@media (max-width: 768px) {
  .mb-hero__monogram { width: 56px; }
  .mb-hero__tagline { letter-spacing: 0.2em; }
}
