.testimonials {
  background: var(--cream);
}
.testimonials .testi-stage {
  display: grid;
  grid-template-areas: "t";
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  touch-action: pan-y;
}
.testimonials .testi {
  grid-area: t;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 8px 0;
}
.testimonials .testi.on {
  opacity: 1;
  pointer-events: auto;
}
.testimonials .testi .quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}
.testimonials .testi .who {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.testimonials .testi .who strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 8px;
}
.testimonials .testi .stars {
  color: var(--sand-text);
  font-size: 14px;
  letter-spacing: 4px;
}
.testimonials .testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.testimonials .testi-dots button {
  width: 24px;
  height: 2px;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonials .testi-dots button.on {
  background: var(--ink);
  width: 48px;
}