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

:root {
    --green: #075b2d;
    --green-dark: #043b20;
    --green-light: #0d7a3d;
    --lime: #9dcf21;
    --gold: #e8b719;
    --cream: #f6f8f1;
    --text: #163324;
    --muted: #637267;
    --white: #ffffff;
    --border: #e5ebe3;
    --shadow: 0 20px 60px rgba(7, 67, 34, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto;
}

/* =========================
   TOP BAR
========================= */

.topbar {
    background: var(--green-dark);
    color: #dfeee3;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.topbar-inner {
    height: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header {
    height: 84px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #edf0ea;
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* =========================
   LOGO
========================= */

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--green);
}

.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #7fac2b;
    flex: 0 0 52px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.brand strong,
.brand small,
.brand em {
    display: block;
    line-height: 1;
}

.brand strong {
    font-size: 20px;
    letter-spacing: -0.04em;
}

.brand small {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-top: 3px;
}

.brand em {
    font-size: 7px;
    letter-spacing: 0.22em;
    font-style: normal;
    margin-top: 4px;
    color: #52675a;
}

/* =========================
   NAVIGATION
========================= */

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
    color: #4c5e52;
}

.nav-links a {
    padding: 31px 0;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 22px;
    height: 2px;
    background: var(--gold);
    transition: 0.25s;
}

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

.nav-links a:hover::after,
.nav-links .active::after {
    right: 0;
}

.nav-cta {
    background: var(--green);
    color: #fff;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 7px;
    transition: 0.25s;
}

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

.menu-btn {
    display: none;
    border: 0;
    background: none;
    font-size: 26px;
    color: var(--green);
    cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: linear-gradient(110deg, #f2f8e9, #fff);
}

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 82% 38%,
            rgba(177, 211, 57, 0.3),
            transparent 26%
        ),
        linear-gradient(
            130deg,
            rgba(4, 59, 32, 0.04),
            transparent 45%
        );
}

.hero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    right: -180px;
    top: -230px;
    background: rgba(157, 207, 33, 0.13);
}

.hero-grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--green-light);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 15px;
}

.eyebrow span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 64px;
    line-height: 1.03;
    letter-spacing: -0.045em;
    color: var(--green-dark);
    margin-bottom: 22px;
}

.hero h1 span {
    color: var(--green-light);
}

.hero-copy > p {
    max-width: 570px;
    color: var(--muted);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 30px 0 36px;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 7px;
    font-weight: 700;
    padding: 13px 21px;
    border: 1px solid transparent;
    font-size: 13px;
    transition: 0.25s;
    cursor: pointer;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 10px 22px rgba(5, 91, 45, 0.2);
}

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

.btn-light {
    background: #fff;
    color: var(--green);
    border-color: #dbe5dc;
}

.btn-light:hover {
    border-color: var(--green);
}

.btn-white {
    background: #fff;
    color: var(--green);
    margin-top: 22px;
}

/* =========================
   HERO STATS
========================= */

.trust-row {
    display: flex;
    gap: 35px;
}

.trust-row div {
    padding-right: 30px;
    border-right: 1px solid #dce5db;
}

.trust-row div:last-child {
    border: 0;
}

.trust-row strong,
.trust-row span {
    display: block;
}

.trust-row strong {
    font-size: 18px;
    color: var(--green);
}

.trust-row span {
    font-size: 10px;
    color: #758277;
    margin-top: 1px;
}

/* =========================
   HERO IMAGE
========================= */

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid #fff;
    transform: rotate(1deg);
}

.hero-image-wrap img {
    width: 100%;
    display: block;
}

.floating-card {
    position: absolute;
    left: -35px;
    bottom: 35px;
    background: #fff;
    border-radius: 12px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.leaf {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eaf5df;
    color: var(--green);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card small {
    font-size: 10px;
    color: #78837c;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: -2%;
    width: 104%;
    height: 55px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* =========================
   TICKER
========================= */

.ticker {
    overflow: hidden;
    background: var(--green);
    color: #fff;
    height: 52px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.ticker-track b {
    color: var(--gold);
    font-size: 16px;
}

@keyframes scroll {
    to {
        transform: translateX(-35%);
    }
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* =========================
   ABOUT
========================= */

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 22px;
    display: block;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-badge strong {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
}

.experience-badge span {
    font-size: 11px;
    line-height: 1.35;
    font-weight: 700;
}

.section-copy h2,
.section-heading h2,
.center-heading h2,
.contact h2 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--green-dark);
    font-size: 43px;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}

.section-copy h2 em,
.section-heading h2 em,
.center-heading h2 em,
.contact h2 em {
    color: var(--green-light);
    font-style: normal;
}

.section-copy p,
.section-heading > p,
.center-heading > p,
.contact > div > p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 14px;
}

/* =========================
   FEATURES
========================= */

.feature-list {
    margin-top: 27px;
    display: grid;
    gap: 13px;
}

.feature-list > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list i {
    font-style: normal;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e7f1dc;
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
}

.feature-list strong,
.feature-list small {
    display: block;
}

.feature-list strong {
    font-size: 13px;
}

.feature-list small {
    font-size: 11px;
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    gap: 12px;
    color: var(--green);
    font-weight: 800;
    font-size: 13px;
    margin-top: 25px;
}

.text-link span {
    transition: 0.2s;
}

.text-link:hover span {
    transform: translateX(5px);
}

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

.products {
    background: var(--cream);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.section-heading > p {
    max-width: 370px;
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 18px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.product-card.featured {
    padding: 0;
    overflow: hidden;
}

.product-photo {
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px 23px;
}

.product-tag {
    font-size: 9px;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: var(--green-light);
}

.product-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--green-dark);
    font-size: 23px;
    margin: 8px 0 7px;
    line-height: 1.1;
}

.product-card p {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 17px;
}

.mini-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: #eef5e5;
    display: grid;
    place-items: center;
    font-size: 27px;
    margin-bottom: 25px;
}

.card-link {
    margin-top: auto;
    background: none;
    border: 0;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.card-link span {
    margin-left: 8px;
}

/* =========================
   BENEFITS
========================= */

.benefits {
    background: #fff;
}

.center-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
}

.center-heading .eyebrow {
    justify-content: center;
}

.center-heading > p {
    font-size: 14px;
}

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

.benefit {
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 27px;
    transition: 0.25s;
}

.benefit:hover {
    border-color: #bdd18f;
    box-shadow: 0 14px 35px rgba(7, 67, 34, 0.08);
}

.benefit-icon {
    width: 47px;
    height: 47px;
    border-radius: 12px;
    background: #eef5e5;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.benefit h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--green-dark);
    font-size: 20px;
    margin-bottom: 6px;
}

.benefit p {
    font-size: 12px;
    color: var(--muted);
}

/* =========================
   SHOWCASE
========================= */

.showcase {
    padding-top: 20px;
}

.showcase-box {
    background: var(--green);
    border-radius: 25px;
    min-height: 420px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 65px;
    position: relative;
}

.showcase-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    right: 30%;
    top: -220px;
    background: rgba(255, 255, 255, 0.06);
}

.showcase-box h2 {
    font-family: "Playfair Display", Georgia, serif;
    color: #fff;
    font-size: 47px;
    line-height: 1.08;
}

.showcase-box p {
    color: #d8e8dc;
    max-width: 450px;
    font-size: 14px;
    margin-top: 15px;
}

.eyebrow.light {
    color: #d7e8db;
}

.eyebrow.light span {
    background: var(--gold);
}

.showcase-art {
    justify-self: end;
    width: 430px;
    transform: rotate(2deg);
    border: 7px solid #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.showcase-art img {
    width: 100%;
    display: block;
}

/* =========================
   CONTACT
========================= */

.contact {
    background: #f4f7f0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 90px;
    align-items: start;
}

.contact h2 {
    font-size: 49px;
}

.contact-details {
    display: grid;
    gap: 18px;
    margin-top: 35px;
}

.contact-details > div {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.contact-details > div > span {
    width: 37px;
    height: 37px;
    border-radius: 10px;
    background: #e4efda;
    color: var(--green);
    display: grid;
    place-items: center;
}

.contact-details small,
.contact-details strong {
    display: block;
}

.contact-details small {
    font-size: 9px;
    letter-spacing: 0.15em;
    font-weight: 800;
    color: #7c897e;
}

.contact-details strong {
    font-size: 12px;
    color: var(--green-dark);
}

/* =========================
   CONTACT FORM
========================= */

.contact-form {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--green-dark);
    font-size: 26px;
    margin-bottom: 22px;
}

.contact-form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #4f6055;
    margin-bottom: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dce4dc;
    border-radius: 7px;
    padding: 11px 12px;
    margin-top: 6px;
    outline: none;
    color: var(--text);
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--green);
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    margin-top: 4px;
}

.form-status {
    font-size: 11px;
    color: var(--green);
    margin-top: 10px;
    text-align: center;
    min-height: 16px;
}

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

.footer {
    background: var(--green-dark);
    color: #d5e1d8;
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.9fr 1fr;
    gap: 50px;
    padding-bottom: 45px;
}

.footer-logo {
    color: #fff;
}

.footer-logo .brand-mark {
    background: #fff;
}

.footer-logo em {
    color: #aebfb3;
}

.footer-brand p {
    max-width: 290px;
    font-size: 12px;
    margin-top: 17px;
    color: #aebfb3;
}

.footer h4 {
    font-size: 12px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
    display: block;
    font-size: 11px;
    color: #aebfb3;
    margin: 7px 0;
}

.footer-grid a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 17px 0;
    font-size: 10px;
    color: #91a59a;
}

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

.modal {
    position: fixed;
    inset: 0;
    background: rgba(1, 28, 15, 0.55);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-card {
    width: min(450px, 100%);
    background: #fff;
    border-radius: 18px;
    padding: 34px;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.modal-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--green-dark);
    font-size: 30px;
    margin: 9px 0;
}

.modal-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 22px;
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 12px;
    border: 0;
    background: none;
    font-size: 27px;
    color: #718075;
    cursor: pointer;
}

.modal-enquire {
    width: 100%;
}

/* =========================
   BACK TO TOP
========================= */

.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-dark);
    font-weight: 900;
    display: none;
    z-index: 40;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.back-top.show {
    display: block;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 17px;
    }

    .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-grid {
        gap: 25px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-card.featured {
        grid-row: span 2;
    }

    .product-photo {
        height: 230px;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-box {
        padding: 45px;
    }

    .showcase-art {
        width: 340px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .container {
        width: min(100% - 28px, 600px);
    }

    .topbar-inner span:last-child {
        display: none;
    }

    .header {
        height: 70px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .brand strong {
        font-size: 17px;
    }

    .brand small {
        font-size: 12px;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 14px;
        right: 14px;
        top: 66px;
        background: #fff;
        border: 1px solid #e5ebe4;
        border-radius: 10px;
        padding: 10px;
        box-shadow: var(--shadow);
        flex-direction: column;
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 11px 13px;
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 65px 0 75px;
        gap: 45px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-copy > p {
        font-size: 15px;
    }

    .trust-row {
        gap: 13px;
        justify-content: space-between;
    }

    .trust-row div {
        padding-right: 13px;
    }

    .trust-row strong {
        font-size: 15px;
    }

    .trust-row span {
        font-size: 8px;
    }

    .floating-card {
        left: 12px;
        bottom: 15px;
    }

    .section {
        padding: 72px 0;
    }

    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-copy h2,
    .section-heading h2,
    .center-heading h2 {
        font-size: 36px;
    }

    .experience-badge {
        right: 10px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 15px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        grid-row: auto;
    }

    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-box {
        grid-template-columns: 1fr;
        padding: 42px 25px;
        gap: 35px;
    }

    .showcase-box h2 {
        font-size: 39px;
    }

    .showcase-art {
        width: 100%;
        justify-self: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 460px) {

    .hero h1 {
        font-size: 39px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trust-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-row div {
        border-right: 1px solid #dce5db;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .showcase-art {
        width: 100%;
    }
}