/* ─── Testimonials Section ─── */

#testimonials {
  border-top: 1px solid var(--warm-gray);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-carousel {
  position: relative;
  margin-top: 4rem;
  min-height: 260px;
}

.testimonial-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 700px;
  position: relative;
}

.testimonial-quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 8rem;
  font-style: normal;
  color: var(--gold);
  position: absolute;
  top: -3.5rem;
  left: -2rem;
  line-height: 1;
  opacity: 0.15;
}

.testimonial-author {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: var(--warm-gray);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--gold);
  width: 40px;
}
