* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d6a4f;
    --primary-light: #52b788;
    --accent: #d4a017;
    --dark: #1b4332;
    --cream: #fefae0;
    --earth: #95a472;
    --light: #f8f9fa;
    --text: #2d3436;
    --text-light: #636e72;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--text);
    background: radial-gradient(circle at top, rgba(82, 183, 136, 0.12), transparent 25%), var(--light);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 106, 79, 0.12);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.logo img {
    width: 40px;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    font-weight: 600;
    transition: color 0.3s ease, transform 0.25s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 0.35rem;
    border-radius: 8px;
}

.hamburger span {
    width: 26px;
    height: 4px;
    background: var(--text);
    border-radius: 3px;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(17, 55, 34, 0.62), rgba(17, 55, 34, 0.38)), 
                url('../images/hero.jpg') center/cover;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
    margin-top: 72px;
}

.hero-content {
    max-width: 760px;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    animation: heroFadeIn 1s ease-out both;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 1rem;
    line-height: 1.02;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.92);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 35px rgba(45, 106, 79, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(45, 106, 79, 0.22);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    color: white;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission */
.mission {
    padding: 5rem 0;
    text-align: center;
    background: white;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Highlights */
.highlights {
    padding: 5rem 0;
    background: #f7f7f1;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.5rem;
}

/* Gallery */
.gallery-section {
    padding: 5rem 0;
    background: #f4f7f1;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-heading h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-heading p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 26px 70px rgba(15, 44, 27, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
    cursor: zoom-in;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(11, 22, 17, 0.85);
    z-index: 1100;
    padding: 2rem;
}

.lightbox.open {
    display: flex;
}

.lightbox-image {
    max-width: 95%;
    max-height: 85%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    max-width: 900px;
    text-align: center;
    font-size: 1rem;
    opacity: 0.95;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.highlight-card {
    text-align: center;
    padding: 2.25rem 1.75rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(15, 44, 27, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(45, 106, 79, 0.08);
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 106, 79, 0.2);
}

.highlight-card i {
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(82, 183, 136, 0.12);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    margin-bottom: 0.75rem;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.highlight-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.highlight-card p {
    color: var(--text-light);
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 28%);
    opacity: 0.6;
}

.page-header > .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
}

/* About Content */
.about-content {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--cream);
    border-left: 4px solid var(--primary);
    border-radius: 5px;
}

/* Products */
.products-section {
    padding: 4rem 0;
}

.product-image,
.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1.2rem;
    max-height: 260px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.product-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.product-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-light);
}

/* Make product cards more compact on small screens */
@media (max-width: 480px) {
    .product-card {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }

    .product-image {
        max-height: 180px;
    }
}

/* Sustainability */
.sustainability-content {
    padding: 4rem 0;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.practice-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s;
}

.practice-card:hover {
    transform: translateY(-5px);
}

.practice-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.practice-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.practice-card p {
    color: var(--text-light);
}

.impact-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.impact-box h2 {
    color: white;
    margin-bottom: 2rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.impact-stat {
    padding: 1.5rem;
}

.impact-stat strong {
    display: block;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.impact-stat span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact */
.contact-section {
    padding: 5rem 0;
    background: #f7f8f3;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1.4fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
    color: var(--dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--dark);
}

.contact-item p {
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

button.btn {
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

html {
    scroll-behavior: smooth;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
}

.btn:focus-visible,
.nav-link:focus-visible,
.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 3px solid rgba(82, 183, 136, 0.7);
    outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container,
    .container {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 2rem 1.5rem 4rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        min-height: calc(100% - 60px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Lock body scroll and show a subtle backdrop when navigation is open */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 60px 0 0 0;
        background: rgba(11, 22, 17, 0.35);
        z-index: 900;
        pointer-events: none;
    }
    
    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 85vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 5rem 0 2rem;
    }

    .about-content,
    .products-section,
    .sustainability-content,
    .contact-section,
    .mission,
    .highlights {
        padding: 3rem 0;
    }

    .contact-grid,
    .impact-stats,
    .practice-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item i {
        width: 44px;
        height: 44px;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .nav-link {
        font-size: 1.05rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 0.8rem auto;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .section-heading {
        padding: 0 0.5rem;
    }
}
