/* Legal page styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0a;
    --line: #1a1a1a;
    --dim: #333;
    --text: #999;
    --bright: #ccc;
    --white: #e5e5e5;
    color-scheme: dark;
}

body {
    font-family: 'EB Garamond', Georgia, serif;
    background: var(--bg);
    color: var(--bright);
    font-size: 18px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

.legal-header {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.legal-header a { text-decoration: none; }
.legal-header img { height: 50px; width: auto; opacity: 0.9; }
.legal-back {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    font-style: italic;
    color: var(--white);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    letter-spacing: 0.05em;
}
.legal-back:hover { opacity: 1; }

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.legal-body h1 {
    font-size: 42px;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.legal-body .legal-effective {
    font-size: 14px;
    color: var(--text);
    font-style: italic;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

.legal-body h2 {
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    margin-top: 45px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.legal-body h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-body p {
    margin-bottom: 18px;
    color: var(--bright);
}

.legal-body ul, .legal-body ol {
    margin-bottom: 18px;
    padding-left: 30px;
}

.legal-body li {
    margin-bottom: 8px;
    color: var(--bright);
}

.legal-body a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}
.legal-body a:hover { opacity: 0.7; }

.legal-body strong {
    color: var(--white);
    font-weight: 600;
}

.legal-footer {
    padding: 30px 50px;
    text-align: center;
    border-top: 1px solid var(--line);
    background: #000;
}
.legal-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-bottom: 12px;
}
.legal-footer-links a {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.legal-footer-links a:hover { opacity: 1; }
.legal-footer-copyright {
    font-size: 11px;
    color: #7a7a7a;
}

@media (max-width: 600px) {
    .legal-header { padding: 20px 20px; }
    .legal-header img { height: 40px; }
    .legal-body { padding: 40px 20px 60px; }
    .legal-body h1 { font-size: 32px; }
    .legal-body h2 { font-size: 22px; }
    .legal-footer { padding: 25px 20px; }
}

@media print {
    body { background: #fff; color: #000; }
    .legal-header, .legal-footer { display: none; }
    .legal-body h1, .legal-body h2, .legal-body h3, .legal-body strong { color: #000; }
    .legal-body p, .legal-body li { color: #333; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition-duration: 0.01ms !important; }
}
