.services-container {
    width: min(100% - 32px, var(--container-width));
    margin: 0 auto;
}

.services-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--mcg-orange);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.services-kicker span {
    width: 42px;
    height: 3px;
    background: var(--mcg-orange);
    display: inline-block;
}

.services-kicker.dark {
    color: var(--mcg-orange-dark);
}

.services-kicker.dark span {
    background: var(--mcg-orange-dark);
}

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.services-btn:hover {
    transform: translateY(-1px);
}

.services-btn-primary {
    background: var(--mcg-orange);
    color: var(--mcg-white);
    border: 1px solid var(--mcg-orange);
}

.services-btn-primary:hover {
    background: var(--mcg-orange-dark);
    border-color: var(--mcg-orange-dark);
}

.services-btn-secondary {
    background: transparent;
    color: var(--mcg-white);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.services-btn-secondary:hover {
    border-color: var(--mcg-orange);
}

.text-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--mcg-orange-dark);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Hero */

.services-hero {
    position: relative;
    overflow: hidden;
    background: var(--mcg-black);
    border-bottom: 1px solid var(--border-muted);
}

.about-hero-texture {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background:
        linear-gradient(135deg, rgba(255, 106, 0, 0.16), transparent 32%),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035) 0,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 12px
        );
    pointer-events: none;
}

.services-hero-grid {
    position: relative;
    z-index: 1;
    padding: 92px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
    gap: 70px;
    align-items: center;
}

.services-hero-content h1 {
    max-width: 980px;
    margin-bottom: 26px;
    color: var(--mcg-white);
    font-size: clamp(1.35rem, 4vw, 4.1rem);
    line-height: 1;
    text-transform: uppercase;
}

.services-hero-content p {
    max-width: 790px;
    color: var(--mcg-light-grey);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.75;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.services-hero-image-wrap {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-muted);
    background: var(--mcg-charcoal);
}

.services-hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.08),
        rgba(5, 5, 5, 0.45)
    );
    pointer-events: none;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
}

/* Intro */

.services-intro {
    padding: 88px 0;
    background: var(--mcg-off-white);
    color: var(--mcg-black);
}

.services-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.services-intro h2 {
    color: var(--mcg-black);
    font-size: clamp(2rem, 4vw, 4rem);
    text-transform: uppercase;
}

.services-intro-copy p {
    color: #3f3f3f;
    font-size: 1.03rem;
    line-height: 1.8;
}

/* Individual Service Sections */

.service-section {
    padding: 98px 0;
}

.service-dark {
    background: var(--mcg-deep-black);
    color: var(--mcg-white);
}

.service-light {
    background: var(--mcg-off-white);
    color: var(--mcg-black);
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
    gap: 76px;
    align-items: center;
}

.service-layout-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
}

.service-media {
    width: 100%;
}

.service-image-slot {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #d2d2d2;
}

.service-dark .service-image-slot {
    border: 1px solid var(--border-muted);
}

.service-light .service-image-slot {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-image-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-image-slot::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.08),
        rgba(5, 5, 5, 0.72)
    );
    pointer-events: none;
}

.service-image-text {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

.service-image-text span {
    display: block;
    margin-bottom: 8px;
    color: var(--mcg-orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-image-text strong {
    display: block;
    max-width: 320px;
    color: var(--mcg-white);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.service-number {
    display: block;
    margin-bottom: 20px;
    color: var(--mcg-orange);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.service-content h2 {
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 4.5vw, 4.6rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.service-dark .service-content h2 {
    color: var(--mcg-white);
}

.service-light .service-content h2 {
    color: var(--mcg-black);
}

.service-lead {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    font-weight: 800;
    line-height: 1.6;
}

.service-dark .service-lead {
    color: var(--mcg-white);
}

.service-light .service-lead {
    color: var(--mcg-black);
}

.service-content p {
    max-width: 790px;
    line-height: 1.8;
}

.service-dark .service-content p {
    color: var(--mcg-light-grey);
}

.service-light .service-content p {
    color: #3f3f3f;
}

.service-detail-list {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}

.service-detail-list div {
    padding: 18px 20px;
    border-radius: var(--radius-md);
}

.service-dark .service-detail-list div {
    background: var(--mcg-charcoal);
    border: 1px solid var(--border-muted);
}

.service-light .service-detail-list div {
    background: var(--mcg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-detail-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--mcg-orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-detail-list span {
    display: block;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-dark .service-detail-list span {
    color: var(--mcg-light-grey);
}

.service-light .service-detail-list span {
    color: #444;
}

.service-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

/* Support Strip */

.services-support-strip {
    padding: 96px 0;
    background: var(--mcg-black);
}

.support-strip-heading {
    max-width: 860px;
    margin-bottom: 44px;
}

.support-strip-heading h2 {
    color: var(--mcg-white);
    font-size: clamp(2rem, 4vw, 4rem);
    text-transform: uppercase;
}

.support-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.support-list div {
    padding: 26px;
    background: var(--mcg-charcoal);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-lg);
}

.support-list strong {
    display: block;
    margin-bottom: 10px;
    color: var(--mcg-white);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.support-list p {
    margin: 0;
    color: var(--mcg-light-grey);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Image Break */

.services-image-break {
    padding: 96px 0;
    background: var(--mcg-off-white);
    color: var(--mcg-black);
}

.image-break-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.large-image-slot {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #d2d2d2;
}

.large-image-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.large-image-slot::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.08),
        rgba(5, 5, 5, 0.72)
    );
    pointer-events: none;
}

.large-image-text {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

.large-image-text span {
    display: block;
    margin-bottom: 8px;
    color: var(--mcg-orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.large-image-text strong {
    display: block;
    max-width: 350px;
    color: var(--mcg-white);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.image-break-content h2 {
    color: var(--mcg-black);
    font-size: clamp(2rem, 4vw, 4rem);
    text-transform: uppercase;
}

.image-break-content p {
    max-width: 720px;
    color: #3f3f3f;
    line-height: 1.8;
}

/* Final CTA */

.services-final-cta {
    padding: 82px 0;
    background: var(--mcg-off-white);
}

.final-services-inner {
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--mcg-charcoal);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.final-services-inner h2 {
    max-width: 820px;
    color: var(--mcg-white);
    font-size: clamp(1.8rem, 3.5vw, 3.4rem);
    text-transform: uppercase;
}

.final-services-inner p {
    max-width: 720px;
    color: var(--mcg-light-grey);
}

/* Responsive */

@media (max-width: 1080px) {
    .services-hero-grid,
    .services-intro-grid,
    .service-layout,
    .service-layout-reverse,
    .image-break-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .service-layout-reverse .service-media {
        order: -1;
    }

    .support-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-hero-image-wrap,
    .services-hero-image {
        min-height: 360px;
    }

    .service-image-slot {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .services-container {
        width: min(100% - 24px, var(--container-width));
    }

    .services-hero-grid {
        padding: 64px 0;
    }

    .services-hero-content h1 {
        font-size: clamp(2.25rem, 11vw, 4rem);
    }

    .services-hero-actions,
    .service-cta-row {
        flex-direction: column;
    }

    .services-btn {
        width: 100%;
    }

    .services-intro,
    .service-section,
    .services-support-strip,
    .services-image-break {
        padding: 70px 0;
    }

    .services-intro h2,
    .service-content h2,
    .support-strip-heading h2,
    .image-break-content h2 {
        font-size: clamp(1.9rem, 10vw, 3rem);
    }

    .services-hero-image-wrap,
    .services-hero-image,
    .service-image-slot,
    .large-image-slot {
        min-height: 280px;
    }

    .support-list {
        grid-template-columns: 1fr;
    }

    .final-services-inner {
        padding: 28px;
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 420px) {
    .services-kicker {
        align-items: flex-start;
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .services-kicker span {
        width: 30px;
        margin-top: 8px;
        flex-shrink: 0;
    }

    .service-image-slot,
    .large-image-slot {
        min-height: 250px;
    }

    .service-image-text,
    .large-image-text {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .service-detail-list div {
        padding: 16px;
    }
}