/* Design System — Spodek Law Group */
/* Premium Law Firm Design System */

:root {
  /* Colors — Primary Palette */
  --color-bg: #0A0A0A;
  --color-bg-alt: #111111;
  --color-bg-elevated: #141414;
  --color-surface: #1A1A1A;
  --color-surface-hover: #222222;
  --color-input: #2A2A2A;
  --color-input-hover: #333333;
  --color-accent: #C26D28;
  --color-accent-hover: #D4802F;
  --color-accent-dark: #A85A20;
  --color-accent-light: #D99A5B;
  --color-accent-subtle: rgba(194, 109, 40, 0.08);
  --color-accent-glow: rgba(194, 109, 40, 0.25);
  --color-white: #FFFFFF;
  --color-text: #FFFFFF;
  --color-text-muted: rgba(255, 255, 255, 0.65);
  --color-text-subtle: rgba(255, 255, 255, 0.55);
  --color-text-dark: #1a1a2e;
  --color-text-dark-muted: #555555;
  --color-bg-white: #FFFFFF;
  --color-bg-offwhite: #F8F7F4;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.12);
  --color-border-accent: #C26D28;

  /* Gradients */
  --gradient-surface: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  --gradient-hero-overlay: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
  --gradient-separator: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);

  /* Typography */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes — Complete Scale */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 4.5rem;      /* 72px */
  --text-7xl: 5.5rem;      /* 88px */

  /* Font Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;
  --leading-loose: 2;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  --tracking-caps: 0.15em;

  /* Spacing */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  --space-4xl: 6rem;     /* 96px */
  --space-5xl: 8rem;     /* 128px */
  --space-6xl: 10rem;    /* 160px */

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --container-text: 680px;
  --header-height: 81px;

  /* Border */
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-full: 9999px;
  --border-accent: 3px solid var(--color-accent);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 4px 20px rgba(194, 109, 40, 0.3);
  --shadow-accent-lg: 0 8px 32px rgba(194, 109, 40, 0.25);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-input-focus: 0 0 0 3px rgba(194, 109, 40, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms ease;
  --transition-slower: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-header: 1000;
  --z-overlay: 900;
  --z-modal: 1100;
  --z-tooltip: 1200;
}
