/* ============================================
   TESTIMONIALS
   Dark cards, champagne left accent, quote svg,
   5 gold stars, italic body, muted attribution.
   ============================================ */

.testimonials {
  background: var(--color-bg-deep);
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  .testimonials { padding: var(--space-2xl) 0; }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* ============================================
   Card
   ============================================ */
.tm-card {
  position: relative;
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-champagne);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-xl) var(--space-xl) var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  overflow: hidden;
}

.tm-quote-mark {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  opacity: 0.18;
  pointer-events: none;
}

.tm-quote-mark svg {
  width: 100%;
  height: 100%;
}

.tm-stars {
  display: flex;
  gap: 3px;
  color: var(--color-champagne);
}

.tm-stars svg {
  width: 14px;
  height: 14px;
}

.tm-body {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.45;
  color: var(--color-text-primary);
  margin: 0;
  position: relative;
  z-index: 1;
}

.tm-attr {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.tm-attr .tm-name {
  color: var(--color-champagne);
  font-weight: 500;
}

.tm-attr .tm-sep {
  margin: 0 var(--space-xs);
  opacity: 0.4;
}
