.about-introduction {
  position: relative;
  background: #eee6da;
  color: #243831;
  padding: 125px 7vw 140px;
  overflow: hidden;
}
.about-introduction-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(36, 56, 49, 0.16);
  color: rgba(36, 56, 49, 0.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.26em;
}
.about-introduction-header span:first-child {
  color: #bd674f;
}
.about-introduction-grid {
  display: grid;
  grid-template-columns: 53% 47%;
  min-height: 720px;
  padding-top: 85px;
}
.about-introduction-portrait {
  position: relative;
  min-height: 680px;
}
.about-introduction-main-image {
  position: absolute;
  left: 5%;
  top: 0;
  width: 63%;
  height: 650px;
  margin: 0;
  overflow: hidden;
  background: #243831;
}
.about-introduction-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 65%,
    rgba(20, 35, 29, 0.48) 100%
  );
}
.about-introduction-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.about-introduction-main-image:hover img {
  transform: scale(1.035);
}
.about-introduction-main-image figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(238, 230, 218, 0.75);
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.about-introduction-small-image {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 32%;
  height: 250px;
  padding: 8px;
  background: #eee6da;
  box-shadow: 0 18px 50px rgba(36, 56, 49, 0.13);
  z-index: 3;
  transform: rotate(3deg);
}
.about-introduction-small-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-introduction-small-image::after {
  content: "";
  position: absolute;
  left: -22px;
  bottom: 22px;
  width: 45px;
  height: 1px;
  background: #bd674f;
}
.about-introduction-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 4vw 20px 7vw;
}
.about-introduction-kicker {
  display: block;
  margin-bottom: 30px;
  color: #bd674f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.about-introduction-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(65px, 7vw, 105px);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.075em;
}
.about-introduction-copy h2 em {
  font-style: italic;
  color: #bd674f;
}
.about-introduction-copy p {
  max-width: 400px;
  margin-top: 34px;
  color: rgba(36, 56, 49, 0.58);
  font-size: 9px;
  line-height: 1.95;
}
.about-introduction-copy p + p {
  margin-top: 18px;
}
.about-introduction-signature {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(36, 56, 49, 0.16);
  max-width: 400px;
}
.about-introduction-signature span {
  color: rgba(36, 56, 49, 0.38);
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.about-introduction-signature strong {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #243831;
}
@media (max-width: 1100px) {
  .about-introduction {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .about-introduction-grid {
    grid-template-columns: 50% 50%;
    min-height: 650px;
  }
  .about-introduction-portrait {
    min-height: 610px;
  }
  .about-introduction-main-image {
    height: 570px;
    width: 66%;
  }
  .about-introduction-small-image {
    width: 35%;
    height: 220px;
  }
  .about-introduction-copy {
    padding-left: 6vw;
  }
  .about-introduction-copy h2 {
    font-size: clamp(58px, 7vw, 85px);
  }
}
@media (max-width: 800px) {
  .about-introduction {
    padding: 85px 20px 100px;
  }
  .about-introduction-header {
    font-size: 5px;
    padding-bottom: 30px;
  }
  .about-introduction-header span:last-child {
    display: none;
  }
  .about-introduction-grid {
    display: flex;
    flex-direction: column;
    padding-top: 55px;
  }
  .about-introduction-portrait {
    height: 560px;
    min-height: 560px;
  }
  .about-introduction-main-image {
    left: 5%;
    width: 65%;
    height: 500px;
  }
  .about-introduction-small-image {
    right: 7%;
    width: 34%;
    height: 200px;
  }
  .about-introduction-copy {
    padding: 70px 0 0;
  }
  .about-introduction-kicker {
    font-size: 5px;
    margin-bottom: 22px;
  }
  .about-introduction-copy h2 {
    font-size: 65px;
  }
  .about-introduction-copy p {
    font-size: 8px;
    max-width: 500px;
    margin-top: 28px;
  }
  .about-introduction-signature {
    margin-top: 35px;
  }
}
@media (max-width: 520px) {
  .about-introduction {
    padding-left: 15px;
    padding-right: 15px;
  }
  .about-introduction-header {
    padding-bottom: 25px;
  }
  .about-introduction-grid {
    padding-top: 40px;
  }
  .about-introduction-portrait {
    height: 450px;
    min-height: 450px;
  }
  .about-introduction-main-image {
    left: 0;
    width: 76%;
    height: 405px;
  }
  .about-introduction-small-image {
    right: 2%;
    width: 37%;
    height: 165px;
    bottom: 5px;
    padding: 5px;
  }
  .about-introduction-small-image::after {
    left: -15px;
    width: 30px;
  }
  .about-introduction-copy {
    padding-top: 60px;
  }
  .about-introduction-copy h2 {
    font-size: 53px;
    line-height: 0.78;
  }
  .about-introduction-copy p {
    font-size: 7.5px;
    line-height: 1.85;
  }
  .about-introduction-signature {
    margin-top: 30px;
    padding-top: 16px;
  }
  .about-introduction-signature span,
  .about-introduction-signature strong {
    font-size: 5px;
  }
}
