/* ============================================================
   Singdia — Testimonials (block 6)
   ============================================================ */

.tst {
  position: relative;
  padding: 110px 0 130px;
  background: var(--cream);
  overflow: hidden;
}
.tst__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.tst__bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 79, 109, 0.14) 0%, transparent 70%);
  filter: blur(60px);
}
.tst__bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.12) 0%, transparent 70%);
  filter: blur(60px);
}

.tst__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.tst__head {
  text-align: center;
  margin-bottom: 56px;
}
.tst__head .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}
.tst__head .eyebrow::before { display: none; }
.tst__head .eyebrow::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--saffron);
}
.tst__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.tst__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--maroon);
}

/* Grid */
.tst__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tst__card {
  position: relative;
  padding: 30px 32px 28px;
  background: #fff;
  border: 1px solid rgba(107, 18, 49, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 32px -20px rgba(74, 8, 32, 0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tst__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 48px -22px rgba(74, 8, 32, 0.32);
}

/* Decorative quote mark */
.tst__card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 90px;
  line-height: 1;
  color: rgba(217, 164, 65, 0.16);
  pointer-events: none;
}

.tst__stars {
  display: flex;
  gap: 3px;
}
.tst__stars svg {
  color: var(--gold);
}

.tst__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
  letter-spacing: -0.005em;
}

.tst__who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.tst__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: #fff;
  flex-shrink: 0;
}
.tst__avatar--rose { background: linear-gradient(135deg, #e28ea1, #a8324a); }
.tst__avatar--gold { background: linear-gradient(135deg, #e9b850, #a8741a); }
.tst__avatar--warm { background: linear-gradient(135deg, #f2a45c, #c2562b); }
.tst__avatar--plum { background: linear-gradient(135deg, #8b4d8f, #3d1a4a); }

.tst__name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.tst__place {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}

/* Bottom badge strip */
.tst__badge {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(107, 18, 49, 0.1);
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.tst__badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tst__badge-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--maroon);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}
.tst__badge-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   Tablet & Mobile
   ============================================================ */
@media (max-width: 768px) {
  .tst { padding: 72px 0 88px; }
  .tst__inner { padding: 0 18px; }
  .tst__head { margin-bottom: 36px; }
  .tst__grid { grid-template-columns: 1fr; gap: 16px; }
  .tst__card { padding: 24px 22px 22px; gap: 14px; }
  .tst__quote { font-size: 17px; }
  .tst__badge {
    flex-direction: column;
    gap: 10px;
    border-radius: 22px;
    padding: 18px 22px;
  }
}
