.services-section {
    width: 100%;

    padding-top: 140px;
    padding-bottom: 140px;

    background: #f8f4f1;
}

.services-header {
    text-align: center;

    margin-bottom: 90px;
}

.services-subtitle {
    display: inline-block;

    font-size: 13px;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: var(--color-primary);

    margin-bottom: 24px;
}

.services-title {
    font-size: 72px;
    line-height: .95;

    color: #2f2f2f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 32px;
}

.service-card {
    background: rgba(255,255,255,0.75);

    border-radius: 28px;

    overflow: hidden;

    transition: all .4s ease;

    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 360px;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 36px;
}

.service-content h3 {
    font-size: 34px;

    color: #2f2f2f;

    margin-bottom: 18px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.9;

    color: #6f6f6f;
}