/* PROJECT GENESIS — public web */

:root {
  --bg: #faf9f7;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #8b6914;
  --border: #e5e2dc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

header, footer, main {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}

header {
  border-bottom: 1px solid var(--border);
}

header h1 {
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
  font-weight: 600;
}

header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

nav {
  margin-top: 1rem;
  font-size: 0.9rem;
}

nav a {
  color: var(--accent);
  margin-right: 1.25rem;
  text-decoration: none;
}

nav a:hover { text-decoration: underline; }

h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
}

ul { padding-left: 1.25rem; }

footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.disclosure {
  font-size: 0.95rem;
  color: var(--muted);
}
