/* ==================================================
   SHULAB PROJECT PAGE
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: #171717;
    font-family: "Manrope", sans-serif;
}

button,
input,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ==================================================
   GLOBAL
================================================== */

.shProjects96__container {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
}

.shProjects96__eyebrow {
    display: block;
    color: #966348;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shProjects96__shortLine {
    display: block;
    width: 27px;
    height: 2px;
    margin-top: 10px;
    background: #9a674a;
}


/* ==================================================
   HERO
================================================== */

.shProjects96__hero {
    padding: 52px 0 42px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(154, 103, 74, 0.04),
            transparent 30%
        ),
        #faf9f7;
}

.shProjects96__heroGrid {
    min-height: 220px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.shProjects96__heroContent h1 {
    margin-top: 17px;
    color: #151515;
    font-size: clamp(38px, 4vw, 57px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -2.6px;
}

.shProjects96__heroContent p {
    max-width: 520px;
    margin-top: 18px;
    color: #65615e;
    font-size: 14px;
    line-height: 1.75;
}

.shProjects96__heroSketch {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.shProjects96__heroSketch svg {
    width: 100%;
    max-width: 650px;
    height: auto;
    color: #a19b95;
}


/* ==================================================
   PROJECT LISTING
================================================== */

.shProjects96__listing {
    padding: 46px 0 65px;
    background: #ffffff;
}

.shProjects96__listingGrid {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 35px;
    align-items: start;
}


/* ==================================================
   LEFT BANNER
================================================== */

.shProjects96__sideBanner {
    min-height: 650px;
    position: sticky;
    top: 25px;
    overflow: hidden;
    background: #26211e;
}

.shProjects96__sideBanner > img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.shProjects96__bannerOverlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(22, 17, 14, 0.08) 5%,
            rgba(22, 17, 14, 0.82) 100%
        );
}

.shProjects96__bannerContent {
    position: absolute;
    right: 25px;
    bottom: 30px;
    left: 25px;
    z-index: 2;
    color: #ffffff;
}

.shProjects96__bannerContent > span {
    display: block;
    margin-bottom: 12px;
    color: #e6c7b3;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.shProjects96__bannerContent h2 {
    font-size: 27px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1px;
}

.shProjects96__bannerContent p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.65;
}

.shProjects96__bannerContent a {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: 0.3s ease;
}

.shProjects96__bannerContent a:hover {
    color: #171412;
    background: #ffffff;
}

.shProjects96__bannerContent a svg {
    width: 15px;
    height: 15px;
}


/* ==================================================
   TOOLBAR
================================================== */

.shProjects96__toolbar {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
}

.shProjects96__showingText {
    color: #77716d;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shProjects96__showingText strong {
    color: #292522;
    font-weight: 600;
}

.shProjects96__sortWrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shProjects96__sortWrap label {
    color: #7b746f;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.shProjects96__sortWrap select {
    min-width: 150px;
    height: 38px;
    padding: 0 35px 0 13px;
    border: 1px solid #ddd7d1;
    outline: none;
    color: #625c58;
    font-size: 11px;
    background: #ffffff;
    cursor: pointer;
}


/* ==================================================
   PROJECT CARDS
================================================== */

.shProjects96__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 18px;
}

.shProjects96__card {
    overflow: hidden;
    border: 1px solid #e3ded9;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.shProjects96__card:hover {
    border-color: rgba(154, 103, 74, 0.45);
    box-shadow: 0 15px 35px rgba(46, 32, 24, 0.08);
    transform: translateY(-5px);
}

.shProjects96__cardImage {
    height: 230px;
    position: relative;
    overflow: hidden;
    background: #eeeae6;
}

.shProjects96__cardImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.shProjects96__card:hover .shProjects96__cardImage img {
    transform: scale(1.055);
}

.shProjects96__cardContent {
    padding: 16px 15px 15px;
}

.shProjects96__cardCategory {
    display: block;
    margin-bottom: 9px;
    color: #99674b;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.shProjects96__cardContent h3 {
    color: #1c1a18;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

.shProjects96__cardBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 13px;
}

.shProjects96__location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #77716d;
    font-size: 11px;
}

.shProjects96__location svg {
    width: 12px;
    height: 12px;
    color: #9a674a;
}

.shProjects96__cardArrow {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 0;
    color: #99674b;
    background: transparent;
    cursor: pointer;
}

.shProjects96__cardArrow svg {
    width: 15px;
    height: 15px;
}


/* ==================================================
   PAGINATION
================================================== */

.shProjects96__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
}

.shProjects96__pagination > span {
    color: #716b67;
    font-size: 11px;
    letter-spacing: 0.4px;
}

.shProjects96__pageButton {
    min-width: 115px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #b88a6d;
    color: #8d6047;
    background: transparent;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.shProjects96__pageButton:hover:not(:disabled) {
    color: #ffffff;
    background: #966348;
}

.shProjects96__pageButton:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.shProjects96__pageButton svg {
    width: 15px;
    height: 15px;
}


/* ==================================================
   TRUST
================================================== */

.shProjects96__trust {
    padding: 0 0 65px;
    background: #ffffff;
}

.shProjects96__trustBox {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    padding: 42px 35px;
    background:
        linear-gradient(
            120deg,
            #faf7f3,
            #f8f6f3
        );
}

.shProjects96__trustIntro {
    padding-right: 35px;
}



.shProjects96__trustIntro h2 {
    margin-top: 15px;
    color: #1b1917;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.shProjects96__trustIntro p {
    max-width: 270px;
    margin-top: 15px;
    color: #706965;
    font-size: 13px;
    line-height: 1.75;
}

.shProjects96__trustIntro a,
.shProjects96__processIntro a {
    width: fit-content;
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    padding: 0 16px;
    border: 1px solid #b88a6d;
    color: #8e6047;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: 0.3s ease;
}

.shProjects96__trustIntro a:hover,
.shProjects96__processIntro a:hover {
    color: #ffffff;
    background: #966348;
}

.shProjects96__trustIntro a svg,
.shProjects96__processIntro a svg {
    width: 14px;
    height: 14px;
}

.shProjects96__trustItem {
    padding: 0 25px;
    border-left: 1px solid #ded7d0;
}

.shProjects96__trustIcon {
    min-height: 38px;
    color: #a2765d;
}

.shProjects96__trustIcon svg {
    width: 27px;
    height: 27px;
    stroke-width: 1.3;
}

.shProjects96__trustItem > strong {
    display: block;
    margin-top: 11px;
    color: #171513;
    font-size: 31px;
    font-weight: 500;
    line-height: 1;
}

.shProjects96__trustItem h3 {
    margin-top: 9px;
    color: #37322f;
    font-size: 11px;
    font-weight: 600;
}

.shProjects96__trustItem p {
    margin-top: 11px;
    color: #756e69;
    font-size: 13px;
    line-height: 1.65;
}


/* ==================================================
   PROCESS
================================================== */

.shProjects96__process {
    padding: 0 0 75px;
    background: #ffffff;
}

.shProjects96__processGrid {
    display: grid;
    grid-template-columns: 275px minmax(0, 1fr);
    gap: 55px;
    align-items: start;
}

.shProjects96__processIntro h2 {
    margin-top: 15px;
    color: #1c1917;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.shProjects96__processIntro p {
    margin-top: 14px;
    color: #746d68;
    font-size: 13px;
    line-height: 1.75;
}

.shProjects96__processSteps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shProjects96__processCard {
    min-width: 0;
    padding-right: 18px;
}

.shProjects96__processTop {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.shProjects96__processIcon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #9b6c51;
    background: #faf6f2;
}

.shProjects96__processIcon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.35;
}

.shProjects96__processTop > span {
    width: 100%;
    height: 1px;
    position: relative;
    background: #d8ccc3;
}

.shProjects96__processTop > span::before {
    width: 4px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    border-radius: 50%;
    background: #9a674a;
    transform: translate(-50%, -50%);
}

.shProjects96__processCard small {
    color: #5e5752;
    font-size: 13px;
    font-weight: 600;
}

.shProjects96__processCard h3 {
    margin-top: 7px;
    color: #26221f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.shProjects96__processCard p {
    margin-top: 8px;
    color: #77706c;
    font-size: 11px;
    line-height: 1.65;
}


/* ==================================================
   STATIC PROJECT GALLERY
================================================== */

.shProjects96__gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.shProjects96__galleryItem {
    height: 310px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e3ded9;
    background: #eeeae6;
    cursor: pointer;
}

.shProjects96__galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.shProjects96__galleryOverlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 22px;
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            rgba(18, 15, 13, 0.02) 30%,
            rgba(18, 15, 13, 0.82) 100%
        );
    transition: background 0.35s ease;
}

.shProjects96__galleryOverlay span {
    display: block;
    margin-bottom: 8px;
    color: #e8c5ae;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.shProjects96__galleryOverlay h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

.shProjects96__galleryItem:hover img {
    transform: scale(1.07);
}

.shProjects96__galleryItem:hover .shProjects96__galleryOverlay {
    background:
        linear-gradient(
            180deg,
            rgba(18, 15, 13, 0.08) 20%,
            rgba(18, 15, 13, 0.9) 100%
        );
}


/* Tablet */

@media (max-width: 1100px) {

    .shProjects96__gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* Small tablet */

@media (max-width: 850px) {

    .shProjects96__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shProjects96__galleryItem {
        height: 330px;
    }

}


/* Mobile */

@media (max-width: 550px) {

    .shProjects96__gallery {
        grid-template-columns: 1fr;
    }

    .shProjects96__galleryItem {
        height: 380px;
    }

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1150px) {

    .shProjects96__listingGrid {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 25px;
    }

    .shProjects96__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shProjects96__trustBox {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 0;
    }

    .shProjects96__trustIntro {
        grid-column: 1 / -1;
    }

    .shProjects96__processGrid {
        grid-template-columns: 1fr;
    }

}


/* ==================================================
   SMALL TABLET
================================================== */

@media (max-width: 900px) {

    .shProjects96__heroGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shProjects96__heroSketch {
        justify-content: center;
    }

    .shProjects96__heroSketch svg {
        max-width: 580px;
    }

    .shProjects96__listingGrid {
        grid-template-columns: 1fr;
    }

    .shProjects96__sideBanner {
        min-height: 360px;
        position: relative;
        top: auto;
    }

    .shProjects96__sideBanner > img {
        height: 360px;
    }

    .shProjects96__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shProjects96__trustBox {
        grid-template-columns: repeat(2, 1fr);
    }

    .shProjects96__trustItem:nth-of-type(2n) {
        border-left: 0;
    }

    .shProjects96__processSteps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 0;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .shProjects96__container {
        width: min(100% - 28px, 1350px);
    }

    .shProjects96__hero {
        padding: 42px 0 28px;
    }

    .shProjects96__heroGrid {
        min-height: auto;
    }

    .shProjects96__heroContent h1 {
        font-size: 34px;
        letter-spacing: -1.6px;
    }

    .shProjects96__heroContent p {
        font-size: 14px;
    }

    .shProjects96__listing {
        padding: 30px 0 50px;
    }

    .shProjects96__toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .shProjects96__sortWrap {
        width: 100%;
        justify-content: space-between;
    }

    .shProjects96__sortWrap select {
        flex: 1;
    }

    .shProjects96__cards {
        grid-template-columns: 1fr;
    }

    .shProjects96__cardImage {
        height: 280px;
    }

    .shProjects96__pagination {
        gap: 10px;
        justify-content: space-between;
    }

    .shProjects96__pagination > span {
        display: none;
    }

    .shProjects96__pageButton {
        width: calc(50% - 5px);
    }

    .shProjects96__trustBox {
        grid-template-columns: 1fr;
        padding: 32px 22px;
    }

    .shProjects96__trustIntro {
        padding-right: 0;
    }

    .shProjects96__trustItem,
    .shProjects96__trustItem:nth-of-type(2n) {
        padding: 24px 0 0;
        border-top: 1px solid #ded7d0;
        border-left: 0;
    }

    .shProjects96__processSteps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .shProjects96__processTop > span {
        display: none;
    }

}

/* ==================================================
   PROJECT CTA BANNER
================================================== */

.shProjectCta72 {
    width: 100%;
    padding: 0 0 65px;
    background: #ffffff;
}

.shProjectCta72__container {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
}

.shProjectCta72__banner {
    min-height: 145px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    padding: 30px 38px;

    border-radius: 5px;

    background-image:
        linear-gradient(
            90deg,
            rgba(23, 19, 16, 0.96) 0%,
            rgba(23, 19, 16, 0.88) 42%,
            rgba(23, 19, 16, 0.58) 100%
        ),
        url("./assets/project-cta-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.shProjectCta72__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0)
        );

    pointer-events: none;
}

.shProjectCta72__left {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 24px;
}

.shProjectCta72__icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #f4dfd0;

    background: rgba(154, 103, 74, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.16);
}

.shProjectCta72__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.4;
}

.shProjectCta72__content h2 {
    margin: 0;

    color: #ffffff;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.shProjectCta72__content p {
    max-width: 620px;
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.shProjectCta72__button {
    min-width: 190px;
    min-height: 48px;

    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 22px;

    border: 1px solid rgba(255, 255, 255, 0.16);

    color: #ffffff;
    background: #9a674a;

    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.shProjectCta72__button:hover {
    color: #8d6047;
    background: #ffffff;
    transform: translateY(-2px);
}

.shProjectCta72__button svg {
    width: 15px;
    height: 15px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .shProjectCta72__banner {
        padding: 28px 26px;
    }

    .shProjectCta72__content p {
        max-width: 470px;
    }

    .shProjectCta72__button {
        min-width: 165px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .shProjectCta72 {
        padding-bottom: 50px;
    }

    .shProjectCta72__container {
        width: min(100% - 28px, 1350px);
    }

    .shProjectCta72__banner {
        min-height: auto;

        align-items: flex-start;
        flex-direction: column;

        padding: 28px 22px;

        background-position: center;
    }

    .shProjectCta72__left {
        align-items: flex-start;
    }

    .shProjectCta72__icon {
        width: 58px;
        height: 58px;
    }

    .shProjectCta72__icon svg {
        width: 24px;
        height: 24px;
    }

    .shProjectCta72__content h2 {
        font-size: 18px;
    }

    .shProjectCta72__content p {
        font-size: 14px;
    }

    .shProjectCta72__button {
        width: 100%;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .shProjectCta72__left {
        flex-direction: column;
        gap: 17px;
    }

}