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

:root {
  --bg: #f5f0ed;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #b8860b;
  --accent-dark: #1b4332;
  --border: #e0d8d0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
.site-title {
  font-family: "Tektur", system-ui, sans-serif;
  line-height: 1.25;
}

a {
  color: var(--accent-dark);
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.site-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
}

.site-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  color: var(--accent-dark);
}

.site-subtitle {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}

section {
  margin-bottom: 2.25rem;
}

section h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--accent-dark);
}

section p {
  margin: 0 0 1rem;
}

section p:last-child {
  margin-bottom: 0;
}

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

li {
  margin-bottom: 0.65rem;
}

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

.callout {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.callout p {
  margin: 0;
}

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

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

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

.disclaimer {
  margin-top: 1rem;
  font-size: 0.8rem;
}
