*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1628;
    --navy-light: #111d32;
    --navy-mid: #162744;
    --charcoal: #2a2f3a;
    --slate: #4a5568;
    --silver: #94a3b8;
    --off-white: #f1f3f6;
    --white: #ffffff;
    --gold: #b8976a;
    --gold-light: #d4b896;
    --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    color: var(--white);
    background: var(--navy);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 151, 106, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold) !important;
    border: 1px solid rgba(184, 151, 106, 0.4);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-color: var(--gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ── LEGAL HEADER ── */
.legal-header {
    padding: 11rem 0 5rem;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(22, 39, 68, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(184, 151, 106, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 3rem;
}

.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.legal-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.legal-header h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 2rem;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 1.7;
}

.legal-meta a {
    color: var(--silver);
    border-bottom: 1px solid rgba(184, 151, 106, 0.25);
}

.legal-meta a:hover {
    color: var(--gold);
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 151, 106, 0.15), transparent);
}

/* ── LEGAL CONTENT ── */
.legal-main {
    padding: 5rem 0 6rem;
    background: var(--navy);
}

.legal-content {
    color: var(--silver);
    font-size: 1rem;
    line-height: 1.85;
}

.legal-lede {
    font-size: 1.05rem;
    color: var(--off-white);
    border-left: 1px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.legal-content h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.legal-content h3 {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold-light);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1.25rem;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.65rem;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 12px;
    height: 1px;
    background: var(--gold);
}

.legal-content strong {
    color: var(--white);
    font-weight: 500;
}

.legal-content a {
    border-bottom: 1px solid rgba(184, 151, 106, 0.35);
}

.legal-content a:hover {
    border-bottom-color: var(--gold);
}

.legal-copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 151, 106, 0.12);
    font-size: 0.85rem;
    color: var(--slate);
    text-align: center;
}

/* ── FOOTER ── */
footer {
    background: var(--navy-light);
    border-top: 1px solid rgba(184, 151, 106, 0.08);
    padding: 3rem 0 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-text {
    font-size: 0.78rem;
    color: var(--slate);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.72rem;
    color: var(--slate);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    border-bottom: none;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-registered {
    max-width: 1280px;
    margin: 1.5rem auto 0;
    padding: 1.5rem 3rem 0;
    border-top: 1px solid rgba(184, 151, 106, 0.05);
    font-size: 0.72rem;
    color: var(--slate);
    text-align: center;
    line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(184, 151, 106, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-inner {
        padding: 0 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .legal-header {
        padding: 9rem 0 3rem;
    }

    .legal-main {
        padding: 3rem 0 4rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
        margin-top: 2.25rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 1.5rem;
    }

    .footer-registered {
        padding: 1.5rem 1.5rem 0;
    }
}
