:root {
  /* Brand */
  --color-primary: #7a1f35;
  --color-primary-light: #9e2d4a;
  --color-primary-dark: #5a1528;
  --color-accent: #e8a020;
  --color-accent-soft: #fff4e0;
  --color-navy: #0f1c2e;
  --color-navy-soft: #1a2d47;

  /* Neutrals */
  --color-white: #ffffff;
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-surface-2: #f3f4f6;
  --color-border: #e5e7eb;
  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-text-light: #9ca3af;

  /* Typography */
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --header-height: 72px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(122, 31, 53, 0.15);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.25s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);
}
