@font-face {
    font-family: "Figtree";
    src: url("../fonts/figtree-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-600.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    --font-body: "Figtree", Arial, sans-serif;
    --font-display: "Poppins", "Figtree", Arial, sans-serif;
    --brand: #518d4b;
    --brand-hover: #41713c;
    --secondary: #1e7540;
    --dark-green: #224341;
    --heading: #444444;
    --body: #575757;
    --muted: #757575;
    --border: #e8e8e8;
    --white: #ffffff;
    --bg-muted: #f4f4f4;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    --container: 1140px;
    --gutter: 20px;
    --section-space: 70px;
    --gap: 20px;
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 10px;
    --radius-pill: 30px;
    --transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--body);
    background: var(--white);
    font: 400 15px/1.5 var(--font-body);
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--heading); font-weight: 600; }
h2 { font-size: 48px; line-height: 1.2; }
h3 { font-size: 19px; line-height: 1.3; }
p { margin-bottom: 20px; }

.container {
    width: min(calc(100% - (var(--gutter) * 2)), var(--container));
    margin-inline: auto;
}
.section { padding-block: var(--section-space); }
.section-heading { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-heading h2 { margin-bottom: 0; }
.section-lead { margin: 20px auto 0; font-size: 16px; line-height: 26px; }
.eyebrow, .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--brand);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.eyebrow::before { width: 24px; height: 1px; background: currentColor; content: ""; }
.hero-pill {
    padding: 7px 16px;
    color: var(--white);
    background: var(--brand);
    border-radius: var(--radius-pill);
}
.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    color: var(--white);
    background: var(--brand);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.button:hover { border-color: var(--brand-hover); background: var(--brand-hover); }
.button-ghost { border-color: var(--white); color: var(--white); background: transparent; }
.button-ghost:hover { border-color: var(--white); color: var(--dark-green); background: var(--white); }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 55%, white); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; transform: translateY(-150%); color: var(--white); background: var(--dark-green); border-radius: var(--radius); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

input, select, textarea {
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--body);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(81, 141, 75, 0.14); outline: 0; }

@media (max-width: 1024px) {
    :root { --section-space: 50px; }
    h2 { font-size: 38px; line-height: 46px; }
}

@media (max-width: 767px) {
    :root { --section-space: 40px; }
    h2 { font-size: 32px; line-height: 40px; }
    .section-heading { margin-bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
