/* ── Policy Page Styles ── */
/* Extends main.css — load both stylesheets on the privacy policy page */

.policy-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 4vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.policy-date {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.policy section {
    margin-bottom: 2.25rem;
}

.policy h2 {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.policy h3 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
}

.policy p {
    font-size: clamp(0.9rem, 3vw, 1rem);
    line-height: 1.85;
    color: var(--aged);
    margin-bottom: 0.85rem;
}

.policy p:last-child {
    margin-bottom: 0;
}

.policy a {
    color: var(--gold);
    text-decoration: none;
}

.policy a:hover {
    text-decoration: underline;
}

/* ── Back to top button (shared across content pages) ── */

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.6rem;
    height: 2.6rem;
    background: var(--ink, #1a1108);
    border: 1px solid var(--gold-light, #c8a94e);
    border-radius: 50%;
    color: var(--gold-light, #c8a94e);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 500;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background: var(--gold-light, #c8a94e);
    color: var(--ink, #1a1108);
}