/* ══════════════════════════════════════
   TESTIMONI
══════════════════════════════════════ */
.testimoni {
  background: var(--brown-mid);
  border-top: 1px solid var(--brown-border);
  border-bottom: 1px solid var(--brown-border);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.testi-card {
  background: var(--brown-card);
  border: 1px solid var(--brown-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: var(--amber-dark); }
.testi-stars {
  color: var(--amber);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testi-quote::before { content: '"'; color: var(--amber); }
.testi-quote::after  { content: '"'; color: var(--amber); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--brown-border);
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-dark), var(--brown-border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--cream);
  flex-shrink: 0;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}
.testi-name { font-size: 0.72rem; font-weight: 600; color: var(--cream); }
.testi-loc  { font-size: 0.62rem; color: var(--text-muted); }
