.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 0;
  overflow: hidden;
}

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

.hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-tagline {
  /* Always white: the hero background is video + a dark scrim, not the
     section's theme color, so this shouldn't follow the site-wide flip. */
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  font-size: clamp(2rem, 4vw + 1rem, 4.5rem);
  max-width: 20ch;
  text-wrap: balance;
  margin-inline: auto;
  margin-bottom: var(--space-2);
}

.hero-subtext {
  font-size: var(--fs-lead);
  color: var(--color-silver-300);
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: var(--space-3);
}
