/* Wspólna baza wyglądu RemontPoMojemu — tokeny marki + reset.
   Ładuj PRZED css strony: {% static 'core/css/base.css' %} */

:root {
  --bg:      #ffffff;
  --surface: #fbfaf8;
  --fg:      #16150f;
  --muted:   #6b6560;
  --border:  #e8e5de;
  --accent:  #e8650a;   /* budowlany pomarańcz */
  --accent-d:#cf590a;   /* ciemniejszy pomarańcz (hover) */
  --accent2: #f5a623;   /* hi-vis żółty */
  --teal:    #12a594;
  --font-display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
