:root {
  /* Colors */
  --color-bg: #f4f2ed;
  --color-surface: #eceae4;
  --color-text: #1a1a18;
  --color-text-muted: #6b6a65;
  --color-accent: #d4f244;
  --color-accent-orange: #e07040;
  --color-border: #e0ded9;
  --color-white: #ffffff;
  --color-black: #0a0a09;

  /* Typography */
  --font-display: 'Syne', 'Helvetica Neue', sans-serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  --text-xs:   0.6875rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;
  --text-6xl:  5.5rem;
  --text-7xl:  7.5rem;
  --text-8xl:  10rem;
  --text-9xl:  13rem;

  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extrabold:800;

  --leading-none:    1;
  --leading-tight:   1.05;
  --leading-snug:    1.2;
  --leading-normal:  1.5;
  --leading-relaxed: 1.75;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;

  /* Layout */
  --max-width:      1400px;
  --container-px:   clamp(1.5rem, 5vw, 5rem);
  --nav-height:     72px;

  /* Borders */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --transition-fast:  200ms var(--ease-out);
  --transition-base:  400ms var(--ease-out);
  --transition-slow:  700ms var(--ease-out);

  --z-nav: 100;
  --z-cursor: 9999;
}

@media (max-width: 768px) {
  :root {
    --text-6xl: 3.5rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;
    --text-9xl: 7rem;
  }
}
