/* =========================
   Treatments Page Styles
   ========================= */

.treatments-head {
    padding: 3.6rem 0 2.2rem;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(900px 420px at 25% 20%, rgba(229,132,225,.10), transparent 60%),
        radial-gradient(700px 420px at 80% 30%, rgba(127,217,113,.12), transparent 60%),
        var(--soft);
}

.page-title {
    font-size: clamp(2.1rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    margin-bottom: .7rem;
}

.page-lead {
    color: var(--grey);
    width: min(760px, 92vw);
    margin: 0 0 1rem 0;
}

/* Treatments grid */
.grid {
    padding: 4.2rem 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.treatment-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.treatment-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229,132,225,.35);
    box-shadow: 0 16px 34px rgba(0,0,0,.08);
}

.treatment-image {
    aspect-ratio: 16 / 10;
    background: #f2f2f2;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.treatment-body {
    padding: .95rem 1rem 1.05rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.treatment-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .6rem;
    margin-bottom: .7rem;
}

.treatment-top h2 {
    font-size: 1.12rem;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.treatment-price {
    margin: 0;
    color: var(--grey);
    font-weight: 400;
    white-space: nowrap;
}

.treatment-desc {
    margin: 0 0 .9rem 0;
    margin-bottom: 1rem;
    color: var(--grey);
    max-width: 56ch;
    font-size: .95rem;
    line-height: 1.7;
    opacity: .92;
}

.chips {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .85rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: .35rem .65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(127,217,113,.10);
    color: var(--ink);
    font-size: .92rem;
    font-weight: 400;
}

.treatment-cta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--ink);
    font-weight: 500;
    transition: transform .15s ease, color .15s ease;
}

.treatment-card:hover .treatment-cta {
    color: var(--pink);
    transform: translateX(2px);
}

.reviews {
    padding: 4.2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(900px 420px at 25% 25%, rgba(229,132,225,.08), transparent 60%),
        radial-gradient(700px 420px at 80% 35%, rgba(127,217,113,.10), transparent 60%),
        var(--soft);
}

.reviews-head {
    text-align: center;
    margin-bottom: 1.8rem;
}

.reviews-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    letter-spacing: -0.02em;
    margin: 0;
}

.reviews-subtitle {
    color: var(--grey);
    margin: .45rem auto 0;
    width: min(650px, 92vw);
}

.reviews-summary {
    width: min(820px, 92vw);
    margin: 1.35rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    flex-wrap: wrap;
    color: var(--grey);
}

.reviews-summary strong {
    color: var(--ink);
    font-weight: 600;
}

.reviews-stars {
    display: inline-flex;
    align-items: center;
    gap: .1rem;
    letter-spacing: .06em;
    color: var(--pink);
    font-size: 1.05rem;
    line-height: 1;
}

.review-stars, .reviews-stars {
    color: gold;
}

.reviews-grid {
    width: min(980px, 92vw);
    margin: 1.8rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.1rem 1.15rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.05);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    border-color: rgba(229,132,225,.30);
    box-shadow: 0 16px 34px rgba(0,0,0,.07);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .75rem;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(127,217,113,.10);
    color: var(--ink);
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
}

.review-text {
    margin: 0 0 .9rem 0;
    color: var(--grey);
    line-height: 1.6;
}

.review-name {
    margin: 0;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink);
}

.review-meta {
    margin: .25rem 0 0 0;
    font-size: .85rem;
    color: var(--grey);
}

.reviews-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.8rem;
}

.faq {
    padding: 4.2rem 0;
    border-top: 1px solid var(--line);
}

.faq-head {
    text-align: center;
    margin-bottom: 1.6rem;
}

.faq-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    letter-spacing: -0.02em;
}

.faq-subtitle {
    color: var(--grey);
    margin: .4rem auto 0;
    width: min(650px, 92vw);
}

.faq-list {
    width: min(820px, 92vw);
    margin: 1.8rem auto 0;
    display: grid;
    gap: .9rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .95rem 1.05rem;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--ink);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--pink);
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin: .7rem 0 0 0;
    color: var(--grey);
}

.faq-cta {
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 950px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .treatments-head {
        padding: 3.1rem 0 2rem;
    }
}
