/* ── Services Page ───────────────────────────────────────── */

/* ── Intro strip ─────────────────────────────────────────── */
.services-intro {
    padding: 5rem 0 4rem;
    background: var(--white);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

    .services-intro .section-label {
        margin-bottom: 1rem;
    }

        .services-intro .section-label::after {
            content: ' —';
        }

    .services-intro h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        color: var(--blue);
        margin-bottom: 1rem;
        max-width: 680px;
        margin-inline: auto;
    }

    .services-intro p {
        max-width: 560px;
        margin-inline: auto;
        font-size: 1rem;
        color: var(--text-muted);
    }

/* ── Services grid section ───────────────────────────────── */
.services-full {
    padding: 2rem 0;
    background: var(--off-white);
}
/* ── Image cards ─────────────────────────────────────────── */
.services-full .card {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card__img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

    .card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.card:hover .card__img img {
    transform: scale(1.04);
}

.card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .card__body .card__icon {
        margin-bottom: 1rem;
    }

    .card__body h3 {
        margin-bottom: 0.4rem;
    }

    .card__body .card__intro {
        font-size: 0.88rem;
        font-style: italic;
        font-weight: 400;
        color: var(--text-muted);
        margin-bottom: 0.85rem;
    }

    .card__body p:not(.card__intro) {
        font-size: 0.92rem;
        line-height: 1.8;
        flex: 1;
    }

/* ── Book a Session link ─────────────────────────────────── */
.card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    transition: gap var(--transition), color var(--transition);
    width: fit-content;
}

    .card__link::after {
        content: '→';
        display: inline-block;
        transition: transform var(--transition);
    }

    .card__link:hover {
        color: var(--blue-dark);
        gap: 0.65rem;
    }

        .card__link:hover::after {
            transform: translateX(3px);
        }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .services-intro {
        padding: 3.5rem 0 3rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}