/* ============================================
   Services Section
   ============================================ */
.services {
    background-color: #F9F6F2;
}

.services__inner {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px;
    box-sizing: border-box;
}

.services__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.services__overline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 0.75rem;
}

.services__title {
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 2.8vw, 2.25rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--neutral-900);
    margin: 0;
}

.services__actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.services__see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0;
    border: none;
    background: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-500);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s;
}

.services__see-all:hover {
    color: var(--color-neutral);
}

.services__see-all span {
    font-size: 1rem;
    line-height: 1;
}

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

.services__grid--more {
    margin-top: 48px;
}

.services__grid--more:not(.is-visible) {
    display: none;
}

/* ============================================
   Service Card
   ============================================ */
.service-card {
    background-color: var(--color-secondary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.service-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--primary-200);
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem 1.25rem 1.5rem;
}

.service-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-card__name {
    font-family: var(--font-headline);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-900);
    margin: 0;
}

.service-card__price {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--neutral-400);
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 0.125rem;
}

.service-card__desc {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--neutral-500);
    margin: 0 0 1.25rem;
    flex: 1;
}

.service-card__duration {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-top: auto;
}

.service-card__duration svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
    .services__inner {
        padding: 48px 32px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .services__grid--more {
        margin-top: 32px;
    }

    .services__actions {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .services__inner {
        padding: 40px 1.25rem;
    }
}
