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

:root {
    --green-dark: #1a4a1e;
    --green-mid: #2d7a35;
    --green-bright: #4caf50;
    --green-light: #e8f5e9;
    --cream: #fafdf5;
    --text: #1a2e1a;
    --text-light: #4a5e4a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 5vw;
    background: rgba(250, 253, 245, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 122, 53, 0.12);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.65rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--green-mid);
}

.nav-cta {
    background: var(--green-mid);
    color: #fff;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 7rem 5vw 4rem;
    background:
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(76, 175, 80, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(45, 122, 53, 0.1) 0%, transparent 55%),
        var(--cream);
    position: relative;
    overflow: hidden;
}

/* decorative circles */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--green-mid);
}

.hero::before {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
}

.hero::after {
    width: 300px;
    height: 300px;
    bottom: 50px;
    left: -80px;
}

.hero-inner {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--green-mid);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.6s ease both;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--green-dark);
    animation: fadeUp 0.7s 0.1s ease both;
}

h1 em {
    font-style: normal;
    color: var(--green-mid);
}

.hero-sub {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 480px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
    background: var(--green-dark);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(26, 74, 30, 0.25);
}

.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 74, 30, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 2px solid var(--green-mid);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

/* hero visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeUp 0.8s 0.2s ease both;
}

.fruit-card-big {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid rgba(45, 122, 53, 0.08);
    transition: transform 0.3s;
}

.fruit-card-big:hover {
    transform: translateY(-3px);
}

.fruit-icon-big {
    font-size: 3rem;
    line-height: 1;
}

.fruit-card-big h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--green-dark);
}

.fruit-card-big p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.fruit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fruit-card-sm {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid rgba(45, 122, 53, 0.08);
    transition: transform 0.3s;
}

.fruit-card-sm:hover {
    transform: translateY(-3px);
}

.fruit-card-sm .icon {
    font-size: 2rem;
}

.fruit-card-sm p {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* ── STATS ── */
.stats {
    background: var(--green-dark);
    padding: 3.5rem 5vw;
    display: flex;
    justify-content: center;
}

.stats-inner {
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--green-bright);
}

.stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* ── ABOUT ── */
.about {
    padding: 6rem 5vw;
    display: flex;
    justify-content: center;
}

.about-inner {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 0.8rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.15;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 1.2rem;
}

.about-list {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--green-mid);
    margin-top: 1px;
}

.about-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.about-item strong {
    color: var(--text);
}

.about-img-box {
    position: relative;
}

.about-card {
    background: var(--green-light);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '🌿';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 7rem;
    opacity: 0.2;
}

.about-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green-dark);
}

.about-card-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.4rem;
}

.about-card-url {
    display: inline-block;
    margin-top: 1rem;
    color: var(--green-mid);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

.about-card-url:hover {
    text-decoration: underline;
}

.float-badge {
    position: absolute;
    bottom: -16px;
    right: 24px;
    background: var(--green-dark);
    color: #fff;
    border-radius: 14px;
    padding: 0.6rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ── PRODUCTS ── */
.products {
    padding: 6rem 5vw;
    background: var(--green-light);
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(45, 122, 53, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.product-emoji {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
}

.product-desc {
    font-size: 0.83rem;
    color: var(--text-light);
    margin-top: 0.4rem;
    line-height: 1.5;
}

/* ── CONTACT ── */
.contact {
    padding: 6rem 5vw;
    display: flex;
    justify-content: center;
}

.contact-inner {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.contact-inner h2 {
    margin-bottom: 1rem;
}

.contact-inner p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--green-dark);
    border-radius: 24px;
    padding: 2.5rem;
    color: #fff;
}

.contact-url {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--green-bright);
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin-bottom: 1.2rem;
}

.contact-url:hover {
    text-decoration: underline;
}

.contact-sub {
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.6;
}

/* ── FOOTER ── */
footer {
    background: #0e2b11;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 1.8rem;
    font-size: 0.83rem;
    margin-top: auto;
}

footer span {
    color: var(--green-bright);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-visual {
        order: -1;
    }

    .fruit-row {
        grid-template-columns: 1fr 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-box {
        order: -1;
    }
}