
  .ice-customer-wall {
    --ice-black: #070707;
    --ice-ink: #14110e;
    --ice-gold: #d9ae59;
    --ice-cream: #f7f1e7;
    --ice-card: #fffaf2;
    width: 100%;
    overflow: hidden;
    padding: clamp(42px, 6vw, 86px) 0;
    color: var(--ice-cream);
    background:
      linear-gradient(135deg, rgba(217, 174, 89, 0.24) 0 1px, transparent 1px 18px),
      radial-gradient(circle at 18% 0%, rgba(217, 174, 89, 0.24), transparent 30%),
      linear-gradient(180deg, #10100f 0%, var(--ice-black) 100%);
  }

  .ice-customer-wall__head {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto clamp(24px, 4vw, 42px);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
  }

  .ice-customer-wall__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ice-gold);
    white-space: nowrap;
  }

  .ice-customer-wall__eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
  }

  .ice-customer-wall__title {
    max-width: 720px;
    margin: 0;
    text-align: right;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4.4vw, 58px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .ice-customer-wall__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .ice-customer-wall__viewport::before,
  .ice-customer-wall__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: min(9vw, 140px);
    pointer-events: none;
  }

  .ice-customer-wall__viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--ice-black), transparent);
  }

  .ice-customer-wall__viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--ice-black), transparent);
  }

  .ice-customer-wall__track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 26px);
    padding: 10px 0 18px;
    animation: ice-customer-scroll 48s linear infinite;
    will-change: transform;
  }

  .ice-customer-wall:hover .ice-customer-wall__track {
    animation-play-state: paused;
  }

  .ice-customer-card {
    width: clamp(210px, 22vw, 330px);
    aspect-ratio: 4 / 5;
    margin: 0;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 18px;
    background: var(--ice-card);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
    transform: rotate(-1.4deg);
  }

  .ice-customer-card:nth-child(3n) {
    transform: rotate(1.2deg) translateY(14px);
  }

  .ice-customer-card:nth-child(4n) {
    transform: rotate(-0.6deg) translateY(-10px);
  }

  .ice-customer-card--tall {
    aspect-ratio: 3 / 4;
  }

  .ice-customer-card--wide {
    width: clamp(250px, 26vw, 400px);
    aspect-ratio: 5 / 4;
  }

  .ice-customer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.30) 100%);
  }

  .ice-customer-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
  }

  .ice-customer-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.04);
  }

  @keyframes ice-customer-scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  @media screen and (max-width: 768px) {
    .ice-customer-wall {
      padding: 38px 0 44px;
    }

    .ice-customer-wall__head {
      align-items: flex-start;
      flex-direction: column;
      gap: 14px;
    }

    .ice-customer-wall__title {
      max-width: 100%;
      text-align: left;
      font-size: clamp(30px, 10vw, 44px);
      line-height: 1;
    }

    .ice-customer-wall__viewport {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .ice-customer-wall__viewport::-webkit-scrollbar {
      display: none;
    }

    .ice-customer-wall__viewport::before,
    .ice-customer-wall__viewport::after {
      display: none;
    }

    .ice-customer-wall__track {
      width: max-content;
      animation: none;
      padding: 6px 18px 18px;
    }

    .ice-customer-card {
      width: 74vw;
      max-width: 320px;
      scroll-snap-align: center;
      border-radius: 16px;
    }

    .ice-customer-card--wide {
      width: 82vw;
      max-width: 360px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ice-customer-wall__track {
      animation: none;
    }

    .ice-customer-card img {
      transition: none;
    }
  }
