@charset "UTF-8";
:root {
  --green: #09492d; --green-deep: #073b25; --green-soft: #e9efdf;
  --cream: #fbfaf5; --orange: #ed7615; --ink: #203b2d; --muted: #5e6a60;
  --line: #dce2d7; --white: #fff; --max: 1264px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; font-family: "Segoe UI", Arial, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.55; font-size: 1rem; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 5px; }
[hidden] { display: none !important; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { color: var(--green); }
h2 { font-size: clamp(2rem, 3.1vw, 2.85rem); line-height: 1.13; letter-spacing: -.04em; font-weight: 700; }
h3 { font-size: 1.35rem; letter-spacing: -.025em; }
.container { width: min(calc(100% - 96px), var(--max)); margin-inline: auto; }
.section-space { padding-block: 88px; }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .14em; margin-bottom: 20px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 30px; min-height: 52px; padding: 14px 23px; border: 1px solid transparent; border-radius: 8px; background: var(--orange); color: #172f20; font-weight: 700; font-size: .95rem; transition: background .18s, transform .18s; }
.button:hover { background: #fa8b2c; transform: translateY(-2px); }
.button--small { min-height: 46px; padding: 11px 20px; gap: 20px; }
.button--outline { background: transparent; border-color: var(--green); color: var(--green); }
.button--outline:hover { background: var(--green-soft); }
.button--light { background: var(--cream); color: var(--green); }
.button--light:hover { background: #e9efdf; }
.text-link { display: inline-flex; gap: 15px; align-items: center; font-weight: 650; min-height: 44px; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.skip-link { position: fixed; top: 8px; left: 16px; z-index: 100; padding: 12px; background: white; transform: translateY(-160%); }
.skip-link:focus { transform: none; }
@media (max-width: 760px) {
  .container { width: calc(100% - 40px); }
  .section-space { padding-block: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
