.services-list{padding:30px 0 90px}.services-list article{display:grid;grid-template-columns:130px 1fr;gap:45px;padding:70px 0;border-bottom:1px solid #dfe5e7;scroll-margin-top:30px}.service-no{font:800 18px Oswald;color:#a27e38}.services-list h2{font:800 clamp(32px,4vw,50px)/1.1 Oswald;margin:0 0 15px;letter-spacing:-.03em}.services-list p{color:#657279;max-width:650px}.services-list ul{display:grid;grid-template-columns:1fr 1fr;gap:8px 30px;padding:20px 0 0;margin:0;list-style:none;color:#39474d;font-size:13px}.services-list li:before{content:'—';color:#b18b4c;margin-right:10px}.service-note{background:#f4f6f5;padding:85px 0}.service-note h2{font:800 clamp(35px,5vw,60px)/1.05 Oswald;max-width:750px;margin:15px 0 30px}@media(max-width:650px){.services-list article{grid-template-columns:1fr;gap:15px;padding:50px 0}.services-list ul{grid-template-columns:1fr}}


/* ================================
   SERVICES HERO
================================ */

.services-hero {
    position: relative;
    min-height: 620px;
    height: 70vh;
    max-height: 760px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.services-hero .page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .82) 0%,
            rgba(0, 0, 0, .58) 45%,
            rgba(0, 0, 0, .22) 100%
        );
}

.services-hero .page-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
    padding: 40px 55px 0;

    box-sizing: border-box;
}

.services-hero .page-hero-content h1 {
    max-width: 760px;

    margin: 16px 0 24px;

    color: #fff;

    font-size: clamp(52px, 5.4vw, 78px);
    line-height: .98;
    letter-spacing: -0.045em;
}

.services-hero .page-hero-content p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, .82);

    font-size: 18px;
    line-height: 1.7;
}


/* ================================
   SERVICES LIST
================================ */

.services-list {
    padding: 120px 0;
}

.services-list article {
    display: grid;
    grid-template-columns: 120px 1fr;

    gap: 50px;

    padding: 70px 0;

    border-top: 1px solid #ddd;
}

.services-list article:last-child {
    border-bottom: 1px solid #ddd;
}

.service-no {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #888;
}

.services-list h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.services-list p {
    max-width: 720px;

    margin: 0 0 28px;

    color: #555;

    font-size: 17px;
    line-height: 1.75;
}

.services-list ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px 40px;

    max-width: 720px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.services-list li {
    position: relative;

    padding-left: 22px;

    color: #333;

    font-size: 15px;
    line-height: 1.6;
}

.services-list li::before {
    content: "—";

    position: absolute;
    left: 0;
    top: 0;

    color: #888;
}


/* ================================
   SERVICE CTA
================================ */

.service-note {
    padding: 120px 0;

    background: #111;
    color: #fff;
}

.service-note .container {
    max-width: 1000px;
}

.service-note .eyebrow {
    color: rgba(255, 255, 255, .6);
}

.service-note h2 {
    max-width: 800px;

    margin: 18px 0 35px;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .services-hero .page-hero-content {
        padding: 40px 35px 0;
    }

    .services-list article {
        grid-template-columns: 80px 1fr;
        gap: 30px;
    }

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


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .services-hero {
        min-height: 560px;
        height: 72vh;
    }

    .services-hero .page-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .86) 0%,
                rgba(0, 0, 0, .68) 100%
            );
    }

    .services-hero .page-hero-content {
        padding: 40px 24px 0;
    }

    .services-hero .page-hero-content h1 {
        font-size: 44px;
    }

    .services-hero .page-hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .services-list {
        padding: 70px 0;
    }

    .services-list article {
        display: block;
        padding: 50px 0;
    }

    .service-no {
        display: block;
        margin-bottom: 25px;
    }

    .services-list h2 {
        font-size: 36px;
    }

    .services-list p {
        font-size: 16px;
    }

    .service-note {
        padding: 80px 0;
    }

    .service-note h2 {
        font-size: 40px;
    }
}



/* Button Base & Icon Alignment */
.btn i {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.85em;
    color: #c6a15b;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Animation: Up and Right Diagonal Movement */
.btn:hover i {
    transform: translate(3px, -3px);
}