/* ─── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-base);
  background-color: var(--color-bg-page);
  color: var(--color-text-main);
  font-size: 14px;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-weight: 600; }
ul { list-style: none; padding: 0; margin: 0; }
