/* PHPC services block — PR 2.4 (HANDOFF §2.4)
   Mobile-first: 1col → 2col @756px → 3col @992px (stays 2col when 2 or 4 items via .two-col-mod). */

.services--section {
    padding: 60px 0;
    background: var(--paper);
    color: var(--ink);
}

@media (min-width: 992px) {
    .services--section {
        padding: 120px 0;
    }
}

.services--section-title {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.1;
    letter-spacing: var(--track-tight-2);
    margin: 0 0 48px;
    max-width: 26ch;
    text-wrap: balance;
    color: var(--ink);
}

.services--section-title i {
    color: var(--signal);
    font-style: italic;
    font-weight: inherit;
}

@media (min-width: 992px) {
    .services--section-title {
        margin: 0 0 64px;
    }
}

/* ---------- Grid ---------- */
.services--grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 756px) {
    .services--grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
}

@media (min-width: 992px) {
    .services--grid:not(.two-col-mod) {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- Item ---------- */
.services--item {
    display: grid;
    gap: 18px;
}

.services--image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-deep);
    margin: 0;
}

.services--image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease-editorial);
}

.services--item:hover .services--image img {
    transform: scale(1.03);
}

.services--image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* ---------- Label (· SELLING) ---------- */
.services--label {
    font-family: var(--ff-sans);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: var(--track-eyebrow);
    text-transform: uppercase;
    color: var(--signal);
    margin: 0;
}

/* ---------- Title (Playfair per-card headline) ---------- */
.services--title {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: var(--track-tight-2);
    margin: 0;
    color: var(--ink);
}

@media (min-width: 992px) {
    .services--title {
        font-size: 26px;
    }
}

.services--title i {
    color: var(--signal);
    font-style: italic;
    font-weight: inherit;
}

.services--cta-wrap {
    margin: 0;
}
