/*=====================
GOOGLE FONT
======================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=====================
RESET
======================*/

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .root-line {
        animation: none !important;
        stroke-dashoffset: 0 !important;
        opacity: 0.3 !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/*=====================
COLORS
======================*/

:root {

    --primary: #2E7D32;
    --secondary: #43A047;
    --accent: #8BC34A;

    --white: #fff;
    --black: #222;
    --gray: #666;
    --light: #f5f5f5;

    --shadow: 0 10px 30px rgba(0, 0, 0, .1);

}

/*=====================
BUTTON
======================*/

.btn {

    display: inline-block;

    padding: 15px 35px;

    background: var(--primary);

    color: #fff;

    border-radius: 50px;

    transition: .4s;

    font-weight: 600;

    border: none;

    cursor: pointer;

    font-family: 'Poppins', sans-serif;

    font-size: 15px;

}

.btn:hover {

    background: #1b5e20;

    transform: translateY(-5px);

}

.btn-outline {

    background: transparent;

    border: 2px solid #fff;

}

.btn-outline:hover {

    background: #fff;

    color: var(--primary);

}

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

.header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    transition: .4s;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(10px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

}

.header .container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 1px 0;

}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;

    margin-right: -72px;
    /* Adjust between -10px and -25px */
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text h2 {

    font-family: 'Cinzel', serif;

    font-size: 28px;

    color: #0B5D2A;

    font-weight: 800;

    letter-spacing: 1px;

}

.logo-text span {

    font-size: 13px;
    color: #555;

    margin-top: 4px;

    display: block;

    letter-spacing: 0.5px;

}

.nav-links {

    display: flex;

    gap: 30px;

}

.nav-links li a {

    font-size: 16px;

    font-weight: 500;

    position: relative;

}

.nav-links li a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .4s;

}

.nav-links li a:hover::after {

    width: 100%;

}

.active {

    color: var(--primary);

}

.menu-btn {

    display: none;

    font-size: 28px;

    cursor: pointer;

}

/* ============================================================
   MOBILE NAV (extends header block above — same system)
   ============================================================ */

@media (max-width: 900px) {

    .menu-btn {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .navbar {
        position: fixed;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    .navbar.open {
        max-height: 500px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .nav-links li a {
        display: block;
        padding: 14px 25px;
        border-bottom: 1px solid var(--light);
    }

    .logo img {
        width: 130px;
        height: 65px;
        margin-right: -40px;
    }
}

/*=====================
GOOGLE FONT
======================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');
/*=====================
RESET
======================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

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

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=====================
COLORS
======================*/

:root{

    --primary:#2E7D32;
    --secondary:#43A047;
    --accent:#8BC34A;

    --white:#fff;
    --black:#222;
    --gray:#666;
    --light:#f5f5f5;

    --shadow:0 10px 30px rgba(0,0,0,.1);

}

/*=====================
BUTTON
======================*/

.btn{

    display:inline-block;

    padding:15px 35px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.btn:hover{

    background:#1b5e20;

    transform:translateY(-5px);

}

.btn-outline{

    background:transparent;

    border:2px solid #fff;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

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

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:1px 0;

}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:200px;
    height:100px;
    object-fit:contain;

    margin-right:-72px;   /* Adjust between -10px and -25px */
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-text h2{

    font-family:'Cinzel',serif;

    font-size:28px;

    color:#0B5D2A;

    font-weight:800;

    letter-spacing:1px;

}

.logo-text span{

    font-size:13px;
    color:#555;

    margin-top:4px;

    display:block;

    letter-spacing:0.5px;

}

.nav-links{

    display:flex;

    gap:30px;

}

.nav-links li a{

    font-size:16px;

    font-weight:500;

    position:relative;

}

.nav-links li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-links li a:hover::after{

    width:100%;

}

.active{

    color:var(--primary);

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/* ============================================================
   HERO — dark, with moving root system behind the type
   ============================================================ */

.hero-dark {
    position: relative;
    margin-top: 84px;
    overflow: hidden;
    background: #171d12;
    padding: 100px 0 90px;
}

.hero-roots {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-roots svg {
    width: 100%;
    height: 100%;
    display: block;
}

.root-line {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.3;
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    transform-box: fill-box;
    transform-origin: top center;
    animation:
        grow-root 2.4s ease-out forwards,
        sway-root 7s ease-in-out 2.4s infinite alternate;
}

.r1 { animation-delay: 0.1s, 2.5s; }
.r2 { animation-delay: 0.3s, 2.7s; }
.r3 { animation-delay: 0s, 2.4s; opacity: 0.4; }
.r4 { animation-delay: 0.9s, 3.3s; opacity: 0.22; }
.r5 { animation-delay: 1.1s, 3.5s; opacity: 0.22; }
.r6 { animation-delay: 1s, 3.4s; opacity: 0.22; }

.root-line.r1, .root-line.r4 { animation-duration: 2.4s, 6.5s; }
.root-line.r2, .root-line.r5 { animation-duration: 2.4s, 8s; }
.root-line.r3, .root-line.r6 { animation-duration: 2.4s, 7.2s; }

@keyframes grow-root {
    to { stroke-dashoffset: 0; }
}

@keyframes sway-root {
    0%   { transform: rotate(-1.2deg) translateX(-3px); }
    50%  { transform: rotate(0.6deg) translateX(2px); }
    100% { transform: rotate(1.4deg) translateX(4px); }
}

.hero-dark-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-eyebrow {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.78rem;
    font-weight: 600;
    color: #d1a53c;
    margin: 0 0 18px;
}

.hero-dark h1 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.3rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fbf8ef;
    margin: 0;
}

.hero-dark h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}

.hero-sub {
    margin: 26px 0 36px;
    max-width: 460px;
    color: #cfd3c3;
    font-size: 1.02rem;
    line-height: 1.6;
}

.btn-hero {
    background: var(--accent);
    color: #171d12;
    font-weight: 700;
}

.btn-hero:hover {
    background: #a3d071;
    color: #171d12;
}

@media (max-width: 620px) {
    .hero-dark {
        padding: 80px 0 70px;
    }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */

.products-section {
    padding: 90px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.eyebrow {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
}

.section-title p {
    color: var(--gray);
    font-size: 15.5px;
}

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

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
}

.product-img {
    position: relative;
    height: 270px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-top: 22px;
}

.grad-1 {
    background: linear-gradient(160deg, #eaf5eb 0%, #bfe0c5 100%);
}

.grad-2 {
    background: linear-gradient(160deg, #eef7e6 0%, #cbe6b3 100%);
}

.grad-3 {
    background: linear-gradient(160deg, #f2f8ea 0%, #ddedc0 100%);
}

.product-img .img-icon {
    font-size: 60px;
    color: rgba(46, 125, 50, .25);
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* soft "podium" shadow under the bottle, echoing studio product shots */
.product-img::after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(15, 40, 15, .28), transparent 72%);
    filter: blur(2px);
    z-index: 0;
}

.product-img img {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    /* dissolves the photo's white studio background into the tinted
       card backdrop instead of showing a hard white box */
    mix-blend-mode: multiply;
    filter: drop-shadow(0 12px 14px rgba(10, 30, 10, .16));
    transition: transform .35s ease;
}

.product-card:hover .product-img img {
    transform: translateY(-6px) scale(1.03);
}

.product-img .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.product-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.product-body p {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    align-self: flex-start;
}

.btn-details i {
    font-size: 12px;
    transition: transform .3s ease;
}

.btn-details:hover i {
    transform: translateX(4px);
}

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

.cta-strip {
    background: linear-gradient(120deg, var(--primary), #1b5e20);
    color: var(--white);
    padding: 60px 0;
}

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

.cta-inner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.cta-inner p {
    opacity: .9;
    font-size: 15px;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--accent);
    color: var(--white);
}

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

.footer {
    background: #0B5D2A;
    color: rgba(255, 255, 255, .8);
    padding: 26px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

/* ============================================================
   PRODUCT DETAILS MODAL
   ============================================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 30, 15, .55);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1000;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    border-radius: 22px;
    max-width: 640px;
    width: 100%;
    max-height: 86vh;
    overflow-y: auto;
    position: relative;
    padding: 44px 38px 38px;
    transform: translateY(24px) scale(.97);
    transition: transform .35s ease;
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--light);
    color: var(--black);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-eyebrow {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

.modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.modal-desc {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.modal-content h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 26px 0 12px;
}

.modal-content h4 i {
    font-size: 13px;
}

.modal-benefits {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.modal-benefits li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
}

.modal-benefits li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 11px;
    color: var(--secondary);
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.modal-table td,
.modal-table th {
    padding: 9px 10px;
    border-bottom: 1px solid var(--light);
    text-align: left;
}

.modal-table td:first-child {
    color: var(--gray);
}

.modal-table td:last-child,
.modal-table.dose th:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.modal-table.dose th {
    background: var(--light);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--gray);
}

.modal-note {
    margin-top: 16px;
    font-size: 13px;
    font-style: italic;
    color: var(--gray);
}

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

@media (max-width: 980px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .modal-box {
        padding: 36px 22px 28px;
    }
}