.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.38),
    rgba(0, 0, 0, 0.38)
  ),
  linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

/* CENTRE CONTENT */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  color: var(--color-white);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 1.6rem;
}

.hero-overlay h1 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 4.4rem;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.4rem;
  letter-spacing: -0.3px;
}

.hero-overlay h1 em {
  font-style: italic;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 1.4rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 380px;
  margin: 0 0 2.8rem;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* MOBILE */
@media (max-width: 576px) {
  .hero-overlay h1 {
    font-size: 3rem;
  }

  .hero-top-bar {
    padding: 1.2rem 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}