/* ============================================================
   DÔR & CO — POLICY PAGES STYLESHEET
   policy.css — linked from privacy-policy.html,
                terms-of-service.html, legal-disclaimer.html
   ============================================================ */

:root {
    --faithful-night: #324158;
    --founders-ember: #B69057;
    --renewal-tide: #58B4AC;
    --saithful-soil: #635B4B;
    --sanctuary-linen: #EFEDE7;
    --ancestral-hearth: #C6C5BD;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Raleway', sans-serif;
    background: var(--sanctuary-linen);
    color: var(--faithful-night);
}

/* NAV */
nav {
    background: var(--faithful-night);
    padding: 1.25rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--founders-ember);
    text-decoration: none;
}

.nav-back {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
}

.nav-back:hover { color: var(--renewal-tide); }

/* CONTENT */
.page-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 5% 6rem;
}

.page-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--founders-ember);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--faithful-night);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.last-updated {
    font-size: 0.78rem;
    color: var(--ancestral-hearth);
    margin-bottom: 3rem;
    font-weight: 300;
}

.divider {
    border: none;
    border-top: 1px solid rgba(50, 65, 88, 0.12);
    margin-bottom: 3rem;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--faithful-night);
    margin-bottom: 0.875rem;
    margin-top: 2.5rem;
}

h2:first-of-type { margin-top: 0; }

p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--saithful-soil);
    font-weight: 300;
    margin-bottom: 1rem;
}

a {
    color: #52808F;
    text-decoration: none;
}

a:hover { text-decoration: underline; }

/* Crisis callout — legal-disclaimer.html only */
.crisis-note {
    background: rgba(50, 65, 88, 0.06);
    border-left: 3px solid var(--founders-ember);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--saithful-soil);
    font-weight: 400;
}

/* FOOTER */
footer {
    background: var(--faithful-night);
    padding: 1.75rem 5%;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--founders-ember);
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--renewal-tide); }

.footer-bottom {
    max-width: 1100px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}
