:root {
  --ink: #171410;
  --ink-soft: #5a5248;
  --muted: #8a8074;
  --sheet: #fffdf8;
  --card: #ffffff;
  --line: #e5dacb;
  --accent: #0e7c72;
  --accent-deep: #0a5c55;
  --accent-soft: #e4f3f0;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--sheet);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body { padding: 18px 20px 72px; }
.wrap { max-width: 640px; margin: 0 auto; position: relative; }

.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.brand {
  font-family: "Iowan Old Style", Palatino, "Palatino Linotype", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}

.switch {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
h1 {
  font-family: "Iowan Old Style", Palatino, "Palatino Linotype", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.updated {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
}

.clauses-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.clause {
  background: var(--card);
  border-radius: 18px;
  padding: 18px 18px 16px;
  margin: 0 0 12px;
  box-shadow: 0 8px 24px rgba(40, 28, 12, 0.06);
}
.clause h2 {
  font-family: "Iowan Old Style", Palatino, "Palatino Linotype", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.clause p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.links { margin-top: 28px; font-size: 14px; color: var(--muted); }
.links a { color: var(--accent-deep); font-weight: 700; text-decoration: none; }
