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

.testimonials-section {
  padding: 5rem 0;
  background: var(--clr-bg, #050505);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,170,113,.04) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c9aa71;
  margin-bottom: .75rem;
  opacity: .8;
}

.testimonials-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.25;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Card ──────────────────────────────────────────────────── */

.testimonial-card {
  background: linear-gradient(145deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -.5rem;
  right: 1rem;
  font-size: 5rem;
  color: rgba(201,170,113,.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(201,170,113,.28);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* ── Stars ──────────────────────────────────────────────── */

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars .star {
  font-size: 1rem;
  color: #c9aa71;
  line-height: 1;
}

.testimonial-stars .star.empty {
  color: rgba(255,255,255,.15);
}

/* ── Body ──────────────────────────────────────────────── */

.testimonial-body {
  font-size: .9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  flex: 1;
  font-style: italic;
}

/* ── Author ──────────────────────────────────────────── */

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,170,113,.35);
  flex-shrink: 0;
}

.testimonial-avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201,170,113,.12);
  border: 2px solid rgba(201,170,113,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9aa71;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-meta {
  min-width: 0;
}

.testimonial-name {
  font-size: .9rem;
  font-weight: 600;
  color: #f5f0e8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-role {
  font-size: .775rem;
  color: rgba(201,170,113,.75);
  margin-top: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .testimonials-section {
    padding: 3.5rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }
}
