.home-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: 18px;
  padding: 0 0 70px;
}

.home-gallery img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(61, 42, 36, 0.08);
}

.home-gallery img:nth-child(2) {
  height: 480px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.testimonial-card {
  min-height: 100%;
  margin: 0;
  padding: 28px;
  border: 1px solid #e5dedb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(61, 42, 36, 0.08);
}

.testimonial-card figcaption {
  color: #0f0f0f;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 850;
  line-height: 1.1;
}

.testimonial-stars {
  margin: 14px 0 10px;
  color: #f6bb2f;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1;
}

.testimonial-date {
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eeeeee;
  color: #777;
  font-size: 1rem;
  line-height: 1.35;
}

.testimonial-card blockquote {
  margin: 0;
  color: #111;
  font-size: clamp(1.02rem, 1.55vw, 1.26rem);
  line-height: 1.55;
}

@media (max-width: 779px) {
  .home-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 46px;
  }

  .home-gallery img,
  .home-gallery img:nth-child(2) {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 22px;
  }
}
