/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    background: #f0f2f1;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.hero h1 {
    font: 800 clamp(48px, 6.2vw, 82px)/.98 Oswald, sans-serif;
    letter-spacing: -.045em;
    margin: 18px 0 25px;
    max-width: 800px;
}

.hero p {
    color: #5d696f;
    font-size: 17px;
    max-width: 630px;
}

.hero-actions {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 34px;
}

.hero-link,
.text-link {
    font-size: 13px;
    font-weight: 800;
}

.hero-link span,
.text-link span {
    color: #b58e47;
    margin-left: 6px;
}


/* =========================================================
   HERO VISUAL & BLUEPRINT
========================================================= */

.hero-visual {
    min-height: 440px;
    background: linear-gradient(145deg, #253239, #10171a);
    position: relative;
    overflow: hidden;
}

.blueprint {
    position: absolute;
    inset: 40px;
    border: 1px solid #ffffff25;
    padding: 35px;
    color: #fff;
}

.blueprint > span {
    color: #c6a15b;
    font: 800 12px Oswald;
}

.blueprint strong {
    position: absolute;
    bottom: 34px;
    left: 35px;
    font: 800 clamp(34px, 4vw, 58px)/.9 Oswald;
    letter-spacing: -.04em;
}

.blueprint-lines {
    position: absolute;
    inset: 20% 10%;
    background: 
        linear-gradient(90deg, transparent 49.7%, #ffffff22 50%, transparent 50.3%),
        linear-gradient(0deg, transparent 49.7%, #ffffff22 50%, transparent 50.3%);
    background-size: 80px 80px;
    transform: rotate(-12deg);
    border: 1px solid #ffffff25;
}


/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {
    min-height: 690px;
    position: relative;
    color: #fff;
    overflow: hidden;
    background: #172126;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider-content {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: flex;
    align-items: center;
}

.hero-slider .hero-copy {
    max-width: 780px;
    padding-bottom: 10px;
}

.hero-slider h1 {
    font: 800 clamp(48px, 6.2vw, 82px)/.98 Oswald, sans-serif;
    letter-spacing: -.045em;
    margin: 18px 0 25px;
    max-width: 800px;
}

.hero-slider p {
    color: #e0e6e7;
    font-size: 17px;
    max-width: 630px;
}

.hero-slider .hero-link {
    color: #fff;
}

.hero-counter {
    position: absolute;
    right: 30px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 14px;
    font: 800 12px Oswald;
}

.hero-counter i {
    display: block;
    width: 90px;
    height: 1px;
    background: #ffffff70;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.intro {
    padding: 110px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.intro h2,
.section-head h2,
.about-grid h2,
.values h2 {
    font: 800 clamp(34px, 4vw, 54px)/1.08 Oswald;
    letter-spacing: -.035em;
    margin: 15px 0;
}

.intro h2 em {
    font-style: normal;
    color: #9b7b3e;
}

.lead {
    font-size: 18px;
    color: #445157;
}

.intro p:not(.lead) {
    color: #718087;
    font-size: 14px;
}

.intro .text-link {
    display: inline-block;
    margin-top: 16px;
}


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

.services-preview {
    background: #f4f6f5;
    padding: 100px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 42px;
}

.section-head h2 {
    margin-bottom: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d9dfdf;
}

.service-grid article {
    padding: 28px 22px 28px 0;
    border-right: 1px solid #d9dfdf;
}

.service-grid article + article {
    padding-left: 22px;
}

.service-grid h3 {
    font: 700 20px Oswald;
    margin: 35px 0 12px;
}

.service-grid p {
    font-size: 13px;
    color: #69767b;
    min-height: 95px;
}

.service-grid a {
    font-size: 12px;
    font-weight: 800;
}


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

.stats {
    background: #172026;
    color: #fff;
}

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

.stats-grid div {
    padding: 38px 25px;
    border-right: 1px solid #ffffff15;
    display: flex;
    gap: 16px;
    align-items: center;
}

.stats-grid strong {
    font: 800 30px Oswald;
    color: #c6a15b;
}

.stats-grid span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #aab4b7;
}


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

.projects-preview {
    padding: 105px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 16px;
}

.project-card {
    min-height: 430px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background: linear-gradient(160deg, #556269, #151e22);
    overflow: hidden;
}

.project-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #ffffff10, transparent 35%, #0009);
}

.project-two {
    background: linear-gradient(160deg, #74736d, #222725);
}

.project-three {
    background: linear-gradient(160deg, #8b8c83, #202421);
}

.project-card div {
    position: relative;
    color: #fff;
}

.project-card span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #d9bb7e;
}

.project-card h3 {
    font: 700 22px Oswald;
    margin: 8px 0;
}


/* =========================================================
   GALLERY PREVIEW
========================================================= */

.gallery-preview {
    padding: 105px 0;
    background: #f4f6f5;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 16px;
}

.home-gallery-card {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
}

.home-gallery-card span {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #e0c68e;
}

.home-gallery-card strong {
    font: 700 22px Oswald;
    margin-top: 7px;
}


/* =========================================================
   CALL TO ACTION (CTA)
========================================================= */

.cta {
    background: #b18b4c;
    color: #fff;
    padding: 75px 0;
}

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

.cta span {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fce8bd;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    
    /* Smooth animation setup */
    display: inline-block;
    transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
}

/* Professional Hover State */
.cta span:hover {
    color: #fce8bd; /* Warm gold tint matching your branding */
    transform: translateY(-2px); /* Subtle premium lift */
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 0 8px rgba(252, 232, 189, 0.3); /* Soft ambient glow */
}

/* =========================================================
   MOBILE RESPONSIVE ADJUSTMENTS
========================================================= */

/* Tablet (Max Width: 900px) */
@media (max-width: 900px) {
    .cta span {
        font-size: 19px;
    }
}

/* Mobile Devices (Max Width: 600px) */
@media (max-width: 600px) {
    .cta span {
        font-size: 16px; /* Auto-scaled down to prevent text overflow */
        line-height: 1.4;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }
}

.btn-light i {
    font-size: 13px;
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* Optional Pro Hover Movement */
.btn-light:hover i {
    transform: translate(2px, -2px); /* Moves arrow slightly up and right on hover */
}


.cta h2 {
    font: 800 clamp(34px, 4vw, 55px)/1.05 Oswald;
    margin: 14px 0 0;
    letter-spacing: -.04em;
}


/* =========================================================
   TABLET RESPONSIVE (MAX-WIDTH: 900PX)
========================================================= */

@media (max-width: 900px) {
    .hero-inner,
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-slider,
    .hero-slider-content {
        min-height: 600px;
    }

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

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

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

    .project-one {
        grid-column: 1 / -1;
    }

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

    .home-gallery-card:first-child {
        grid-column: 1 / -1;
    }

    .cta-inner {
        gap: 30px;
    }
}


/* =========================================================
   MOBILE RESPONSIVE (MAX-WIDTH: 600PX)
========================================================= */

@media (max-width: 600px) {
    .hero h1,
    .hero-slider h1 {
        font-size: 48px;
    }

    .hero-actions,
    .section-head,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-slider,
    .hero-slider-content {
        min-height: 620px;
    }

    .hero-counter {
        right: 20px;
        bottom: 25px;
    }

    .intro,
    .services-preview,
    .projects-preview {
        padding: 75px 0;
    }

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

    .service-grid article,
    .service-grid article + article {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid #d9dfdf;
    }

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

    .project-one,
    .home-gallery-card:first-child {
        grid-column: auto;
    }

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

    .stats-grid div {
        padding: 25px 10px;
    }

    .stats-grid strong {
        font-size: 22px;
    }

    .project-card {
        min-height: 320px;
    }
}


/* =========================================================
   ICON HOVER ANIMATIONS
========================================================= */

/* General button & text link icons transition */
.btn i,
.text-link i,
.hero-link i,
.service-grid article a i {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.85em;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Diagonal Arrow Hover (Up & Right) */
.btn:hover i.fa-arrow-up-right-from-square,
.text-link:hover i.fa-arrow-up-right-from-square {
    transform: translate(3px, -3px);
}

/* 2. Standard Right Arrow Hover (Slide Right) */
.hero-link:hover i.fa-arrow-right,
.service-grid article a:hover i.fa-arrow-right {
    transform: translateX(5px);
}

/* 3. Special CTA Button Hover (Lift + Arrow Diagonal Push) */
.btn-light {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-light:hover i {
    transform: translate(3px, -3px);
}