/* ═══════════════════════════════════════════
   privacy.css — Privacy Page Styles
   (extends base.css for shared variables)
   ═══════════════════════════════════════════ */

body {
    line-height: 1.7;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(60px, 10vh, 120px) clamp(24px, 5vw, 48px);
}

.back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 48px;
    transition: color 0.3s;
}

.back:hover {
    color: var(--orange);
}

.back svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

h1 {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 12px;
}

.updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 16px;
}

h3 {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 12px;
}

p,
ul {
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-muted);
}
ul {
    padding-left: 20px;
}
li {
    margin-bottom: 8px;
}
strong {
    color: var(--text-dark);
    font-weight: 500;
}

a {
    color: var(--orange);
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
}

th,
td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    color: var(--text-muted);
    vertical-align: top;
}

th {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
