:root {
  /* Цвета */
  --color-primary: #1f3a2e;
  --color-primary-dark: #142219;
  --color-primary-light: #2d5240;

  --color-accent: #b8924a;
  --color-accent-hover: #a07c3a;
  --color-accent-soft: #e8d9b8;

  --color-bg: #fbf8f3;
  --color-bg-alt: #f3eee5;
  --color-surface: #ffffff;

  --color-text: #1a1a1a;
  --color-text-muted: #6b6359;
  --color-text-inverse: #fbf8f3;

  --color-border: #e3ddd1;
  --color-border-strong: #c9c0ad;

  --color-success: #2d6a4f;
  --color-error: #9b2226;

  /* Типографика */
  --font-heading: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs: 0.8125rem;     /* 13px */
  --fs-sm: 0.9375rem;     /* 15px */
  --fs-base: 1.0625rem;   /* 17px */
  --fs-md: 1.1875rem;     /* 19px */
  --fs-lg: 1.5rem;        /* 24px */
  --fs-xl: 2rem;          /* 32px */
  --fs-2xl: 2.75rem;      /* 44px */
  --fs-3xl: 3.75rem;      /* 60px */

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.55;
  --lh-relaxed: 1.7;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Отступы */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 140px;

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

  /* Тени */
  --shadow-sm: 0 1px 3px rgba(20, 34, 25, 0.06), 0 1px 2px rgba(20, 34, 25, 0.04);
  --shadow-md: 0 4px 12px rgba(20, 34, 25, 0.08), 0 2px 4px rgba(20, 34, 25, 0.04);
  --shadow-lg: 0 12px 32px rgba(20, 34, 25, 0.12), 0 4px 8px rgba(20, 34, 25, 0.06);
  --shadow-xl: 0 24px 60px rgba(20, 34, 25, 0.16);

  /* Прочее */
  --max-width: 1200px;
  --max-width-narrow: 880px;
  --header-height: 72px;

  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.5s ease;
}

@media (min-width: 768px) {
  :root {
    --fs-base: 1.125rem;    /* 18px */
    --fs-md: 1.25rem;       /* 20px */
    --fs-lg: 1.75rem;       /* 28px */
    --fs-xl: 2.5rem;        /* 40px */
    --fs-2xl: 3.5rem;       /* 56px */
    --fs-3xl: 4.5rem;       /* 72px */
    --header-height: 84px;
  }
}
