.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.gallery-item {
  grid-column: span 4;
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transform: translateZ(0);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .35), transparent 55%),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .10), transparent 55%);
  opacity: .28;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms var(--ease-2), filter 700ms var(--ease-2);
  filter: saturate(1.06) contrast(1.04);
}

@media (max-width: 1024px) {
  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item img {
    height: 100%;
  }
}