/* Full bleed hero */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--forest);
  padding-top: var(--nav-h);
}

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

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--scrim-strong) 0%, var(--scrim-weak) 100%);
}

.hero__wrap {
  position: relative;
  width: 100%;
  padding-block: 5rem;
}

.hero__content {
  max-width: 46%;
}

.hero__title {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  color: var(--on-dark);
  margin-bottom: 1.75rem;
}

.hero__title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  color: var(--on-dark-muted);
  max-width: 32rem;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cream strip, flush to the hero's bottom right edge */

.hero__strip {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--cream);
}

.hero__strip-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.375rem 2.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.hero__strip-item + .hero__strip-item {
  border-left: 1px solid var(--hairline-light);
}

.hero__strip-num {
  color: var(--gold);
}

@media (max-width: 991.98px) {
  .hero__content {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero {
    flex-direction: column;
    justify-content: center;
  }

  /* Strip stacks below the hero image on mobile. It must stay positioned
     (relative) so it paints above the absolutely positioned photo and scrim. */
  .hero__strip {
    position: relative;
    width: 100%;
    flex-direction: column;
    margin-top: auto;
  }

  .hero__strip-item + .hero__strip-item {
    border-left: 0;
    border-top: 1px solid var(--hairline-light);
  }
}
