/* =====================================================
   Section 6 — What Our Customers Say
   ===================================================== */

.htesti-section {
    background: var(--color-cream);
    border-top: 1px solid var(--color-border);
    padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 40px);
}

.htesti-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Header ── */
.htesti-header {
    text-align: center;
    margin-bottom: 40px;
}

.htesti-pill {
    display: inline-flex;
    align-items: center;
    background: #e8f5d6;
    color: #5a8f2a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.htesti-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* ── Grid ── */
.htesti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* ── Testimonial Card ── */
.htesti-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 16px 16px 0;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.htesti-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

/* Stars */
.htesti-card__stars {
    color: #f5c242;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1;
}

/* Review text */
.htesti-card__text {
    font-size: 13.5px;
    color: var(--color-muted);
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 16px;
    flex: 1;
}

/* Footer */
.htesti-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.htesti-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8f5d6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #5a8f2a;
    flex-shrink: 0;
}

.htesti-card__meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.htesti-card__name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text);
    display: block;
}

.htesti-card__date {
    font-size: 11.5px;
    color: var(--color-muted);
    display: block;
}

/* =====================================================
   Responsive
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .htesti-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .htesti-section {
        padding: 40px 16px;
    }
    .htesti-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .htesti-card {
        padding: 20px 18px;
    }
}
