:root {
  /* ─── Brand Purple ───────────────────────────────────────── */
  --purple-deepest:  #2D1B4E;
  --purple-main:     #5B2D8E;
  --purple-medium:   #8B5FBF;
  --purple-light:    #C4A8E8;
  --purple-lightest: #E8DFF5;
  --purple-05:  rgba(91,45,142,0.05);
  --purple-10:  rgba(91,45,142,0.10);

  /* ─── Luxury Accent ─────────────────────────────────────── */
  --gold:       #A16207;   /* WCAG 3:1 on white */
  --gold-light: #D4A96A;
  --gold-muted: #F5ECD8;
  --rose-gold:  #B76E79;
  --soft-pink:  #F5E6EA;

  /* ─── Neutral Scale ─────────────────────────────────────── */
  --white-pure: #FFFFFF;
  --white-warm: #FDFBF9;
  --white-cool: #F8F7FC;
  --gray-05:  #FAFAF9;
  --gray-50:  #F5F5F4;
  --gray-100: #E7E5E4;
  --gray-150: #D6D3D1;
  --gray-200: #D6D3D1;
  --gray-300: #A8A29E;
  --gray-400: #78716C;
  --gray-500: #57534E;
  --gray-600: #44403C;
  --gray-700: #292524;
  --gray-900: #1C1917;

  /* ─── Text ───────────────────────────────────────────────── */
  --text-primary:          #1C1917;
  --text-secondary:        #57534E;
  --text-muted:            #A8A29E;
  --text-on-purple:        #FFFFFF;
  --text-on-purple-muted:  rgba(255,255,255,0.82);

  /* ─── CTA ────────────────────────────────────────────────── */
  --cta-primary:       #5B2D8E;
  --cta-primary-hover: #4A2475;
  --cta-destructive:   #DC2626;
  --cta-disabled:      #E7E5E4;
  --cta-disabled-text: #A8A29E;

  /* ─── Status ─────────────────────────────────────────────── */
  --success: #16A34A;
  --warning: #D97706;
  --error:   #DC2626;
  --info:    #2563EB;

  /* ─── Shadows ────────────────────────────────────────────── */
  --shadow-xs: 0 1px 3px rgba(28,25,23,0.06);
  --shadow-sm: 0 2px 8px  rgba(28,25,23,0.07);
  --shadow-md: 0 4px 16px rgba(28,25,23,0.09);
  --shadow-lg: 0 8px 32px rgba(28,25,23,0.11);
  --shadow-xl: 0 24px 64px rgba(45,27,78,0.16);
  --card-shadow: 0 1px 3px rgba(28,25,23,0.08), 0 1px 2px rgba(28,25,23,0.04);

  /* ─── Typography ─────────────────────────────────────────── */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* ─── Type Scale ─────────────────────────────────────────── */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* ─── Spacing Scale ──────────────────────────────────────── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  /* Legacy aliases */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* ─── Radius ─────────────────────────────────────────────── */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl:28px;
  --radius-full: 9999px;

  /* ─── Layout ─────────────────────────────────────────────── */
  --max-width:          1280px;
  --header-height:      68px;
  --bottom-nav-height:  68px;

  /* ─── Transitions ────────────────────────────────────────── */
  --transition:        200ms ease;
  --transition-fast:   150ms ease;
  --transition-slow:   300ms ease;
  --ease-out-back:     cubic-bezier(0.34,1.56,0.64,1);
}
