/* ── TESTIMONIALS HERO ── */
#testimonials-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 4rem 4rem;
    background: var(--teal-dark);
    text-align: center;
    position: relative;
    overflow: hidden
}

#testimonials-hero::before {
    content: '❝';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20rem;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    pointer-events: none
}

#testimonials-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1
}

#testimonials-hero h1 em {
    color: var(--gold);
    font-style: italic
}

#testimonials-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .7);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

/* ── TESTIMONIALS CONTENT ── */
#testimonials-content {
    background: var(--pearl);
    padding: 6rem 4rem
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    perspective: 1200px
}

.test-card {
    background: var(--white);
    border: 1px solid rgba(26, 122, 110, .1);
    border-radius: 4px;
    padding: 2rem;
    transition: all .4s;
    transform-style: preserve-3d
}

.test-card:hover {
    background: var(--white);
    transform: translateY(-8px) translateZ(20px) rotateX(2deg);
    box-shadow: 0 24px 48px rgba(26, 122, 110, .2)
}

.test-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: .1em
}

.test-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic
}

.test-author {
    display: flex;
    align-items: center;
    gap: .8rem
}

.test-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white)
}

.test-name {
    font-size: .85rem;
    font-weight: 500;
    color: var(--charcoal)
}

.test-role {
    font-size: .75rem;
    color: var(--soft);
    margin-top: .1rem
}

/* ── MEDIA QUERIES ── */
@media (max-width: 992px) {
    .test-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .test-grid {
        grid-template-columns: 1fr;
    }
    
    #testimonials-hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}