* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #263126;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #ffffff;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8df;
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #173f22;
    font-weight: 700;
    text-decoration: none;
}

.logo-image {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 4px;
}

.main-nav,
.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.main-nav a,
.site-footer a {
    color: #263126;
    text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
    color: #2f6b37;
}

.hero,
.page-hero {
    background: #eef5eb;
    padding: 76px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
}

.eyebrow {
    margin: 0 0 10px;
    color: #2f6b37;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: #173f22;
    line-height: 1.2;
}

h1 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: 44px;
}

h2 {
    margin-bottom: 18px;
    font-size: 30px;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.hero-text p,
.page-hero p {
    max-width: 620px;
    font-size: 18px;
}

.button {
    display: inline-block;
    padding: 12px 20px;
    color: #ffffff;
    background: #2f6b37;
    border: 2px solid #2f6b37;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
}

.button:hover {
    background: #24552b;
    border-color: #24552b;
}

.button.secondary {
    color: #2f6b37;
    background: #ffffff;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-photo {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
}

.card-photo {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.section {
    padding: 64px 0;
}

.soft {
    background: #f6f8f4;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.card,
.job-box,
.apply-box {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8df;
    border-radius: 6px;
}

ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.facts span {
    padding: 16px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dce6d8;
    border-radius: 4px;
    font-weight: 700;
}

.contact-band {
    color: #ffffff;
    background: #173f22;
    text-align: center;
}

.contact-band h2,
.contact-band p {
    color: #ffffff;
}

.job-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.job-box h2:not(:first-child) {
    margin-top: 34px;
}

.apply-box {
    position: sticky;
    top: 24px;
    background: #eef5eb;
}

.narrow {
    max-width: 760px;
}

.site-footer {
    color: #ffffff;
    background: #263126;
}

.site-footer a {
    color: #ffffff;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 800px) {
    .header-inner,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-grid,
    .split,
    .job-layout {
        grid-template-columns: 1fr;
    }

    .hero,
    .page-hero {
        padding: 48px 0;
    }

    h1 {
        font-size: 34px;
    }

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

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

    .hero-photo {
        height: 240px;
    }

    .apply-box {
        position: static;
    }
}
