.services {
    background: #efe6d8;
    padding: 80px 0;
    border-top: 1px solid #d8c4a3;
}

.services h2 {
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.services .subtitle {
    color: #6b4423;
    opacity: .85;
    text-align: center;
    font-size: 1.4rem;
}

/*.services img {
    display: block;
    margin: 20px auto;
    max-width: 720px;
}*/

.services img {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 0 auto 24px;
}

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

.service-card {
background: radial-gradient(
       ellipse at center,
            #fffefb 0%,
            #fdf8ef 55%,
            #f2e3c5 100%
        ); 
    border: 1px solid #c8a86a;
    border-radius: 8px;
    box-shadow:
        inset 0 0 25px rgba(176,141,87,.05),
        0 5px 15px rgba(43,26,16,.08);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
    padding: 24px;

}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 30px rgba(0,0,0,.12);
}


.service-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 22px;
    display: block;
    border: 1px solid #b9965d;
    filter:
        saturate(1.08)
        contrast(1.03)
        brightness(1.02)
        sepia(.06)
}

.service-card h3 {
    margin-bottom: 12px;
    color: #6b4423;
}

.custom-cta {
  max-width: 680px;
  margin: 60px auto 0;
  padding: 36px 42px;
  text-align: center;
  background: #fffaf3;
  border: 1px solid #d8c4a3;
  border-radius: 10px;
}

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

@media (max-width: 768px) {
    .service-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

}
