.page-works {
  background: #fff;
  color: #1a1a1a;
}

.page-works .footer {
  background: var(--bg);
  color: var(--text);
}

.page-works .nav a.nav--active {
  color: #fff;
}

/* Галерея — как на образце: заголовок + сетка 3×2 */
.gallery {
  padding: 112px 0 80px;
  background: #fff;
}

.gallery__inner {
  width: min(1100px, 100% - 40px);
}

.gallery__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 36px;
  text-align: left;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery__item {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__cta {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 800px) {
  .gallery {
    padding: 100px 0 56px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery__title {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery__item {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__item img {
    transition: none;
  }

  .gallery__item:hover img {
    transform: none;
  }
}
