:root {
  --ink: #1e2430;
  --soft: #5b6472;
  --paper: #faf8f4;
  --accent: #b4552d;
  --line: #e3ded4;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
main { max-width: 40rem; margin: 0 auto; padding: 1.25rem 1rem 3rem; }
header.site, footer.site {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
header.site { border-bottom: 1px solid var(--line); }
header.site a { color: var(--ink); text-decoration: none; font-weight: 700; letter-spacing: 0.02em; }
footer.site { border-top: 1px solid var(--line); color: var(--soft); font-size: 0.85rem; margin-top: 2rem; }
footer.site a { color: var(--soft); }
h1 { font-size: 1.6rem; line-height: 1.25; }
h2 { font-size: 1.15rem; margin-top: 2rem; }
a { color: var(--accent); }
form { display: grid; gap: 0.9rem; margin: 1.25rem 0; }
form.inline { display: inline; margin: 0 0 0 0.5rem; }
label { display: block; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 0.95rem; }
input[type="text"], input[type="tel"], input[type="date"], input:not([type]), select {
  display: block;
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.25rem;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
label.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--ink); }
label.consent input { margin-top: 0.2rem; }
button, a.button {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  padding: 0.65rem 1.1rem;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
form.inline button { padding: 0.15rem 0.5rem; font-size: 0.8rem; background: transparent; color: var(--accent); text-decoration: underline; }
.fine { color: var(--soft); font-size: 0.85rem; font-family: "Helvetica Neue", Arial, sans-serif; }
.warn { background: #fdf3e7; border: 1px solid #ecd9bd; border-radius: 8px; padding: 0.75rem 1rem; }
.standing { font-size: 1.2rem; }
section.status { border: 1px solid var(--line); border-radius: 10px; padding: 1rem 1.25rem; background: #fff; }
code { background: #f1ede4; padding: 0.1rem 0.3rem; border-radius: 4px; font-size: 0.85em; overflow-wrap: anywhere; }
ul { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }
