/* Isolated static legal pages. No trackers, no external assets. */
:root {
  --text: #1a1a1a;
  --muted: #4a4a4a;
  --border: #d8d8d0;
  --bg: #fafaf7;
  --card: #ffffff;
  --link: #1b4d3e;
  --max: 44rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.6;
}

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

header,
footer {
  border-color: var(--border);
}

header {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.brand {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  color: var(--link);
  margin-right: 1rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

h1 {
  font-size: 1.85rem;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.5rem;
}

p,
li {
  margin: 0 0 0.85rem;
}

ul {
  padding-left: 1.2rem;
}

footer {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.55rem;
  }

  .wrap {
    padding: 1rem 0.9rem 2.5rem;
  }
}
