/* Base theme styles (keeps selectors scoped/neutral for WP migration)
   - Keep rules generic and prefixed by .site where appropriate to reduce collisions
   - Use CSS variables for easy theming
*/
:root {
  --color-bg: #1e1a18;
  --color-paper: #ffffff;
  --color-accent: #d9b89a;
  --color-muted: #777777;
  --text: #222222;
  --max-width: 1200px;
  --container-padding: 16px;
  --radius: 6px;
}

/* Set default site font to Manrope (falls back to system fonts) */
.site { font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; }