/* Юридические страницы Лунарио — та же ночь и золото, что на лендинге.
   Текст документов не оформляется «красиво»: главное — читаемость длинного абзаца. */

:root {
  --bg-0: #0b0a14;
  --bg-1: #141126;
  --text: #f5f2ea;
  --muted: #d8d2e8;
  --faint: #9c95b8;
  --gold: #d9b868;
  --gold-2: #f0d79a;
}

* { box-sizing: border-box }
html { -webkit-text-size-adjust: 100% }
body {
  margin: 0;
  font-family: "Onest", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 70%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-2); text-decoration: none }
a:hover { text-decoration: underline }

.header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 20px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid rgba(245, 242, 234, .10);
}
.header-in { display: contents }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-2); font-size: 15px;
}
.logo img, .logo svg { flex: none }
.logo span {
  font-family: "Comfortaa", ui-rounded, "Onest", system-ui, sans-serif;
  font-weight: 300; font-size: 19px; line-height: 1; letter-spacing: .01em;
}
.btn, .btn-ink {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 20px; border-radius: 14px;
  font-size: 15px; font-weight: 600; color: var(--text);
  background: linear-gradient(150deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  transition: transform .25s ease, border-color .25s ease;
}
.btn:hover, .btn-ink:hover { transform: translateY(-2px); border-color: rgba(217, 184, 104, .5); text-decoration: none }

.doc { padding: 8px clamp(18px, 4vw, 32px) 64px }
.container { max-width: 760px; margin: 0 auto }

h1 {
  margin: 28px 0 10px;
  font-size: clamp(26px, 3.6vw, 34px); line-height: 1.25;
  font-weight: 600; letter-spacing: -.01em;
}
h2 {
  margin: 34px 0 10px;
  font-size: 19px; line-height: 1.3; font-weight: 600; color: var(--gold-2);
}
p, li { font-size: 15.5px; line-height: 1.75; color: var(--muted) }
p { margin: 0 0 12px }
ul, ol { margin: 0 0 14px; padding-left: 22px }
li { margin-bottom: 7px }
li::marker { color: var(--gold) }

.doc-meta {
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 26px;
}

.footer {
  padding: 22px clamp(18px, 5vw, 56px) 44px;
  border-top: 1px solid rgba(245, 242, 234, .10);
  text-align: center;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
  font-size: 14px; color: var(--faint);
}
.footer-links a { color: var(--muted) }
.footer-links a:hover { color: var(--gold-2) }
