/* page-privacy.css / page-terms.css — shared legal styles */
.page-hero { border-bottom: 1px solid var(--cream-deeper); padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 5rem); }
.page-hero h1 { max-width: 14ch; margin-top: 1rem; color: var(--espresso); }
.page-hero h1 em { color: var(--terra); }
.page-hero__sub { margin-top: 1.5rem; max-width: 52ch; font-size: 1.1rem; }

.legal-body {
    max-width: 760px;
    margin: 0 auto;
}

.legal-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--cream-deeper);
}
.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terra);
    margin: 1.5rem 0 0.6rem;
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--ink-muted);
    margin-bottom: 0.75rem;
}

.legal-section a {
    color: var(--terra);
    text-decoration: underline;
    text-decoration-color: rgba(184,92,42,0.3);
    transition: text-decoration-color 0.2s;
}
.legal-section a:hover { text-decoration-color: var(--terra); }

.legal-list {
    list-style: none;
    margin: 0.75rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.legal-list li {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--ink-muted);
    padding-left: 1.25rem;
    position: relative;
}
.legal-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--terra);
    font-size: 0.8rem;
}
.legal-list li strong { color: var(--ink); font-weight: 500; }
