/* Стили юридических страниц (/oferta, /privacy). Правится вручную. */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fafaf8;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.topbar {
  border-bottom: 1px solid #e5e1d6;
  background: #fffdf8;
}
.topbar-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #68645e;
  text-decoration: none;
}
.back:hover {
  color: #e05522;
}
.wordmark {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}

main {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.doc-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e05522;
  margin-bottom: 14px;
}
h1 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.meta {
  font-size: 15px;
  line-height: 1.6;
  color: #68645e;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e1d6;
}
.meta strong {
  color: #111111;
  font-weight: 600;
}

.preamble {
  font-size: 17px;
  line-height: 1.65;
  margin: 28px 0 8px;
}

section {
  margin-top: 36px;
}
h2 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid #e5e1d6;
}
p.clause {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #1a1a1a;
}
p.clause .num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  font-size: 14px;
  color: #68645e;
  margin-right: 6px;
}

ul.clause-list {
  margin: -4px 0 16px 0;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
}
ul.clause-list li {
  margin-bottom: 8px;
}
ul.clause-list li::marker {
  color: #e05522;
}

.requisites {
  margin-top: 16px;
  background: #f6f5f3;
  border: 1px solid #e5e1d6;
  border-radius: 14px;
  padding: 24px 26px;
}
.requisites dl {
  display: grid;
  grid-template-columns: minmax(150px, auto) 1fr;
  gap: 10px 24px;
  font-size: 15px;
  line-height: 1.55;
}
.requisites dt {
  color: #68645e;
}
.requisites dd {
  font-weight: 500;
}
.requisites .company {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 18px;
}

a.mail,
a.inline-link {
  color: #e05522;
  text-decoration: none;
  font-weight: 600;
}
a.mail:hover,
a.inline-link:hover {
  text-decoration: underline;
}

footer {
  background: #0e0e0e;
  color: #ffffff;
  padding: 32px 0;
}
.footer-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.footer-inner strong {
  font-size: 16px;
}
.footer-inner .muted {
  color: #8a8580;
}
.footer-inner a {
  color: #8a8580;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.footer-inner a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  main {
    padding: 40px 20px 56px;
  }
  .requisites dl {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }
  .requisites dd {
    margin-bottom: 12px;
  }
}
