:root {
  --green-dark: #0E2F26;
  --background: #F5F0E6;
  --text: #13231E;
  --text-muted: #526B60;
  --white: #FFFFFF;
  --border: #D9DED7;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-wrap: break-word; background: var(--background); color: var(--text); font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif; font-size: 1rem; line-height: 1.65; }
a { color: inherit; text-decoration-thickness: .1em; text-underline-offset: .2em; }
a:hover { text-decoration-thickness: .16em; }
:focus-visible { outline: 3px solid #E3B341; outline-offset: 4px; }
.container { width: min(100% - 2rem, 70rem); margin-inline: auto; }
.narrow { max-width: 48rem; margin-inline: auto; }
.skip-link { position: fixed; z-index: 10; top: .75rem; left: .75rem; padding: .75rem 1rem; transform: translateY(-200%); background: var(--white); color: var(--text); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.site-header { background: var(--green-dark); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.2); }
.header-inner { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.wordmark { padding: .6rem 0; font-size: 1.55rem; font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
.nav-list, .footer-links { display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; margin: 0; padding: 0; list-style: none; }
.nav-list a {
  display: inline-block;
  min-height: 2.75rem;
  padding: .55rem .25rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.nav-list a[aria-current="page"] {
  border-bottom-color: var(--white);
  font-weight: 700;
}
.hero { padding: clamp(4rem, 10vw, 7.5rem) 0; background: var(--green-dark); color: var(--white); }
.hero-compact { padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.hero-content { max-width: 55rem; }
.eyebrow { margin: 0 0 1.25rem; font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.15; letter-spacing: -.025em; }
h1 { max-width: 14ch; font-size: clamp(2.5rem, 7vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.25rem; }
.hero-intro, .lead { max-width: 44rem; font-size: clamp(1.08rem, 2vw, 1.25rem); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; padding: .7rem 1.15rem; border: 2px solid transparent; border-radius: .2rem; font-weight: 750; text-decoration: none; }
.button-light { background: var(--white); color: var(--green-dark); }
.button-outline { border-color: var(--white); color: var(--white); }
.button-dark { background: var(--green-dark); color: var(--white); }
.button:hover { text-decoration: underline; }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-muted { background: var(--white); }
.card-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.card { padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--border); background: var(--white); }
.card p:last-child { margin-bottom: 0; color: var(--text-muted); }
.support-panel { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(1.5rem, 5vw, 3rem); border: 1px solid var(--border); background: var(--white); }
.support-panel > div { max-width: 43rem; }
.contact-link { display: inline-block; max-width: 100%; overflow-wrap: anywhere; font-weight: 750; }
.text-link { display: inline-block; min-height: 2.75rem; padding-block: .5rem; font-weight: 750; }
li + li { margin-top: .45rem; }
.site-footer { padding: 3rem 0; background: var(--green-dark); color: var(--white); font-size: .92rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-links a { display: inline-block; min-height: 2.75rem; padding-block: .5rem; }
@media (min-width: 48rem) { .development-grid { grid-template-columns: repeat(3, 1fr); } .contact-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: 2fr 1fr; } }
@media (max-width: 40rem) { .support-panel { align-items: flex-start; flex-direction: column; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print { .skip-link, nav, .actions { display: none; } body, .hero, .site-header, .site-footer { background: var(--white); color: #000; } .section, .hero { padding-block: 1.5rem; } }
