:root {
    --primary: #228b22;
    --primary-dark: #1a6a1a;
    --accent: #7cfc00;
    --ink: #1f2b24;
    --muted: #5f6c63;
    --surface: #ffffff;
    --surface-soft: #f4f7f1;
    --stroke: #d7e0d8;
    --shadow: 0 14px 34px rgba(9, 28, 14, 0.12);
    --radius-md: 14px;
    --radius-lg: 22px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f9fbf7 0%, #f0f4ec 100%);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.container {
    width: min(1140px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(244, 247, 241, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(34, 139, 34, 0.15);
}

.utility-bar {
    background: linear-gradient(90deg, #174d21 0%, #228b22 60%, #2f9f35 100%);
    color: #ecf5ec;
    font-size: 0.83rem;
}

.utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    padding: 0.45rem 0;
}

.utility-inner p {
    margin: 0;
}

.utility-inner a {
    text-decoration: none;
    font-weight: 600;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.9rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 290px;
    text-decoration: none;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.15;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.79rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.site-nav a {
    position: relative;
    text-decoration: none;
    color: #2f4034;
    font-weight: 600;
    font-size: 0.95rem;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 0;
    border-radius: 999px;
    padding: 0.78rem 1.45rem;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    background: var(--primary-dark);
    box-shadow: 0 10px 22px rgba(26, 106, 26, 0.32);
}

.btn-light {
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary-dark);
}

.btn-light:hover,
.btn-light:focus-visible {
    background: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 1.5px solid rgba(34, 139, 34, 0.4);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(34, 139, 34, 0.1);
}

.btn-sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.86rem;
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(11, 26, 16, 0.86) 0%, rgba(15, 39, 25, 0.8) 42%, rgba(34, 139, 34, 0.45) 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
    gap: 2rem;
    align-items: end;
    padding: clamp(4.2rem, 8vw, 6.8rem) 0;
}

.hero-copy {
    color: #f5f9f5;
    max-width: 700px;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--accent);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 4.3vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-copy p {
    margin: 1.2rem 0 0;
    font-size: 1.06rem;
    max-width: 60ch;
    color: rgba(244, 251, 245, 0.92);
}

.hero-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-panel {
    background: rgba(8, 21, 13, 0.56);
    border: 1px solid rgba(124, 252, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 24px 48px rgba(4, 12, 7, 0.35);
    color: #edf5ed;
}

.hero-panel h2 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.35;
}

.hero-panel ul {
    list-style: none;
    padding: 0;
    margin: 1.05rem 0 0;
    display: grid;
    gap: 1rem;
}

.hero-panel li {
    border-left: 2px solid rgba(124, 252, 0, 0.48);
    padding-left: 0.85rem;
}

.hero-panel strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
}

.hero-panel span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.88rem;
    color: rgba(227, 238, 229, 0.9);
}

.hero-panel img {
    margin-top: 1.2rem;
    width: 100%;
    height: 165px;
    border-radius: 12px;
    object-fit: cover;
}

.section {
    padding: clamp(4.4rem, 7.2vw, 6.2rem) 0;
}

.section-intro {
    max-width: 780px;
    margin-bottom: 2.2rem;
}

.section-intro h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3.1vw, 2.8rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.section-intro p {
    margin: 0.95rem 0 0;
    color: var(--muted);
}

.about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1.9rem;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    padding: 1.7rem;
    box-shadow: var(--shadow);
}

.about-card h3 {
    margin-top: 0;
    margin-bottom: 0.9rem;
    font-size: 1.45rem;
    color: var(--primary-dark);
}

.about-card p {
    margin: 0;
    color: #36443b;
}

.about-card p + p {
    margin-top: 0.95rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 0.6rem;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(124, 252, 0, 0.2);
}

.about-image {
    margin: 0;
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-image figcaption {
    margin-top: 0.65rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

.capabilities {
    background: linear-gradient(180deg, #f3f7f0 0%, #edf3e8 100%);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.capability-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--stroke);
    box-shadow: 0 9px 20px rgba(9, 28, 14, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(9, 28, 14, 0.15);
}

.capability-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.capability-card h3 {
    margin: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.capability-card p {
    margin: 0 1rem 1.1rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.crops {
    background: #ffffff;
}

.crop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.crop-card {
    background: #ffffff;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(10, 27, 14, 0.08);
    transition: transform 0.22s ease;
}

.crop-card:hover {
    transform: translateY(-4px);
}

.crop-card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
}

.crop-card h3 {
    margin: 0.92rem 0.92rem 0.36rem;
    font-size: 1.04rem;
    color: var(--primary-dark);
}

.crop-card p {
    margin: 0 0.92rem 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.sustainability {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, #173626 0%, #1f4b31 40%, #225934 100%);
    color: #ecf4ed;
}

.sustainability::before {
    content: "";
    position: absolute;
    right: -220px;
    top: -220px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 252, 0, 0.28) 0%, rgba(124, 252, 0, 0) 70%);
}

.sustainability-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.sustainability .section-intro,
.sustainability-copy {
    max-width: none;
}

.sustainability-copy h2 {
    margin: 0;
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    line-height: 1.2;
}

.sustainability-copy p {
    margin: 1rem 0 0;
    color: rgba(234, 243, 235, 0.9);
}

.sustainability-copy .check-list {
    margin-top: 1.1rem;
}

.sustainability-copy .check-list li {
    color: rgba(234, 243, 235, 0.92);
}

.sustainability-copy .check-list li::before {
    box-shadow: 0 0 0 4px rgba(124, 252, 0, 0.15);
}

.sustainability-cards {
    display: grid;
    gap: 0.9rem;
}

.sustainability-cards article {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(195, 224, 198, 0.26);
    border-radius: var(--radius-md);
    padding: 0.9rem;
}

.sustainability-cards img {
    width: 100%;
    height: 142px;
    object-fit: cover;
    border-radius: 10px;
}

.sustainability-cards h3 {
    margin: 0.75rem 0 0.2rem;
    color: #ffffff;
    font-size: 1rem;
}

.sustainability-cards p {
    margin: 0;
    color: rgba(233, 243, 235, 0.88);
    font-size: 0.89rem;
}

.process {
    background: linear-gradient(180deg, #f6f9f3 0%, #eef4e9 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.process-grid article {
    position: relative;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--stroke);
    padding: 1rem;
    box-shadow: 0 7px 18px rgba(10, 29, 14, 0.08);
}

.process-grid span {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 800;
    color: rgba(34, 139, 34, 0.55);
}

.process-grid h3 {
    margin: 0.45rem 0 0.38rem;
    font-size: 1.05rem;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.gallery {
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 130px;
    gap: 0.75rem;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(9, 29, 15, 0.12);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-grid img:hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
}

.gallery-grid img:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
    grid-column: span 2;
}

.gallery-grid img:nth-child(6) {
    grid-row: span 2;
}

.gallery-grid img:nth-child(9) {
    grid-column: span 2;
}

.contact {
    background: linear-gradient(180deg, #f1f6ed 0%, #ffffff 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem;
}

.contact-card,
.contact-form {
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--stroke);
    box-shadow: 0 10px 22px rgba(10, 30, 15, 0.09);
}

.contact-card {
    padding: 1.3rem;
}

.contact-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.02rem;
    color: var(--primary-dark);
}

.contact-card p {
    margin: 0 0 1rem;
    color: #39453d;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    padding: 1.3rem;
}

.contact-form label {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: #3c493f;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 0.32rem;
    border: 1px solid #cfdad0;
    border-radius: 10px;
    padding: 0.72rem 0.82rem;
    font: inherit;
    color: var(--ink);
    background: #fbfdf9;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(34, 139, 34, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.15);
}

.contact-form textarea {
    min-height: 145px;
    resize: vertical;
}

.contact-form .btn {
    margin-top: 1rem;
    width: 100%;
}

.map-frame {
    margin-top: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(9, 28, 13, 0.13);
}

.map-frame iframe {
    width: 100%;
    min-height: 350px;
    border: 0;
}

.site-footer {
    background: #132219;
    color: rgba(223, 232, 225, 0.9);
    padding-top: 1.6rem;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-brand {
    margin: 0 0 0.2rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-grid p {
    margin: 0;
}

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

.footer-links a {
    color: rgba(229, 241, 230, 0.85);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(204, 220, 206, 0.18);
    margin-top: 1.2rem;
    padding: 0.95rem 0 1.3rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(224, 232, 225, 0.76);
}

@media (max-width: 1080px) {
    .nav-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand {
        width: 100%;
        justify-content: center;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-panel {
        max-width: 640px;
    }

    .capability-grid,
    .crop-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 160px;
    }

    .gallery-grid img:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 820px) {
    .utility-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-sm {
        display: none;
    }

    .section {
        padding: 4.1rem 0;
    }

    .about-grid,
    .sustainability-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-image img {
        aspect-ratio: 5 / 4;
    }

    .sustainability-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .brand span small {
        display: none;
    }

    .hero-copy p {
        font-size: 0.98rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .capability-grid,
    .crop-grid,
    .process-grid,
    .sustainability-cards,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 200px;
    }
}
