.p-front-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 64px));
  overflow: hidden;
  color: var(--sou-paper);
  background: var(--sou-brown);
}

.p-front-hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-front-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(43, 33, 27, .82), rgba(43, 33, 27, .34) 58%, rgba(43, 33, 27, .18)),
    linear-gradient(180deg, rgba(43, 33, 27, .12), rgba(43, 33, 27, .46));
}

.p-front-hero__inner {
  position: relative;
  z-index: 2;
  min-height: min(760px, calc(100vh - 64px));
  display: flex;
  align-items: center;
  padding: 96px 0;
}

.p-front-hero__content {
  max-width: 720px;
}

.p-front-hero__eyebrow {
  margin: 0 0 16px;
  color: var(--sou-accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
}

.p-front-hero__title {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 4.15rem);
  line-height: 1.36;
  letter-spacing: .12em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .35);
}

.p-front-hero__lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 250, 240, .88);
  font-size: 1rem;
  line-height: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .34);
}

@media (max-width: 767px) {
  .p-front-hero {
    min-height: calc(100vh - 56px);
  }

  .p-front-hero__overlay {
    background:
      linear-gradient(90deg, rgba(43, 33, 27, .76), rgba(43, 33, 27, .36)),
      linear-gradient(180deg, rgba(43, 33, 27, .16), rgba(43, 33, 27, .52));
  }

  .p-front-hero__inner {
    min-height: calc(100vh - 56px);
    padding: 72px 0;
  }

  .p-front-hero__lead {
    margin-top: 22px;
  }
}
