/* ===== CLIENTS — logo strip ===== */
.clients { padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(60px, 8vw, 100px); background: rgba(250, 249, 245, 0.92); position: relative; }
.clients__head { margin-bottom: 56px; max-width: 760px; }
.clients__title {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.55;
  margin: 12px 0 0;
}
.clients__title em {
  font-family: var(--serif-en-display);
  font-style: normal;
  letter-spacing: -0.01em;
  color: var(--accent);
  font-weight: 400;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.clients__cell {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  background: #FFFFFF;
  transition: background 0.4s ease, filter 0.4s ease;
  border: 1px solid var(--paper-line);
  margin: -0.5px;
}
.clients__cell img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.clients__cell:hover img { transform: scale(1.04); }
.clients__cell--dark { background: #1F1E1D; }
.clients__cell--dark img { filter: brightness(1.1); }
.clients__cell--navy { background: #031E5B; }
.clients__cell--navy img { filter: brightness(1.05); }
.clients__cell--boost img { max-height: 96px; transform: scale(1.45); transform-origin: center; }
.clients__cell--boost:hover img { transform: scale(1.5); }
.clients__note {
  margin: 24px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--on-paper-faint);
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .clients__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .clients__cell { padding: 16px; }
  .clients__cell img { max-height: 44px; }
  .clients__cell--boost img { max-height: 72px; transform: scale(1.2); }
  .clients__cell--boost:hover img { transform: scale(1.25); }
  .clients__head { margin-bottom: 32px; }
  .clients__title { font-size: 19px; line-height: 1.55; }
  .clients__note { font-size: 10px; margin-top: 18px; }
}
