:root {
    color-scheme: light; /* legal pages should stay high-contrast */
}
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Blinker', sans-serif;
    color: #000000;
    background: #FAF4D9;
}
header {
    padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 6vw, 5rem);
    text-align: center;
}
header h1 {
    font-family: 'Blinker', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 4.75rem);
    letter-spacing: 0.04em;
    text-transform: none;
    line-height: 0.9;
    margin-bottom: 0.75rem;
}
header p {
    font-size: 1.1rem;
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.7;
}
main {
    background: #DFF6FF;
    border-radius: 36px 36px 0 0;
    padding: clamp(2rem, 4vw, 4rem);
    box-shadow: none;
}
nav.toc {
    border: 1px solid rgba(55, 47, 43, 0.1);
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    background: #fefaf3;
}
nav.toc h2 {
    margin-top: 0;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
nav.toc ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
nav.toc li a {
    color: #a65f2e;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
}
nav.toc li a:hover {
    text-decoration: underline;
}
section.policy {
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border: 1px solid rgba(55, 47, 43, 0.08);
    border-radius: 32px;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    background: #fffdf8;
}
section.policy h2 {
    font-family: 'Blinker', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    letter-spacing: 0.05em;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}
section.policy h3 {
    font-size: 1.1rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
section.policy p {
    margin: 0 0 1rem;
    line-height: 1.5;
    color: rgba(55, 47, 43, 0.9);
}
section.policy ul {
    margin: 0 0 1.25rem 1.25rem;
    padding: 0;
    line-height: 1.7;
}
section.policy ul li {
    margin-bottom: 0.5rem;
}
a {
    color: #a65f2e;
    text-decoration-color: rgba(166, 95, 46, 0.35);
    text-decoration-thickness: 2px;
}
a:hover {
    color: #6f3c1c;
    text-decoration-color: currentColor;
}
.policy-meta {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(55, 47, 43, 0.6);
}
.policy-logo {
    width: 160px;
    max-width: 60vw;
    display: inline-block;
}
.timestamp {
    text-align: center;
    padding: 2rem 0 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgb(70, 63, 58, 0.7);
}
table {
    width: 80%;
}
table th {
    background-color: #FAF4D9;
    text-align: left;
    padding: 0.125em;
}
table td {
    border-bottom: 1px solid rgb(0,0,0,0.2);
    padding: 0.125em;
}
@media (max-width: 768px) {
    nav.toc ul {
        grid-template-columns: 1fr;
    }
    section.policy {
        padding: 1.5rem;
    }
    section.policy ul {
        margin-left: 1rem;
    }
}

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    th {
        background: #f3f4f6;
        color: #1C1713;
        padding: 1rem;
        text-align: left;
        font-weight: 600;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-bottom: 2px solid #e5e7eb;
    }
    
    td {
        padding: 1rem;
        border-bottom: 1px solid #e5e7eb;
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    tr:last-child td {
        border-bottom: none;
    }
    
    tr:nth-child(even) {
        background: #f9fafb;
    }
    
    tr:hover {
        background: #f3f4f6;
    }
    
    @media (max-width: 768px) {
        table {
            font-size: 0.75rem;
        }
        
        th, td {
            padding: 0.75rem 0.5rem;
        }
    }

