:root {
  /* Brand Color Palette */
  --color-primary-pink: #F48698;
  --color-primary-pink-hover: #E26E82;
  --color-primary-pink-active: #C9566A;
  --color-coral-pink: #FF8495;
  --color-soft-pink: #FBC5CE;
  --color-blush: #FDE1E5;
  --color-blush-light: #FFF4F6;
  --color-cream: #F5F0E8;
  --color-cream-light: #FAF7F2;
  --color-warm-beige: #EDE6DC;
  --color-peach: #F8C7B6;
  --color-orange-peach: #F5A38D;
  --color-champagne: #E6D7C3;
  --color-gold-accent: #C5A880;

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-off-white: #FCFCFA;
  --color-charcoal: #202020;
  --color-dark-gray: #303030;
  --color-medium-gray: #757575;
  --color-light-gray: #B8B8B8;
  --color-border-gray: #E8E5E1;
  --color-very-light-gray: #F5F4F0;
  --color-surface-card: #FFFFFF;
  --color-surface-subtle: #FAF8F5;

  /* Functional & Feedback */
  --color-success: #2E7D32;
  --color-success-bg: #E8F5E9;
  --color-error: #D32F2F;
  --color-error-bg: #FFEBEE;
  --color-warning: #ED6C02;
  --color-warning-bg: #FFF3E0;
  --color-info: #0288D1;
  --color-info-bg: #E1F5FE;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Font Sizes */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.84375rem;  /* 13.5px */
  --text-base: 0.9375rem; /* 15px */
  --text-md: 1.0625rem;   /* 17px */
  --text-lg: 1.1875rem;   /* 19px */
  --text-xl: 1.375rem;    /* 22px */
  --text-2xl: 1.625rem;   /* 26px */
  --text-3xl: 2rem;       /* 32px */
  --text-4xl: 2.5rem;     /* 40px */
  --text-5xl: 3.25rem;    /* 52px */
  --text-6xl: 4rem;       /* 64px */

  /* Line Heights */
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Spacing Scale (4px base) */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-card: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(32, 32, 32, 0.04);
  --shadow-sm: 0 2px 6px rgba(32, 32, 32, 0.06);
  --shadow-md: 0 6px 18px rgba(32, 32, 32, 0.08);
  --shadow-lg: 0 14px 32px rgba(32, 32, 32, 0.1);
  --shadow-xl: 0 24px 48px rgba(32, 32, 32, 0.12);
  --shadow-pink: 0 10px 25px rgba(244, 134, 152, 0.25);
  --shadow-drawer: -6px 0 30px rgba(32, 32, 32, 0.18);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 350ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 450ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout Containers */
  --container-max: 1360px;
  --container-narrow: 920px;
  --header-height: 84px;
  --announcement-height: 38px;

  /* Z-indexes */
  --z-header: 100;
  --z-overlay: 200;
  --z-drawer: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-tooltip: 600;
}
