* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --ink: #1a1a1a;
  --ink-2: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e5e5e5;
  --bg: #fafaf7;
  --accent: #c2410c;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 32px;
}
header a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
header a:hover { color: var(--accent); }
h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}
.lead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}
h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 12px;
}
h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 8px;
}
p { margin-bottom: 12px; color: var(--ink-2); }
ul, ol { margin: 8px 0 16px 24px; }
li { margin-bottom: 6px; color: var(--ink-2); }
a { color: var(--accent); }
strong { color: var(--ink); }
.requisites {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  margin: 16px 0;
  font-size: 14px;
}
.requisites dt {
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}
.requisites dt:first-child { margin-top: 0; }
.requisites dd { color: var(--ink-2); margin-bottom: 4px; }
footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.date {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
