:root {
    --background: #070a07;
    --surface: #0d120d;
    --green: #88b524;
    --green-bright: #a3ce32;
    --text: #f5f5ef;
    --muted: #b8bcb4;
    --border: rgba(255, 255, 255, 0.14);
    --header-height: 74px;
    --maximum-width: 1440px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

/* Header */

.site-header {
    align-items: center;
    background: rgba(5, 8, 5, 0.95);
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 26px;
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-height);
    padding: 10px max(24px, calc((100% - var(--maximum-width)) / 2));
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header.scrolled {
    background: rgba(4, 7, 4, 0.99);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.brand {
    align-items: center;
    display: flex;
    font-size: 0.88rem;
    font-weight: 900;
    gap: 13px;
    letter-spacing: 0.18em;
    white-space: nowrap;
}

.brand img {
    border-radius: 50%;
    height: 46px;
    width: 46px;
}

/* Navigation */

.main-navigation {
    align-items: center;
    display: flex;
    gap: clamp(18px, 2.4vw, 38px);
    justify-content: center;
}

.main-navigation a {
    color: #dedfd9;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 26px 0 22px;
    position: relative;
    text-transform: uppercase;
}

.main-navigation a::after {
    background: var(--green);
    bottom: 14px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform 0.18s ease;
    width: 100%;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--green-bright);
}

.main-navigation a.active::after {
    transform: scaleX(1);
}

/* Buttons */

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 5px;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
    padding: 11px 24px;
    text-transform: uppercase;
    transition: 0.18s;
}

.button:hover {
    transform: translateY(-2px);
}

.header-button,
.primary-button {
    background: var(--green);
    color: #071000;
}

.header-button:hover,
.primary-button:hover {
    background: var(--green-bright);
}

.secondary-button {
    background: rgba(0, 0, 0, 0.34);
    border-color: var(--green);
}

/* Mobile menu button */

.menu-button {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    display: none;
    height: 42px;
    padding: 9px 10px;
    width: 46px;
}

.menu-button span {
    background: white;
    display: block;
    height: 2px;
    margin: 5px 0;
    width: 100%;
}

/* Hero section */

.hero {
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(3, 6, 3, 0.97) 0%,
            rgba(5, 9, 5, 0.88) 36%,
            rgba(8, 12, 7, 0.32) 68%,
            rgba(8, 12, 7, 0.13) 100%
        ),
        linear-gradient(
            to top,
            rgba(7, 10, 7, 0.72),
            transparent 35%
        ),
        url("images/hero-farm.jpg") center / cover no-repeat;
    display: flex;
    min-height: 720px;
    overflow: visible;
    padding:
        90px
        max(24px, calc((100% - var(--maximum-width)) / 2))
        140px;
    position: relative;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 3;
}

.eyebrow {
    align-items: center;
    color: var(--green-bright);
    display: flex;
    font-size: 0.9rem;
    font-weight: 900;
    gap: 18px;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.eyebrow span {
    background: var(--green);
    height: 2px;
    width: 58px;
}

.hero h1 {
    font-size: clamp(4.8rem, 8vw, 8.4rem);
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 0.81;
    text-transform: uppercase;
}

.hero h1 strong {
    color: var(--green-bright);
    display: block;
}

.tagline {
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    font-weight: 900;
    margin-top: 34px;
    text-transform: uppercase;
}

.tagline b {
    color: var(--green);
    padding: 0 5px;
}

.hero-description {
    color: #e0e1db;
    font-size: 1.08rem;
    margin-top: 16px;
    max-width: 610px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.hero-badge {
    bottom: -35px;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.75));
    position: absolute;
    right: max(35px, calc((100% - var(--maximum-width)) / 2));
    width: min(34vw, 510px);
    z-index: 10;
}

/* Statistics */

.statistics {
    background:
        linear-gradient(
            90deg,
            rgba(14, 19, 14, 0.98),
            rgba(8, 12, 8, 0.98)
        );
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: -66px auto 0;
    max-width: var(--maximum-width);
    min-height: 126px;
    position: relative;
    width: calc(100% - 48px);
    z-index: 5;
}

.statistics article {
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 34px;
}

.statistics article:last-child {
    border-right: 0;
    padding-right: min(30vw, 410px);
}

.statistics span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.statistics strong {
    font-size: clamp(1.15rem, 2vw, 1.85rem);
    line-height: 1.1;
    margin-top: 7px;
    text-transform: uppercase;
}

/* General sections */

.section {
    margin: 0 auto;
    max-width: var(--maximum-width);
    padding: 116px 24px;
}

.about {
    display: grid;
    gap: 70px;
    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(0, 1.65fr);
    padding-top: 150px;
}

.section-label {
    color: var(--green-bright);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section h2 {
    font-size: clamp(2.5rem, 4.4vw, 4.5rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
    text-transform: uppercase;
}

.section-introduction > p:not(.section-label),
.section-copy {
    color: var(--muted);
    font-size: 1.06rem;
    margin-top: 24px;
    max-width: 760px;
}

.text-link {
    border: 1px solid var(--green);
    color: var(--green-bright);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    gap: 28px;
    margin-top: 30px;
    padding: 12px 18px;
    text-transform: uppercase;
}

/* Values */

.values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.value-card {
    border-left: 1px solid var(--border);
    padding: 8px 24px 28px;
    text-align: center;
}

.value-icon {
    color: var(--green-bright);
    font-size: 2.15rem;
    font-weight: 900;
    min-height: 64px;
}

.value-card h3 {
    font-size: 1.14rem;
    margin-top: 14px;
    text-transform: uppercase;
}

.value-subtitle {
    color: var(--green-bright);
    font-size: 0.72rem;
    font-weight: 900;
    margin: 4px 0 17px;
    text-transform: uppercase;
}

.value-card p:last-child,
.content-grid p {
    color: var(--muted);
}

/* Content sections */

.content-section {
    border-top: 1px solid var(--border);
}

.content-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 44px;
}

.content-grid article {
    background: var(--surface);
    border: 1px solid var(--border);
    min-height: 240px;
    padding: 32px;
}

.content-grid h3 {
    font-size: 1.22rem;
    text-transform: uppercase;
}

.content-grid p {
    margin-top: 16px;
}

/* FAQ */

.faq-list {
    margin-top: 40px;
    max-width: 900px;
}

.faq-list details {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
}

.faq-list p {
    color: var(--muted);
    margin-top: 12px;
}

/* Footer */

.site-footer {
    align-items: center;
    background: #040604;
    border-top: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    padding:
        36px
        max(24px, calc((100% - var(--maximum-width)) / 2));
}

.footer-brand {
    align-items: center;
    display: flex;
    gap: 16px;
}

.footer-brand img {
    border-radius: 50%;
    height: 54px;
    width: 54px;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: white;
    letter-spacing: 0.12em;
}

.footer-brand span {
    font-size: 0.72rem;
    text-transform: uppercase;
}

.site-footer > p {
    font-size: 0.82rem;
    text-align: right;
}

/* Tablet and smaller desktop */

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .menu-button {
        display: block;
    }

    .main-navigation {
        align-items: stretch;
        background: #070a07;
        border-bottom: 1px solid var(--border);
        display: none;
        flex-direction: column;
        gap: 0;
        grid-column: 1 / -1;
        left: 0;
        padding: 10px 24px 22px;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation a {
        border-bottom: 1px solid var(--border);
        padding: 14px 0;
    }

    .main-navigation a::after {
        display: none;
    }

    .header-button {
        display: none;
    }

    .hero-badge {
        bottom: 35px;
        width: min(35vw, 420px);
    }

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

    .statistics article:nth-child(2) {
        border-right: 0;
    }

    .statistics article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .statistics article:last-child {
        padding-right: min(35vw, 360px);
    }

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

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

/* Mobile */

@media (max-width: 760px) {
    .brand {
        font-size: 0.72rem;
        letter-spacing: 0.11em;
    }

    .brand img {
        height: 40px;
        width: 40px;
    }

    .hero {
        align-items: flex-start;
        background-position: 63% center;
        min-height: auto;
        padding-bottom: 235px;
        padding-top: 70px;
    }

    .hero h1 {
        font-size: clamp(4rem, 18vw, 6.4rem);
    }

    .eyebrow span {
        width: 28px;
    }

    .tagline {
        line-height: 1.5;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-badge {
        bottom: -70px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(78vw, 390px);
    }

    .statistics {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding-top: 88px;
        width: 100%;
    }

    .statistics article {
        border-bottom: 1px solid var(--border);
        border-right: 0;
        min-height: 100px;
        padding: 24px;
        text-align: center;
    }

    .statistics article:last-child {
        padding-right: 24px;
    }

    .about {
        padding-top: 105px;
    }

    .values,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding: 34px 12px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 26px;
    }

    .site-footer > p {
        text-align: left;
    }
}
