/* ==========================================================================
   Zahid Enterprises — Design Tokens
   ========================================================================== */

:root {
  /* Color palette — warm, artisan, premium */
  --color-cream: #f8f3ea;
  --color-cream-alt: #f0e8d8;
  --color-paper: #fffdf9;
  --color-white: #ffffff;
  --color-charcoal: #2b2621;
  --color-charcoal-soft: #5c564d;
  --color-charcoal-faint: #857e72;
  --color-border: #e3d8c4;
  --color-border-soft: #ece3d2;

  --color-terracotta: #b5502d;
  --color-terracotta-dark: #96401f;
  --color-terracotta-light: #e8ceb9;
  --color-olive: #5c6b4f;
  --color-olive-dark: #454f3b;
  --color-gold: #b08d57;

  --color-success: #4c6b4f;
  --color-error: #b5402d;

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-xs: 0.8rem;
  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;

  /* Spacing scale (8px base) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 780px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s var(--ease);
  --transition-base: 0.3s var(--ease);
  --transition-slow: 0.5s var(--ease);

  --shadow-sm: 0 1px 3px rgba(43, 38, 33, 0.08);
  --shadow-md: 0 8px 24px rgba(43, 38, 33, 0.1);
  --shadow-lg: 0 20px 48px rgba(43, 38, 33, 0.16);
}
