/* =========================
   ROOT / TOKENS (Cardstock — Cream & Terracotta)
   Mirrors the app's light theme: cream paper, terracotta primary, sage mark.
   ========================= */

:root {
    --bg: #FFF8F0;
    --card: #FEF4E6;
    --text: #2C2C2C;
    --muted: #6E6E6E;
    --accent: #D37053;
    --accent-secondary: #4A6B5D;

    --radius: 16px;

    --font-body: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-title: 'Lora', Georgia, 'Times New Roman', serif;
}

/* =========================
   RESET / BASE
   ========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* =========================
   TOP NAV
   ========================= */

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    backdrop-filter: blur(8px);
}

.top-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-title .mark {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: block;
}

/* =========================
   PRIVACY PAGE
   ========================= */

.privacy {
    max-width: 820px;
    margin: 0 auto;
    padding: 160px 24px 120px;
}

.privacy-hero {
    text-align: center;
    margin-bottom: 64px;
}

.privacy-hero h1 {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin: 0;
}

.privacy-hero .subtitle {
    margin-top: 12px;
    color: var(--muted);
    font-size: 1.1rem;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(211, 112, 83, 0.1);
}

.privacy-card h2 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 12px;
}

.privacy-card p {
    margin: 0 0 12px;
    color: var(--text);
}

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

.privacy-card a {
    color: var(--accent);
    text-decoration: underline;
}

.privacy-card ul {
    margin: 0 0 12px;
    padding-left: 20px;
    color: var(--text);
}

.privacy-card li {
    margin-bottom: 6px;
}

.privacy-card .highlight {
    color: var(--accent);
    font-weight: 600;
}

.effective {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 32px;
}

/* =========================
   FOOTER
   ========================= */

.footer {
    text-align: center;
    padding: 24px;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer a {
    color: inherit;
    text-decoration: underline;
    margin-right: 12px;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 760px) {

    .site-title {
        font-size: 1.05rem;
    }

    .top-nav-inner {
        padding: 12px 20px;
    }

    .privacy {
        padding: 120px 20px 100px;
    }

    .privacy-card {
        padding: 24px;
    }
}
