/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS — Ashish Shelar
   Premium institutional design system
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── Color Palette ── */
  --navy-950: #050B15;
  --navy-900: #0A1628;
  --navy-800: #0F1F35;
  --navy-700: #162A46;
  --navy-600: #1E3A5F;
  --surface: #111C2E;
  --surface-elevated: #162640;
  --surface-glass: rgba(15, 31, 53, 0.7);

  --gold-500: #C8A45C;
  --gold-400: #D4B36A;
  --gold-300: #E0C680;
  --gold-dim: rgba(200, 164, 92, 0.15);

  --white: #FFFFFF;
  --off-white: #F5F2ED;
  --cream: #FAF8F5;
  --slate-100: #E2E8F0;
  --slate-200: #CBD5E1;
  --slate-300: #94A3B8;
  --slate-400: #64748B;
  --slate-500: #4A5568;
  --slate-600: #334155;

  --saffron: #FF6B00;
  --success: #10B981;
  --danger: #EF4444;

  /* ── Semantic Colors (Dark Default) ── */
  --bg-primary: var(--navy-950);
  --bg-secondary: var(--navy-900);
  --bg-section: var(--navy-800);
  --bg-card: var(--surface);
  --bg-card-hover: var(--surface-elevated);

  --text-primary: var(--off-white);
  --text-secondary: var(--slate-300);
  --text-muted: var(--slate-400);
  --text-accent: var(--gold-500);
  --text-heading: var(--white);

  --border-subtle: rgba(200, 164, 92, 0.12);
  --border-medium: rgba(200, 164, 92, 0.25);
  --border-bright: rgba(200, 164, 92, 0.5);

  /* ── Typography ── */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  --text-7xl: 6rem;
  --text-8xl: 8rem;
  --text-display: clamp(3rem, 7vw, 8rem);

  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.6;
  --leading-loose: 1.8;

  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* ── Spacing ── */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 12rem;

  /* ── Layout ── */
  --container: 1280px;
  --container-narrow: 760px;
  --container-wide: 1400px;
  --nav-height: 72px;

  /* ── Radii ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 30px rgba(200,164,92,0.15);
  --shadow-glow: 0 0 40px rgba(200,164,92,0.1);

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
  --duration-glacial: 1200ms;

  /* ── Z-index ── */
  --z-base: 1;
  --z-dropdown: 50;
  --z-sticky: 100;
  --z-overlay: 500;
  --z-modal: 1000;
}
