/* ============================================================
   home.css — homepage hero
   Video fills the full viewport; no scroll
   ============================================================ */

/* Locks the page — prevents any scroll gap behind the hero video */
.home-page {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: absolute;
  inset: 0;
}

/* Hero video fills the entire hero area */
.hero__spline {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* covers viewport without distortion */
}

/* ── BIO OVERLAY ─────────────────────────────────────────── */
.hero__bio {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 10;
  pointer-events: none;
  text-align: center;
  padding: 4rem 20% 2.5rem;    /* 20% side padding = ~60% content width */
  background: linear-gradient(to top, rgba(20, 20, 20, 0.95) 60%, transparent);
}

.hero__bio-role {
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.hero__bio-desc {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text);
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Push hero below the 64px mobile header */
  .home-page {
    top: -10px;
  }

  .hero__bio {
    bottom: 0;
    padding: 3rem 1.5rem 12rem;
    width: 100%;
  }

  .hero__bio-role {
    font-size: 0.65rem;
  }

  .hero__bio-desc {
    font-size: 0.78rem;
    line-height: 1.7;
  }

   .hero__spline {
    display: none;
  }

}
