:root {
    --green-dark: #1a4d2e;
    --green-mid: #2e7d45;
    --green-light: #4caf68;
    --cream: #f8f4ed;
    --gold: #c8a84b;
    --text: #1a1a1a;
    --text-light: #5a5a5a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(248, 244, 237, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46, 125, 69, 0.15);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.4rem;

    font-weight: 700;
    flex-shrink: 0;
}

.nav-logo-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

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

.nav-logo-sub {
    font-size: .65rem;
    letter-spacing: .12em;
    color: var(--green-mid);
    text-transform: uppercase;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: .04em;
    transition: color .2s;
}

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

.nav-cta {
    background: var(--green-dark);
    color: #fff;
    padding: .55rem 1.4rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

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

/* Hidden checkbox for menu toggle */
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: .3s;
}

/* Animate hamburger icon when checked */
#menu-toggle:checked~nav .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked~nav .hamburger span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked~nav .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* mobile menu */
.mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--cream);
    padding: 1.5rem 2rem 2rem;
    border-bottom: 2px solid var(--green-light);
    transform: translateY(-100%);
    opacity: 0;
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}

#menu-toggle:checked~.mobile-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--green-dark);
}

.mobile-menu .nav-cta {
    display: inline-block;
    margin-top: .8rem;
    color: #fff !important;
}

/* Close menu when clicking on links */
.mobile-menu a {
    position: relative;
}

/* ── HERO ── */
.hero {
    /*min-height: 100vh;*/
    display: grid;
    place-items: center;
    padding: 7rem 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(76, 175, 104, .18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(46, 125, 69, .14) 0%, transparent 60%),
        var(--cream);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e7d45' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: .4rem 1.2rem;
    border-radius: 50px;
    background: rgba(46, 125, 69, .1);
    border: 1px solid rgba(46, 125, 69, .25);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green-mid);
    font-weight: 500;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--green-dark);
}

.hero h1 em {
    font-style: italic;
    color: var(--green-mid);
}

.hero-sub {
    margin: 1.5rem auto 2.5rem;
    font-size: clamp(.95rem, 2vw, 1.15rem);
    line-height: 1.75;
    max-width: 560px;
    color: var(--text-light);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--green-dark);
    color: #fff;
    padding: .85rem 2.2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 8px 28px rgba(26, 77, 46, .25);
}

.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(26, 77, 46, .3);
}

.btn-outline {
    border: 2px solid var(--green-dark);
    color: var(--green-dark);
    padding: .83rem 2.2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
}

.btn-outline:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.hero-stat-row {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(46, 125, 69, .15);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: .3rem;
}

/* ── SECTION BASE ── */
section {
    padding: 4rem 2.5rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: .8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.15;
}

/* ── STORY ── */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.4rem;
}

.story-text p strong {
    color: var(--green-dark);
}

.story-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--green-dark);
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 32px 80px rgba(26, 77, 46, .25);
}

.story-visual-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
}

.story-visual-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.story-visual-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
}

.story-visual-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    opacity: .9;
}

.story-visual-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, .9);
    line-height: 1.5;
}

.story-visual-author {
    margin-top: 1rem;
    font-size: .8rem;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
}

/* ── FOUNDERS ── */
.founders {
    background: var(--green-dark);
}

.founders .section-title {
    color: #fff;
}

.founders .section-label {
    color: var(--green-light);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.founder-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: background .3s, transform .3s;
}

.founder-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px);
}

.founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: .25rem;
}

.founder-role {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 1.2rem;
}

.founder-msg {
    font-size: .95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .7);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.founder-msg:last-child {
    margin-bottom: 0;
}


/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(46, 125, 69, .1);
    transition: box-shadow .3s, transform .3s;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(46, 125, 69, .12);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: .6rem;
}

.service-desc {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ── CONTACT ── */
.contact {
    background: linear-gradient(135deg, #f0efe8 0%, #e8f2ec 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: .1rem;
}

.contact-detail span {
    font-size: .95rem;
    color: var(--text);
}

.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .06);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: .4rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid rgba(46, 125, 69, .2);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: var(--text);
    background: #fafaf8;
    outline: none;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green-mid);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    width: 100%;
    padding: .9rem;
    background: var(--green-dark);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.form-submit:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
    background: #111810;
    color: rgba(255, 255, 255, .6);
    padding: 3rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
}

.footer-logo span {
    color: var(--green-light);
}

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

.footer-links a {
    text-decoration: none;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-copy {
    font-size: .78rem;
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

    .story-grid,
    .founders-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-visual {
        min-height: 320px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 680px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .hero-stat-row {
        gap: 2rem;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}