/* ==========================================================
   ROOT
========================================================== */

:root {

    --green-950: #07170d;
    --green-900: #0d2414;
    --green-850: #12301b;
    --green-800: #193c23;
    --green-700: #295332;
    --green-600: #426d3b;
    --green-500: #66874d;
    --green-400: #8ca56d;

    --cream-100: #fbfaf5;
    --cream-200: #f7f3e9;
    --cream-300: #eee8db;

    --white: #ffffff;

    --text-dark: #172018;
    --text: #59635a;
    --text-light: #788178;

    --border:
        rgba(21, 56, 28, .11);

    --shadow-sm:
        0 10px 30px rgba(22, 50, 28, .08);

    --shadow:
        0 22px 60px rgba(19, 48, 25, .12);

    --shadow-lg:
        0 32px 90px rgba(14, 36, 20, .17);

    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
}


/* ==========================================================
   RESET
========================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;

    font-family:
        "DM Sans",
        sans-serif;

    background: #fff;

    color: var(--text-dark);

    -webkit-font-smoothing:
        antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

section {
    position: relative;
}

::selection {
    background: var(--green-700);
    color: #fff;
}


/* ==========================================================
   HELPERS
========================================================== */

.container-main {
    width:
        min(1320px,
            calc(100% - 46px));

    margin:
        0 auto;
}

.section-space {
    padding:
        70px 0;
}

.section-label {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    color:
        var(--green-600);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        2px;

    text-transform:
        uppercase;

    margin-bottom:
        15px;
}

.section-label::before {

    content:
        "";

    width:
        28px;

    height:
        1px;

    background:
        currentColor;
}

.section-title {

    margin:
        0;

    color:
        var(--green-900);

    font-family:
        "Playfair Display",
        serif;

    font-size:48px;

    font-weight:
        600;

    line-height:
        1.04;

    letter-spacing:
        -.8px;
}

.section-desc {

    max-width:
        690px;

    color:
        var(--text);

    font-size:
        15px;

    line-height:
        1.8;
}

.section-heading-center {

    max-width:
        820px;

    margin:
        0 auto 52px;

    text-align:
        center;
}

.section-heading-center .section-label {

    justify-content:
        center;
}

.section-heading-center .section-label::before {

    display:
        none;
}

.section-heading-center .section-desc {

    margin:
        18px auto 0;
}


/* ==========================================================
   BUTTONS
========================================================== */

.btn-green {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        11px;

    min-height:
        52px;

    padding:
        0 23px;

    border:
        0;

    border-radius:
        12px;

    overflow:
        hidden;

    background:
        linear-gradient(135deg,
            var(--green-600),
            var(--green-800));

    color:
        #fff;

    font-size:
        13px;

    font-weight:
        700;

    box-shadow:
        0 12px 30px rgba(31, 73, 38, .18);

    transition:
        .35s ease;
}

.btn-green::before {

    content:
        "";

    position:
        absolute;

    width:
        40px;

    height:
        100px;

    left:
        -70px;

    top:
        -25px;

    transform:
        rotate(28deg);

    background:
        rgba(255, 255, 255, .17);

    transition:
        .5s ease;
}

.btn-green:hover {

    color:
        #fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 38px rgba(31, 73, 38, .24);
}

.btn-green:hover::before {
    left: 120%;
}

.btn-light-outline {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    min-height:
        52px;

    padding:
        0 23px;

    border:
        1px solid rgba(255, 255, 255, .30);

    border-radius:
        12px;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter:
        blur(12px);

    color:
        #fff;

    font-size:
        13px;

    font-weight:
        700;

    transition:
        .35s ease;
}

.btn-light-outline:hover {

    background:
        #fff;

    border-color:
        #fff;

    color:
        var(--green-900);

    transform:
        translateY(-3px);
}

.btn-white {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    min-height:
        52px;

    padding:
        0 23px;

    background:
        #fff;

    border:
        1px solid #fff;

    border-radius:
        12px;

    color:
        var(--green-900);

    font-size:
        13px;

    font-weight:
        700;

    transition:
        .35s ease;
}

.btn-white:hover {

    color:
        var(--green-900);

    transform:
        translateY(-3px);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, .16);
}


/* ==========================================================
   DESKTOP HEADER
========================================================== */

.site-header {

    position:
        absolute;

    left:
        0;

    top:
        0;

    width:
        100%;

    z-index:
        1000;

    padding:
        22px 0;

    transition:
        .35s ease;
}

.site-header.scrolled {

    position:
        fixed;

    padding:
        11px 0;

    background: #0F100E;

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .13);
}

.header-inner {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;
}

.brand {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    color:
        #fff;
}

.brand:hover {
    color: #fff;
}

.brand-mark {

    width:
        46px;

    height:
        46px;

    flex:
        0 0 46px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        14px;

    background:
        rgba(255, 255, 255, .10);

    border:
        1px solid rgba(255, 255, 255, .16);

    color:
        #b9d199;

    font-size:
        23px;

    backdrop-filter:
        blur(10px);
}

.brand-title {

    color:
        #fff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        21px;

    line-height:
        1;
}

.brand-title span {

    display:
        block;

    margin-top:
        5px;

    color:
        rgba(255, 255, 255, .60);

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        8px;

    font-weight:
        600;

    letter-spacing:
        1.6px;

    text-transform:
        uppercase;
}

.desktop-nav {

    display:
        flex;

    align-items:
        center;

    gap:
        2px;
}

.desktop-nav a {

    position:
        relative;

    padding:
        10px 12px;

    color:
        rgba(255, 255, 255, .76);

    font-size:
        15px;

    font-weight:
        600;

    transition:
        .3s ease;
}

.desktop-nav a::before {

    content:
        "";

    position:
        absolute;

    left:
        50%;

    bottom:
        1px;

    width:
        0;

    height:
        2px;

    border-radius:
        10px;

    background:
        #aeca86;

    transform:
        translateX(-50%);

    transition:
        .3s ease;
}

.desktop-nav a:hover {

    color:
        #fff;
}

.desktop-nav a:hover::before {

    width:
        18px;
}

.header-actions {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;
}

.menu-toggle {

    display:
        none;

    width:
        48px;

    height:
        48px;

    border:
        1px solid rgba(255, 255, 255, .16);

    border-radius:
        13px;

    background:
        rgba(255, 255, 255, .08);

    color:
        #fff;

    font-size:
        23px;

    align-items:
        center;

    justify-content:
        center;

    backdrop-filter:
        blur(10px);
}


/* ==========================================================
   MOBILE NAVIGATION
========================================================== */

.mobile-nav {

    position:
        fixed;

    inset:
        0;

    z-index:
        2000;

    visibility:
        hidden;

    pointer-events:
        none;
}

.mobile-nav.active {

    visibility:
        visible;

    pointer-events:
        auto;
}

.mobile-nav-backdrop {

    position:
        absolute;

    inset:
        0;

    background:
        rgba(1, 11, 5, .67);

    backdrop-filter:
        blur(5px);

    opacity:
        0;

    transition:
        .35s ease;
}

.mobile-nav.active .mobile-nav-backdrop {

    opacity:
        1;
}

.mobile-nav-panel {

    position:
        absolute;

    right:
        0;

    top:
        0;

    bottom:
        0;

    width:
        min(88vw, 385px);

    padding:
        20px;

    overflow-y:
        auto;

    background:
        linear-gradient(155deg,
            #0d2a16 0%,
            #07170d 70%);

    transform:
        translateX(105%);

    transition:
        .45s cubic-bezier(.2, .7, .2, 1);

    box-shadow:
        -25px 0 60px rgba(0, 0, 0, .28);
}

.mobile-nav.active .mobile-nav-panel {

    transform:
        translateX(0);
}

.mobile-nav-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding-bottom:
        20px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);
}

.mobile-close {

    width:
        42px;

    height:
        42px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, .06);

    color:
        #fff;

    font-size:
        20px;
}

.mobile-menu-caption {

    margin:
        27px 0 13px;

    color:
        #89a773;

    font-size:
        9px;

    font-weight:
        700;

    text-transform:
        uppercase;

    letter-spacing:
        2.2px;
}

.mobile-menu {

    display:
        flex;

    flex-direction:
        column;
}

.mobile-menu-link {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        15px;

    padding:
        16px 2px;

    color:
        rgba(255, 255, 255, .84);

    border-bottom:
        1px solid rgba(255, 255, 255, .07);

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        16px;

    font-weight:
        600;

    transition:
        .3s ease;
}

.mobile-menu-link span {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;
}

.mobile-menu-link i:first-child {

    width:
        35px;

    height:
        35px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        11px;

    background:
        rgba(138, 169, 105, .11);

    color:
        #aeca86;

    font-size:
        15px;
}

.mobile-menu-link:hover {

    color:
        #fff;

    padding-left:
        7px;
}

.mobile-nav-card {

    margin-top:
        28px;

    padding:
        22px;

    border:
        1px solid rgba(255, 255, 255, .10);

    border-radius:
        20px;

    background:
        linear-gradient(135deg,
            rgba(138, 169, 105, .15),
            rgba(255, 255, 255, .04));
}

.mobile-nav-card small {

    display:
        block;

    margin-bottom:
        8px;

    color:
        #aeca86;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        1.6px;

    text-transform:
        uppercase;
}

.mobile-nav-card h4 {

    margin:
        0 0 14px;

    color:
        #fff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        22px;
}

.mobile-nav-card a {

    width:
        100%;
}


/* ==========================================================
   HERO
========================================================== */

.hero {

    position:
        relative;

    min-height:
        900px;

    display:
        flex;

    align-items:
        center;

    overflow:
        hidden;

    background:
        url("../images/12.jpeg") center center / cover no-repeat;
}

.hero-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(90deg,
            rgba(5, 18, 9, .94) 0%,
            rgba(8, 27, 13, .78) 37%,
            rgba(5, 18, 8, .38) 68%,
            rgba(4, 15, 7, .14) 100%);
}

.hero-texture {

    position:
        absolute;

    inset:
        0;

    opacity:
        .11;

    background-image:
        radial-gradient(rgba(255, 255, 255, .8) .45px,
            transparent .45px);

    background-size:
        8px 8px;
}

.hero-glow {

    position:
        absolute;

    width:
        570px;

    height:
        570px;

    right:
        -170px;

    bottom:
        -210px;

    border-radius:
        50%;

    border:
        1px solid rgba(255, 255, 255, .10);

    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .02),
        0 0 0 145px rgba(255, 255, 255, .015);
}

.hero-content {

    position:
        relative;

    z-index:
        3;

    max-width:
        830px;

    padding-top:
        80px;
}

.hero-tag {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        8px 14px;

    margin-bottom:
        26px;

    border:
        1px solid rgba(184, 213, 149, .28);

    border-radius:
        50px;

    background:
        rgba(123, 160, 86, .11);

    backdrop-filter:
        blur(10px);

    color:
        #c7dbaa;

    font-size:
        13px;

    font-weight:
        700;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;
}

.hero-tag-dot {

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        #9bc573;

    box-shadow:
        0 0 0 5px rgba(155, 197, 115, .11);
}

.hero h1 {

    max-width:
        870px;

    margin:
        0 0 27px;

    color:
        #fff;

    font-family:
        "Playfair Display",
        serif;

    font-size: 62px;

    font-weight:
        600;

    line-height:
        1.16;

    letter-spacing: normal;
}

.hero h1 span {

    position:
        relative;

    color:
        #b8cf96;
}

.hero-description {

    max-width:
        650px;

    margin-bottom:
        34px;

    color:
        rgba(255, 255, 255, .72);

    font-size:
        18px;

    line-height:
        1.8;
}

.hero-actions {

    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        13px;
}

.hero-mini-proof {

    position:
        absolute;

    right:
        4%;

    bottom:
        100px;

    z-index:
        3;

    width:
        285px;

    padding:
        18px;

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius:
        20px;

    background:
        rgba(8, 27, 13, .50);

    backdrop-filter:
        blur(18px);

    color:
        #fff;
}

.hero-mini-proof-top {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;
}

.hero-mini-proof-icon {

    width:
        44px;

    height:
        44px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        13px;

    background:
        rgba(179, 211, 144, .14);

    color:
        #b8d08f;

    font-size:
        18px;
}

.hero-mini-proof strong {

    display:
        block;

    font-size:
        13px;
}

.hero-mini-proof span {

    color:
        rgba(255, 255, 255, .57);

    font-size:
        10px;
}

.hero-mini-proof-line {

    height:
        1px;

    margin:
        15px 0;

    background:
        rgba(255, 255, 255, .08);
}

.hero-mini-proof-bottom {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    color:
        #b9ce98;

    font-size:
        10px;
}


/* ==========================================================
   STATS
========================================================== */

.stats-section {

    position:
        relative;

    z-index:
        10;

    margin-top:
        -72px;
}

.stats-shell {

    padding:
        10px;

    border:
        1px solid rgba(255, 255, 255, .70);

    border-radius:
        25px;

    background:
        rgba(255, 255, 255, .94);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 22px 70px rgba(22, 48, 28, .15);
}

.stat-box {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        15px;

    min-height:
        118px;

    padding:
        20px;

    border-radius:
        18px;

    transition:
        .35s ease;
}

.stat-box::after {

    content:
        "";

    position:
        absolute;

    right:
        0;

    top:
        26%;

    width:
        1px;

    height:
        48%;

    background:
        rgba(18, 53, 25, .10);
}

.stats-shell .col-lg-3:last-child .stat-box::after {

    display:
        none;
}

.stat-box:hover {

    background:
        var(--cream-100);

    transform:
        translateY(-3px);
}

.stat-icon {

    width:
        55px;

    height:
        55px;

    flex:
        0 0 55px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        16px;

    background:
        linear-gradient(135deg,
            #edf2e7,
            #dce7cf);

    color:
        var(--green-700);

    font-size:
        23px;
}

.stat-number {

    color:
        var(--green-700);

    font-size:
        35px;

    font-weight:
        700;

    line-height:
        1;
}

.stat-text {

    margin-top:
        6px;

    color:
        var(--text-light);

    font-size:
        16px;

    font-weight:
        600;

    letter-spacing:
        .65px;

}


/* ==========================================================
   ABOUT
========================================================== */

.about {

    padding-top:
        120px;

    overflow:
        hidden;
}

.about-visual {

    position:
        relative;

    padding:
        0 40px 42px 0;
}

.about-main {

    width:
        100%;

    height:
        620px;

    object-fit:
        cover;

    border-radius:
        6px 70px 6px 70px;

    box-shadow:
        var(--shadow);
}

.about-secondary {

    position:
        absolute;

    right:
        0;

    bottom:
        0;

    width:
        235px;

    height:
        255px;

    object-fit:
        cover;

    border:
        9px solid #fff;

    border-radius:
        35px 5px 35px 5px;

    box-shadow:
        var(--shadow);
}

.about-floating {

    position:
        absolute;

    left:
        -25px;

    top:
        52px;

    width:
        150px;

    padding:
        20px 18px;

    border-radius:
        20px;

    background:
        var(--green-900);

    box-shadow:
        var(--shadow);

    color:
        #fff;
}

.about-floating i {

    display:
        block;

    margin-bottom:
        17px;

    color:
        #abc78a;

    font-size:
        26px;
}

.about-floating strong {

    display:
        block;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        33px;

    line-height:
        1;
}

.about-floating span {

    display:
        block;

    margin-top:
        6px;

    color:
        rgba(255, 255, 255, .60);

    font-size:
        9px;

    line-height:
        1.5;

    letter-spacing:
        1px;

    text-transform:
        uppercase;
}

.about-content {

    padding-left:
        45px;
}

.about-copy {

    margin-top:
        23px;
}

.about-copy p {

    margin-bottom:
        16px;

    color:
        var(--text);

    font-size:
        14px;

    line-height:
        1.83;
}

.about-benefits {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        12px;

    margin:
        28px 0 31px;
}

.about-benefit {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    min-height:
        50px;

    padding:
        8px 12px;

    border:
        1px solid var(--border);

    border-radius:
        12px;

    background:
        #fff;

    color:
        var(--green-900);

    font-size:
        11px;

    font-weight:
        700;
}

.about-benefit i {

    width:
        31px;

    height:
        31px;

    flex:
        0 0 31px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        10px;

    background:
        var(--cream-200);

    color:
        var(--green-600);
}


/* ==========================================================
   SERVICES
========================================================== */

.services {

    overflow:
        hidden;

    background:
        var(--cream-100);
}

.services::before {

    content:
        "";

    position:
        absolute;

    width:
        600px;

    height:
        600px;

    top:
        -340px;

    left:
        -220px;

    border:
        1px solid rgba(68, 106, 56, .08);

    border-radius:
        50%;

    box-shadow:
        0 0 0 80px rgba(68, 106, 56, .02),
        0 0 0 160px rgba(68, 106, 56, .015);
}

.services-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        20px;
}

.service-card {

    position:
        relative;

    min-height:
        350px;

    display:
        flex;

    overflow:
        hidden;

    border-radius:
        25px;

    background:
        var(--green-900);

    box-shadow:
        var(--shadow-sm);

    isolation:
        isolate;
}

.service-image {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .8s cubic-bezier(.2, .7, .2, 1);
}

.service-card:hover .service-image {

    transform:
        scale(1.07);
}

.service-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(90deg,
            rgba(6, 24, 11, .93) 0%,
            rgba(6, 24, 11, .77) 45%,
            rgba(6, 24, 11, .30) 100%);

    z-index:
        1;

    transition:
        .4s ease;
}

.service-card:hover .service-overlay {

    background:
        linear-gradient(90deg,
            rgba(7, 30, 13, .96) 0%,
            rgba(12, 46, 21, .78) 50%,
            rgba(7, 28, 12, .34) 100%);
}

.service-content {

    position:
        relative;

    z-index:
        2;

    width:
        100%;

    margin-top:
        auto;

    padding:
        34px;
}

.service-meta {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    margin-bottom:
        20px;
}

.service-icon {

    width:
        48px;

    height:
        48px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid rgba(255, 255, 255, .17);

    border-radius:
        14px;

    background:
        rgba(255, 255, 255, .10);

    backdrop-filter:
        blur(10px);

    color:
        #c7dba8;

    font-size:
        20px;

    transition:
        .35s ease;
}

.service-number {

    color:
        rgba(255, 255, 255, .38);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        12px;

    letter-spacing:
        1.4px;
}

.service-card h3 {

    margin:
        0 0 12px;

    color:
        #fff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        28px;

    line-height:
        1.1;
}

.service-card p {

    margin:
        0;

    color:
        rgba(255, 255, 255, .63);

    font-size:
        16px;

    line-height:
        1.71;
}

.service-arrow {

    position:
        absolute;

    right:
        22px;

    top:
        22px;

    z-index:
        3;

    width:
        44px;

    height:
        44px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter:
        blur(10px);

    color:
        #fff;

    transition:
        .35s ease;
}

.service-card:hover .service-arrow {

    background:
        #fff;

    color:
        var(--green-900);

    transform:
        rotate(45deg);
}

.service-card:hover .service-icon {

    color:
        #fff;

    background:
        var(--green-500);
}

.service-card.featured {

    min-height:
        470px;

    grid-row:
        span 1;
}

.service-card.featured .service-content {

    width:
        100%;
}

.service-card.featured h3 {

    font-size:
        28px;
}


/* ==========================================================
   WHY US
========================================================== */

.why {

    overflow:
        hidden;

    background:
        #fff;
}

.why-wrapper {

    display:
        grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap:
        70px;

    align-items:
        center;
}

.why-visual {

    position:
        relative;

    min-height:
        680px;
}

.why-image-main {

    position:
        absolute;

    left:
        0;

    top:
        0;

    width:
        82%;

    height:
        590px;

    object-fit:
        cover;

    border-radius:
        50px 6px 50px 6px;
}

.why-image-small {

    position:
        absolute;

    right:
        0;

    bottom:
        0;

    width:
        52%;

    height:
        330px;

    object-fit:
        cover;

    border:
        10px solid #fff;

    border-radius:
        6px 40px 6px 40px;

    box-shadow:
        var(--shadow);
}

.why-floating-card {

    position:
        absolute;

    left:
        28px;

    bottom:
        35px;

    width:
        230px;

    padding:
        23px;

    border-radius:
        20px;

    background:
        rgba(255, 255, 255, .93);

    backdrop-filter:
        blur(15px);

    box-shadow:
        var(--shadow);
}

.why-floating-card i {

    color:
        var(--green-600);

    font-size:
        22px;
}

.why-floating-card strong {

    display:
        block;

    margin:
        13px 0 4px;

    color:
        var(--green-900);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        22px;
}

.why-floating-card span {

    color:
        var(--text-light);

    font-size:
        10px;

    line-height:
        1.6;
}

.why-list {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        14px;

    margin-top:
        34px;
}

.why-item {

    min-height:
        208px;

    padding:
        24px;

    border:
        1px solid var(--border);

    border-radius:
        20px;

    background:
        #fff;

    transition:
        .35s ease;
}

.why-item:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow-sm);

    border-color:
        transparent;
}

.why-item-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        20px;
}

.why-icon {

    width:
        45px;

    height:
        45px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        13px;

    background:
        var(--cream-200);

    color:
        var(--green-600);

    font-size:
        19px;
}

.why-count {

    color:
        rgba(36, 72, 42, .18);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        28px;
}

.why-item h3 {

    margin:
        0 0 9px;

    color:
        var(--green-900);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        21px;
}

.why-item p {

    margin:
        0;

    color:
        var(--text);

    font-size:
        11px;

    line-height:
        1.72;
}

.why-proof {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    margin-top:
        14px;

    color:
        var(--green-600);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        .6px;

    text-transform:
        uppercase;
}


/* ==========================================================
   PROCESS
========================================================== */

.process {

    overflow:
        hidden;

    background:
        var(--green-950);

    color:
        #fff;
}

.process::after {

    content:
        "";

    position:
        absolute;

    width:
        550px;

    height:
        550px;

    right:
        -260px;

    top:
        0;

    border:
        1px solid rgba(255, 255, 255, .06);

    border-radius:
        50%;

    box-shadow:
        0 0 0 90px rgba(255, 255, 255, .015),
        0 0 0 180px rgba(255, 255, 255, .01);
}

.process .section-title {

    color:
        #fff;
}

.process .section-label {

    color:
        #a9c78b;
}

.process .section-desc {

    color:
        rgba(255, 255, 255, .55);
}

.process-list {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        18px;
}

.process-list::before {

    content:
        "";

    position:
        absolute;

    left:
        11%;

    right:
        11%;

    top:
        48px;

    height:
        1px;

    border-top:
        1px dashed rgba(255, 255, 255, .18);
}

.process-item {

    position:
        relative;

    z-index:
        2;

    padding:
        0 14px;

    text-align:
        center;
}

.process-icon-wrap {

    position:
        relative;

    width:
        96px;

    height:
        96px;

    margin:
        0 auto 27px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid rgba(255, 255, 255, .12);

    border-radius:
        28px;

    background:
        #102a17;

    color:
        #abc98a;

    font-size:
        27px;

    transform:
        rotate(45deg);

    transition:
        .4s ease;
}

.process-icon-wrap i {

    transform:
        rotate(-45deg);
}

.process-step {

    position:
        absolute;

    right:
        -10px;

    top:
        -9px;

    width:
        30px;

    height:
        30px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        #fff;

    color:
        var(--green-800);

    font-size:
        10px;

    font-weight:
        800;

    transform:
        rotate(-45deg);
}

.process-item:hover .process-icon-wrap {

    background:
        var(--green-500);

    color:
        #fff;

    transform:
        rotate(45deg) translateY(-5px);
}

.process-item h3 {

    margin:
        0 0 10px;

    color:
        #fff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        23px;
}

.process-item p {

    max-width:
        240px;

    margin:
        auto;

    color:
        rgba(255, 255, 255, .49);

    font-size:
        11px;

    line-height:
        1.75;
}


/* ==========================================================
   PROJECTS
========================================================== */

.projects {

    background:
        #fff;
}

.project-filter {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin:
        -20px 0 35px;
}

.project-filter span {

    padding:
        8px 15px;

    border:
        1px solid var(--border);

    border-radius:
        50px;

    color:
        var(--text-light);

    font-size:
        10px;

    font-weight:
        700;
}

.project-filter span.active {

    background:
        var(--green-900);

    border-color:
        var(--green-900);

    color:
        #fff;
}

.project-grid {

    display:
        grid;

    grid-template-columns:
        repeat(12, 1fr);

    grid-auto-rows:
        245px;

    gap:
        15px;
}

.project-card {

    position:
        relative;

    overflow:
        hidden;

    border-radius:
        20px;

    background:
        var(--green-900);
}

.project-card img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .8s cubic-bezier(.2, .7, .2, 1);
}

.project-card::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(to top,
            rgba(3, 17, 8, .83) 0%,
            rgba(3, 17, 8, .04) 68%);
}

.project-card:hover img {

    transform:
        scale(1.07);
}

.project-lg {

    grid-column:
        span 6;

    grid-row:
        span 2;
}

.project-md {

    grid-column:
        span 3;
}

.project-wide {

    grid-column:
        span 6;
}

.project-info {

    position:
        absolute;

    left:
        24px;

    right:
        24px;

    bottom:
        22px;

    z-index:
        2;

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        20px;
}

.project-info small {

    display:
        block;

    margin-bottom:
        4px;

    color:
        #b7ce94;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;
}

.project-info h3 {

    margin:
        0;

    color:
        #fff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        21px;
}

.project-view {

    width:
        40px;

    height:
        40px;

    flex:
        0 0 40px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, .09);

    backdrop-filter:
        blur(10px);

    color:
        #fff;

    transition:
        .3s ease;
}

.project-card:hover .project-view {

    background:
        #fff;

    color:
        var(--green-900);

    transform:
        rotate(45deg);
}


/* ==========================================================
   TESTIMONIALS
========================================================== */

.testimonials {

    overflow:
        hidden;

    background:
        var(--cream-200);
}

.testimonial-grid {

    display:
        grid;

    grid-template-columns:
        repeat(12, 1fr);

    gap:
        16px;
}

.testimonial-card {

    position:
        relative;

    grid-column:
        span 4;

    min-height:
        330px;

    padding:
        30px;

    overflow:
        hidden;

    border:
        1px solid rgba(23, 55, 29, .08);

    border-radius:
        24px;

    background:
        #fff;

    transition:
        .35s ease;
}

.testimonial-card:nth-child(4),
.testimonial-card:nth-child(5) {

    grid-column:
        span 6;

    min-height:
        285px;
}

.testimonial-card::before {

    content:
        "“";

    position:
        absolute;

    right:
        22px;

    top:
        -22px;

    color:
        rgba(47, 91, 50, .06);

    font-family:
        Georgia,
        serif;

    font-size:
        140px;

    line-height:
        1;
}

.testimonial-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow-sm);
}

.testimonial-icon {

    width:
        44px;

    height:
        44px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        22px;

    border-radius:
        13px;

    background:
        var(--cream-200);

    color:
        var(--green-600);

    font-size:
        18px;
}

.testimonial-text {

    position:
        relative;

    z-index:
        2;

    color:
        #39453b;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        17px;

    line-height:
        1.65;
}

.client-row {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    margin-top:
        27px;
}

.client-avatar {

    width:
        46px;

    height:
        46px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        linear-gradient(135deg,
            var(--green-700),
            var(--green-500));

    color:
        #fff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        15px;
}

.client-row strong {

    display:
        block;

    color:
        var(--green-900);

    font-size:
        12px;
}

.client-row span {

    display:
        block;

    margin-top:
        2px;

    color:
        var(--text-light);

    font-size:
        9px;
}


/* ==========================================================
   PLANTER CTA
========================================================== */

.planter {

    overflow:
        hidden;

    background:
        var(--green-900);

    color:
        #fff;
}

.planter-inner {

    position:
        relative;

    min-height:
        500px;

    display:
        flex;

    align-items:
        center;

    overflow:
        hidden;

    border-radius:
        34px;

    background:
        url("https://images.unsplash.com/photo-1614594575810-20da8a9cb545?auto=format&fit=crop&w=1800&q=88") center / cover no-repeat;
}

.planter-inner::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(90deg,
            rgba(6, 26, 12, .96) 0%,
            rgba(7, 30, 13, .83) 48%,
            rgba(5, 23, 10, .28) 100%);
}

.planter-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        680px;

    padding:
        65px;
}

.planter-icon {

    width:
        58px;

    height:
        58px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        22px;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius:
        16px;

    background:
        rgba(255, 255, 255, .09);

    color:
        #bbd59a;

    font-size:
        24px;
}

.planter h2 {

    margin:
        0 0 16px;

    color:
        #fff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(40px,
            4.5vw,
            62px);

    line-height:
        1.03;
}

.planter p {

    max-width:
        620px;

    margin-bottom:
        28px;

    color:
        rgba(255, 255, 255, .62);

    font-size:
        14px;

    line-height:
        1.75;
}

.planter-actions {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px;
}

/* ==========================================================
   REVEAL
========================================================== */

.reveal {

    opacity:
        0;

    transform:
        translateY(28px);

    transition:
        opacity .75s ease,
        transform .75s ease;
}

.reveal.show {

    opacity:
        1;

    transform:
        translateY(0);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1199px) {

    .desktop-nav a {

        padding:
            9px 7px;

        font-size:
            11px;
    }

    .header-actions .btn-green {

        padding:
            0 16px;
    }

    .hero {

        min-height:
            820px;
    }

    .hero-mini-proof {

        width:
            255px;
    }

    .about-content {

        padding-left:
            20px;
    }

    .service-content {

        width:
            100%;
    }

    .why-wrapper {

        gap:
            40px;
    }

    .footer-grid {

        gap:
            35px;
    }

}


/* ==========================================================
   MOBILE / TABLET NAV
========================================================== */

@media (max-width: 991px) {

    .container-main {

        width:
            min(100% - 34px,
                1320px);
    }

    .section-space {

        padding:
            82px 0;
    }

    .desktop-nav,
    .header-actions .btn-green {

        display:
            none;
    }

    .menu-toggle {

        display:
            flex;
    }

    .site-header {

        padding:
            16px 0;
    }

    .site-header.scrolled {

        padding:
            10px 0;
    }

    .brand-mark {

        width:
            42px;

        height:
            42px;

        flex:
            0 0 42px;

        border-radius:
            12px;
    }

    .brand-title {

        font-size:
            18px;
    }

    .hero {

        min-height:
            790px;
    }

    .hero-mini-proof {

        display:
            none;
    }

    .hero-content {

        max-width:
            720px;
    }

    .stats-section {

        margin-top:
            -52px;
    }

    .stat-box::after {

        display:
            none;
    }

    .stats-shell .col-6:nth-child(odd) .stat-box {

        border-right:
            1px solid rgba(18, 53, 25, .07);
    }

    .stats-shell .col-6:nth-child(-n+2) .stat-box {

        border-bottom:
            1px solid rgba(18, 53, 25, .07);
    }

    .about {

        padding-top:
            95px;
    }

    .about-content {

        padding:
            75px 0 0;
    }

    .services-grid {

        grid-template-columns:
            1fr;
    }

    .service-card,
    .service-card.featured {

        min-height:
            390px;
    }

    .service-content,
    .service-card.featured .service-content {

        width:
            100%;
    }

    .why-wrapper {

        grid-template-columns:
            1fr;

        gap:
            65px;
    }

    .why-visual {

        min-height:
            620px;
    }

    .process-list {

        grid-template-columns:
            repeat(2, 1fr);

        row-gap:
            65px;
    }

    .process-list::before {

        display:
            none;
    }

    .project-grid {

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows:
            280px;
    }

    .project-lg,
    .project-md,
    .project-wide {

        grid-column:
            span 1;

        grid-row:
            span 1;
    }

    .project-lg {

        grid-column:
            span 2;
    }

    .testimonial-card {

        grid-column:
            span 6;
    }

    .testimonial-card:nth-child(5) {

        grid-column:
            span 12;
    }

    .planter-content {

        padding:
            55px 45px;
    }

    .consult-shell {

        grid-template-columns:
            1fr;
    }

    .consult-visual {

        min-height:
            500px;
    }

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

        row-gap:
            50px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .container-main {

        width:
            calc(100% - 28px);
    }

    .section-space {

        padding:
            42px 0;
    }

    .section-title {

        font-size:
            31px;

        line-height:
            1.07;
    }

    .section-heading-center {

        margin-bottom:
            38px;
    }

    .section-desc {

        font-size:
            13px;

        line-height:
            1.75;
    }


    /* Mobile header */

    .site-header {

        padding:
            13px 0;
    }

    .header-inner {

        gap:
            10px;
    }

    .brand {

        min-width:
            0;
    }

    .brand-mark {

        width:
            39px;

        height:
            39px;

        flex:
            0 0 39px;

        font-size:
            19px;
    }

    .brand-title {

        font-size:
            16px;

        white-space:
            nowrap;
    }

    .brand-title span {

        max-width:
            180px;

        overflow:
            hidden;

        text-overflow:
            ellipsis;

        font-size:
            7px;
    }

    .menu-toggle {

        width:
            43px;

        height:
            43px;

        flex:
            0 0 43px;

        border-radius:
            12px;
    }


    /* Hero */

    .hero {

        min-height:
            730px;

        align-items:
            flex-end;

        padding-bottom:
            120px;

        background-position:
            61% center;
    }

    .hero-overlay {

        background:
            linear-gradient(to top,
                rgba(5, 18, 9, .96) 0%,
                rgba(5, 18, 9, .81) 48%,
                rgba(5, 18, 9, .39) 100%);
    }

    .hero-content {

        padding-top:
            110px;
    }

    .hero-tag {

        margin-bottom:
            20px;

        font-size:
            9px;
    }

    .hero h1 {

        margin-bottom:
            20px;

        font-size: 33px;


    }

    .hero-description {

        max-width:
            500px;

        margin-bottom:
            27px;

        font-size:
            14px;

        line-height:
            1.7;
    }

    .hero-actions {

        display:
            grid;

        grid-template-columns:
            1fr 1fr;

        gap:
            9px;
    }

    .hero-actions a {

        width:
            100%;

        min-height:
            50px;

        padding:
            0 12px;

        font-size:
            11px;
    }


    /* Stats */

    .stats-section {

        margin-top:
            -78px;
    }

    .stats-shell {

        border-radius:
            21px;
    }

    .stat-box {

        justify-content:
            flex-start;

        min-height:
            88px;

        padding:
            14px 10px;

        gap:
            10px;
    }

    .stat-icon {

        width:
            40px;

        height:
            40px;

        flex:
            0 0 40px;

        border-radius:
            12px;

        font-size:
            17px;
    }

    .stat-number {

        font-size:
            24px;
    }

    .stat-text {

        font-size:
            7px;

        line-height:
            1.35;
    }


    /* About */

    .about {

        padding-top:
            80px;
    }

    .about-visual {

        padding:
            0;
    }

    .about-main {

        height:
            445px;

        border-radius:
            4px 42px 4px 42px;
    }

    .about-secondary {

        display:
            none;
    }

    .about-floating {

        left:
            16px;

        top:
            auto;

        bottom:
            17px;

        width:
            135px;

        padding:
            17px;

        border:
            1px solid rgba(255, 255, 255, .15);
    }

    .about-floating strong {

        font-size:
            27px;
    }

    .about-content {

        padding-top:
            45px;
    }

    .about-copy p {

        font-size:
            13px;
    }

    .about-benefits {

        grid-template-columns:
            1fr 1fr;

        gap:
            8px;
    }

    .about-benefit {

        min-height:
            62px;

        padding:
            8px;

        font-size:
            9px;
    }


    /* Services */

    .services-grid {

        gap:
            14px;
    }

    .service-card,
    .service-card.featured {

        min-height:
            420px;

        border-radius:
            22px;
    }

    .service-overlay {

        background:
            linear-gradient(to top,
                rgba(5, 22, 10, .96) 0%,
                rgba(5, 22, 10, .82) 41%,
                rgba(5, 22, 10, .11) 75%);
    }

    .service-card:hover .service-overlay {

        background:
            linear-gradient(to top,
                rgba(5, 27, 11, .97) 0%,
                rgba(7, 36, 14, .83) 45%,
                rgba(5, 22, 10, .10) 75%);
    }

    .service-content,
    .service-card.featured .service-content {

        width:
            100%;

        padding:
            26px 22px;
    }

    .service-card h3,
    .service-card.featured h3 {

        font-size:
            27px;
    }

    .service-card p {

        max-width:
            470px;

    }

    .service-icon {

        width:
            43px;

        height:
            43px;
    }

    .service-arrow {

        width:
            40px;

        height:
            40px;

        right:
            17px;

        top:
            17px;
    }


    /* Why */

    .why-wrapper {

        gap:
            50px;
    }

    .why-visual {

        min-height:
            515px;
    }

    .why-image-main {

        width:
            92%;

        height:
            465px;

        border-radius:
            35px 4px 35px 4px;
    }

    .why-image-small {

        width:
            51%;

        height:
            235px;

        border-width:
            7px;
    }

    .why-floating-card {

        left:
            15px;

        bottom:
            16px;

        width:
            190px;

        padding:
            17px;
    }

    .why-list {

        grid-template-columns:
            1fr;

        gap:
            10px;
    }

    .why-item {

        min-height:
            auto;

        padding:
            21px;
    }


    /* Process */

    .process-list {

        grid-template-columns:
            1fr;

        gap:
            52px;
    }


    /* Projects */

    .project-filter {

        justify-content:
            flex-start;

        overflow-x:
            auto;

        flex-wrap:
            nowrap;

        padding-bottom:
            3px;

        scrollbar-width:
            none;
    }

    .project-filter::-webkit-scrollbar {
        display: none;
    }

    .project-filter span {

        flex:
            0 0 auto;
    }

    .project-grid {

        display:
            grid;

        grid-template-columns:
            1fr;

        grid-auto-rows:
            330px;

        gap:
            11px;
    }

    .project-lg,
    .project-md,
    .project-wide {

        grid-column:
            span 1;

        grid-row:
            span 1;
    }


    /* Testimonials */

    .testimonial-grid {

        grid-template-columns:
            1fr;
    }

    .testimonial-card,
    .testimonial-card:nth-child(4),
    .testimonial-card:nth-child(5) {

        grid-column:
            span 1;

        min-height:
            auto;

        padding:
            25px 22px;
    }

    .testimonial-text {

        font-size:
            16px;
    }


    /* Planter */

    .planter-inner {

        min-height:
            620px;

        align-items:
            flex-end;

        border-radius:
            25px;

        background-position:
            65% center;
    }

    .planter-inner::before {

        background:
            linear-gradient(to top,
                rgba(5, 23, 10, .97) 0%,
                rgba(5, 23, 10, .85) 48%,
                rgba(5, 23, 10, .22) 100%);
    }

    .planter-content {

        width:
            100%;

        padding:
            34px 24px;
    }

    .planter h2 {

        font-size:
            39px;
    }

    .planter-actions {

        display:
            grid;

        grid-template-columns:
            1fr 1fr;
    }

    .planter-actions a {

        width:
            100%;

        padding:
            0 12px;
    }

    .planter-actions a:last-child {

        grid-column:
            1 / -1;
    }


    /* Consultation */

    .consult-shell {

        border-radius:
            24px;
    }

    .consult-form {

        padding:
            33px 20px;
    }

    .consult-visual {

        min-height:
            410px;
    }

    .consult-note {

        left:
            18px;

        right:
            18px;

        bottom:
            18px;

        padding:
            20px;
    }


    /* Footer mobile redesign */

    .footer-top-cta-inner {

        display:
            block;

        min-height:
            auto;

        padding:
            34px 0;
    }

    .footer-top-left {

        align-items:
            flex-start;
    }

    .footer-top-icon {

        width:
            52px;

        height:
            52px;

        flex:
            0 0 52px;
    }

    .footer-top-left h3 {

        font-size:
            26px;
    }

    .footer-top-cta-inner .btn-white {

        width:
            100%;

        margin-top:
            22px;
    }

    .footer-body {

        padding-top:
            50px;
    }

    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            35px;
    }

    .footer-brand-box {

        padding-bottom:
            30px;

        border-bottom:
            1px solid rgba(255, 255, 255, .07);
    }

    .footer-description {

        max-width:
            100%;
    }

    .footer-grid>div:not(:first-child) {

        padding-bottom:
            25px;

        border-bottom:
            1px solid rgba(255, 255, 255, .06);
    }

    .footer-links {

        display:
            grid;

        grid-template-columns:
            1fr 1fr;

        column-gap:
            20px;
    }

    .footer-bottom {

        flex-direction:
            column;

        align-items:
            flex-start;

        margin-top:
            35px;

        line-height:
            1.7;
    }


    /* floating */

    .floating-actions {

        right:
            13px;

        bottom:
            13px;
    }

    .floating-btn {

        width:
            46px;

        height:
            46px;
    }


    .header-logo {
        width: 187px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

    .brand-title {

        font-size:
            15px;
    }

    .brand-title span {

        max-width:
            145px;
    }

    .hero {

        min-height:
            715px;
    }

    .hero h1 {

        font-size: 28px;
    }

    /* .hero-actions {

        grid-template-columns:
            1fr;
    } */

    .about-benefits {

        grid-template-columns:
            1fr;
    }

    .about-benefit {

        min-height:
            50px;
    }

    .planter-actions {

        grid-template-columns:
            1fr;
    }

    .planter-actions a:last-child {

        grid-column:
            auto;
    }

    .footer-links {

        grid-template-columns:
            1fr;
    }

}

.header-logo {
    width: 237px;
}


/* =========================================
WHY SECTION
========================================= */


.why-luxury {

    padding: 70px 0;

    background: #f7f6ef;

    overflow: hidden;

    position: relative;

}



.why-bg-text {

    position: absolute;

    right: -40px;

    top: 20px;

    font-size: 160px;

    font-weight: 800;

    color: rgba(80, 110, 50, .04);

    letter-spacing: 8px;

}




/* HEADER */


.why-title {

    max-width: 800px;

    margin: auto;

    text-align: center;

}



/* SIMPLE LABEL */


.simple-eyebrow {


    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    color: #78994c;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}



.simple-eyebrow:before,
.simple-eyebrow:after {


    content: "";

    width: 35px;

    height: 1px;

    background: #78994c;

}



.simple-eyebrow i {


    font-size: 16px;

    color: #78994c;

}





.why-title h2 {


    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1.22;

    color: #20351b;

    margin-bottom: 20px;

}



.why-title h2 span {

    color: #78994c;

    font-style: italic;

}



.why-title p {


    font-size: 17px;

    color: #666;

    line-height: 1.8;

}





/* CARDS */


.lux-pillars {


    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}




.pillar-card {


    background: #fff;

    padding: 35px 28px;

    border-radius: 30px;

    border: 1px solid #e5eadc;

    transition: .35s;

    position: relative;

    overflow: hidden;

}





.pillar-card:hover {


    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .10);

}




.pillar-top {


    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}




.pillar-icon {


    height: 70px;

    width: 70px;

    display: grid;

    place-items: center;

    background: #263d20;

    color: #c9dc9c;

    border-radius: 22px;

    font-size: 28px;

}




.pillar-number {


    font-family: "Playfair Display", serif;

    font-size: 60px;

    color: #e8ebdf;

}




.pillar-card h3 {


    font-family: "Playfair Display", serif;

    font-size: 26px;

    color: #263820;

    margin-bottom: 18px;

}




.pillar-card p {


    font-size: 14px;

    line-height: 1.8;

    color: #666;

    min-height: 130px;

}





.pillar-stat {


    margin-top: 25px;

    background: #263d20;

    padding: 16px;

    border-radius: 18px;

}



.pillar-stat strong {


    display: block;

    font-size: 22px;

    color: #fff;

}



.pillar-stat span {


    font-size: 15px;

    color: #cbd7b9;

}




/* RESPONSIVE */


@media(max-width:1200px) {


    .lux-pillars {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media(max-width:768px) {


    .why-luxury {

        padding: 45px 0px;

    }



    .why-bg-text {

        font-size: 70px;

    }



    .simple-eyebrow:before,
    .simple-eyebrow:after {

        width: 20px;

    }



    .why-title h2 {

        font-size: 28px;

    }



    .lux-pillars {

        grid-template-columns: 1fr;

        margin-top: 45px;

    }


    .pillar-card p {

        min-height: auto;

    }


}

/* =========================================
PROJECT MASONRY GALLERY
========================================= */


.projects-section {

    padding: 70px 0;

    background: #f8f7f1;

}



.projects-header {

    max-width: 850px;

    margin: auto;

    text-align: center;

    margin-bottom: 60px;

}



.projects-eyebrow {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #78994c;

    margin-bottom: 15px;

}



.projects-eyebrow i {

    font-size: 18px;

}



.projects-header h2 {

    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1.22;

    color: #243820;

    margin-bottom: 20px;

}


.projects-header h2 span {

    display: block;

    color: #78994c;

    font-style: italic;

}



.projects-header p {

    font-size: 16px;

    line-height: 1.8;

    color: #666;

}





/* MASONRY */


.projects-masonry {

    columns: 3;

    column-gap: 18px;

}



.project-image {


    break-inside: avoid;

    margin-bottom: 18px;

    border-radius: 25px;

    overflow: hidden;

}



.project-image img {

    width: 100%;

    height: auto;

    display: block;

    transition: .6s ease;

}




.project-image:hover img {

    transform: scale(1.06);

}





@media(max-width:992px) {


    .projects-masonry {

        columns: 2;

    }


}





@media(max-width:600px) {


    .projects-section {

          padding: 40px 0px;

    }



    .projects-header h2 {

        font-size: 28px;

    }



    .projects-masonry {

        columns: 2;

        column-gap: 1;

    }



    .project-image {

        margin-bottom: 15px;

        border-radius: 20px;

    }


}

/* =====================================
 PREMIUM GOOGLE REVIEWS
===================================== */


.client-review-section {

    padding: 70px 0;

    background: #f7f6ef;

}




.review-header {

    max-width: 750px;

    margin: 0 auto 65px;

    text-align: center;

}



.review-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #78994c;

    margin-bottom: 15px;

}



.review-eyebrow i {

    font-size: 18px;

}



.review-header h2 {

    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1.2;

    color: #243820;

    margin-bottom: 20px;

}



.review-header h2 span {

    display: block;

    color: #78994c;

    font-style: italic;

}



.review-header p {

    font-size: 17px;

    color: #666;

}





/* CARD */


.google-review-card {

    height: 100%;

    background: #fff;

    padding: 32px;

    border-radius: 28px;

    border: 1px solid #e6e8dc;

    position: relative;

    transition: .35s;

    box-shadow:

        0 10px 35px rgba(0, 0, 0, .04);

}




.google-review-card:hover {

    transform: translateY(-10px);

    box-shadow:

        0 25px 60px rgba(0, 0, 0, .12);

}





.review-card-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 22px;

}





.client-info {

    display: flex;

    align-items: center;

    gap: 14px;

}



.client-avatar {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #263d20;

    color: #fff;

    font-weight: 700;

    font-size: 16px;

}



.client-info h4 {

    margin: 0;

    font-size: 16px;

    color: #243820;

}



.client-info span {

    font-size: 12px;

    color: #888;

}





.google-badge {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #f2f5eb;

    color: #78994c;

    font-size: 18px;

}





.rating {

    color: #f7b917;

    letter-spacing: 4px;

    font-size: 18px;

    margin-bottom: 18px;

}



.google-review-card p {

    font-size: 14px;

    line-height: 1.8;

    color: #666;

    margin-bottom: 25px;

}





.verified {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 14px;

    border-radius: 30px;

    background: #edf5df;

    color: #62883d;

    font-size: 12px;

    font-weight: 600;

}




.verified i {

    font-size: 14px;

}





@media(max-width:768px) {


    .client-review-section {

          padding: 40px 0px;

    }



    .review-header h2 {

        font-size: 28px;

    }



    .google-review-card {

        padding: 25px;

    }


}


/* =========================================
PLANter CTA BOX
========================================= */


.planter-cta-section {

    padding: 60px 0;

    background: #f7f6ef;

}



.planter-cta-box {


    position: relative;

    height: 480px;

    border-radius: 45px;

    overflow: hidden;

    border: 8px solid #fff;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .15);

    display: flex;

    align-items: center;

    justify-content: center;

}





.cta-bg-image {


    position: absolute;

    inset: 0;


    background-image: url("../images/9.jpeg"
        );


    background-size: cover;

    background-position: center;

}




.cta-dark-layer {


    position: absolute;

    inset: 0;

    background:

        linear-gradient(90deg,
            rgba(25, 40, 15, .75),
            rgba(25, 40, 15, .55));

}





.cta-inner {


    position: relative;

    z-index: 2;

    max-width: 750px;

    text-align: center;

    padding: 40px;

    color: white;

}





.cta-small-label {


    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    font-size: 15px;

    letter-spacing: 2px;

    font-weight: 700;

    text-transform: uppercase;

    color: #d3e7a7;

    margin-bottom: 15px;

}



.cta-small-label i {

    font-size: 17px;

}





.cta-inner h2 {


    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1.22;

    margin-bottom: 18px;

    color: #fff;

}



.cta-inner h2 span {


    display: inline;

    color: #d1e59d;

    font-style: italic;

}




.cta-inner p {


    font-size: 15px;

    line-height: 1.7;

    max-width: 620px;

    margin: auto;

    color: rgba(255, 255, 255, .85);

}





.cta-actions {


    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 30px;

}





.cta-action-btn {


    padding: 13px 30px;

    border-radius: 50px;

    background: #78994c;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: .3s;

}



.cta-action-btn:hover {

    background: white;

    color: #243820;

}





.quote-mini {


    margin: 25px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: rgba(255, 255, 255, .16);

    backdrop-filter: blur(10px);

    border-radius: 18px;

    padding: 12px 25px;

    width: max-content;

    border: 1px solid rgba(255, 255, 255, .25);

}



.quote-mini i {


    font-size: 22px;

    color: #d4e8a8;

}




.quote-mini strong {

    display: block;

    font-size: 15px;

    text-align: left;

}



.quote-mini span {

    display: block;

    font-size: 11px;

    color: rgba(255, 255, 255, .75);

    text-align: left;

}





@media(max-width:768px) {


    .planter-cta-section {

        padding: 40px 0px;

    }



    .planter-cta-box {

        height: auto;

        min-height: 520px;

        border-radius: 30px;

    }



    .cta-inner {

        padding: 30px 20px;

    }



    .cta-inner h2 {

        font-size: 34px;

    }



    .cta-actions {

        flex-direction: column;

        align-items: center;

    }



    .cta-action-btn {

        width: 200px;

        justify-content: center;

    }



    .quote-mini {

        width: 100%;

    }



}

/* =====================================
CONSULTATION PREMIUM DESIGN
===================================== */


.consultation-section {

    padding: 70px 0;

    background: #f7f6ef;

}





/* IMAGE */


.consultation-image-card {


    height: 100%;

    min-height: 720px;

    border-radius: 35px;

    overflow: hidden;

    box-shadow:

        0 25px 70px rgba(0, 0, 0, .15);

}



.consultation-image-card img {


    width: 100%;

    height: 100%;

    object-fit: cover;

}






/* RIGHT CARD */


.consultation-right-card {


    background: #fff;

    padding: 45px;

    border-radius: 35px;

    box-shadow:

        0 25px 70px rgba(0, 0, 0, .10);

}





.consultation-heading {


    margin-bottom: 35px;

}




.consultation-label {


    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #78994c;

    margin-bottom: 15px;

}



.consultation-label i {

    font-size: 18px;

}





.consultation-heading h2 {


    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1.22;

    color: #243820;

    margin-bottom: 15px;

}



.consultation-heading h2 span {


    display: inline;

    color: #78994c;

    font-style: italic;

}





.consultation-heading p {


    font-size: 16px;

    line-height: 1.8;

    color: #666;

}





/* FORM FIELDS */


.field-box {


    position: relative;

}



.field-box i {


    position: absolute;

    left: 18px;

    top: 50%;

    transform: translateY(-50%);

    font-size: 16px;

    color: #78994c;

    z-index: 2;

}




.field-box input,
.field-box select,
.field-box textarea {


    width: 100%;

    border: 1px solid #e2e6d8;

    background: #fafbf7;

    border-radius: 15px;

    padding: 16px 18px 16px 48px;

    font-size: 14px;

    outline: none;

}



.field-box textarea {


    height: 120px;

    resize: none;

    padding-top: 18px;

}



.textarea-box i {

    top: 25px;

}




.field-box input:focus,
.field-box select:focus,
.field-box textarea:focus {


    border-color: #78994c;

    background: #fff;

}





.consult-btn {


    width: 100%;

    border: none;

    padding: 17px;

    border-radius: 50px;

    background: #243820;

    color: white;

    font-weight: 600;

    font-size: 15px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    transition: .3s;

}



.consult-btn:hover {

    background: #78994c;

}





@media(max-width:991px) {


    .consultation-image-card {

        min-height: 450px;

    }



    .consultation-right-card {

        padding: 35px 25px;

    }



    .consultation-heading h2 {

        font-size: 38px;

    }


}





@media(max-width:600px) {


    .consultation-section {

          padding: 40px 0px;

    }



    .consultation-right-card {

        padding: 25px 18px;

    }


}


/* =========================================
PREMIUM FOOTER
========================================= */


.premium-footer {


    background: #0b100b;

    padding: 80px 0 25px;

    position: relative;

    overflow: hidden;

    color: #fff;

}




.footer-glow {


    position: absolute;

    width: 550px;

    height: 550px;

    right: -200px;

    top: -200px;

    background: #82b735;

    opacity: .18;

    filter: blur(100px);

    border-radius: 50%;

}




.footer-card {


    height: 100%;

    padding: 22px;

    background:

        rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 28px;

    backdrop-filter: blur(15px);

}





.footer-logo img {


    width: 270px;

    max-width: 100%;

    margin-bottom: 25px;

}



.brand-footer p {


    color: #bcbcbc;

    font-size: 14px;

    line-height: 1.8;

}





.footer-badge {


    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;

    padding: 10px 18px;

    border-radius: 40px;

    background: rgba(126, 166, 61, .18);

    color: #c9e895;

    font-size: 12px;

}





.footer-card h4 {


    display: flex;

    align-items: center;

    gap: 10px;

    color: #c8e98b;

    font-size: 18px;

    margin-bottom: 25px;

}





.footer-card h4 i {


    font-size: 20px;

}




.footer-card ul {


    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-card li {


    margin-bottom: 14px;

}




.footer-card a {


    display: flex;

    align-items: center;

    gap: 10px;

    color: #bdbdbd;

    text-decoration: none;

    font-size: 14px;

    transition: .3s;

}



.footer-card a i {


    color: #89b944;

}



.footer-card a:hover {


    color: #fff;

    transform: translateX(5px);

}





.footer-contact {


    display: flex;

    gap: 12px;

    margin-bottom: 20px;

    align-items: flex-start;

}





.contact-icon {


    width: 40px;

    height: 40px;

    border-radius: 12px;

    background: rgba(126, 166, 61, .18);

    display: grid;

    place-items: center;

    color: #c9e895;

    flex-shrink: 0;

}





.footer-contact p {


    margin: 0;

    font-size: 13px;

    line-height: 1.7;

    color: #bbb;

}





.footer-bottom {


    margin-top: 50px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .12);

    text-align: center;

    font-size: 15px;

    color: #cdcaca;

}







/* =================================
FLOATING CONTACT
================================= */


.floating-whatsapp,
.floating-call {


    position: fixed;

    bottom: 25px;

    height: 61px;

    padding: 8px 25px 8px 8px;

    display: flex;

    align-items: center;

    gap: 14px;

    border-radius: 50px;

    text-decoration: none;

    color: white;

    z-index: 999;

    box-shadow:

        0 20px 50px rgba(0, 0, 0, .35);

    backdrop-filter: blur(15px);

    transition: .35s;

}




.floating-whatsapp {


    left: 25px;

    background:

        linear-gradient(135deg,
            #25d366,
            #128c7e);

}





.floating-call {


    right: 25px;

    background:

        linear-gradient(135deg,
            #9acb4b,
            #496b20);

}





.floating-whatsapp div,
.floating-call div {


    width: 47px;

    height: 47px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: rgba(255, 255, 255, .25);

    font-size: 25px;

}





.floating-whatsapp span,
.floating-call span {


    font-size: 15px;

    font-weight: 700;

}



.floating-whatsapp small,
.floating-call small {


    display: block;

    font-size: 11px;

    opacity: .85;

    font-weight: 400;

}





.floating-whatsapp:hover,
.floating-call:hover {


    transform: translateY(-8px);

}





@media(max-width:768px) {


    .premium-footer {

        padding: 60px 15px 20px;

    }



    .footer-card {

        padding: 25px;

    }



    .floating-whatsapp,
    .floating-call {


        height: 55px;

        padding-right: 15px;

    }



    .floating-whatsapp div,
    .floating-call div {


        width: 42px;

        height: 42px;

        font-size: 20px;

    }



    .floating-whatsapp span,
    .floating-call span {


        font-size: 12px;

    }



    .floating-whatsapp {

        left: 15px;

    }



    .floating-call {

        right: 15px;

    }



}

/* =========================================
ABOUT SECTION
========================================= */


.about-clean-section {

    padding: 70px 0;

    background: #f8f7f1;

    overflow: hidden;

}





/* =========================================
IMAGE COLLAGE
========================================= */


.about-four-gallery {


    width: 100%;

    max-width: 650px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    align-items: center;

}





.gallery-item {


    overflow: hidden;

    height: 260px;

}



.gallery-item img {


    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}




.gallery-item:hover img {

    transform: scale(1.08);

}





/* LEFT TOP */

.gallery-one {

    height: 330px;

    border-radius:

        45px 45px 45px 10px;

    margin-top: 50px;

}




/* RIGHT TOP */

.gallery-two {

    height: 200px;

    border-radius:

        45px 45px 10px 45px;

}




/* LEFT BOTTOM */

.gallery-three {


    height: 220px;

    border-radius:

        10px 45px 45px 45px;

}




/* RIGHT BOTTOM */


.gallery-four {


    height: 340px;

    border-radius:

        45px 10px 45px 45px;

    margin-top: -80px;

}







/* =========================================
CONTENT
========================================= */


.about-clean-content {

    padding-left: 35px;

}



.about-small-title {


    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #78994c;

    margin-bottom: 15px;

}



.about-small-title i {

    font-size: 18px;

}



.about-clean-content h2 {


    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1.22;

    color: #243820;

    margin-bottom: 25px;

}



.about-clean-content h2 span {


    display: block;

    color: #78994c;

    font-style: italic;

}




.about-clean-content p {


    font-size: 16px;

    line-height: 1.75;

    color: #666;

    margin-bottom: 18px;

}




.about-clean-btn {


    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 32px;

    margin-top: 15px;

    background: #78994c;

    border-radius: 50px;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}



.about-clean-btn:hover {

    background: #243820;

    color: white;

}







/* =========================================
TABLET RESPONSIVE
========================================= */


@media(max-width:991px) {


    .about-clean-section {

        padding: 80px 20px;

    }



    .about-four-gallery {


        max-width: 520px;

        gap: 18px;

    }



    .gallery-one {

        height: 270px;

    }



    .gallery-two {

        height: 170px;

    }



    .gallery-three {

        height: 190px;

    }



    .gallery-four {

        height: 280px;

        margin-top: -20px;

    }



    .about-clean-content {

        padding-left: 0;

        margin-top: 20px;

    }



    .about-clean-content h2 {

        font-size: 38px;

    }



}








/* =========================================
MOBILE RESPONSIVE
========================================= */


@media(max-width:576px) {


    .about-clean-section {

        padding: 40px 0px;

    }




    .about-four-gallery {


        gap: 12px;

        width: 100%;

    }




    .gallery-item {


        height: auto;

        aspect-ratio: 1 / 1;

    }



    .gallery-one {


        margin-top: 25px;

        border-radius: 30px 30px 30px 8px;

    }



    .gallery-two {


        border-radius: 30px 30px 8px 30px;

    }



    .gallery-three {


        border-radius: 8px 30px 30px 30px;

    }



    .gallery-four {


        margin-top: -15px;

        border-radius: 30px 8px 30px 30px;

    }




    .about-clean-content h2 {


        font-size: 28px;

    }

}


/* =====================================================
   TRADE OFFERINGS
===================================================== */

.ps-trade-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: #f4f5ef;
}


/* decorative glow */

.ps-trade-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    top: -350px;
    right: -250px;
    background: rgba(82, 112, 74, 0.07);
    filter: blur(5px);
}


/* =====================================================
   HEADING
===================================================== */

.ps-trade-head {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.2fr .65fr;
    align-items: end;
    gap: 80px;

    margin-bottom: 55px;
}


.ps-trade-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    color: #526f4b;
}


.ps-trade-tag-icon {
    width: 33px;
    height: 33px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    background: #516e4b;
}


.ps-trade-tag-icon i {
    font-size: 14px;
}


.ps-trade-head h2 {
    margin: 0;

    max-width: 830px;

    font-size: clamp(40px, 4.7vw, 68px);
    line-height: 1.02;

    font-weight: 600;
    letter-spacing: -2.5px;

    color: #1c241c;
}


.ps-trade-head h2 span {
    display: block;
    color: #5c7855;
    font-weight: 400;
}


.ps-trade-head-right {
    display: flex;
    gap: 20px;
    align-items: flex-start;

    padding-bottom: 7px;
}


.ps-trade-line {
    width: 35px;
    height: 2px;

    margin-top: 12px;

    flex-shrink: 0;

    background: #587552;
}


.ps-trade-head-right p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: #686f65;
}


/* =====================================================
   PRODUCT GRID
===================================================== */

.ps-trade-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 290px;

    gap: 18px;
}


/* =====================================================
   CARD
===================================================== */

.ps-product-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border-radius: 24px;

    background: #263225;
}


.ps-product-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}


/* card variations */

.ps-card-large {
    grid-row: span 2;
}


.ps-card-wide {
    grid-column: span 2;
}


/* Overlay */

.ps-product-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 20, 9, 0.06) 15%,
            rgba(10, 18, 9, 0.15) 45%,
            rgba(10, 18, 9, 0.82) 100%
        );

    transition: background .4s ease;
}


/* product number */

.ps-product-number {
    position: absolute;
    top: 20px;
    left: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 43px;
    height: 29px;

    padding: 0 12px;

    border-radius: 50px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #fff;

    border: 1px solid rgba(255,255,255,.28);

    background: rgba(22, 32, 20, .22);

    backdrop-filter: blur(10px);
}


/* content */

.ps-product-info {
    position: absolute;

    left: 24px;
    right: 68px;
    bottom: 23px;

    transition: transform .35s ease;
}


.ps-product-info span {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.4px;
    text-transform: uppercase;

    color: rgba(255,255,255,.72);
}


.ps-product-info h3 {
    margin: 0;

    font-size: clamp(20px, 1.5vw, 27px);
    line-height: 1.15;

    font-weight: 500;
    letter-spacing: -.5px;

    color: #fff;
}


/* arrow */

.ps-product-arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #263823;

    background: rgba(255,255,255,.95);

    transform: translateY(12px);
    opacity: 0;

    transition:
        transform .35s ease,
        opacity .35s ease,
        background .3s ease;
}


.ps-product-arrow i {
    font-size: 17px;
}


/* =====================================================
   CARD HOVER
===================================================== */

.ps-product-card:hover img {
    transform: scale(1.07);
}


.ps-product-card:hover .ps-product-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(12, 24, 10, .10) 0%,
            rgba(25, 48, 20, .22) 45%,
            rgba(18, 36, 15, .92) 100%
        );
}


.ps-product-card:hover .ps-product-info {
    transform: translateY(-5px);
}


.ps-product-card:hover .ps-product-arrow {
    transform: translateY(0);
    opacity: 1;
}


/* =====================================================
   CTA CARD
===================================================== */

.ps-trade-cta {
    position: relative;

    min-height: 290px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border-radius: 24px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #2e412b,
            #172417
        );
}


.ps-cta-pattern {
    position: absolute;

    right: -15px;
    top: -35px;

    font-size: 145px;

    color: rgba(255,255,255,.045);

    transform: rotate(15deg);
}


.ps-cta-label {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #bdcbb7;
}


.ps-trade-cta h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    font-size: 26px;
    line-height: 1.15;

    font-weight: 500;
}


.ps-trade-cta h3 span {
    display: block;
    color: #b7ccaF;
}


.ps-trade-cta p {
    position: relative;
    z-index: 2;

    margin: 0;

    max-width: 310px;

    font-size: 13px;
    line-height: 1.7;

    color: rgba(255,255,255,.62);
}


.ps-trade-btn {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 10px 10px 10px 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    color: #243423;

    background: #fff;

    transition: all .3s ease;
}


.ps-trade-btn span {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background: #536f4d;

    transition: transform .3s ease;
}


.ps-trade-btn:hover {
    color: #fff;
    background: #617c59;
}


.ps-trade-btn:hover span {
    background: #2d402a;
    transform: rotate(45deg);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .ps-trade-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ps-card-wide {
        grid-column: span 1;
    }

}


@media (max-width: 991px) {

    .ps-trade-section {
        padding: 85px 0;
    }


    .ps-trade-head {
        grid-template-columns: 1fr;
        gap: 28px;

        margin-bottom: 45px;
    }


    .ps-trade-head-right {
        max-width: 650px;
    }


    .ps-trade-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 310px;
    }


    .ps-card-large {
        grid-row: span 1;
    }


    .ps-card-wide {
        grid-column: span 1;
    }

}


@media (max-width: 575px) {

    .ps-trade-section {
        padding: 65px 0;
    }


    .ps-trade-head {
        margin-bottom: 35px;
    }


    .ps-trade-head h2 {
        font-size: 35px;
        line-height: 1.08;
        letter-spacing: -1.4px;
    }


    .ps-trade-head-right {
        gap: 13px;
    }


    .ps-trade-line {
        width: 25px;
    }


    .ps-trade-head-right p {
        font-size: 14px;
    }


    .ps-trade-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 290px;
        gap: 14px;
    }


    .ps-product-card {
        border-radius: 19px;
    }


    .ps-product-info {
        left: 20px;
        bottom: 20px;
    }


    .ps-product-info h3 {
        font-size: 23px;
    }


    .ps-product-arrow {
        opacity: 1;
        transform: none;
    }


    .ps-trade-cta {
        min-height: 270px;
        border-radius: 19px;
        padding: 25px;
    }

}

