.about-hero {
  position: relative;
  min-height: 100svh;
  background: #243831;
  color: #eee6da;
  overflow: hidden;
}
.about-hero-media {
  position: absolute;
  inset: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.82);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(24, 39, 33, 0.94) 0%,
      rgba(24, 39, 33, 0.7) 34%,
      rgba(24, 39, 33, 0.2) 68%,
      rgba(24, 39, 33, 0.38) 100%
    ),
    linear-gradient(
      0deg,
      rgba(24, 39, 33, 0.78) 0%,
      transparent 38%,
      rgba(24, 39, 33, 0.28) 100%
    );
}
.about-hero-frame {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(238, 230, 218, 0.18);
  pointer-events: none;
}
.about-hero-frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 65px;
  height: 1px;
  background: #bd674f;
}
.about-hero-content {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  padding: 42px 7vw 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(238, 230, 218, 0.48);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.about-hero-top span:first-child {
  color: #d17a60;
}
.about-hero-main {
  width: 65%;
  margin: auto 0;
  padding-top: 5vh;
}
.about-hero-kicker {
  display: block;
  margin-bottom: 27px;
  color: #d17a60;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.3em;
}
.about-hero-main h1 {
  font-family: var(--font-display);
  font-size: clamp(85px, 10vw, 160px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.08em;
  color: #eee6da;
}
.about-hero-main h1 em {
  font-style: italic;
  color: #d17a60;
}
.about-hero-main p {
  max-width: 390px;
  margin-top: 35px;
  color: rgba(238, 230, 218, 0.58);
  font-size: 9px;
  line-height: 1.9;
}
.about-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(238, 230, 218, 0.38);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.about-hero-bottom span:last-child {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(238, 230, 218, 0.58);
}
.about-hero-bottom span:last-child::after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: #d17a60;
}
@media (max-width: 1000px) {
  .about-hero-content {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .about-hero-main {
    width: 72%;
  }
  .about-hero-frame {
    inset: 25px;
  }
}
@media (max-width: 700px) {
  .about-hero {
    min-height: 820px;
  }
  .about-hero-media img {
    object-position: 62% center;
  }
  .about-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(24, 39, 33, 0.94) 0%,
        rgba(24, 39, 33, 0.68) 52%,
        rgba(24, 39, 33, 0.3) 100%
      ),
      linear-gradient(
        0deg,
        rgba(24, 39, 33, 0.9) 0%,
        transparent 50%,
        rgba(24, 39, 33, 0.3) 100%
      );
  }
  .about-hero-frame {
    inset: 15px;
  }
  .about-hero-frame::before {
    width: 35px;
  }
  .about-hero-content {
    min-height: 820px;
    padding: 25px 20px 28px;
  }
  .about-hero-top {
    font-size: 5px;
    letter-spacing: 0.22em;
  }
  .about-hero-top span:last-child {
    display: none;
  }
  .about-hero-main {
    width: 100%;
    padding-top: 0;
  }
  .about-hero-kicker {
    font-size: 5px;
    margin-bottom: 20px;
  }
  .about-hero-main h1 {
    font-size: 65px;
    line-height: 0.75;
  }
  .about-hero-main p {
    max-width: 285px;
    margin-top: 25px;
    font-size: 8px;
    line-height: 1.8;
  }
  .about-hero-bottom {
    font-size: 5px;
  }
  .about-hero-bottom span:last-child {
    font-size: 5px;
  }
  .about-hero-bottom span:last-child::after {
    width: 25px;
  }
}
@media (max-width: 430px) {
  .about-hero {
    min-height: 760px;
  }
  .about-hero-content {
    min-height: 760px;
  }
  .about-hero-main h1 {
    font-size: 57px;
  }
  .about-hero-main p {
    max-width: 255px;
    font-size: 7px;
  }
  .about-hero-bottom span:first-child {
    display: none;
  }
}
