/* ============================================
   LEGAL PAGES — Shared Styles
   ============================================ */

.legal-page {
    background: var(--bg);
}

/* ── Legal Hero Header ────────────────────── */
.legal-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, .04) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(117, 64, 67, .15) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.legal-updated {
    font-size: .9rem;
    color: rgba(255, 255, 255, .5);
    position: relative;
    z-index: 1;
}

/* ── Legal Content ────────────────────────── */
.legal-content {
    padding: 60px 0 80px;
}

.legal-container {
    max-width: 800px;
}

.legal-intro {
    font-size: 1.08rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.legal-section p {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px;
}

.legal-section li {
    position: relative;
    padding-left: 20px;
    font-size: .93rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 0 48px;
    }

    .legal-title {
        font-size: 2.2rem;
    }

    .legal-content {
        padding: 40px 0 60px;
    }
}