/* ========================
   HERO
   ======================== */
.section-hero {
  position: relative;
  height: 990px;
  background-color: var(--color-black);
  overflow: hidden;
}

/* --- Background image --- */
.section-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- Dark overlay --- */
.section-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay-hero);
  pointer-events: none;
}

/* --- Content --- */
.section-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 195.48px;
}

/* --- Monogram emblem --- */
.section-hero__emblem {
  width: 196.55px;
  height: 220.506px;
  flex-shrink: 0;
}

/* --- Wordmark "APOLARIS.DESIGN" --- */
.section-hero__wordmark {
  margin-top: 127px;
  width: 1017px;
  height: 120px;
  flex-shrink: 0;
}

/* --- CTA Button --- */
.section-hero__cta {
  margin-top: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--btn-hero-w);
  height: var(--btn-hero-h);
  background-color: var(--color-cream);
  color: var(--color-maroon);
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: var(--leading-base);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.25s, color 0.25s;
}

.section-hero__cta:hover {
  background-color: var(--color-maroon);
  color: var(--color-cream);
}
