:root {
  --ink: #17212b;
  --muted: #52616d;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #d6dedb;
  --accent: #0e6251;
  --accent-dark: #08483c;
  --focus: #bd5d10;
  --max-width: 72rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.container { width: min(calc(100% - 2rem), var(--max-width)); margin: 0 auto; }
.skip-link { position: absolute; left: 1rem; top: -5rem; z-index: 10; padding: .75rem 1rem; background: var(--focus); color: #fff; }
.skip-link:focus { top: 1rem; }
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 2rem; min-height: 5rem; flex-wrap: wrap; }
.brand, .footer-brand { color: var(--ink); font-weight: 750; text-decoration: none; letter-spacing: .01em; }
.nav-list, .footer-links { display: flex; flex-wrap: wrap; gap: .75rem 1rem; list-style: none; margin: 0; padding: 0; }
.nav-list { justify-content: flex-end; }
.nav-list a { font-size: .9rem; text-decoration: none; }
.nav-list a[aria-current="page"] { color: var(--ink); font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .25rem; }
.hero { padding: clamp(4rem, 9vw, 8rem) 0; background: #e8f0ec; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(14rem, .8fr); gap: clamp(2rem, 8vw, 7rem); align-items: end; }
.eyebrow, .note-label { color: var(--accent-dark); font-size: .8rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
h1, h2 { line-height: 1.15; letter-spacing: -.02em; }
h1 { max-width: 14ch; margin: .5rem 0 1.5rem; font-size: clamp(2.6rem, 7vw, 5.8rem); }
h2 { margin-top: 0; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.lead { max-width: 48rem; margin: 0 0 2rem; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-note { padding: 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: .25rem; }
.hero-note p { margin-bottom: 0; }
.button { display: inline-block; padding: .8rem 1.1rem; background: var(--accent-dark); color: #fff; font-weight: 700; text-decoration: none; border-radius: .2rem; }
.button:hover { background: var(--accent); color: #fff; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(14rem, 18rem); gap: clamp(2rem, 8vw, 7rem); padding: clamp(3rem, 8vw, 6rem) 0; }
.content-column { min-width: 0; }
.content-section { padding: 0 0 2.5rem; margin: 0 0 2.5rem; border-bottom: 1px solid var(--line); }
.content-section p, .content-section li { max-width: 68ch; color: var(--muted); }
.content-section li + li { margin-top: .55rem; }
.service-links a, .text-link { font-weight: 700; }
.legal-meta { align-self: start; padding: 1.25rem; background: var(--surface); border: 1px solid var(--line); }
.legal-meta h2 { font-size: 1.15rem; }
.legal-meta dl { margin: 0; }
.legal-meta dl > div { padding: .8rem 0; border-top: 1px solid var(--line); }
.legal-meta dt { color: var(--muted); font-size: .85rem; font-weight: 700; }
.legal-meta dd { margin: .2rem 0 0; }
.site-footer { padding: 3rem 0; background: var(--ink); color: #eaf0ed; }
.site-footer a, .site-footer .footer-brand { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; }
.footer-links { flex-direction: column; align-items: flex-start; }

@media (max-width: 54rem) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
  .hero-grid, .content-layout { grid-template-columns: 1fr; }
  h1 { max-width: 18ch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
