/* ============================================
   LensVault — Design System Variables
   Dark Studio · Warm Gold Accent
   ============================================ */

:root {
  /* ---- Colors ---- */
  --bg: #141417;
  --surface: #1C1C22;
  --surface-elevated: #26262F;
  --surface-hover: #30303A;
  --accent: #D4A574;
  --accent-hover: #E0B585;
  --accent-dim: rgba(212, 165, 116, 0.15);
  --accent-glow: rgba(212, 165, 116, 0.35);
  --secondary-accent: #E8E1D5;
  --text-primary: #F5F5F0;
  --text-secondary: #A8A8B0;
  --text-muted: #75757F;
  --success: #7FB069;
  --error: #E63946;
  --warning: #F4A261;
  --border: #2E2E38;
  --border-light: #3A3A48;
  --overlay: rgba(20, 20, 23, 0.85);
  --overlay-light: rgba(20, 20, 23, 0.6);

  /* ---- Typography ---- */
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Font sizes */
  --fs-display: clamp(2.5rem, 6vw, 3.5rem);
  --fs-h1: clamp(2rem, 4.5vw, 2.5rem);
  --fs-h2: clamp(1.5rem, 3.5vw, 2rem);
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-caption: 0.75rem;

  /* Font weights */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Line heights */
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;

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

  /* ---- Layout ---- */
  --container-max: 1280px;
  --container-wide: 1600px;
  --container-narrow: 720px;
  --header-height: 80px;
  --header-height-scrolled: 60px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px var(--accent-glow);

  /* ---- Transitions ---- */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.15s var(--ease-out);
  --transition-base: 0.3s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* ---- Z-index ---- */
  --z-base: 1;
  --z-header: 100;
  --z-drawer: 200;
  --z-modal: 300;
  --z-overlay: 250;
  --z-toast: 400;
  --z-progress: 500;
}
