.services-page {
    --svc-ivory: #f6f2e9;
    --svc-limestone: #ece6da;
    --svc-charcoal: #323232;
    --svc-ink: #272624;
    --svc-muted: #6d6962;
    --svc-gold: #b58b52;
    --svc-line: rgba(39, 38, 36, 0.18);
    --svc-serif: var(--font-heading, "Cormorant Garamond", Georgia, serif);
    --svc-sans: var(--font-body, inherit);

    overflow: hidden;
    color: var(--svc-ink);
    background: #ffffff;
    font-family: var(--svc-sans);
}

.services-page,
.services-page * {
    box-sizing: border-box;
}

.services-page figure,
.services-page h1,
.services-page h2,
.services-page h3,
.services-page p,
.services-page ol {
    margin: 0;
}

.services-page img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-shell {
    width: min(100% - 64px, 1320px);
    margin-inline: auto;
}

.services-eyebrow {
    color: var(--svc-gold);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.services-page h1,
.services-page h2,
.services-page h3 {
    font-family: var(--svc-serif);
    font-weight: 400;
    letter-spacing: -0.025em;
}

.services-page h2 {
    font-size: clamp(40px, 3.8vw, 60px);
    line-height: 1.02;
}

.services-page a:focus-visible {
    outline: 2px solid var(--svc-gold);
    outline-offset: 5px;
}

/* Split hero */
.services-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    height: 550px;
    min-height: 550px;
    background: var(--svc-ivory);
}

.services-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px clamp(30px, 4vw, 60px);
}

.services-hero__content .services-eyebrow::after,
.services-intro__inner .services-eyebrow::after,
.services-proof__copy .services-eyebrow::after {
    display: block;
    width: 38px;
    height: 1px;
    margin-top: 14px;
    content: "";
    background: var(--svc-gold);
}

.services-hero h1 {
    max-width: 650px;
    margin-top: 14px;
    font-size: clamp(40px, 3.6vw, 54px);
    line-height: 1;
}

.services-hero__intro {
    max-width: 570px;
    margin-top: 14px !important;
    color: var(--svc-muted);
    font-family: var(--svc-serif);
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.4;
}

.services-text-link {
    align-self: flex-start;
    margin-top: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--svc-ink);
    color: var(--svc-ink);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
}

.services-hero__media {
    height: 100%;
    min-height: 0;
}

/* Credibility line */
.services-credibility {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--svc-line);
    border-bottom: 1px solid var(--svc-line);
    background: #ffffff;
}

.services-credibility span {
    position: relative;
    padding: 16px 24px;
    color: #46433e;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.services-credibility span + span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    content: "";
    transform: translate(-50%, -50%);
    background: var(--svc-gold);
}

/* Intro and services */
.services-intro,
.services-list,
.services-proof {
    background-color: #ffffff;
    background-image: none;
}

.services-intro {
    padding: clamp(54px, 5vw, 30px) 0 clamp(46px, 4.5vw, 64px);
}

.services-intro__inner {
    max-width: 900px;
    text-align: center;
}

.services-intro__inner .services-eyebrow::after {
    margin-inline: auto;
}

.services-intro h2 {
    margin-top: 18px;
}

.services-intro__inner > p:last-child {
    max-width: 810px;
    margin: 22px auto 0;
    color: var(--svc-muted);
    font-family: var(--svc-serif);
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 1.55;
}

.services-list {
    padding-bottom: clamp(48px, 5vw, 70px);
}

.service-row {
    display: grid;
    grid-template-areas: "media copy";
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(26px, 3vw, 48px);
    align-items: center;
    padding: clamp(32px, 3.5vw, 46px) 0;
    border-top: 1px solid var(--svc-line);
}

.service-row:last-child {
    border-bottom: 1px solid var(--svc-line);
}

.service-row--reverse {
    grid-template-areas: "media copy";
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.service-row__number {
    display: none;
}

.service-row__media {
    grid-area: media;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--svc-limestone);
}

.service-row__copy {
    grid-area: copy;
    max-width: 520px;
}

.service-row__copy h3 {
    margin-top: 13px;
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.05;
}

.service-row__copy > p:not(.services-eyebrow) {
    margin-top: 18px;
    color: var(--svc-muted);
    font-size: 16px;
    line-height: 1.65;
}

/* Process */
.services-process {
    padding: clamp(40px, 4vw, 10px) 0;
    background-color: var(--svc-charcoal);
    background-image: none;
    color: #f7f4ed;
}

.services-process > .services-shell > .services-eyebrow {
    text-align: center;
    color: #c49a61;
    font-size: 10px;
    font-weight: 500;
}

.services-process h2 {
    max-width: none;
    margin: 12px auto 0;
    color: #ffffff;
    text-align: center;
}

.services-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: clamp(24px, 3vw, 34px) !important;
    padding: 0;
    list-style: none;
    color: #c49a61;
}

.services-process__steps li {
    position: relative;
    padding: 0 16px;
    text-align: center;
}

.services-process__steps li:not(:last-child)::after {
    position: absolute;
    top: 11px;
    right: -18%;
    width: 36%;
    height: 1px;
    content: "";
    background-color: #ffffff;
    background-image: none;
}

.services-process__steps span {
    display: block;
    color: var(--svc-gold);
    font-family: var(--svc-serif);
    font-size: 18px;
    line-height: 1;
}

.services-process__steps strong {
    display: block;
    margin-top: 7px;
    color: #f7f4ed;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-row__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
}

.service-row__tags span {
    padding: 5px 8px;

    border: 1px solid rgba(39, 38, 36, 0.28);
    border-radius: 0;

    color: #46433e;
    font-size: 9px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-process__media {
    height: clamp(240px, 28vw, 380px);
    margin-top: clamp(38px, 4vw, 52px) !important;
    overflow: hidden;
}

.services-process__media img {
    filter: saturate(0.78) contrast(1.03);
}
/* Proof */
.services-proof {
    padding: clamp(54px, 5.5vw, 74px) 0;
}

.services-proof__grid {
    --proof-height: clamp(350px, 29vw, 410px);

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.86fr) minmax(160px, 0.55fr);
    gap: clamp(20px, 3vw, 44px);
    align-items: stretch;
}

.services-proof__main-image,
.services-proof__detail-image {
    height: var(--proof-height);
    aspect-ratio: auto;
    overflow: hidden;
}

.services-proof__copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: var(--proof-height);
}

.services-proof__copy h2 {
    margin-top: 0;
    font-size: clamp(38px, 3.7vw, 58px);
}

.services-proof__copy > p:last-child {
    margin-top: 0;
    color: var(--svc-muted);
    font-size: 16px;
    line-height: 1.65;
}

/* Service areas */
.services-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid var(--svc-line);
    border-bottom: 1px solid var(--svc-line);
    background: #ffffff;
}

.services-areas span {
    position: relative;
    padding: 17px 26px;
    color: #46433e;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.services-areas span + span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 3px;
    content: "";
    transform: translate(-50%, -50%);
    background: var(--svc-gold);
}

/* Final CTA */
.services-final-cta {
    padding: clamp(42px, 4.5vw, 60px) 0;
    color: #f7f3ea;
    text-align: center;
    background: #323232;
}

.services-final-cta .services-eyebrow {
    color: #c49a61;
    font-size: 10px;
    font-weight: 500;
}

.services-final-cta .services-eyebrow::after {
    display: block;
    width: 46px;
    height: 1px;
    margin: 10px auto 0;
    content: "";
    background: #c49a61;
}

.services-final-cta h2 {
    max-width: 940px;
    margin: 14px auto 0;
    color: #ffffff;
    font-size: clamp(36px, 3.5vw, 36px);
}

.services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 22px;
    padding: 12px 28px;
    border: 1px solid var(--svc-gold);
    color: #e1c298;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.17em;
    text-decoration: none;
    text-transform: uppercase;
}

.services-button:hover {
    color: #323232;
    background: var(--svc-gold);
}

.services-hero .button-primary {
    width: auto;
    align-self: flex-start;
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .service-row,
    .service-row--reverse {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 30px;
    }

    .services-proof__grid {
        --proof-height: 380px;

        grid-template-columns: minmax(0, 1.1fr) minmax(210px, 0.95fr) minmax(140px, 0.6fr);
        gap: 18px;
    }

    .services-proof__copy h2 {
        font-size: clamp(32px, 3.8vw, 42px);
    }

    .services-proof__copy > p:last-child {
        font-size: 13px;
        line-height: 1.55;
    }
}

@media (max-width: 768px) {
    .services-shell {
        width: min(100% - 40px, 720px);
    }

    .services-hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .services-hero__content {
        padding: 36px 24px 32px;
    }

    .services-hero__media {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .service-row,
    .service-row--reverse {
        grid-template-areas:
            "media"
            "copy";
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-row__copy {
        max-width: 680px;
    }

    .services-process__steps li:not(:last-child)::after {
        display: none;
    }

    .services-process h2 {
        white-space: normal;
    }

    .services-proof__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .services-proof__copy {
        order: -1;
        height: auto;
    }

    .services-proof__copy h2 {
        margin-top: 18px;
        font-size: clamp(34px, 9vw, 42px);
    }

    .services-proof__copy > p:last-child {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.65;
    }

    .services-proof__main-image,
    .services-proof__detail-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        justify-self: stretch;
    }

    .services-proof__detail-image {
        display: none;
    }
}

@media (max-width: 700px) {
    .services-shell {
        width: min(100% - 32px, 620px);
    }

    .services-hero__content {
        padding: 24px 20px 22px;
    }

    .services-hero h1 {
        margin-top: 12px;
        font-size: 36px;
        line-height: 1.02;
    }

    .services-hero__intro {
        margin-top: 12px !important;
        font-size: 15px;
        line-height: 1.4;
    }

    .services-text-link {
        margin-top: 16px;
    }

    .services-hero__media {
        max-height: 230px;
        aspect-ratio: 16 / 7;
    }

    .services-credibility {
        grid-template-columns: 1fr;
        padding: 10px 0;
    }

    .services-credibility span {
        padding: 10px 18px;
    }

    .services-credibility span + span::before {
        display: none;
    }

    .services-intro {
        padding: 20px 0 42px;
    }

    .services-page h2 {
        font-size: clamp(40px, 12vw, 52px);
    }

    .services-intro__inner > p:last-child {
        font-size: 19px;
        line-height: 1.55;
    }

    .services-list {
        padding-bottom: 44px;
    }

    .service-row,
    .service-row--reverse {
        padding: 28px 0;
    }

    .service-row__copy h3 {
        font-size: 39px;
    }

    .service-row__copy > p:not(.services-eyebrow),
    .services-proof__copy > p:last-child {
        font-size: 15px;
        line-height: 1.7;
    }

    .services-process {
        padding: 18px 0 30px;
    }

    .services-process h2 {
        max-width: 480px;
        margin-top: 10px;
        color: #ffffff;
        font-size: clamp(25px, 7.4vw, 31px);
        font-weight: 400;
        line-height: 1.08;
        text-transform: none;
    }

    .services-process__steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        margin-top: 24px !important;
    }

    .services-process__steps li {
        padding: 0 2px;
    }

    .services-process__steps li:last-child {
        grid-column: auto;
    }

    .services-process__steps span {
        font-size: 14px;
    }

    .services-process__steps strong {
        margin-top: 5px;
        font-size: 7.5px;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .services-process__media {
        height: 230px;
        margin-top: 38px !important;
    }

    .services-proof {
        padding: 36px 0;
    }

    .services-proof__copy h2 {
        font-size: clamp(34px, 9vw, 42px);
    }

    .services-areas {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        padding: 10px 12px;
    }

    .services-areas span {
        flex: 0 1 auto;
        padding: 7px 10px;
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    .services-areas span + span::before {
        display: none;
    }

    .services-final-cta {
        padding: 38px 20px 40px;
    }

    .services-final-cta h2 {
        max-width: 480px;
        margin-top: 12px;
        font-size: clamp(32px, 9vw, 40px);
        font-weight: 400;
        line-height: 1.04;
        text-transform: none;
    }

    .services-final-cta .services-button {
        margin-top: 18px;
    }

    .services-hero .button-primary {
        margin-top: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-page * {
        scroll-behavior: auto !important;
    }
}

@media (min-width: 769px) {
    .services-process h2 {
        max-width: none;
        font-size: clamp(26px, 2.7vw, 36px);
        line-height: 1.15;
        white-space: nowrap;
    }
}
/* Compact Process — mobile */
@media (max-width: 768px) {
    .services-page .services-process {
        padding: 22px 0 24px;
    }

    .services-process > .services-shell > .services-eyebrow {
        font-size: 8px;
        line-height: 1.2;
        letter-spacing: 0.14em;
    }

    .services-page .services-process h2 {
        max-width: 420px;
        margin: 8px auto 0;
        font-size: clamp(22px, 5.5vw, 28px);
        font-weight: 400;
        line-height: 1.08;
        letter-spacing: -0.015em;
        text-transform: none;
    }

    .services-process__steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        margin-top: 18px !important;
    }

    .services-process__steps li {
        padding: 0 2px;
    }

    .services-process__steps li::after {
        display: none;
    }

    .services-process__steps span {
        font-size: 12px;
        line-height: 1;
    }

    .services-process__steps strong {
        margin-top: 4px;
        font-size: 7px;
        line-height: 1.1;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }
}
/* Compact Final CTA — mobile */
@media (max-width: 768px) {
    .services-page .services-final-cta {
        padding: 26px 18px 28px;
        border-top: 1px solid rgba(181, 139, 82, 0.55);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .services-final-cta .services-eyebrow {
        font-size: 8px;
        line-height: 1.2;
        letter-spacing: 0.14em;
    }

    .services-final-cta .services-eyebrow::after {
        width: 36px;
        margin-top: 8px;
    }

    .services-page .services-final-cta h2 {
        max-width: 430px;
        margin: 10px auto 0;
        font-size: clamp(28px, 7.5vw, 28px);
        font-weight: 400;
        line-height: 1.05;
        letter-spacing: -0.015em;
        text-transform: none;
    }

    .services-final-cta .services-button {
        min-height: 40px;
        margin-top: 16px;
        padding: 9px 22px;
        font-size: 9px;
        letter-spacing: 0.14em;
    }
}
@media (min-width: 769px) {
    .services-page #services-proof-title {
        font-size: 52px;
        line-height: 1.08;
    }
}