.gallery {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 20px;
}
.gallery-heading {
  max-width: 620px;
}
.gallery-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 65px;
}
.gallery-grid img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.gallery-grid img:first-child {
  grid-row: span 2;
  height: 578px;
}
.faq {
  display: grid;
  grid-template-columns: 20% 36% 1fr;
  gap: 20px;
  background: #e6ddd1;
}
.faq-list {
  padding-top: 8px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 0;
  font:
    600 20px "Playfair Display",
    Georgia,
    serif;
  letter-spacing: -0.025em;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font: 400 25px "DM Sans";
  line-height: 0.75;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 14px;
  line-height: 1.6;
  color: #5d605b;
  max-width: 500px;
  margin: 0 35px 22px 0;
}
.contact-handoff {
  align-self: center;
  max-width: 460px;
}
.contact-handoff > p:first-child {
  font-size: 17px;
  line-height: 1.6;
  color: #c6c9c4;
  max-width: 430px;
}
.contact-handoff .button {
  margin: 22px 0;
}
.contact-handoff .form-note {
  max-width: 430px;
}
@media (max-width: 760px) {
  .gallery {
    display: block;
  }
  .gallery-heading {
    margin-bottom: 45px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0;
  }
  .gallery-grid img {
    height: 180px;
  }
  .gallery-grid img:first-child {
    height: 370px;
  }
  .faq {
    display: block;
  }
  .faq > div:nth-child(2) {
    margin-bottom: 45px;
  }
  .faq-list {
    padding-top: 0;
  }
  .faq summary {
    font-size: 19px;
  }
  .inquire .contact-handoff {
    margin-top: 48px;
  }
  .contact-handoff > p:first-child {
    font-size: 16px;
  }
}
