/* ═══════════════════════════════════════════
   ZOOM SLIDER GALLERY (NATIVE SCROLL)
   ═══════════════════════════════════════════ */
.gallery {
  position: relative;
  width: 100%;
  background-color: #050505;
  padding: 100px 0;
  overflow: hidden;
}

.gallery__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 16px;
}

.gallery__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin: 0;
  font-weight: 300;
  line-height: 1.2;
}

.gallery__subtitle {
  margin-top: 12px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.gallery__strip {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0;
  animation: gallery-scroll 15s linear infinite;
}

.gallery__strip:hover {
  animation-play-state: paused;
}

@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.gallery__card {
  flex: 0 0 300px;
  scroll-snap-align: center;
  position: relative;
  height: 60vh;
  min-height: 450px;
  max-height: 650px;
  border-radius: 12px;
  overflow: hidden;
  cursor: grab;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gallery__card:active {
  cursor: grabbing;
}

@media (min-width: 768px) {
  .gallery__card {
    flex: 0 0 350px;
    height: 70vh;
  }
}

@media (min-width: 1024px) {
  .gallery__card {
    flex: 0 0 420px;
    height: 75vh;
  }
}

.gallery__image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #111;
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.gallery__card:hover .gallery__image {
  transform: scale(1.03);
}

.gallery__text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
  transform: translateY(10px);
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery__card:hover .gallery__text {
  transform: translateY(0);
  opacity: 1;
}

.gallery__number {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
}

.gallery__name {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: 4px;
}

.gallery__desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}
