/* =============================================
   ARROWSMITH GROUP — Design Tokens v2.0
   Premium Redesign
   ============================================= */
:root {
  /* — Color Palette — Warm, refined, not generic */
  --color-bg-primary: #0c0b09;
  --color-bg-secondary: #12110e;
  --color-bg-card: rgba(255, 255, 255, 0.03);
  --color-bg-card-hover: rgba(255, 255, 255, 0.06);
  --color-surface: #1a1815;
  --color-stone: #2a2520;
  --color-gold: #c5a55a;
  --color-gold-light: #d4b96e;
  --color-gold-dark: #a8893d;
  --color-gold-muted: rgba(197, 165, 90, 0.12);
  --color-gold-glow: rgba(197, 165, 90, 0.25);
  --color-text-primary: #f0ece4;
  --color-text-secondary: #9a9590;
  --color-text-muted: #5e5954;
  --color-border: rgba(197, 165, 90, 0.15);
  --color-border-subtle: rgba(255, 255, 255, 0.05);
  --color-overlay: rgba(12, 11, 9, 0.7);
  --color-overlay-heavy: rgba(12, 11, 9, 0.88);
  --color-white: #ffffff;

  /* — Typography — Editorial & Unique */
  --font-display: 'Syne', 'Helvetica Neue', sans-serif;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --fs-display: clamp(3.5rem, 7vw, 7rem);
  --fs-h1: clamp(2.4rem, 4.5vw, 4rem);
  --fs-h2: clamp(1.8rem, 3vw, 2.8rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.8rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --fs-label: 0.8125rem;

  --lh-heading: 1.1;
  --lh-body: 1.75;
  --lh-tight: 1.25;

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

  --ls-wide: 0.12em;
  --ls-wider: 0.2em;
  --ls-widest: 0.3em;

  /* — Spacing Scale — */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 7rem;
  --space-5xl: 10rem;
  --space-6xl: 14rem;

  /* — Layout — */
  --container-max: 1320px;
  --container-narrow: 920px;
  --container-wide: 1500px;
  --gutter: clamp(1.5rem, 4vw, 3rem);

  /* — Transitions — Refined curves */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --transition-fast: 0.2s var(--ease-out-quart);
  --transition-base: 0.4s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);
  --transition-slower: 1s var(--ease-out-expo);
  --transition-micro: 0.15s var(--ease-out-quart);

  /* — Shadows — Warm toned */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 60px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 40px rgba(197, 165, 90, 0.12);
  --shadow-glow: 0 0 60px rgba(197, 165, 90, 0.08);

  /* — Border Radius — */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* — Cursor — */
  --cursor-size: 12px;
  --cursor-ring-size: 40px;
}