.about-behind {
  position: relative;
  background: #d8cdbd;
  color: #243831;
  padding: 120px 7vw 130px;
  overflow: hidden;
}
.behind-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(36, 56, 49, 0.16);
  color: rgba(36, 56, 49, 0.4);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.27em;
}
.behind-header span:first-child {
  color: #bd674f;
}
.behind-intro {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: end;
  padding: 75px 0 70px;
}
.behind-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(75px, 9vw, 135px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.085em;
}
.behind-intro h2 em {
  font-style: italic;
  color: #bd674f;
}
.behind-intro p {
  max-width: 330px;
  padding-left: 30px;
  margin-bottom: 5px;
  color: rgba(36, 56, 49, 0.54);
  font-size: 9px;
  line-height: 1.9;
}
.behind-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1fr 0.72fr;
  grid-template-rows: 260px 185px 310px;
  gap: 8px;
  padding: 10px 0 90px;
}
.behind-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #243831;
}
.behind-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.behind-image:hover img {
  transform: scale(1.055);
}
.behind-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(20, 35, 29, 0.5));
}
.behind-image figcaption {
  position: absolute;
  left: 15px;
  bottom: 14px;
  z-index: 2;
  color: rgba(238, 230, 218, 0.72);
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.behind-image-one {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.behind-image-two {
  grid-column: 3;
  grid-row: 1;
}
.behind-image-three {
  grid-column: 4;
  grid-row: 1 / span 2;
}
.behind-image-four {
  grid-column: 3;
  grid-row: 2 / span 2;
}
.behind-image-five {
  grid-column: 1 / span 2;
  grid-row: 3;
}
.behind-image-three {
  border-radius: 0 0 90px 90px;
}
.behind-image-four {
  transform: rotate(-1.5deg);
  z-index: 2;
  border: 7px solid #eee6da;
}
.behind-image-four::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(36, 56, 49, 0.22);
  z-index: -1;
}
.behind-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid rgba(36, 56, 49, 0.18);
  border-bottom: 1px solid rgba(36, 56, 49, 0.18);
}
.behind-note span {
  color: #bd674f;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.behind-note strong {
  font-family: var(--font-display);
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}
@media (max-width: 1050px) {
  .about-behind {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .behind-intro {
    grid-template-columns: 55% 45%;
  }
  .behind-gallery {
    grid-template-columns: 1.1fr 0.65fr 1fr 0.7fr;
    grid-template-rows: 220px 160px 270px;
  }
  .behind-image-four {
    border-width: 5px;
  }
}
@media (max-width: 750px) {
  .about-behind {
    padding: 85px 20px 95px;
  }
  .behind-header {
    font-size: 5px;
  }
  .behind-header span:last-child {
    display: none;
  }
  .behind-intro {
    display: block;
    padding: 60px 0 50px;
  }
  .behind-intro h2 {
    font-size: 66px;
  }
  .behind-intro p {
    padding: 28px 0 0;
    max-width: 390px;
    font-size: 8px;
  }
  .behind-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 6px;
    padding: 5px 0 60px;
  }
  .behind-image-one {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 340px;
  }
  .behind-image-two {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
  }
  .behind-image-three {
    grid-column: auto;
    grid-row: auto;
    height: 250px;
    border-radius: 0;
  }
  .behind-image-four {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 320px;
    transform: rotate(-1deg);
    border-width: 5px;
  }
  .behind-image-five {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 230px;
  }
  .behind-note {
    display: block;
    padding: 25px 0;
  }
  .behind-note span {
    display: block;
    margin-bottom: 20px;
    font-size: 5px;
  }
  .behind-note strong {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .about-behind {
    padding-left: 15px;
    padding-right: 15px;
  }
  .behind-intro h2 {
    font-size: 53px;
  }
  .behind-intro p {
    font-size: 7.5px;
  }
  .behind-gallery {
    gap: 5px;
  }
  .behind-image-one {
    height: 285px;
  }
  .behind-image-two {
    height: 180px;
  }
  .behind-image-three {
    height: 205px;
  }
  .behind-image-four {
    height: 270px;
  }
  .behind-image-five {
    height: 190px;
  }
  .behind-note strong {
    font-size: 31px;
  }
}
