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

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-content {
  max-width: 720px;
  text-align: center;
  margin-top: 150px;
}

.hero-content .section-eyebrow {
  color: #E4E7EB;
  margin-top: 0.4rem;
}

.hero-content h1 {
  font-size: var(--fs-hero);
  color: #fff;
}
