:root {
  --bg: #f6f4ef;
  --ink: #1c1916;
  --muted: #5c564e;
  --line: #ddd6cb;
  --card: #fffdf9;
  --accent: #1f4d3a;
  --warn: #8a4b12;
  --example: #efe6d4;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font: 17px/1.45 Georgia, "Iowan Old Style", serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: var(--accent); }
header, main, footer { max-width: 760px; margin: 0 auto; padding: 1.25rem 1.1rem; }
nav { display: flex; gap: 1rem; font: 14px/1.2 system-ui, sans-serif; }
nav a { text-decoration: none; }
h1 { font-size: 1.85rem; line-height: 1.15; margin: 0.4rem 0 0.6rem; }
h2 { font-size: 1.2rem; margin: 1.6rem 0 0.5rem; }
p, li { color: var(--ink); }
.lede { font-size: 1.1rem; color: var(--muted); }
.steps { padding-left: 1.2rem; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1rem 0.4rem;
  margin: 1rem 0;
}
.banner {
  background: var(--example);
  border: 1px solid #d8c7a4;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font: 14px/1.35 system-ui, sans-serif;
  color: var(--warn);
}
label { display: block; margin: 0.7rem 0 0.2rem; font: 13px/1.2 system-ui, sans-serif; }
input, select, textarea {
  width: 100%;
  font: 16px/1.3 system-ui, sans-serif;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
@media (max-width: 560px) { .row { grid-template-columns: 1fr; } }
.check { display: flex; gap: 0.5rem; align-items: flex-start; margin: 0.7rem 0; font: 14px/1.35 system-ui, sans-serif; }
.check input { width: auto; margin-top: 0.15rem; }
button, .btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font: 15px/1 system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
}
button.secondary, .btn.secondary { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.quote-block { border-top: 1px dashed var(--line); margin-top: 1rem; padding-top: 0.4rem; }
table { width: 100%; border-collapse: collapse; font: 14px/1.3 system-ui, sans-serif; }
th, td { text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); padding: 0.45rem 0.35rem; }
th { font-weight: 600; }
.tag {
  display: inline-block;
  font: 11px/1 system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--example);
  color: var(--warn);
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
}
footer { color: var(--muted); font: 13px/1.4 system-ui, sans-serif; }
.err { color: #8a1f12; font: 14px system-ui, sans-serif; }
