.services-section{
    background:#fbfaf7;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:48px;
    align-items:start;
}

.service-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.service-top{
    display:flex;
    flex-direction:column;
}

.service-label{
    background:#b6a388;
    color:#111;
    text-align:center;
    padding:16px 22px;
    font-size:1.35rem;
    font-weight:600;
    border-radius:18px;
    margin-bottom:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.service-image{
    aspect-ratio:3 / 4;
    overflow:hidden;
    border-radius:18px;
    box-shadow:
        0 12px 30px rgba(0,0,0,.08),
        0 24px 60px rgba(0,0,0,.10);
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    cursor:zoom-in;
    transition:transform .35s ease;
}

.service-image:hover img{
    transform:scale(1.03);
}

.service-content{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:34px 10px 0;
}

.service-content h3{
    margin:0 0 28px;
    min-height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:2rem;
    line-height:1.25;
}

.service-content p{
    flex:1;
    margin:0;
    font-size:1.08rem;
    line-height:1.8;
    color:#444;
}

/* ===========================
   Lightbox
=========================== */

.image-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
    opacity:0;
    visibility:hidden;
    transition:.25s;
    z-index:99999;
}

.image-lightbox.open{
    opacity:1;
    visibility:visible;
}

.image-lightbox img{
    max-width:min(95vw,1500px);
    max-height:92vh;
    border-radius:22px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
    cursor:zoom-out;
}

.image-lightbox::after{
    content:"×";
    position:absolute;
    top:24px;
    right:34px;
    font-size:48px;
    color:#fff;
    opacity:.8;
    cursor:pointer;
    transition:.2s;
}

.image-lightbox:hover::after{
    opacity:1;
}

@media (max-width:900px){

    .services-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .service-content{
        padding:28px 0 0;
    }

    .service-content h3{
        min-height:auto;
        font-size:1.8rem;
        margin-bottom:22px;
    }

    .image-lightbox{
        padding:20px;
    }

    .image-lightbox::after{
        right:18px;
        top:18px;
        font-size:40px;
    }

}