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

:root {
    --accent: hsl(24, 37%, 81%);
    --bg: #000;
    --text: #fff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.75;
}

h1,
h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 400;
}

a {
    color: var(--accent);
}

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.logo {
    color: var(--accent);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.home-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.home-link:hover {
    color: var(--accent);
}

.legal-header {
    padding: 10rem 4rem 4rem;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    color: var(--accent);
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.05;
}

.last-updated {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4.5rem 4rem 6rem;
}

.legal-introduction {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.legal-introduction + .legal-introduction {
    margin-top: 1rem;
}

.legal-section {
    margin-top: 3.25rem;
    padding-top: 3.25rem;
    border-top: 1px solid var(--border);
}

.legal-section h2 {
    margin-bottom: 1.25rem;
    color: var(--accent);
    font-size: 1.9rem;
    line-height: 1.25;
}

.legal-section p,
.legal-section address,
.legal-section li {
    color: var(--text-muted);
    font-style: normal;
}

.legal-section p + p {
    margin-top: 1rem;
}

.legal-section p + address,
.legal-section ul + p {
    margin-top: 1rem;
}

.legal-section ul {
    margin: 1rem 0 0 1.25rem;
    padding-left: 0.75rem;
}

.legal-section li + li {
    margin-top: 0.4rem;
}

.legal-section strong {
    color: var(--text);
    font-weight: 500;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 4rem;
    border-top: 1px solid var(--border);
}

.footer-logo {
    color: var(--accent);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    text-align: right;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
    margin-top: 0.65rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
    color: var(--accent);
}

@media (max-width: 768px) {
    nav {
        padding: 1.25rem 1.5rem;
    }

    .legal-header {
        padding: 8rem 1.5rem 3rem;
    }

    .legal-content {
        padding: 3rem 1.5rem 4rem;
    }

    footer {
        align-items: center;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
