.real-projects {
  padding: 110px 0;
  background: #111411;
}
.real-project {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 620px;
  margin-bottom: 35px;
  background: #191d1a;
}
.real-project:nth-child(even) {
  grid-template-columns: 0.75fr 1.25fr;
}
.real-project:nth-child(even) img {
  order: 2;
}
.real-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.real-project-copy {
  padding: clamp(45px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.real-project-copy span {
  color: var(--copper);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.real-project-copy h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  margin: 12px 0 22px;
}
.real-project-copy p {
  color: #afb3af;
  line-height: 1.75;
}
.project-link {
  display: inline-block;
  margin-top: 25px;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  align-self: flex-start;
}
.detail-hero {
  height: 85vh;
  min-height: 680px;
  color: #fff;
  background-position: center;
  background-size: cover;
  position: relative;
}
.interior-detail {
  background-image:
    linear-gradient(90deg, #070907cc, #07090738),
    url("../images/interior-hero.jpg");
}
.richmond-detail {
  background-image:
    linear-gradient(90deg, #070907cc, #07090738),
    url("../images/richmond-hero.jpg");
}
.recent-detail {
  background-image:
    linear-gradient(90deg, #070907cc, #07090738),
    url("../images/recent-exterior.jpg");
}
.detail-copy {
  padding-top: clamp(180px, 25vh, 260px);
}
.detail-copy h1 {
  font-size: clamp(4rem, 8vw, 8rem);
}
.detail-intro {
  padding: 110px 0;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}
.detail-intro h2 {
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 1;
}
.detail-intro p:last-child {
  color: #62625c;
  line-height: 1.8;
  max-width: 650px;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 120px;
}
.gallery figure {
  margin: 0;
}
.gallery figure:first-child {
  grid-column: 1/-1;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery figure:first-child img {
  aspect-ratio: 16/8;
}
.gallery figcaption {
  padding: 14px 0;
  color: #77736b;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.back-link {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid;
  padding-bottom: 8px;
}
@media (max-width: 800px) {
  .real-project,
  .real-project:nth-child(even),
  .detail-intro,
  .gallery {
    grid-template-columns: 1fr;
  }
  .real-project:nth-child(even) img {
    order: 0;
  }
  .real-project img {
    min-height: 430px;
  }
  .gallery figure:first-child {
    grid-column: auto;
  }
  .gallery figure:first-child img {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 520px) {
  .real-project-copy {
    padding: 50px 25px;
  }
  .real-projects,
  .detail-intro {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
