:root {
	/* Typography Fonts */
	--font-heading: 'Space Grotesk', sans-serif;
	--font-display: 'Space Grotesk', sans-serif;
	--font-body: 'Inter', sans-serif;
	--font-label: 'Inter', sans-serif;
	--font-sans: 'Inter', sans-serif;

	/* Color Palette (Approximated Hex from Guide) */
	--background-50: #FAF9F6;
	--background-100: #F3F1EC;
	--foreground-50: #FFFFFF;
	--foreground-100: #E6E6E6;
	--foreground-700: #4A4A4A;
	--foreground-950: #1A1A1A;
	
	--primary-500: #E87A5D;
	--primary-600: #D96A4D;
}

body {
	font-family: var(--font-body);
	background-color: var(--background-50);
	color: var(--foreground-700);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--foreground-950);
}

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Type Scale */
.text-8xl { font-size: 96px; font-weight: 700; }
.text-7xl { font-size: 72px; font-weight: 700; }
.text-5xl { font-size: 48px; font-weight: 700; }
.text-4xl { font-size: 36px; font-weight: 700; }
.text-3xl { font-size: 30px; font-weight: 700; }
.text-2xl { font-size: 24px; font-weight: 700; }
.text-xl { font-size: 20px; font-weight: 600; }
.text-lg { font-size: 18px; }
.text-base { font-size: 16px; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }

/* Letter Spacing */
.tracking-widest { letter-spacing: 0.3em; }
.tracking-wide { letter-spacing: 0.2em; }
.tracking-tight { letter-spacing: -0.025em; }

/* Line Heights */
.leading-tight { line-height: 1.1; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }

/* Colors */
.bg-primary-500 { background-color: var(--primary-500); }
.text-primary-500 { color: var(--primary-500); }
.text-background-50 { color: var(--background-50); }
