/* Qmatch legal static site — local only, no remote fonts, no tracking */
:root {
  --bg: #0f1115;
  --surface: #1a1d24;
  --text: #f2f2f2;
  --muted: #a8aeb8;
  --accent: #c9a227;
  --border: rgba(201, 162, 39, 0.25);
  --warn-bg: #241c10;
  --warn-border: rgba(201, 162, 39, 0.4);
}
* { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--accent); }
a:hover { text-decoration: underline; }
.wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}
header.site {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}
.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
nav.top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.75rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.9rem;
}
nav.top a { text-decoration: none; color: var(--muted); }
nav.top a:hover { color: var(--accent); }
.lang {
  margin-left: auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.85rem;
}
.meta {
  color: var(--muted);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.85rem;
  margin: 0.5rem 0 1.25rem;
}
h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--accent);
}
h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.6rem;
  color: var(--text);
}
h3 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; }
p { margin: 0.65rem 0; }
ul { padding-left: 1.25rem; margin: 0.65rem 0; }
li { margin: 0.35rem 0; }
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}
blockquote {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: 8px;
  color: var(--muted);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.9rem;
}
blockquote p { margin: 0.4rem 0; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--surface);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}
footer.site {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}
footer.site a { color: var(--accent); }
.home-list {
  list-style: none;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.home-list li {
  margin: 0.75rem 0;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.home-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--accent);
}
.home-list span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
@media (max-width: 480px) {
  .lang { margin-left: 0; width: 100%; }
  h1 { font-size: 1.45rem; }
}
