/* ==========================================
   Signature Housekeeping Design System
   variables.css
   Visual Source of Truth: V1 style-v7.css
========================================== */

:root {
  /* Brand Colors */
  --ivory: #f6f0e6;
  --paper: #fffdf8;
  --ink: #24231f;
  --gold: #b48e4c;
  --taupe: #d8cbb8;
  --deep: #1d2420;
  --muted: #6d675e;

  /* System Color Mappings */
  --color-primary: #b48e4c;
  --color-primary-dark: #987337;
  --color-background: #fffdf8;
  --color-surface: #f6f0e6;
  --color-dark: #1d2420;
  --color-heading: #24231f;
  --color-text: #6d675e;
  --color-border: #d8cbb8;
  --color-success: #27613f;
  --color-warning: #8a5a24;
  --color-danger: #9b2f2f;

  /* Typography */
  --font-heading: Georgia, serif;
  --font-body: Arial, Helvetica, sans-serif;

  /* Layout & Sizes */
  --container: 1240px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 22px 70px rgba(36, 35, 31, 0.07);

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Motion & Z-Index */
  --transition: 0.25s ease;
  --z-header: 20;
  --z-navbar: 1000;
}