:root {
  /* Colors */
  --color-primary: #2D6A4F;
  --color-primary-light: #45C95A;
  --color-primary-dark: #1F4D2B;
  --color-primary-deep: #123526;
  --color-primary-ink: #10271d;
  --color-cream: #FBF6EC;
  --color-off-white: #FCFDF9;
  --color-mist: #EDF4ED;
  --color-sand: #F1E4D2;
  --color-sage: #C9DCC7;
  --color-moss: #79936E;
  --color-clay: #C97752;
  --color-clay-soft: #F2D8C9;
  --color-sky-soft: #DCECF0;
  --color-dark: #1A1A1A;
  --color-text: #24362d;
  --color-text-soft: #647269;
  --color-grey: #6B7280;
  --color-grey-light: #E5E7EB;
  --color-white: #FFFFFF;
  --color-amber: #D4A853;
  --color-error: #DC2626;
  --color-sky: #CBE3F0;
  --color-earth: #7A5739;

  /* Typography */
  --font-primary: 'DM Sans', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-editorial: 'DM Serif Display', 'Iowan Old Style', Baskerville, 'Times New Roman', serif;
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --type-display: 72px;
  --type-h1: 56px;
  --type-h2: 44px;
  --type-h3: 28px;
  --type-body-large: 18px;
  --type-body: 16px;
  --type-body-small: 14px;
  --type-eyebrow: 12px;
  --type-button: 14px;
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 28px;
  --text-4xl: 32px;
  --text-5xl: 40px;
  --text-6xl: 56px;
  --text-hero: 72px;
  --text-brand: 52px;
  --text-section: 42px;
  --text-editorial: 48px;
  --text-feature: 28px;
  --text-body: 16px;
  --text-label: 12px;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-28: 112px;
  --space-32: 128px;
  --space-36: 144px;
  --section-padding-desktop: 104px;
  --section-padding-major: 128px;
  --section-padding-mobile: 64px;
  --container-max-width: 1280px;
  --container-text-width: 760px;
  --container-padding: 32px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 32px rgba(16, 39, 29, 0.10);
  --shadow-lg: 0 24px 64px rgba(16, 39, 29, 0.16);

  /* Motion */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layers */
  --z-navbar: 100;
  --z-floating: 90;
  --z-modal: 200;
  --z-overlay: 150;

  /* Existing token aliases */
  --green-primary: var(--color-primary);
  --green-fresh: var(--color-primary-light);
  --green-deep: var(--color-primary-dark);
  --cream: var(--color-cream);
  --sand: var(--color-sand);
  --off-white: #FFFDF7;
  --charcoal: var(--color-dark);
  --gray: var(--color-grey);
  --sky-blue: var(--color-sky);
  --earth-brown: var(--color-earth);
  --gold: var(--color-amber);
  --transition: var(--transition-base);
}
