/* Shared styles for privacy.html / terms.html — matches index.html design system */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --ink: #0e0e0c;
    --ink-2: #1c1c1a;
    --paper: #ffffff;
    --cream: #faf7f0;
    --soft: #f0ebde;
    --line: #e3ddcc;
    --muted: #6e6a62;
    --muted-2: #a39e94;
    --accent: #b06639;
    --accent-dark: #8f4d1f;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --t: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--paper); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--ink); text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.legal-topstrip { background: var(--ink); color: rgba(255,255,255,0.72); font-size: 0.78rem; padding: 10px 0; font-weight: 500; }
.legal-topstrip .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.legal-topstrip-tag { display: inline-flex; align-items: center; gap: 8px; }
.legal-topstrip-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legal-topstrip a { color: rgba(255,255,255,0.72); }
.legal-topstrip a:hover { color: var(--accent); text-decoration: none; }
.legal-topstrip-phone { color: #fff !important; font-weight: 600; }

.legal-nav { background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 0; }
.legal-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.legal-nav .brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.legal-nav .brand:hover { text-decoration: none; }
.legal-nav .brand img { height: 36px; }
.legal-nav .brand-text { font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: 1rem; }
.legal-nav .brand-text span { color: var(--muted); font-weight: 500; }
.legal-nav .back { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: 0.9rem; font-weight: 500; padding: 10px 18px; border: 1px solid var(--line); border-radius: 4px; transition: all var(--t); }
.legal-nav .back:hover { border-color: var(--ink); background: var(--ink); color: #fff; text-decoration: none; }
.legal-nav .back svg { width: 14px; height: 14px; }

.legal-hero { background: var(--cream); border-bottom: 1px solid var(--line); padding: 56px 0 48px; }
.legal-hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.2px; color: var(--accent); margin-bottom: 14px; }
.legal-hero .eyebrow::before { content: ""; width: 24px; height: 1.5px; background: var(--accent); display: inline-block; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
.legal-hero .updated { font-size: 0.9rem; color: var(--muted); margin-top: 12px; }

.legal-content { max-width: 760px; margin: 0 auto; padding: 56px 28px 90px; }
.legal-content .intro { font-size: 1.05rem; color: var(--ink-2); line-height: 1.7; padding-bottom: 26px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; margin-top: 36px; margin-bottom: 14px; color: var(--ink); letter-spacing: -0.005em; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 16px; color: var(--ink-2); line-height: 1.7; font-size: 0.98rem; }
.legal-content ul { list-style: none; margin: 0 0 18px 0; }
.legal-content ul li { position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--ink-2); font-size: 0.98rem; line-height: 1.65; }
.legal-content ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 1.5px; background: var(--accent); }
.legal-content ul li strong { color: var(--ink); font-weight: 700; }

.legal-contact-card { background: var(--cream); border: 1px solid var(--line); border-radius: 8px; padding: 26px 30px; margin-top: 32px; }
.legal-contact-card strong { display: block; font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 12px; font-weight: 700; }
.legal-contact-card p { margin: 0; font-size: 0.98rem; line-height: 1.8; }

.legal-footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 30px 0; text-align: center; font-size: 0.85rem; }
.legal-footer a { color: rgba(255,255,255,0.75); }
.legal-footer a:hover { color: var(--accent); text-decoration: none; }
.legal-footer .sep { margin: 0 12px; color: rgba(255,255,255,0.25); }

@media (max-width: 600px) {
    .legal-nav .brand-text { display: none; }
    .legal-topstrip { font-size: 0.74rem; }
    .legal-topstrip .hide-sm { display: none; }
    .legal-hero { padding: 40px 0 36px; }
    .legal-content { padding: 36px 24px 60px; }
}
