/* ========== GALLERY (real deliveries — grid + lightbox-trigger) ========== */
.gallery {
  padding: 110px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: #050505;
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s, opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  font-weight: 300;
}
.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.gallery-item.is-hidden { display: none; }
.gallery-more {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { aspect-ratio: 1 / 1; }
  .gallery-item::after { display: none; }
}
@media (max-width: 400px) {
  .gallery-grid { gap: 8px; }
}
