/* ============================================================
   DUTT LEGACY LIMITED — Design Tokens
   ============================================================ */

:root {
  /* Colour Palette */
  --ivory: #f8f1e6;
  --parchment: #efe3d0;
  --warm-white: #fffaf2;
  --burgundy: #671f28;
  --oxblood: #4c171d;
  --brass: #b48a4a;
  --brass-soft: rgba(180, 138, 74, 0.16);
  --brass-line: rgba(180, 138, 74, 0.35);
  --museum-green: #24372f;
  --charcoal: #1f1c19;
  --clay: #b78a72;
  --stone: #d8c7ad;
  --muted: #75685d;
  --line: rgba(76, 23, 29, 0.12);
  --line-strong: rgba(76, 23, 29, 0.24);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif;
  --font-body: 'Inter', 'DM Sans', system-ui, sans-serif;
  --font-label: 'IBM Plex Mono', 'Courier New', monospace;

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

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Transitions */
  --transition-fast: 180ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 480ms ease;

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(31, 28, 25, 0.08);
  --shadow-elevated: 0 8px 32px rgba(31, 28, 25, 0.12);
  --shadow-image: 0 4px 24px rgba(31, 28, 25, 0.15);

  /* Max Widths */
  --max-content: 1200px;
  --max-narrow: 760px;
  --max-wide: 1440px;
}
