.testimonials {
  padding: 6.5rem 2rem;
  background: #efe4d0;
}

.testimonial-carousel {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-viewport {
  flex: 1;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 1rem;
}

.testimonial-quote-mark {
  font-size: 1.6rem;
  color: #b1563a;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.testimonial-stars {
  color: #b1563a;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.3rem;
}

.testimonial-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.55;
  color: #211d1a;
  margin-bottom: 1.8rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #211d1a;
  color: #d9c08e;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author > div {
  text-align: left;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: #85796a;
}

.testimonial-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fffbf3;
  border: 1px solid #e4d9c5;
  color: #211d1a;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.testimonial-arrow:hover {
  background: #211d1a;
  border-color: #211d1a;
  color: #fffbf3;
}

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

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5c7ad;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.is-active {
  background: #b1563a;
  transform: scale(1.3);
}

@media (max-width: 700px) {
  .testimonials {
    padding: 5rem 1.4rem;
  }
  .testimonial-carousel {
    gap: 0.7rem;
  }
  .testimonial-arrow {
    width: 38px;
    height: 38px;
  }
}
