:root {
  /* Colors - Warm */
  --cream: #FFF5F0;
  --blush: #FFE8E0;
  --rose: #FF6B6B;
  --deep-rose: #E84545;
  --coral: #FF8A80;
  --gold: #FFD700;
  --warm-white: #FFFAF8;
  --warm-gray: #8D7B7B;
  --charcoal: #3D2C2C;

  /* Colors - CAPTCHA (Google-authentic) */
  --captcha-blue: #4A8CF7;
  --captcha-blue-dark: #3B7DE0;
  --captcha-green: #00C853;
  --captcha-border: #D3D3D3;
  --captcha-bg: #F9F9F9;
  --captcha-red: #FF1744;
  --captcha-hover: #b0b0b0;

  /* Typography */
  --font-system: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-handwritten: 'Caveat', cursive;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Shadows */
  --shadow-soft: 0 2px 12px rgba(61, 44, 44, 0.08);
  --shadow-medium: 0 4px 24px rgba(61, 44, 44, 0.12);
  --shadow-lift: 0 8px 32px rgba(61, 44, 44, 0.16);

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-material: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --ease-spring: ease;
    --ease-material: ease;
  }
}