:root {
    color-scheme: light;
    --forest: #1f3b2c;
    --forest-light: #3a5f4a;
    --sage: #b8d0b8;
    --cream: #faf8f5;
    --ink: #2c2b28;
    --muted: #5a5a57;
    --card: #f6f4f0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.65;
}

a { color: inherit; }

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(250, 248, 245, 0.92);
    border-bottom: 1px solid rgba(31, 59, 44, 0.1);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.brand {
    color: var(--forest);
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

.brand span { color: #7a8a7a; font-weight: 400; }

.site-nav { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; }
.site-nav a { color: #3a3a37; text-decoration: none; }
.site-nav a:hover { color: var(--forest); text-decoration: underline; }

.hero {
    padding: clamp(3.5rem, 8vw, 6rem) 0 4rem;
    text-align: center;
}

.eyebrow {
    color: #8a7a6a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1, h2, h3 {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

h1 { font-size: clamp(2.45rem, 6vw, 4.25rem); margin: 0.55rem auto 1rem; max-width: 850px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0; }
h3 { font-size: 1.2rem; margin: 0 0 0.4rem; }

.lede { color: var(--muted); font-size: 1.1rem; margin: 0 auto; max-width: 760px; }

.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; margin-top: 1.8rem; }

.button {
    border-radius: 999px;
    display: inline-flex;
    padding: 0.8rem 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

.button-primary { background: var(--forest); color: #fff; }
.button-secondary { border: 1px solid rgba(31, 59, 44, 0.25); color: var(--forest); }

.hero-image {
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    display: block;
    height: min(52vw, 520px);
    margin: 2.5rem auto 0;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}

.content { padding: 4.5rem 0; }
.content-dark { background: var(--forest); color: var(--cream); }
.content-dark .eyebrow { color: var(--sage); }
.content-dark .lede, .content-dark .content-copy { color: #d4e0d4; }

.content-copy { color: var(--muted); font-size: 1.05rem; max-width: 760px; }
.content-copy + .content-copy { margin-top: 1rem; }

.grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2rem; }

.card { background: var(--card); border-radius: 20px; padding: 1.5rem; }
.content-dark .card { background: var(--forest-light); }
.content-dark .card p { color: #d4e0d4; }
.card p { color: var(--muted); margin: 0; }

.callout { background: #e8e4de; border-radius: 20px; margin-top: 2rem; padding: 1.5rem; text-align: center; }
.content-dark .callout { background: var(--forest-light); }
.callout p { margin: 0.5rem auto 0; max-width: 650px; }

.footer { border-top: 1px solid rgba(31, 59, 44, 0.1); color: var(--muted); font-size: 0.92rem; padding: 2rem 0; text-align: center; }

@media (max-width: 760px) {
    .container { width: min(100% - 32px, 1120px); }
    .header-inner { flex-direction: column; justify-content: center; padding: 0.85rem 0; }
    .site-nav { justify-content: center; }
    .grid { grid-template-columns: 1fr; }
    .hero-image { height: 58vw; }
}
