/* /services — the offerings. */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service {
    display: flex;
    flex-direction: column;
}

.service h3 {
    margin-bottom: 0.25rem;
}

.service p {
    max-width: none;
}

.service-price {
    font-family: var(--font-accent);
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--gold-veil);
}

.service p:last-child {
    margin-bottom: 0;
}
