:root {
  --bg: #eef2f0;
  --surface: #ffffff;
  --text: #1a2420;
  --muted: #4a5c54;
  --accent: #1d6b4a;
  --accent-soft: #d8ebe3;
  --border: #d4ddd8;
  --max: 42rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

.site-header {
  background: linear-gradient(165deg, #1d6b4a 0%, #145a3d 100%);
  color: #fff;
  padding: 2.5rem 1.25rem 2.75rem;
}

.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.site-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.site-meta {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.policy {
  max-width: var(--max);
  margin: -1.25rem auto 0;
  padding: 0 1.25rem 3rem;
}

.policy-lead {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 28px rgba(29, 107, 74, 0.08);
}

.policy section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem 1.35rem;
  margin-top: 1rem;
}

.policy h2 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 650;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.policy p {
  margin: 0 0 0.85rem;
}

.policy p:last-child {
  margin-bottom: 0;
}

.policy ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
}

.policy li {
  margin-bottom: 0.45rem;
}

.policy li:last-child {
  margin-bottom: 0;
}

.policy a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.policy a:hover {
  text-decoration-thickness: 2px;
}

.contact-email {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-email a {
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a {
  color: var(--accent);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1412;
    --surface: #1a211e;
    --text: #e8eeeb;
    --muted: #9aaba3;
    --border: #2a3530;
    --accent-soft: #1a2e26;
  }
}
