/* ─────────────────────────────────────────────
   Small Business Climate Map — shared chrome
   Design tokens, base reset, nav, footer.
   Page-specific styles stay in each page.
   ───────────────────────────────────────────── */

:root {
    --bg: #f5efe3;
    --bg-alt: #ebe2cf;
    --bg-card: #f5efe3;
    --fg: #3a2a1a;
    --text: #3a2a1a;
    --accent: #c66a2c;
    --accent-light: #f0a878;
    --accent-soft: rgba(198,106,44,0.12);
    --ink-bg: #1a1814;
    --ink-fg: #f5efe3;
    --muted: rgba(58,42,26,0.78);
    --muted-2: rgba(58,42,26,0.65);
    --muted-3: rgba(58,42,26,0.55);
    --hairline: rgba(58,42,26,0.18);
    --hairline-soft: rgba(58,42,26,0.12);
    --hairline-faint: rgba(58,42,26,0.08);
    --font-display: "Inter Tight", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-display);
    background: var(--bg);
    color: var(--fg);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
.nav {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--hairline-soft);
}
.nav-mark {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.nav-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
}
.nav-links a:hover { color: var(--accent); }

/* ─── FOOTER ─── */
.unified-site-footer {
    margin-top: 60px;
    padding: 28px 24px 32px;
    border-top: 1px solid rgba(0,0,0,0.10);
    background: rgba(0,0,0,0.02);
    font: 14px/1.5 "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
    color: rgba(0,0,0,0.65);
    text-align: center;
}
.unified-site-footer .disclaimer {
    max-width: 760px;
    margin: 0 auto 22px;
    text-align: left;
    padding: 16px 20px;
    background: rgba(198,106,44,0.06);
    border: 1px solid rgba(198,106,44,0.18);
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(58,42,26,0.78);
}
.unified-site-footer .disclaimer strong {
    display: block;
    color: #c66a2c;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: "IBM Plex Mono", ui-monospace, monospace;
}
.unified-site-footer .disclaimer p { margin: 0 0 8px; }
.unified-site-footer .disclaimer p:last-child { margin-bottom: 0; }
.unified-site-footer .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
    margin: 0 auto 10px;
    max-width: 980px;
}
.unified-site-footer .links a {
    color: rgba(0,0,0,0.65);
    text-decoration: none;
    white-space: nowrap;
}
.unified-site-footer .links a:hover { color: #c66a2c; }
.unified-site-footer .copy { font-size: 13px; color: rgba(0,0,0,0.5); }
@media print { .unified-site-footer { display: none !important; } }
