:root {
  --bg: #f5ede3;
  --bg-card: #fffbf5;
  --ink: #2c2417;
  --muted: #6b5d4f;
  --accent: #b85c38;
  --border: #e8dfd3;
  --max: 42rem;
  --max-wide: 52rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(170deg, var(--bg) 0%, #fff8f0 35%, #f9f3ea 100%);
  min-height: 100vh;
}

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

a:hover {
  color: #8f4529;
}

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

.wrap--narrow {
  max-width: var(--max);
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.site-header a.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.site-header a.brand:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 1rem 0 2.5rem;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, var(--ink), #6b5d4f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto;
  font-size: 1.05rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 4px rgba(44, 36, 23, 0.05);
}

.card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.legal {
  font-size: 0.98rem;
}

.legal h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  margin: 0 0 0.25rem;
}

.legal .meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  margin: 2rem 0 0.5rem;
}

.legal h2:first-of-type {
  margin-top: 1.25rem;
}

.legal p,
.legal li {
  color: var(--muted);
  margin: 0 0 0.85rem;
}

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

.legal li {
  margin-bottom: 0.4rem;
}

.site-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.88rem;
  color: #9a8c7b;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}
