:root {
  --terracotta-900: #4d2818;
  --lapis-600: #1e3f8e;
  --gold-500: #d4a830;
  --parchment: #f5eed8;
  --basalt: #2a2520;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Inter, sans-serif;
  color: var(--basalt);
  background: var(--parchment);
  line-height: 1.6;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.logo {
  font-family: Cinzel, serif;
  color: var(--lapis-600);
  text-decoration: none;
  font-weight: 600;
}

h1 {
  font-family: Cinzel, serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.meta {
  font-size: 0.9rem;
  color: rgba(42, 37, 32, 0.6);
  margin-bottom: 32px;
}

article {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

article h2 {
  font-family: Cinzel, serif;
  font-size: 1.15rem;
  margin: 28px 0 12px;
}

article h2:first-child {
  margin-top: 0;
}

article p,
article ul {
  margin-bottom: 12px;
}

article ul {
  padding-left: 1.25rem;
}

article li {
  margin-bottom: 6px;
}

article a {
  color: var(--lapis-600);
}

.legal-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 37, 32, 0.1);
  font-size: 0.85rem;
  color: rgba(42, 37, 32, 0.65);
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.legal-footer a {
  color: var(--lapis-600);
  text-decoration: none;
}

.legal-footer a:hover {
  text-decoration: underline;
}
