:root {
  --color-primary: #1A2E2A;
  --color-primary-light: #243F3A;
  --color-primary-deep: #0F1C19;
  --color-secondary: #C68A3F;
  --color-secondary-light: #D8A05E;
  --color-accent: #8B4F2A;

  --color-bg: #FAF7F1;
  --color-surface: #F5F0E6;
  --color-surface-2: #EBE5D6;
  --color-border: #DCD4C2;
  --color-border-strong: #B8AE99;

  --color-text: #161514;
  --color-text-muted: #6B6864;
  --color-text-soft: #94908A;
  --color-text-on-primary: #FAF7F1;
  --color-text-on-primary-muted: #BFB8A6;

  --color-success: #2F7D5C;
  --color-warning: #B5731F;
  --color-error: #A23427;

  --font-heading: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-display: clamp(2.5rem, 6vw + 1rem, 5.5rem);
  --text-section: clamp(2rem, 3.2vw + 1rem, 3.5rem);

  --leading-tight: 1.05;
  --leading-snug: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  --tracking-tight: -0.025em;
  --tracking-snug: -0.015em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.12em;

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

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --space-40: 160px;

  --container-max: 1280px;
  --container-narrow: 880px;
  --container-tight: 680px;
  --container-pad: var(--space-5);

  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 600ms;
  --easing-default: cubic-bezier(0.4, 0, 0.2, 1);
  --easing-out: cubic-bezier(0.16, 1, 0.3, 1);
  --easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(22, 21, 20, 0.04);
  --shadow-md: 0 4px 12px rgba(22, 21, 20, 0.06);
  --shadow-lg: 0 12px 32px rgba(22, 21, 20, 0.08);
  --shadow-xl: 0 24px 60px rgba(22, 21, 20, 0.12);

  --header-h: 64px;
}

@media (min-width: 640px) {
  :root {
    --container-pad: var(--space-6);
  }
}

@media (min-width: 1024px) {
  :root {
    --container-pad: var(--space-10);
    --header-h: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-normal: 0ms;
    --duration-slow: 0ms;
  }
}
