/* css/legal.css — стили для юридических страниц */
.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0804, #1a1208, #0a0804);
  padding: 3rem 2rem;
  font-family: 'Crimson Pro', Georgia, serif;
  color: rgba(244,233,208,0.85);
  line-height: 1.8;
  font-size: 17px;
}
.legal-nav {
  max-width: 750px; margin: 0 auto 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,146,42,0.15);
}
.legal-nav a {
  font-family: 'Cinzel', serif; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(201,146,42,0.6); text-decoration: none; transition: color 0.3s;
}
.legal-nav a:hover { color: #e8b84b; }
.legal-content {
  max-width: 750px; margin: 0 auto;
}
.legal-content h1 {
  font-family: 'Cinzel', serif; font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: #e8b84b; margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(201,146,42,0.3);
}
.legal-content .legal-date {
  font-family: 'Cinzel', serif; font-size: 0.8rem;
  letter-spacing: 0.1em; color: rgba(201,146,42,0.4);
  margin-bottom: 2.5rem;
}
.legal-content h2 {
  font-family: 'Cinzel', serif; font-size: 1.2rem;
  font-weight: 600; color: #e8b84b; margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(201,146,42,0.12);
}
.legal-content h3 {
  font-family: 'Cinzel', serif; font-size: 1rem;
  font-weight: 600; color: rgba(244,233,208,0.9);
  margin: 1.2rem 0 0.5rem;
}
.legal-content p { margin-bottom: 0.8rem; }
.legal-content ul, .legal-content ol {
  margin: 0.5rem 0 1rem 1.5rem;
}
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a {
  color: #c9922a; text-decoration: none;
  border-bottom: 1px solid rgba(201,146,42,0.3);
  transition: border-color 0.3s;
}
.legal-content a:hover { border-color: #e8b84b; }
.legal-footer {
  max-width: 750px; margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,146,42,0.15);
  text-align: center;
}
.legal-footer a {
  font-family: 'Cinzel', serif; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(201,146,42,0.6); text-decoration: none; transition: color 0.3s;
}
.legal-footer a:hover { color: #e8b84b; }
