/* PAGE HERO SECTION */
.page-hero {
  padding: 212px 0 118px;
  min-height: clamp(540px, 74vh, 760px);
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbf7f2 0%, #f2e8df 100%);
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(114, 47, 55, 0.14) 48%, rgba(29, 29, 31, 0.24) 100%),
    linear-gradient(to bottom, rgba(181, 138, 88, 0.08), rgba(114, 47, 55, 0.12));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(246, 241, 235, 0), rgba(246, 241, 235, 0.96));
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-content: end;
  min-height: inherit;
}

.page-hero h1 {
  font-size: clamp(3.8rem, 8vw, 7rem);
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: 0 16px 40px rgba(17, 12, 14, 0.32);
  max-width: 10ch;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  text-shadow: 0 10px 28px rgba(17, 12, 14, 0.24);
  max-width: 620px;
}

.page-hero__bg[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 170px 0 88px;
    min-height: 480px;
    text-align: center;
  }

  .page-hero .container {
    justify-items: center;
  }

  .page-hero h1,
  .page-hero p {
    max-width: 100%;
  }
}
