.about-hero {
  position: relative;
  width: 100%;
  height: clamp(448px, 53.51vw, 731px);
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.about-hero__watermark {
  position: absolute;
  left: min(14.1%, 193px);
  top: 48.3%;
  z-index: 2;
  width: clamp(42px, 4.9vw, 67px);
  height: auto;
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: clamp(32px, 5.42vw, 74px);
}

.about-hero__text {
  width: 100%;
  color: var(--paper);
}

.about-hero__title {
  font-size: clamp(1.75rem, 3.88vw, 3.3125rem);
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.about-hero__text p {
  font-size: var(--fs-body-lg);
  line-height: 1.333;
  text-align: justify;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.about-hero__text p:first-of-type {
  margin-top: clamp(12px, 1.76vw, 24px);
}

.about-hero__text p + p {
  margin-top: clamp(16px, 2.12vw, 29px);
}

.heritage {
  position: relative;
  width: 100%;
  height: clamp(520px, 50.59vw, 691px);
  overflow: hidden;
  background-color: var(--bark-deep);
}

.heritage__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(26.1%, 1.4%) scale(1.272);
  transform-origin: center;
}

.heritage__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding-top: clamp(40px, 8.42vw, 115px);
}

.heritage__text {
  width: 100%;
}

.heritage__text p {
  font-size: var(--fs-body-sm);
  line-height: 1.368;
  text-align: justify;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.heritage__text p + p {
  margin-top: clamp(16px, 1.9vw, 26px);
}

.heritage__caption {
  position: absolute;
  right: 24px;
  bottom: clamp(24px, 8.9vw, 122px);
  z-index: 2;
  font-size: var(--fs-caption);
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.values {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--bark);
  padding-top: clamp(48px, 9.74vw, 133px);
  padding-bottom: clamp(220px, 30.45vw, 416px);
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 876px;
  margin-inline: auto;
}

.values__title {
  font-size: var(--fs-heading);
  text-align: center;
  color: var(--paper);
}

.values__body {
  margin-top: clamp(20px, 2.78vw, 38px);
  font-size: var(--fs-body-sm);
  line-height: 1.474;
  text-align: justify;
  color: var(--paper);
}

.teapot--cream {
  top: 51.8%;
  width: min(76.4%, 1044px);
}

@media (min-width: 640px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(32px, 9.66vw, 132px);
  }
}

@media (min-width: 1024px) {
  .about-hero__text {
    max-width: min(37.9vw, 518px);
  }

  .heritage__text {
    max-width: min(41.5vw, 567px);
  }

  .values__grid {
    max-width: min(64.1vw, 876px);
  }
}

@media (max-width: 1023px) {
  .about-hero__text,
  .heritage__text {
    max-width: none;
  }

  .heritage__bg {
    transform: none;
    object-position: 72% center;
  }

  .heritage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.45) 65%,
      rgba(0, 0, 0, 0.2)
    );
  }

  .about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.28);
  }

  .about-hero__watermark {
    display: none;
  }
}

@media (max-width: 639px) {
  .heritage {
    height: auto;
    min-height: 0;
  }

  .heritage__inner {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .heritage__caption {
    bottom: 24px;
  }

  .about-hero__inner {
    align-items: center;
    padding-bottom: 0;
  }

  .about-hero__text p {
    text-align: left;
  }

  .heritage__text p,
  .values__body {
    text-align: left;
  }

  .teapot--cream {
    top: 56%;
    width: min(96%, 1044px);
  }
}
