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

.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: #ab8642;
  opacity: 0.55;
  margin-bottom: 1rem;
}

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

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
  line-height: 1.55;
  color: #1a2233;
  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: #16273f;
  color: #c9a668;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.92rem;
}

.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: #5f6672;
}

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

.testimonial-arrow:hover {
  background: #16273f;
  border-color: #16273f;
  color: #f6f3ec;
}

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

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

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

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