:root {
    --forest-950: #04261c;
    --forest-900: #073b2a;
    --forest-800: #0a4b35;
    --forest-700: #126243;
    --green-500: #327a20;
    --green-400: #70c541;
    --snow: #f7faf7;
    --white: #ffffff;
    --ink: #17211d;
    --muted: #64716a;
    --line: #dce5df;
    --red: #d30b1b;
    --shadow: 0 24px 70px rgb(2 34 24 / 18%);
    --radius-sm: .7rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --container: 1200px;
    --anchor-offset: 8.5rem;
    --header-height: 118px;
}

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

main [id], main#main-content { scroll-margin-top: var(--anchor-offset); }
@media (max-width: 640px) { :root { --anchor-offset: 6rem; --header-height: 76px; } }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--snow);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-wrap: break-word;
}

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

a {
    color: inherit;
    text-underline-offset: .18em;
}

:where(a, button, input, select, textarea, summary):focus-visible {
    outline: 3px solid #f2c94c;
    outline-offset: 4px;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: .75rem;
    left: .75rem;
    padding: .8rem 1rem;
    color: var(--white);
    background: var(--forest-950);
    border-radius: .4rem;
    transform: translateY(-150%);
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

@media (max-width:1080px) {
    html:not(.navigation-ready) .main-nav { display:block; position:static; max-height:none; box-shadow:none; }
    html:not(.navigation-ready) .menu-toggle { display:none; }
    html:not(.navigation-ready) .nav-shell { flex-wrap:wrap; }
    html:not(.navigation-ready) .main-nav { flex-basis:100%; }
}
@media (forced-colors: active) {
    :where(a, button, input, select, textarea, summary):focus-visible {
        outline: 3px solid CanvasText;
    }
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    overflow-anchor: none;
    background: var(--white);
    box-shadow: 0 1px 0 rgb(7 59 42 / 10%);
    transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgb(4 38 28 / 16%);
}

.utility-bar {
    max-height: 2rem;
    overflow: hidden;
    color: rgb(255 255 255 / 78%);
    background: var(--forest-950);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: max-height .2s ease, opacity .2s ease;
}

.site-header.is-scrolled .utility-bar {
    max-height: 2rem;
    opacity: 1;
}

.utility-bar__inner {
    display: flex;
    justify-content: space-between;
    padding-block: .45rem;
}

.nav-shell {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-header.is-scrolled .nav-shell {
    min-height: 86px;
}

.brand {
    display: block;
    width: 190px;
    height: 68px;
    overflow: hidden;
}

.site-header.is-scrolled .brand {
    width: 190px;
    height: 68px;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.16);
    transform-origin: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(.7rem, 1.35vw, 1.35rem);
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav a {
    position: relative;
    display: block;
    padding-block: 1.65rem;
    color: #26342e;
    font-size: .88rem;
    font-weight: 750;
    text-decoration: none;
}

.site-header.is-scrolled .main-nav a {
    padding-block: 1.65rem;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 1.1rem;
    left: 0;
    height: 3px;
    content: "";
    background: var(--green-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: .8rem 1.25rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease;
}

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

.button--accent {
    color: var(--forest-950);
    background: var(--green-400);
}

.button--accent:hover {
    background: #82d650;
}

.button--ghost {
    color: var(--forest-950);
    background: rgb(255 255 255 / 94%);
    border-color: var(--white);
}

.button--ghost:hover {
    background: var(--white);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 0 0 1rem;
    color: var(--green-400);
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 2.2rem;
    height: 3px;
    content: "";
    background: currentColor;
}

.eyebrow--green {
    color: var(--green-500);
}

.page-hero {
    position: relative;
    min-height: clamp(430px, 48vw, 610px);
    display: grid;
    align-items: end;
    padding: 5rem 0;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 35%, rgb(112 197 65 / 18%), transparent 22rem),
        linear-gradient(112deg, var(--forest-950), var(--forest-800));
}

.page-hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgb(3 39 29 / 96%) 0%, rgb(3 39 29 / 72%) 48%, rgb(3 39 29 / 20%) 100%);
}

.page-hero__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero > .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 1050px;
    margin: 0;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(3.25rem, 6vw, 6.4rem);
    line-height: .9;
    letter-spacing: -.035em;
    text-transform: uppercase;
    overflow-wrap: normal;
    word-break: normal;
}

.page-hero p:last-child {
    max-width: 680px;
    margin: 1.4rem 0 0;
    color: rgb(255 255 255 / 72%);
    font-size: 1.08rem;
}

.page-content {
    padding: 4.5rem 0;
}

.placeholder-card {
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.placeholder-card > span {
    color: var(--forest-700);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.placeholder-card h2 {
    margin: .5rem 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.placeholder-card p {
    color: var(--muted);
}

