/* Theme: Clean Slate — neutral white, single adaptable blue accent.
   Built to be genuinely neutral, not a personality of its own, this is
   the theme for when a business's real photos, logo colors, and content
   should carry the visual weight instead of a stylized palette. */
:root {
  --color-primary: #2f6fed; --color-primary-soft: #5a8ff2;
  --color-accent: #171a21; --color-accent-deep: #05060a;
  --color-accent-2: #7c8798; --color-accent-2-soft: #eef1f5;
  --color-bg: #ffffff; --color-bg-alt: #f5f6f8; --color-surface: #ffffff;
  --color-text: #1b1d22; --color-text-soft: #6b7280;

  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-lg: 16px; --radius-md: 10px; --radius-sm: 8px; --container: 1180px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); }
h1, h2, h3 { font-family: var(--font-display); color: var(--color-primary); margin: 0; font-weight: 700; }
p { color: var(--color-text-soft); line-height: 1.6; margin: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
