.project-list{padding:80px 0}.project-list article{display:grid;grid-template-columns:1.15fr .85fr;gap:70px;align-items:center;padding:50px 0}.project-list article+article{border-top:1px solid #dfe5e7}.project-image{height:390px;background:#27343a;position:relative;overflow:hidden}.project-image:before{content:"";position:absolute;inset:15%;border:1px solid #ffffff25;transform:skew(-15deg)}.project-image span{position:absolute;left:25px;top:25px;color:#d8ba79;font:800 10px Oswald;letter-spacing:.15em}.p2{background:#77766f}.p3{background:#6c726c}.project-list h2{font:800 clamp(34px,4vw,54px)/1.08 Oswald;margin:12px 0 20px;letter-spacing:-.03em}.project-list p{color:#667278;font-size:14px;margin-bottom:25px}@media(max-width:800px){.project-list article{grid-template-columns:1fr;gap:30px}.project-image{height:300px}}


/* =========================================================
   PROJECTS HERO
========================================================= */

.projects-hero {
    position: relative;

    min-height: 620px;
    height: 70vh;
    max-height: 760px;

    display: flex;
    align-items: center;

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

    overflow: hidden;
}


/* Overlay */

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

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.58) 45%,
            rgba(0, 0, 0, 0.20) 100%
        );
}


/* Hero content */

.projects-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;
}


/* Eyebrow */

.projects-hero .eyebrow {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    margin-bottom: 22px;
}


/* Heading */

.projects-hero h1 {
    color: #ffffff;

    font-size: clamp(52px, 5.4vw, 78px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.045em;

    max-width: 800px;

    margin: 0 0 28px;
}


/* Description */

.projects-hero p {
    color: rgba(255, 255, 255, 0.90);

    max-width: 620px;

    font-size: 17px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   PROJECT LIST
========================================================= */

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

.project-item {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 80px;

    align-items: center;

    padding: 0 0 100px;

    margin-bottom: 100px;

    border-bottom: 1px solid #e2e6e4;
}

.project-item:last-child {
    margin-bottom: 0;

    border-bottom: 0;
}


/* Project image */

.project-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

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

    overflow: hidden;

    background-color: #e9edeb;
}

.project-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.50),
            transparent 55%
        );
}


/* Project number */

.project-image span {
    position: absolute;

    z-index: 2;

    left: 25px;
    bottom: 22px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;
}


/* Project content */

.project-content {
    max-width: 560px;
}

.project-content h2 {
    color: #172026;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -0.035em;

    margin: 15px 0 22px;
}

.project-content p {
    color: #6c797e;

    font-size: 16px;

    line-height: 1.8;

    margin: 0 0 28px;
}


/* Text link */

.project-content .text-link {
    color: #172026;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    border-bottom: 1px solid #172026;

    padding-bottom: 4px;
}

.project-content .text-link:hover {
    opacity: 0.65;
}


/* =========================================================
   ALTERNATING PROJECT LAYOUT
========================================================= */

.project-item:nth-child(even) {
    grid-template-columns: 0.95fr 1.05fr;
}

.project-item:nth-child(even) .project-image {
    order: 2;
}

.project-item:nth-child(even) .project-content {
    order: 1;
}


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

@media (max-width: 900px) {

    .projects-hero {
        min-height: 600px;
    }

    .projects-hero .page-hero-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .projects-hero h1 {
        font-size: clamp(46px, 8vw, 68px);
    }

    .project-list {
        padding: 80px 0;
    }

    .project-item,
    .project-item:nth-child(even) {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 75px;

        margin-bottom: 75px;
    }

    .project-item:nth-child(even) .project-image {
        order: 1;
    }

    .project-item:nth-child(even) .project-content {
        order: 2;
    }

    .project-content {
        max-width: 100%;
    }

}


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

@media (max-width: 600px) {

    .projects-hero {
        min-height: 600px;

        background-position: center;
    }

    .projects-hero .page-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.84),
                rgba(0, 0, 0, 0.42)
            );
    }

    .projects-hero .page-hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .projects-hero h1 {
        font-size: 44px;

        line-height: 1;
    }

    .projects-hero p {
        font-size: 15px;

        line-height: 1.65;
    }

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

    .project-item,
    .project-item:nth-child(even) {
        gap: 30px;

        padding-bottom: 60px;

        margin-bottom: 60px;
    }

    .project-image {
        aspect-ratio: 4 / 3;
    }

    .project-content h2 {
        font-size: 36px;
    }

    .project-content p {
        font-size: 15px;
    }

}

/* =========================================================
   SERVICE NOTE — SPACE BEFORE FOOTER
========================================================= */

.service-note {
    padding-top: 80px;
    padding-bottom: 90px;
}

.service-note .btn {
    margin-top: 28px;
}

@media (max-width: 768px) {
    .service-note {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .service-note .btn {
        margin-top: 24px;
    }
}



/* 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);
}