/* Лендинг: «юридический документ, понятный человеку».
   Бумага + чернила + латунь. Prata (дисплей) / Golos Text (текст). */

:root {
  --paper: #f6f1e7;
  --paper-2: #efe8d9;
  --ink: #1b2a3a;
  --ink-soft: #33475c;
  --muted: #6b7a89;
  --brass: #a1782a;
  --brass-dark: #7f5e1f;
  --line: #d9cfb9;
  --ok: #2e6b4f;
  --danger: #8c3b2e;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(27, 42, 58, 0.10);
  --font-display: "Prata", "Georgia", serif;
  --font-body: "Golos Text", "PT Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(161, 120, 42, 0.07), transparent 60%),
    var(--paper);
}

h1, h2, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.35rem, 2.6vw, 1.9rem); margin: 2.2em 0 0.7em; }
h3 { font-size: 1.08rem; margin: 1.6em 0 0.5em; color: var(--ink-soft); }

p { margin: 0.8em 0; }
ul, ol { margin: 0.8em 0 0.8em 1.3em; }
li { margin: 0.35em 0; }
a { color: var(--brass-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brass); }
strong { color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.95em;
  background: #fffdf8;
}
th, td { border: 1px solid var(--line); padding: 0.55em 0.8em; text-align: left; }
th { background: var(--paper-2); font-weight: 600; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

.overline {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.overline::before { content: ""; width: 34px; height: 1px; background: var(--brass); }

.num {
  font-family: var(--font-display);
  color: var(--brass);
  font-size: 2rem;
  line-height: 1;
}

.muted { color: var(--muted); }
.small { font-size: 0.88rem; }

/* Появление при загрузке — сдержанное, каскадом */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    animation: reveal 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .reveal:nth-child(2) { animation-delay: 0.08s; }
  .reveal:nth-child(3) { animation-delay: 0.16s; }
  .reveal:nth-child(4) { animation-delay: 0.24s; }
  @keyframes reveal { to { opacity: 1; transform: none; } }
}

::selection { background: rgba(161, 120, 42, 0.25); }
