:root {
    /* Primary Brand */
    --color-primary: #9A86B8;
    --color-primary-dark: #7C689D;
    --color-primary-light: #E9E1F3;
  
    /* Accent - Gold (decorative only, never buttons) */
    --color-gold: #C9A45B;
    --color-gold-light: #E8D7A8;
  
    /* Accent - Botanical (leaves, dividers) */
    --color-botanical: #8D9B7C;
  
    /* Backgrounds */
    --color-background: #FCFAF7;
    --color-surface: #FFFFFF;
    --color-surface-alt: #F6F1EA;
    --color-linen: #EFE7DE;
  
    /* Typography */
    --color-heading: #25212B;
    --color-body: #4A454E;
--color-muted: #6E6A73;
  
    /* Borders */
    --color-border: #E8DED4;
    --color-border-light: #D7CCEA;
  
    /* Feedback */
    --color-success: #7C9A7D;
  
    /* Shadows (warm, never pure black) */
    --shadow-sm: 0 6px 18px rgba(55, 40, 30, 0.08);
    --shadow-md: 0 16px 40px rgba(55, 40, 30, 0.12);
    --shadow-lg: 0 28px 70px rgba(55, 40, 30, 0.18);
  
    /* Radius */
    --radius-button: 16px;
    --radius-card: 12px;
  
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Alex Brush', cursive;
    --font-body: 'Poppins', sans-serif;
  
    /* Background gradient */
    --gradient-bg: linear-gradient(180deg, #FCFAF7 0%, #F6F1EA 100%);
  }