:root {
  color-scheme: light;
  --ink: #12231d;
  --paper: #f3f1e8;
  --soft: #e5e1d3;
  --green: #27644e;
  --green-dark: #163e31;
  --orange: #e47d42;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 5; padding: .8rem 1rem; background: var(--ink); color: white; }
.skip-link:focus { top: 1rem; }
header { width: min(var(--max), calc(100% - 2.5rem)); min-height: 84px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid #12231d33; }
.wordmark { display: flex; align-items: center; gap: .75rem; font-weight: 850; letter-spacing: -.02em; text-decoration: none; }
.mark { display: grid; width: 42px; height: 42px; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: .72rem; letter-spacing: .03em; }
nav { display: flex; gap: clamp(1rem, 3vw, 2.4rem); }
nav a { color: #365148; font-size: .9rem; font-weight: 700; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--ink); }
main { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }
.hero { max-width: 1040px; padding: clamp(6rem, 15vw, 11rem) 0 clamp(5rem, 11vw, 8rem); }
.eyebrow { margin: 0 0 1.25rem; color: var(--green); font-size: .76rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin-top: 0; line-height: 1.05; letter-spacing: -.035em; }
h1 { max-width: 980px; margin-bottom: 2rem; font-size: clamp(3.5rem, 9vw, 7.7rem); font-weight: 800; }
.lead { max-width: 760px; margin: 0 0 2.3rem; color: #435b52; font-size: clamp(1.15rem, 2.4vw, 1.55rem); }
.button { display: inline-flex; min-height: 48px; align-items: center; padding: .8rem 1.15rem; background: var(--green); color: white; font-size: .9rem; font-weight: 800; text-decoration: none; }
.button:hover, .button:focus-visible { background: var(--green-dark); }
.statement { display: grid; grid-template-columns: minmax(10rem, 1fr) minmax(0, 3fr); gap: 2rem; padding: clamp(4rem, 9vw, 7rem) 0; border-top: 1px solid #12231d33; }
.statement .eyebrow { margin-top: .35rem; }
.statement h2 { max-width: 820px; margin-bottom: 1.5rem; font-size: clamp(2.3rem, 5vw, 4.3rem); }
.statement p:last-child { max-width: 720px; color: #435b52; font-size: 1.05rem; }
.principles { padding: clamp(5rem, 10vw, 8rem) 0; border-top: 1px solid #12231d33; }
.principles > div:first-child { max-width: 760px; margin-bottom: 3rem; }
.principles h2, .contact h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid #12231d33; background: #12231d33; gap: 1px; }
article { min-height: 240px; padding: clamp(1.5rem, 4vw, 2.7rem); background: #f8f6ef; }
article span { color: var(--orange); font-size: .75rem; font-weight: 850; }
article h3 { margin: 3rem 0 .6rem; font-size: 1.75rem; }
article p { margin: 0; color: #435b52; }
.contact { margin: 0 0 clamp(4rem, 9vw, 7rem); padding: clamp(2rem, 6vw, 5rem); color: white; background: var(--green-dark); }
.contact .eyebrow { color: #a7d8c3; }
.contact h2 { max-width: 820px; margin-bottom: 1rem; }
.contact > p:not(.eyebrow) { max-width: 650px; color: #d4e2dc; }
.contact .button { margin-top: 1rem; color: var(--ink); background: var(--paper); }
.contact .button:hover, .contact .button:focus-visible { background: white; }
footer { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; padding: 2rem 0; border-top: 1px solid #12231d33; color: #52665f; font-size: .78rem; }
footer p { margin: .45rem 0; }
footer strong { color: var(--ink); }
@media (max-width: 700px) {
  header { min-height: 72px; }
  nav a:not(:last-child) { display: none; }
  .hero { padding-top: 5rem; }
  .statement { grid-template-columns: 1fr; gap: .6rem; }
  .grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
