/* ========================================
   VELVET SPA — Design Tokens
   ======================================== */
:root {
  /* Colors — White Base + Purple / Magenta Accents */
  --color-dark: #ffffff;
  --color-dark-alt: #F8F4FA;
  --color-dark-card: #F3EDF6;
  --color-gold: #C12A72;
  --color-gold-light: #D94D8F;
  --color-gold-dark: #5E1D5E;
  --color-rose: #E04DA0;
  --color-rose-light: #F06EB8;
  --color-cream: #2D1035;
  --color-cream-dark: #070607;
  --color-white: #ffffff;
  --color-white-soft: rgba(45, 16, 53, 0.87);
  --color-cursor: rgba(193, 42, 114, 0.6);
  --color-text-light: #5A3D65;
  --color-text-muted: #8A6D95;
  --color-overlay: rgba(94, 29, 94, 0.7);
  --color-overlay-dark: rgba(70, 18, 70, 0.88);
  --color-glass: rgba(94, 29, 94, 0.04);
  --color-glass-border: rgba(94, 29, 94, 0.1);
  --color-glass-hover: rgba(94, 29, 94, 0.08);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #5E1D5E 0%, #C12A72 50%, #D94D8F 100%);
  --gradient-dark: linear-gradient(180deg, #ffffff 0%, #F3EDF6 100%);
  --gradient-hero: linear-gradient(180deg, rgba(190, 57, 190, 0.185) 0%, rgba(224, 195, 224, 0.39) 100%);
  --gradient-card: linear-gradient(145deg, rgba(193,42,114,0.05) 0%, rgba(243,237,246,1) 100%);
  --gradient-rose: linear-gradient(135deg, #C12A72 0%, #5E1D5E 100%);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', Arial, sans-serif;
  --fs-hero: clamp(2.8rem, 6vw, 5.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;
  --ls-wide: 0.15em;
  --ls-wider: 0.3em;

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

  /* Sizing */
  --container-max: 1200px;
  --container-narrow: 900px;
  --nav-height: 80px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(94, 29, 94, 0.08);
  --shadow-md: 0 8px 32px rgba(94, 29, 94, 0.1);
  --shadow-lg: 0 16px 48px rgba(94, 29, 94, 0.14);
  --shadow-deep: 0 24px 64px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 8px 32px rgba(193, 42, 114, 0.3);
  --shadow-glow: 0 0 30px rgba(193, 42, 114, 0.2);
  --shadow-glow-strong: 0 0 40px rgba(193, 42, 114, 0.6);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;
  --duration-slower: 0.8s;

  /* Z-Index */
  --z-base: 1;
  --z-sticky: 100;
  --z-overlay: 500;
  --z-modal: 1000;
  --z-toast: 1500;
}
