:root {
            --dark: #111111;
            --dark-2: #181818;
            --light: #f6f5f1;
            --white: #ffffff;
            --muted: #777777;
            --line: #deddd8;
            --accent: #a7a99b;
            --max: 1380px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "DM Sans", sans-serif;
            color: var(--dark);
            background: var(--light);
            line-height: 1.6;
        }

        img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font-family: inherit;
        }

        .container {
            width: min(92%, var(--max));
            margin: auto;
        }

        /* ================= HEADER ================= */

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: .3s;
            color: white;
        }

        header.scrolled {
            background: rgba(17,17,17,.95);
            backdrop-filter: blur(15px);
        }

        .nav {
            height: 88px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: "Manrope", sans-serif;
            font-size: 25px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .logo span {
            font-weight: 400;
        }

        .menu {
            display: flex;
            align-items: center;
            gap: 38px;
        }

        .menu a {
            font-size: 14px;
            color: rgba(255,255,255,.85);
            transition: .25s;
        }

        .menu a:hover {
            color: white;
        }

        .nav-btn {
            padding: 13px 22px;
            background: white;
            color: #111 !important;
            border-radius: 50px;
            font-weight: 700;
        }

        .mobile-menu {
            display: none;
            font-size: 25px;
            cursor: pointer;
        }

/* ================= HERO CAROUSEL ================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: #555;
    color: #fff;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35,35,35,.82) 0%, rgba(55,55,55,.58) 42%, rgba(255,255,255,.08) 100%);
    z-index: 2;
}

.hero-slide .container {
    width: min(92%, 1380px);
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-slide .hero-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-42%);
    width: 850px;
    max-width: 850px;
    padding: 0 !important;
}

.hero-slide .eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    margin-bottom: 30px;
}

.hero-slide .hero-content h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(72px, 6.5vw, 105px);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -5px;
    color: #fff;
    width: 800px;
    max-width: 800px;
    margin: 0 0 38px;
}

.hero-slide .hero-content p {
    width: 650px;
    max-width: 650px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,.82);
    margin: 0 0 38px;
}

.hero-slide .buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-slide .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.hero-slide .btn-white {
    background: #fff;
    color: #111;
    border: 1px solid #fff;
}

.hero-slide .btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.55);
}

.hero-slide .btn:hover {
    transform: translateY(-2px);
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(0,0,0,.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    z-index: 20;
    transition: background .3s ease, color .3s ease, transform .3s ease, border-color .3s ease;
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

.hero-prev:hover,
.hero-next:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.hero-indicator {
    position: absolute;
    left: 50px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    font-size: 12px;
    letter-spacing: 2px;
}

.hero-line {
    width: 55px;
    height: 1px;
    background: rgba(255,255,255,.5);
}

/* ================= ABOUT SECTION ================= */

.grearth-about {
    background: #fff;
    padding: 130px 0;
    overflow: hidden;
}

.grearth-about-container {
    width: min(92%, 1380px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 90px;
    align-items: center;
}

.grearth-about-visual {
    position: relative;
    min-height: 650px;
    padding: 0 70px 80px 0;
}

.about-image-main {
    width: 88%;
    height: 590px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.about-image-main:hover img {
    transform: scale(1.03);
}

.about-image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 355px;
    height: 245px;
    overflow: hidden;
    border: 7px solid #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,.14);
    z-index: 4;
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-experience {
    position: absolute;
    left: -25px;
    bottom: 55px;
    width: 208px;
    height: 225px;
    background: #cba45a;
    color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    z-index: 6;
    box-shadow: 0 25px 55px rgba(0,0,0,.16);
}

.about-experience-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.about-experience-top i {
    font-size: 20px;
}

.about-experience-top span {
    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.about-experience strong {
    font-family: "Manrope", sans-serif;
    font-size: 58px;
    line-height: .9;
    font-weight: 800;
    margin-bottom: 18px;
}

.about-experience-label {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-image-caption {
    position: absolute;
    left: 15px;
    bottom: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 8;
}

.grearth-about-content {
    width: 100%;
    max-width: 680px;
    min-width: 0;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #b58c3e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.about-label span {
    width: 42px;
    height: 1px;
    background: #cba45a;
    display: block;
}

.about-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.02;
    letter-spacing: -3px;
    color: #111;
    margin: 0 0 35px;
    font-weight: 800;
}

.about-title strong {
    display: block;
    color: #cba45a;
    font-weight: 800;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 22px;
    max-width: 680px;
}

.about-features {
    border-top: 1px solid #e5e2dc;
    padding-top: 30px;
    margin-top: 35px;
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 45px;
    row-gap: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #cba45a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.feature-content h4 {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #171717;
    margin: 0 0 5px;
    font-weight: 800;
}

.feature-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #888;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 17px 27px;
    background: #111;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.about-button span {
    color: #cba45a;
    font-size: 20px;
    line-height: 1;
    transition: transform .3s ease;
}

.about-button:hover {
    background: #cba45a;
    color: #111;
    transform: translateY(-2px);
}

.about-button:hover span {
    color: #111;
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    .grearth-about-container {
        gap: 55px;
    }

    .grearth-about-visual {
        min-height: 580px;
        padding-right: 35px;
    }

    .about-image-main {
        height: 550px;
    }

    .about-image-small {
        width: 290px;
        height: 200px;
    }

    .about-experience {
        width: 175px;
        height: 195px;
        left: -10px;
    }

    .about-title {
        font-size: 48px;
    }
}

@media (max-width: 900px) {
    .grearth-about {
        padding: 90px 0;
    }

    .grearth-about-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .grearth-about-visual {
        min-height: 520px;
        padding-right: 45px;
        padding-bottom: 65px;
    }

    .about-image-main {
        width: 90%;
        height: 480px;
    }

    .about-image-small {
        width: 270px;
        height: 185px;
    }

    .grearth-about-content {
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .grearth-about {
        padding: 70px 0;
    }

    .grearth-about-container {
        width: 90%;
    }

    .grearth-about-visual {
        min-height: 430px;
        padding-right: 20px;
        padding-bottom: 55px;
    }

    .about-image-main {
        width: 94%;
        height: 390px;
    }

    .about-image-small {
        width: 175px;
        height: 125px;
        border-width: 4px;
    }

    .about-experience {
        left: 0;
        bottom: 0;
        width: 145px;
        height: 155px;
        padding: 18px;
    }

    .about-experience strong {
        font-size: 40px;
    }

    .about-experience-label {
        font-size: 10px;
    }

    .about-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .about-title {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* ================= STATS ================= */

        .stats {
            background: var(--dark);
            color: white;
            padding: 55px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
        }

        .stat {
            padding: 10px 35px;
            border-right: 1px solid rgba(255,255,255,.15);
        }

        .stat:last-child {
            border-right: none;
        }

        .stat strong {
            font-family: "Manrope";
            font-size: 30px;
            display: block;
            margin-bottom: 5px;
        }

        .stat span {
            color: #aaa;
            font-size: 13px;
        }

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

        .services {
            padding: 130px 0;
        }

        .section-heading {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 55px;
            gap: 30px;
        }

        .section-heading h2 {
            font-family: "Manrope";
            font-size: clamp(40px, 5vw, 70px);
            line-height: 1;
            letter-spacing: -3px;
            max-width: 700px;
        }

        .section-heading p {
            max-width: 430px;
            color: var(--muted);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 20px;
        }

        .service {
            position: relative;
            min-height: 460px;
            overflow: hidden;
            color: white;
            background: #222;
        }

        .service img {
            height: 100%;
            position: absolute;
            inset: 0;
            transition: .6s;
        }

        .service::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                transparent 20%,
                rgba(0,0,0,.82)
            );
        }

        .service:hover img {
            transform: scale(1.05);
        }

        .service-content {
            position: absolute;
            z-index: 2;
            left: 30px;
            right: 30px;
            bottom: 30px;
        }

        .service-number {
            font-size: 12px;
            opacity: .65;
            margin-bottom: 12px;
        }

        .service h3 {
            font-family: "Manrope";
            font-size: 28px;
            margin-bottom: 8px;
        }

        .service p {
            font-size: 14px;
            color: rgba(255,255,255,.75);
        }

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

        .projects {
            padding: 130px 0;
            background: #eae9e4;
        }

        .project-grid {
            display: grid;
            grid-template-columns: 1.3fr .7fr;
            gap: 20px;
        }

        .project {
            position: relative;
            overflow: hidden;
            min-height: 600px;
            background: #ddd;
        }

        .project.small {
            min-height: 290px;
        }

        .project img {
            height: 100%;
            transition: .6s;
        }

        .project:hover img {
            transform: scale(1.04);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: white;
            background: linear-gradient(
                transparent 35%,
                rgba(0,0,0,.75)
            );
        }

        .project-overlay h3 {
            font-family: "Manrope";
            font-size: 30px;
        }

        .project-side {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
        }

        /* ================= BENEFITS ================= */

        .benefits {
            padding: 95px 0;
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .benefit {
            padding: 28px 30px 30px 0;
            border-bottom: 1px solid var(--line);
        }

        .benefit:nth-child(3n+2),
        .benefit:nth-child(3n+3) {
            padding-left: 30px;
            border-left: 1px solid var(--line);
        }

        .benefit-number {
            font-size: 11px;
            color: var(--gold);
            margin-bottom: 16px;
            letter-spacing: .08em;
        }

        .benefit h3 {
            font-family: "Manrope";
            font-size: 21px;
            margin-bottom: 8px;
        }

        .benefit p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6;
            max-width: 320px;
        }

        /* ================= PROCESS ================= */

        .process {
            padding: 95px 0;
            background: var(--dark);
            color: white;
        }

        .process .section-label {
            color: #888;
        }

        .process h2 {
            font-family: "Manrope";
            font-size: clamp(40px,4.5vw,64px);
            letter-spacing: -3px;
            line-height: 1;
            margin: 20px 0 55px;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(5,1fr);
            gap: 0;
        }

        .process-item {
            padding: 20px 25px;
            border-left: 1px solid rgba(255,255,255,.18);
        }

        .process-item:first-child {
            border-left: none;
            padding-left: 0;
        }

        .process-item span {
            color: var(--gold);
            font-size: 11px;
            letter-spacing: .08em;
        }

        .process-item h3 {
            font-family: "Manrope";
            font-size: 20px;
            margin: 28px 0 10px;
        }

        .process-item p {
            color: #999;
            font-size: 14px;
            line-height: 1.6;
            max-width: 210px;
        }

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

        .cta {
            margin: 0 0 30px;
            padding: 100px 20px;
            background:
                linear-gradient(
                    rgba(0,0,0,.58),
                    rgba(0,0,0,.58)
                ),
                url("../images/cta.jpg") center/cover;
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-family: "Manrope";
            font-size: clamp(45px,6vw,78px);
            letter-spacing: -3px;
            line-height: .98;
            max-width: 900px;
            margin: 0 auto 25px;
        }

        .cta p {
            color: #ddd;
            max-width: 560px;
            margin: 0 auto 30px;
        }

        /* ================= FOOTER ================= */

        footer {
            background: var(--dark);
            color: white;
            padding: 75px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 50px;
            padding-bottom: 70px;
        }

        .footer-brand p {
            color: #888;
            max-width: 350px;
            margin-top: 20px;
        }

        .footer-col h4 {
            margin-bottom: 20px;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #777;
        }

        .footer-col a {
            display: block;
            margin-bottom: 10px;
            color: #bbb;
            font-size: 14px;
        }

        .footer-col a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.1);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 12px;
        }

        /* ================= WHATSAPP ================= */

        .whatsapp {
            position: fixed;
            right: 25px;
            bottom: 25px;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            z-index: 100;
            box-shadow: 0 8px 30px rgba(0,0,0,.2);
        }

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

        @media(max-width: 900px) {

            .menu {
                display: none;
                position: absolute;
                top: 88px;
                left: 0;
                width: 100%;
                background: #111;
                padding: 25px;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .menu.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero-content {
                padding-bottom: 70px;
            }

            .hero h1 {
                letter-spacing: -3px;
            }

            .intro-grid,
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stats-grid {
                grid-template-columns: repeat(2,1fr);
                gap: 30px 0;
            }

            .stat:nth-child(2) {
                border-right: none;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .service {
                min-height: 400px;
            }

            .project-grid {
                grid-template-columns: 1fr;
            }

            .project-side {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 1fr;
            }

            .project,
            .project.small {
                min-height: 400px;
            }

            .benefit-grid {
                grid-template-columns: 1fr;
            }

            .benefit:nth-child(3n+2),
            .benefit:nth-child(3n+3) {
                padding-left: 0;
                border-left: none;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .process-item,
            .process-item:first-child {
                border-left: none;
                border-bottom: 1px solid rgba(255,255,255,.15);
                padding: 30px 0;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .section-heading {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media(max-width: 600px) {

            .nav {
                height: 75px;
            }

            .menu {
                top: 75px;
            }

            .hero {
                min-height: 780px;
            }

            .hero-content {
                padding-top: 150px;
                padding-bottom: 55px;
            }

            .hero h1 {
                font-size: 54px;
                letter-spacing: -3px;
            }

            .hero p {
                font-size: 16px;
            }

            .intro,
            .services,
            .projects,
            .benefits,
            .process,
            .about {
                padding: 85px 0;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stat {
                padding: 10px 15px;
            }

            .project-side {
                grid-template-columns: 1fr;
            }

            .project,
            .project.small {
                min-height: 350px;
            }

            .about-image {
                min-height: 400px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
            }

            .cta {
                padding: 90px 20px;
            }

            .cta h2 {
                letter-spacing: -3px;
            }

            .whatsapp {
                width: 52px;
                height: 52px;
                right: 18px;
                bottom: 18px;
            }
        }
.brand-logo {
    display: flex;
    align-items: center;
    width: 155px;
}

.brand-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================= BRAND LOGO ================= */
.brand-logo { display:flex; align-items:center; width:155px; }
.brand-logo img { width:100%; height:auto; display:block; }

/* =========================================================
   GREARTH — EXPERTISE SECTION
   ========================================================= */

.expertise-section {
    position: relative;
    overflow: hidden;
    padding: 125px 0 120px;
    background:
        radial-gradient(circle at 50% 20%, rgba(203,164,90,.08), transparent 38%),
        #f8f6f1;
}

.expertise-container {
    width: min(94%, 1480px);
    margin: 0 auto;
}

.expertise-heading {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.expertise-label,
.services-label {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #555;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.expertise-label {
    justify-content: center;
}

.expertise-label span,
.services-label span {
    width: 65px;
    height: 1px;
    background: #cba45a;
}

.expertise-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
    color: #111;
}

.expertise-heading h2 strong {
    color: #cba45a;
}

.expertise-heading > p {
    max-width: 760px;
    margin: 25px auto 0;
    color: #686868;
    font-size: 17px;
    line-height: 1.7;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.expertise-card {
    padding: 0 28px;
    text-align: center;
    border-right: 1px solid #ddd8cd;
}

.expertise-card:first-child {
    padding-left: 10px;
}

.expertise-card:last-child {
    border-right: none;
    padding-right: 10px;
}

.expertise-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #cba45a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
}

.expertise-card h3 {
    margin: 0 0 12px;
    color: #111;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
}

.expertise-card > p {
    min-height: 82px;
    margin: 0 auto 24px;
    max-width: 310px;
    color: #666;
    font-size: 15px;
    line-height: 1.55;
}

.expertise-image {
    width: 100%;
    height: 285px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.expertise-card:hover .expertise-image img {
    transform: scale(1.04);
}


/* =========================================================
   GREARTH — SERVICES
   ========================================================= */

.greath-services {
    padding: 130px 0;
    background: #fff;
}

.greath-services-heading {
    align-items: flex-end;
}

.services-label {
    margin-bottom: 22px;
    color: #b58c3e;
}

.greath-services-heading h2 {
    margin: 0;
}

.greath-services-heading h2 strong {
    color: #cba45a;
}

.greath-services-heading > p {
    max-width: 470px;
}

.greath-services .service-grid {
    gap: 18px;
}

.greath-services .service {
    min-height: 520px;
    background: #191919;
}

.greath-services .service img {
    filter: brightness(.78);
    transition: transform .7s ease, filter .7s ease;
}

.greath-services .service:hover img {
    transform: scale(1.06);
    filter: brightness(.62);
}

.service-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 3;
}

.service-content > span {
    display: block;
    margin-bottom: 8px;
    color: #cba45a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-content h3 {
    margin: 0 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.05;
    color: #fff;
}

.service-content p {
    max-width: 300px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.5;
}

.service-content b {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #cba45a;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform .3s ease;
}

.service:hover .service-content b {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .expertise-card {
        padding: 0 18px;
    }

    .expertise-card h3 {
        font-size: 19px;
    }

    .expertise-image {
        height: 220px;
    }

    .grearth-services .service {
        min-height: 430px;
    }

}

@media (max-width: 900px) {

    .expertise-section {
        padding: 90px 0;
    }

    .expertise-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 55px;
    }

    .expertise-card:nth-child(2) {
        border-right: none;
    }

    .expertise-card:nth-child(3),
    .expertise-card:nth-child(4) {
        padding-top: 20px;
    }

    .grearth-services {
        padding: 90px 0;
    }

    .grearth-services-heading {
        display: block;
    }

    .grearth-services-heading > p {
        margin-top: 25px;
    }

    .grearth-services .service-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    .expertise-section {
        padding: 75px 0;
    }

    .expertise-heading {
        margin-bottom: 50px;
    }

    .expertise-heading h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .expertise-heading > p {
        font-size: 15px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .expertise-card,
    .expertise-card:first-child,
    .expertise-card:last-child {
        padding: 0 0 45px;
        border-right: none;
        border-bottom: 1px solid #ddd8cd;
    }

    .expertise-card:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .expertise-card > p {
        min-height: auto;
    }

    .expertise-image {
        height: 260px;
    }

    .grearth-services {
        padding: 75px 0;
    }

    .grearth-services .service-grid {
        grid-template-columns: 1fr;
    }

    .grearth-services .service {
        min-height: 430px;
    }

}

/* ===== SERVICES — COMPACT PREMIUM REDESIGN ===== */

.greath-services {
    padding: 100px 0;
    background: #f8f6f1;
}

.greath-services .section-heading {
    margin-bottom: 45px;
}

.greath-services .section-heading h2 {
    font-size: clamp(42px, 5vw, 68px);
}

.greath-services .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.greath-services .service {
    min-height: 270px;
    display: grid;
    grid-template-columns: 48% 52%;
    background: #fff;
    color: #111;
    overflow: hidden;
}

.greath-services .service img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.greath-services .service-content {
    position: relative;
    inset: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.greath-services .service-content span {
    color: #b58c3e;
    font-size: 12px;
    letter-spacing: 1px;
}

.greath-services .service-content h3 {
    font-size: 24px;
    color: #111;
    margin: 8px 0;
}

.greath-services .service-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.55;
    max-width: 240px;
}

.greath-services .service-content b {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #cba45a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.greath-services .service:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .greath-services .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .greath-services {
        padding: 70px 0;
    }

    .greath-services .service {
        grid-template-columns: 1fr;
    }

    .greath-services .service img {
        height: 220px;
    }

    .greath-services .service-content {
        min-height: 190px;
    }
}



/* ================= EXPERTISE SECTION ================= */

.expertise-section {
    background: #f7f5f0;
    padding: 120px 0;
    overflow: hidden;
}

.expertise-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 65px;
}

.expertise-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #b58c3e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.expertise-label span {
    width: 55px;
    height: 1px;
    background: #cba45a;
}

.expertise-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -3px;
    margin: 0 0 25px;
    color: #111;
}

.expertise-heading h2 strong {
    color: #cba45a;
}

.expertise-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.expertise-card {
    padding: 0 24px;
    text-align: center;
    border-right: 1px solid #ddd8ce;
}

.expertise-card:first-child {
    padding-left: 0;
}

.expertise-card:last-child {
    border-right: none;
    padding-right: 0;
}

.expertise-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #cba45a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.expertise-card h3 {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 12px;
    color: #111;
}

.expertise-card p {
    max-width: 280px;
    min-height: 72px;
    margin: 0 auto 25px;
    color: #777;
    font-size: 14px;
    line-height: 1.65;
}

.expertise-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.expertise-card:hover .expertise-image img {
    transform: scale(1.04);
}

@media (max-width: 1000px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    .expertise-card:nth-child(2) {
        border-right: none;
    }

    .expertise-card:nth-child(3),
    .expertise-card:nth-child(4) {
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    .expertise-section {
        padding: 80px 0;
    }

    .expertise-heading {
        margin-bottom: 45px;
    }

    .expertise-heading h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .expertise-card {
        border-right: none;
        border-bottom: 1px solid #ddd8ce;
        padding: 0 0 40px;
    }

    .expertise-card:last-child {
        border-bottom: none;
    }

    .expertise-card p {
        min-height: auto;
    }

    .expertise-image {
        height: 200px;
    }
}

/* ================= SERVICES HEADING — SINGLE LINE ================= */

.services .section-heading h2 {
    max-width: none;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .services .section-heading h2 {
        white-space: normal;
    }
}

/* ================= INNER PAGES ================= */

.inner-page {
    background: #fff;
}

.inner-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        url("../images/project-main.jpg") center/cover no-repeat;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.82) 0%,
        rgba(10, 10, 10, 0.58) 55%,
        rgba(10, 10, 10, 0.35) 100%
    );
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero-content {
    max-width: 850px;
    padding: 100px 0 70px;
}

.inner-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: #cba45a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.inner-eyebrow span {
    width: 50px;
    height: 1px;
    background: #cba45a;
}

.inner-hero h1 {
    margin: 0 0 28px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -4px;
    max-width: 850px;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.inner-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.inner-breadcrumb span {
    color: #cba45a;
}

/* Inner content */

.inner-content-section {
    padding: 110px 0;
}

.inner-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.inner-content-image {
    position: relative;
    overflow: hidden;
}

.inner-content-image img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.inner-content-text {
    max-width: 620px;
}

.inner-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: #b58c3e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.inner-label span {
    width: 45px;
    height: 1px;
    background: #cba45a;
}

.inner-content-text h2 {
    margin: 0 0 24px;
    color: #111;
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.inner-content-text h2 strong {
    color: #cba45a;
    font-weight: inherit;
}

.inner-content-text p {
    margin: 0 0 18px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Feature cards */

.inner-features-section {
    padding: 100px 0;
    background: #f7f5f0;
}

.inner-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.inner-section-heading .inner-label {
    justify-content: center;
}

.inner-section-heading h2 {
    margin: 0 0 18px;
    color: #111;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -2.5px;
}

.inner-section-heading p {
    margin: 0 auto;
    color: #777;
    line-height: 1.7;
}

.inner-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ddd8ce;
}

.inner-feature-card {
    padding: 42px 34px;
    background: #f7f5f0;
}

.inner-feature-number {
    margin-bottom: 30px;
    color: #cba45a;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.inner-feature-card h3 {
    margin: 0 0 14px;
    color: #111;
    font-family: "Manrope", sans-serif;
    font-size: 21px;
}

.inner-feature-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}

/* Dark CTA */

.inner-cta {
    padding: 100px 0;
    background: #111;
    color: #fff;
}

.inner-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.inner-cta h2 {
    margin: 0 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -3px;
}

.inner-cta p {
    margin: 0;
    color: rgba(255,255,255,.65);
}

.inner-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 28px;
    background: #cba45a;
    color: #111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: .3s ease;
}

.inner-cta-button:hover {
    background: #fff;
}

/* Responsive */

@media (max-width: 900px) {
    .inner-hero {
        min-height: 430px;
    }

    .inner-hero-content {
        padding: 90px 0 55px;
    }

    .inner-hero h1 {
        letter-spacing: -2px;
    }

    .inner-content-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .inner-content-image img {
        height: 420px;
    }

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

    .inner-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .inner-content-section,
    .inner-features-section,
    .inner-cta {
        padding: 70px 0;
    }

    .inner-features-grid {
        grid-template-columns: 1fr;
    }

    .inner-feature-card {
        padding: 32px 25px;
    }

    .inner-content-image img {
        height: 350px;
    }

    .inner-hero h1 {
        font-size: 48px;
    }
}


/* ================= PREMIUM 4-COLUMN FOOTER ================= */

.site-footer {
    background: #0d0d0d;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 50%, rgba(203,164,90,.08), transparent 28%),
        radial-gradient(circle at 100% 20%, rgba(203,164,90,.05), transparent 30%);
    pointer-events: none;
}

.site-footer .footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 1.15fr 1fr;
    gap: 0;
    padding: 75px 0 65px;
}

.site-footer .footer-column {
    min-width: 0;
    padding: 0 42px;
    border-right: 1px solid rgba(255,255,255,.16);
}

.site-footer .footer-column:first-child {
    padding-left: 0;
}

.site-footer .footer-column:last-child {
    padding-right: 0;
    border-right: none;
}

.footer-logo {
    display: block;
    width: 235px;
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.footer-brand p {
    max-width: 310px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(203,164,90,.75);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s ease;
}

.footer-socials a:hover {
    background: #cba45a;
    color: #111;
    border-color: #cba45a;
}

.site-footer h4 {
    margin: 0;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-gold-line {
    width: 42px;
    height: 3px;
    margin: 14px 0 27px;
    background: #cba45a;
}

.site-footer .footer-column > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 17px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: .3s ease;
}

.site-footer .footer-column > a span {
    color: #cba45a;
    font-size: 20px;
    line-height: 1;
}

.site-footer .footer-column > a:hover {
    color: #cba45a;
}

.footer-sister .sister-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 105px;
    margin-bottom: 18px;
    padding: 18px;
    background: #fff;
    color: #15154a;
}

.footer-sister .sister-logo-text strong {
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: .9;
    letter-spacing: -2px;
}

.footer-sister .sister-logo-text span {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #111;
}

.footer-sister h5 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.footer-sister p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.7;
}

.footer-contact {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
}

.footer-contact i {
    width: 24px;
    flex: 0 0 24px;
    color: #cba45a;
    font-size: 17px;
    text-align: center;
}

.footer-contact span {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 2px solid #cba45a;
}

.footer-bottom-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

.footer-bottom a {
    color: #cba45a;
    text-decoration: none;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom a i {
    margin-left: 6px;
    font-size: 10px;
}

/* Footer responsive */

@media (max-width: 1100px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 55px;
    }

    .site-footer .footer-column:nth-child(2) {
        border-right: none;
    }

    .site-footer .footer-column:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 650px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        padding: 55px 0 45px;
        row-gap: 40px;
    }

    .site-footer .footer-column,
    .site-footer .footer-column:first-child,
    .site-footer .footer-column:last-child {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.12);
        padding-bottom: 35px;
    }

    .site-footer .footer-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-logo {
        width: 210px;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* ================= FOOTER BACKGROUND + SISTER LOGO ================= */

.site-footer {
    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, .97) 0%,
            rgba(8, 8, 8, .92) 45%,
            rgba(8, 8, 8, .88) 100%
        ),
        url("../images/bg-footer.jpg") center center / cover no-repeat;
}

.sister-logo-image {
    width: 100%;
    max-width: 330px;
    height: 105px;
    margin-bottom: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sister-logo-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 650px) {
    .sister-logo-image {
        max-width: 300px;
    }
}


/* ================= FOOTER MARBLE BACKGROUND FIX ================= */

.site-footer {
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, .72) 0%,
            rgba(5, 5, 5, .62) 50%,
            rgba(5, 5, 5, .70) 100%
        ),
        url("../images/bg-footer.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.site-footer::before {
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.10),
            rgba(0,0,0,.20)
        );
}


/* ================= HEADER SOLUTIONS DROPDOWN ================= */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 0;
}

.nav-dropdown-toggle i {
    font-size: 9px;
    transition: transform .25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 270px;
    padding: 10px 0;
    background: #111;
    border: 1px solid rgba(203,164,90,.35);
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    z-index: 999;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 13px 20px;
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
    transition: .25s ease;
}

.nav-dropdown-menu a:hover {
    color: #cba45a;
    background: rgba(203,164,90,.08);
    padding-left: 25px;
}

/* Keep dropdown above the mobile menu */
@media (max-width: 900px) {
    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin: 0;
        padding: 4px 0 8px 15px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        transform: none;
    }

    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding: 9px 0;
    }

    .nav-dropdown-menu a:hover {
        padding-left: 5px;
        background: transparent;
    }
}


/* Fix Solutions dropdown hover gap */
.nav-dropdown-menu {
    top: 100%;
}


/* ================= PROJECTS MORE BUTTON ================= */

.projects-more {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.projects-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border: 1px solid var(--dark);
    color: var(--dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .25s ease;
}

.projects-more-btn span {
    font-size: 18px;
    line-height: 1;
    transition: transform .25s ease;
}

.projects-more-btn:hover {
    background: var(--dark);
    color: white;
}

.projects-more-btn:hover span {
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .projects-more {
        margin-top: 30px;
    }

    .projects-more-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Grearth Gold Accent */
.process .section-label,
.process-item span {
    color: #D4AF37;
}

.process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-item {
    min-width: 0;
}

.process h2 span {
    color: #D4AF37;
}

/* CTA Button Focus */
.cta .buttons {
    gap: 16px;
    margin-top: 8px;
}

.cta .btn {
    min-width: 170px;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    border-radius: 2px;
    transition: all .25s ease;
}

.cta .btn-white {
    background: #D4AF37;
    border: 1px solid #D4AF37;
    color: #111;
    box-shadow: 0 8px 25px rgba(212, 175, 55, .28);
}

.cta .btn-white:hover {
    background: #F1D27A;
    border-color: #F1D27A;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, .38);
}

.cta .btn-outline {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    background: rgba(0, 0, 0, .15);
}

.cta .btn-outline:hover {
    background: #D4AF37;
    color: #111;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .cta .buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta .btn {
        width: 100%;
    }
}

/* Footer polish */
.cta {
    margin-bottom: 0;
}

.site-footer {
    margin-top: 0;
}

.footer-grid {
    align-items: start;
}

.sister-logo-image {
    margin-top: 24px;
}

.sister-logo-image img {
    display: block;
    width: 210px;
    height: auto;
}

.site-footer .footer-column {
    min-width: 0;
}

.site-footer .footer-column p {
    max-width: 300px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   HOMEPAGE PROJECTS SLIDER
========================================= */

.projects-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
}

.projects-slider-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 24px;
    scroll-behavior: smooth;
}

.projects-slider-track::-webkit-scrollbar {
    display: none;
}

.project-slide {
    position: relative;
    flex: 0 0 clamp(260px, 23vw, 340px);
    height: 410px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #ddd;
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.project-slide:hover img {
    transform: scale(1.035);
}

.project-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 20%,
            rgba(0,0,0,.18) 45%,
            rgba(0,0,0,.88) 100%
        );
}

.project-slide-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: #fff;
    z-index: 2;
}

.project-slide-content .section-label {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 10px;
}

.project-slide-content h3 {
    font-family: "Manrope";
    font-size: 29px;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0 0 14px;
    color: #fff;
}

.project-slide-content p {
    max-width: 280px;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 18px;
}

.project-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,.7);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: all .25s ease;
}

.project-view-btn span {
    font-size: 17px;
    line-height: 1;
    transition: transform .25s ease;
}

.project-view-btn:hover {
    background: #fff;
    color: var(--dark);
}

.project-view-btn:hover span {
    transform: translateX(4px);
}

.projects-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 22px;
}

.project-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--dark);
    font-size: 17px;
    cursor: pointer;
    transition: all .25s ease;
}

.project-arrow:hover {
    background: var(--dark);
    color: #fff;
}

.project-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.project-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    background: #d0d0d0;
    padding: 0;
    cursor: pointer;
    transition: all .25s ease;
}

.project-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--gold);
}

.projects-slider + .projects-more {
    margin-top: 30px;
}

@media (max-width: 1100px) {

    .project-slide {
        flex-basis: 28vw;
    }

}

@media (max-width: 900px) {

    .projects-slider-track {
        padding: 0 20px;
        gap: 15px;
    }

    .project-slide {
        flex-basis: 42vw;
        height: 390px;
    }

}

@media (max-width: 600px) {

    .projects-slider {
        margin-top: 30px;
    }

    .projects-slider-track {
        padding: 0 16px;
        gap: 12px;
    }

    .project-slide {
        flex-basis: 78vw;
        height: 380px;
    }

    .project-slide-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .project-slide-content h3 {
        font-size: 28px;
    }

    .projects-slider-controls {
        margin-top: 18px;
    }

    .project-arrow {
        width: 38px;
        height: 38px;
    }

}

/* =========================================
   PROJECT DETAIL PAGE
========================================= */

.project-detail {
    background: #fff;
}

.project-detail-hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: #111;
}

.project-detail-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-detail-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.35) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.88) 100%
        );
}

.project-detail-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    color: #fff;
}

.project-detail-hero-content .section-label {
    color: var(--gold);
    margin-bottom: 16px;
}

.project-detail-hero-content h1 {
    font-family: "Manrope";
    font-size: clamp(45px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
    margin: 0 0 15px;
    color: #fff;
}

.project-detail-hero-content p {
    margin: 0;
    color: rgba(255,255,255,.8);
    font-size: 15px;
}

.project-detail-content {
    padding: 100px 0;
}

.project-detail-intro {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 75px;
}

.project-detail-intro h2 {
    font-family: "Manrope";
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1;
    letter-spacing: -2px;
    margin: 18px 0 0;
}

.project-detail-intro p,
.project-detail-intro > div:last-child {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.project-detail-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.project-gallery-item {
    overflow: hidden;
    background: #eee;
}

.project-gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {

    .project-detail-hero {
        height: 520px;
    }

    .project-detail-hero-content {
        bottom: 50px;
    }

    .project-detail-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

@media (max-width: 600px) {

    .project-detail-hero {
        height: 430px;
    }

    .project-detail-hero-content {
        bottom: 30px;
    }

    .project-detail-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .project-detail-content {
        padding: 70px 0;
    }

    .project-detail-gallery {
        grid-template-columns: 1fr;
    }

}

