/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #edf7d7;
    color: #172411;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

.container {
    width: min(1150px, 90%);
    margin: auto;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 25px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 21px;
}

.logo-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-menu a {
    font-size: 12px;
    font-weight: 600;
    color: #536148;

    transition: .3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #355d24;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-icons button {
    background: transparent;
    color: #263a1d;
    font-size: 18px;
}

.menu-toggle {
    display: none;

    background: transparent;
    font-size: 25px;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 650px;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 55%,
            rgb(255, 255, 255),
            transparent 30%
        ),
        #eaf7d2;
}

.hero-container {
    min-height: 650px;

    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
}

.hero-content {
    padding-top: 60px;
    position: relative;
    z-index: 5;
}

.small-title {
    display: block;

    color: #688452;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 5vw, 78px);
    line-height: .95;

    letter-spacing: -3px;

    color: #172411;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #456b2e;
}

.hero-content p {
    max-width: 420px;

    color: #64745a;

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    background: #456b2e;
    color: white;

    padding: 14px 22px;
    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;

    transition: .3s;
}

.btn:hover {
    background: #294d1d;
    transform: translateY(-3px);
}

.btn span {
    font-size: 18px;
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-image {
    position: relative;
    height: 600px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    width: 440px;
    height: 440px;

    border-radius: 50%;

    background: #fefffc;

    position: absolute;
    right: 10%;
}

.hero-image img {
    width: 460px;
    height: 460px;

    object-fit: cover;

    border-radius: 50%;

    position: relative;
    z-index: 2;

    mix-blend-mode: multiply;

    filter: saturate(1.2);
}

.water {
    position: absolute;
    z-index: 3;

    border: 3px solid rgba(255,255,255,.8);

    border-radius: 50%;
}

.water-1 {
    width: 160px;
    height: 60px;

    right: 5%;
    bottom: 105px;

    transform: rotate(-10deg);
}

.water-2 {
    width: 100px;
    height: 40px;

    left: 10%;
    bottom: 130px;

    transform: rotate(15deg);
}

.leaf {
    position: absolute;
    z-index: 5;

    font-size: 38px;
}

.leaf-1 {
    top: 90px;
    left: 15%;
    transform: rotate(-35deg);
}

.leaf-2 {
    top: 140px;
    right: 10%;
    transform: rotate(30deg);
}

.leaf-3 {
    bottom: 80px;
    right: 5%;
    transform: rotate(-20deg);
}

.hero-bottom {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: rgba(255,255,255,.5);

    color: #728267;

    font-size: 10px;
}


/* =========================================
   FEATURE BAR
========================================= */

.feature-bar {
    padding: 25px 0;

    background: rgba(255,255,255,.45);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 10px;
}

.feature-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e3f1c9;

    font-size: 17px;
}

.feature-item h4 {
    font-family: "Playfair Display", serif;
    font-size: 13px;
}

.feature-item p {
    color: #83917a;
    font-size: 9px;
    margin-top: 2px;
}


/* =========================================
   SECTION TITLE
========================================= */

.section-title {
    text-align: center;
    max-width: 600px;
    margin: auto;

    margin-bottom: 45px;
}

.section-title > span {
    color: #77915e;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.section-title h2 {
    font-family: "Playfair Display", serif;

    font-size: 38px;

    margin: 8px 0 12px;
}

.section-title h2 em {
    color: #55783c;
    font-style: normal;
}

.section-title p {
    color: #7b896f;
    font-size: 12px;
}


/* =========================================
   HEALING
========================================= */

.healing-section {
    padding: 85px 0 70px;
}

.special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.special-card {
    min-height: 260px;

    border-radius: 18px;

    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 1fr;

    padding: 25px;
}

.card-green {
    background: #cce9a8;
}

.card-light {
    background: #f7fbe9;
}

.special-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special-text > span {
    color: #72925b;
    font-size: 9px;
    letter-spacing: 2px;
}

.special-text h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1;
    margin: 8px 0 15px;
}

.special-text ul {
    list-style: none;
    margin-bottom: 15px;
}

.special-text li {
    font-size: 9px;
    color: #607056;
    margin-bottom: 5px;
}

.special-text li::before {
    content: "✓";
    margin-right: 6px;
}

.special-text p {
    font-size: 10px;
    color: #718069;
    line-height: 1.7;
    margin-bottom: 15px;
}

.small-btn {
    width: fit-content;

    background: #456b2e;
    color: white;

    padding: 8px 15px;

    border-radius: 30px;

    font-size: 9px;
}

.special-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-img img {
    width: 190px;
    height: 190px;

    object-fit: cover;

    border-radius: 50%;

    mix-blend-mode: multiply;
}


/* =========================================
   BENEFITS
========================================= */

.benefits {
    padding: 45px 0 90px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card {
    background: rgba(255,255,255,.8);

    border-radius: 15px;

    padding: 30px 20px;

    text-align: center;

    transition: .3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f1d0;

    font-size: 23px;
}

.benefit-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 16px;

    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 10px;
    color: #7c8972;

    line-height: 1.7;
}


/* =========================================
   PRODUCT BANNER
========================================= */

.product-banner {
    padding: 20px 0 90px;
}

.banner-container {
    min-height: 330px;

    border-radius: 20px;

    overflow: hidden;

    background: #d4eaa9;

    display: grid;
    grid-template-columns: 45% 55%;

    position: relative;
}

.banner-content {
    padding: 55px;

    display: flex;
    justify-content: center;
    flex-direction: column;

    position: relative;
    z-index: 3;
}

.banner-content > span {
    font-size: 9px;
    letter-spacing: 3px;
    color: #78915e;
    font-weight: 700;
}

.banner-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 35px;
    line-height: 1.05;

    margin: 10px 0 15px;
}

.banner-content h2 strong {
    color: #537636;
}

.banner-content p {
    font-size: 11px;
    color: #6f7f64;

    max-width: 300px;

    line-height: 1.6;

    margin-bottom: 20px;
}

.banner-image {
    height: 330px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    mix-blend-mode: multiply;
}


/* =========================================
   PRODUCTS
========================================= */

.products {
    padding: 20px 0 100px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: rgba(255,255,255,.82);

    border-radius: 16px;

    overflow: hidden;

    transition: .3s;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(48,75,30,.08);
}

.product-image {
    height: 190px;

    background: #e3f1c8;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.product-card:hover .product-image img {
    transform: scale(1.07);
}

.product-info {
    padding: 18px;
}

.product-info > span {
    color: #7a9266;
    font-size: 9px;
}

.product-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 16px;

    margin: 5px 0 15px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-bottom strong {
    font-size: 13px;
    color: #476b32;
}

.product-bottom button {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #486e32;
    color: white;

    font-size: 18px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: #314b25;
    color: white;
}

.footer-container {
    padding: 45px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-logo span {
    margin-right: 5px;
}

.footer-container p {
    font-size: 11px;
    color: #bdcdb1;
}

.social {
    display: flex;
    gap: 18px;
}

.social a {
    color: #d9e5d1;
    font-size: 10px;
}

.copyright {
    padding: 15px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,.1);

    color: #a9bba0;
    font-size: 9px;
}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 900px) {

    .nav-menu {
        gap: 20px;
    }

    .hero-container {
        grid-template-columns: 45% 55%;
    }

    .hero-image img {
        width: 380px;
        height: 380px;
    }

    .circle-bg {
        width: 380px;
        height: 380px;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .special-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 650px) {

    .navbar {
        padding: 18px 0;
    }

    .nav-menu {
        position: absolute;

        top: 70px;
        left: 5%;

        width: 90%;

        display: none;
        flex-direction: column;

        padding: 25px;

        background: white;

        border-radius: 15px;

        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-icons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /* HERO */

    .hero {
        min-height: 850px;
    }

    .hero-container {
        min-height: 800px;

        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 80px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-image {
        height: 350px;

        margin-top: -20px;
    }

    .hero-image img {
        width: 300px;
        height: 300px;
    }

    .circle-bg {
        width: 300px;
        height: 300px;

        right: auto;
    }


    /* FEATURE */

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* SECTION */

    .section-title h2 {
        font-size: 32px;
    }


    /* SPECIAL */

    .special-card {
        grid-template-columns: 1fr 1fr;

        min-height: 220px;

        padding: 15px;
    }

    .special-text h3 {
        font-size: 20px;
    }

    .special-img img {
        width: 130px;
        height: 130px;
    }


    /* BENEFITS */

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* BANNER */

    .banner-container {
        grid-template-columns: 1fr;

        min-height: 600px;
    }

    .banner-content {
        padding: 40px 30px;
    }

    .banner-image {
        height: 280px;
    }


    /* PRODUCTS */

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-image {
        height: 150px;
    }


    /* FOOTER */

    .footer-container {
        flex-direction: column;
        gap: 15px;

        text-align: center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 43px;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-item {
        justify-content: flex-start;
    }

    .special-card {
        grid-template-columns: 1fr;
    }

    .special-img {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
    }

}