:root {
  --bg: #faf7f4;
  --surface: #ffffff;
  --text: #1c1917;
  --muted: #78716c;
  --primary: #c45c4a;
  --secondary: #2f5d50;
  --border: #e7e0d8;
  --max: 42rem;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

a { color: var(--secondary); }

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

header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

nav a {
  margin-left: 0.85rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover { color: var(--text); }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  margin-top: 2rem;
}

.lead { color: var(--muted); font-size: 1.05rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  margin: 1.5rem 0;
}

.cta {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}

.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

ol, ul { padding-left: 1.25rem; }
li { margin: 0.35rem 0; }

footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}
