.customer-moments {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr 1fr;
  gap: 14px;
  height: clamp(250px, 27vw, 340px);
  margin-bottom: 18px;
}

.customer-moment {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(107, 90, 69, 0.18);
  border-radius: 20px;
  background: var(--parchment);
  box-shadow: var(--shadow-sm);
}

.customer-moment:first-child { border-radius: 110px 20px 20px 20px; }
.customer-moment:last-child { border-radius: 20px 20px 110px 20px; }

.customer-moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.customer-moment:first-child img { object-position: 50% 58%; }
.customer-moment:nth-child(2) img { object-position: 50% 48%; }
.customer-moment:last-child img { object-position: 50% 52%; }
.customer-moment:hover img { transform: scale(1.025); }

.customer-moment-label {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(31, 27, 23, 0.8);
  color: var(--parchment);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@media (max-width: 620px) {
  .customer-moments {
    display: flex;
    height: 300px;
    gap: 12px;
    padding-right: var(--gutter);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .customer-moments::-webkit-scrollbar { display: none; }
  .customer-moment,
  .customer-moment:first-child,
  .customer-moment:last-child {
    flex: 0 0 min(72vw, 310px);
    border-radius: 18px;
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-moment img { transition: none; }
}
