/* === variables.css === */
:root {
  /* Цвета */
  --color-bg: #faf9f7;
  --color-bg-alt: #f3f1ed;
  --color-bg-card: #ffffff;
  --color-text: #2c2c2c;
  --color-text-secondary: #6b6560;
  --color-text-muted: #9e9893;
  --color-accent: #5a7a5e;
  --color-accent-hover: #4a6a4e;
  --color-accent-light: #e8efe9;
  --color-border: #e2dfdb;
  --color-border-light: #eeecea;
  --color-danger: #c0392b;
  --color-tag-bg: #e8efe9;
  --color-tag-text: #3d5e41;

  /* Типографика */
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-size-sm: 0.875rem;    /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-md: 1.125rem;    /* 18px */
  --font-size-lg: 1.375rem;    /* 22px */
  --font-size-xl: 1.75rem;     /* 28px */
  --font-size-2xl: 2.25rem;    /* 36px */
  --font-size-3xl: 2.75rem;    /* 44px */
  --line-height: 1.6;
  --line-height-tight: 1.3;

  /* Отступы */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Контейнеры */
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* Радиусы */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Тени */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

  /* Переходы */
  --transition: 0.2s ease;

  /* Header */
  --header-height: 64px;
}
