:root {
    --services-card-bg: rgba(255, 211, 172, 0.06);
    --services-card-border: rgba(216, 195, 165, 0.35);
    --services-hero-overlay: rgba(11, 45, 38, 0.78);
}

/* ================= HERO ================= */
.services-hero {
    position: relative;
    min-height: 60vh;
    padding: calc(var(--header-height) + var(--space-64)) 0 var(--space-64);
    background-color: var(--body-color);
    background-image: linear-gradient(180deg, rgba(11, 45, 38, 0.2), rgba(11, 45, 38, 0.9)), var(--hero-image);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.services-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 45, 38, 0.2), var(--services-hero-overlay));
    z-index: 1;
}

.services-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-color);
}

.services-hero__eyebrow {
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-size: var(--small-font-size);
    color: var(--first-color);
    margin-bottom: var(--space-16);
}

.services-hero__title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-family: var(--second-font);
    color: var(--white-color);
    margin-bottom: var(--space-16);
}

.services-hero__description {
    max-width: var(--reading-measure);
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* ================= INTRO ================= */
.services-intro__container {
    align-items: start;
    gap: var(--space-48);
}

.services-intro__label {
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: var(--small-font-size);
    margin-bottom: var(--space-16);
}

.services-intro__text {
    color: var(--white-color);
    opacity: 0.92;
    line-height: 1.7;
    max-width: var(--reading-measure);
}

.services-intro__card {
    background: var(--services-card-bg);
    border: 1px solid var(--services-card-border);
    border-radius: 1.5rem;
    padding: var(--space-32);
    color: var(--white-color);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.services-intro__card h3 {
    color: var(--title-color);
    margin-bottom: var(--space-16);
}

.services-intro__list {
    display: grid;
    gap: var(--space-8);
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--small-font-size);
}

/* ================= SERVICES GRID ================= */
.services-grid__container {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
    background: var(--services-card-bg);
    border: 1px solid var(--services-card-border);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--white-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

.service-card__content {
    padding: var(--space-24);
}

.service-card__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--space-8);
}

.service-card__text {
    font-size: var(--small-font-size);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 62ch;
}

/* ================= FEATURE STRIP ================= */
.services-strip__container {
    align-items: center;
    gap: var(--space-48);
}

.services-strip__image img {
    border-radius: 1.5rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.services-strip__content {
    color: var(--white-color);
}

.services-strip__label {
    color: var(--first-color);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: var(--small-font-size);
    margin-bottom: var(--space-8);
}

.services-strip__title {
    font-family: var(--second-font);
    font-size: var(--h1-font-size);
    color: var(--title-color);
    margin-bottom: var(--space-16);
}

.services-strip__text {
    opacity: 0.92;
    line-height: 1.7;
    margin-bottom: var(--space-24);
    max-width: var(--reading-measure);
}

.services-strip__steps {
    display: grid;
    gap: var(--space-8);
    font-size: var(--small-font-size);
    color: rgba(255, 255, 255, 0.92);
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 767px) {
    .services-hero {
        min-height: 50vh;
        padding: calc(var(--header-height) + 2.5rem) 0 3rem;
    }
}

@media screen and (min-width: 768px) {
    .services-intro__container,
    .services-strip__container {
        grid-template-columns: 1fr 1fr;
    }
}
