/* =============================================
   ARROWSMITH GROUP — Premium Design Tokens v3.0
   Bespoke, Elegant, Editorial
   ============================================= */
:root {
  /* — Color Palette — Deep, sophisticated, not neon */
  --color-bg-primary: #0a0a0b;
  --color-bg-secondary: #0d0d0f;
  --color-surface: #121214;
  --color-surface-hover: #18181a;

  --color-gold: #bbaa99;
  /* Muted champagne bronze */
  --color-gold-light: #d4c8bc;
  --color-gold-dark: #8c7f73;
  --color-gold-muted: rgba(187, 170, 153, 0.1);
  --color-gold-glow: rgba(187, 170, 153, 0.05);

  --color-text-primary: #f0f0f2;
  --color-text-secondary: #a1a1aa;
  --color-text-muted: #71717a;

  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-subtle: rgba(255, 255, 255, 0.03);

  --color-overlay: rgba(10, 10, 11, 0.75);
  --color-overlay-heavy: rgba(10, 10, 11, 0.92);

  /* — Typography — Editorial Elegance */
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  /* Shifted to serif for display */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Constrained fluid typography to prevent overflow */
  --fs-display: clamp(3rem, 6vw, 5.5rem);
  --fs-h1: clamp(2.5rem, 5vw, 4rem);
  --fs-h2: clamp(2rem, 3.5vw, 3rem);
  --fs-h3: clamp(1.5rem, 2vw, 2rem);
  --fs-h4: clamp(1.2rem, 1.5vw, 1.5rem);
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --fs-label: 0.8125rem;

  --lh-heading: 1.15;
  --lh-body: 1.6;
  --lh-tight: 1.3;

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

  --ls-tight: -0.02em;
  --ls-normal: 0em;
  --ls-wide: 0.05em;
  --ls-wider: 0.1em;
  --ls-widest: 0.2em;

  /* — Spacing Scale — Ample whitespace */
  --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;

  /* — Layout — */
  --container-max: 1280px;
  --container-narrow: 880px;
  --gutter: clamp(1.5rem, 5vw, 3rem);

  /* — Transitions — Slow, smooth, heavy */
  --ease-premium: cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-fast: 0.3s var(--ease-premium);
  --transition-base: 0.6s var(--ease-premium);
  --transition-slow: 1.2s var(--ease-premium);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* — Shadows — */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);

  /* — Border Radius — Micro borders */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
}