/* ========= Hero (home video) ========= */
.hero {
  position: relative;
  min-height: 100vh;     /* fallback */
  min-height: 100svh;    /* iOS stable */
  min-height: 100dvh; 
  height: auto;
  overflow: hidden;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 16px calc(54px + env(safe-area-inset-bottom));
}

.hero__title {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 600;
  max-width: 360px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 26px;
    max-width: 820px;
  }
}

.hero__btn {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Alt font ONLY for the 2 hero lines */
.hero__title .hero__line--one,
.hero__title .hero__line--two {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero__line--one {
  display: block;
  opacity: .92;
}

.hero__line--two {
  display: block;
  margin-top: 10px;
  opacity: .86;
}