:root {
	/* Colors */
	--color-bg: #faf7f1;
	--color-bg-soft: #f2ece1;
	--color-surface: #ffffff;
	--color-text: #211f1d;
	--color-text-muted: #6e655a;
	--color-text-inverse: #faf7f1;
	--color-accent: #b08d57;
	--color-accent-hover: #94713f;
	--color-accent-soft: #efe6d3;
	--color-border: #e6dfd2;
	--color-border-strong: #d3c9b6;
	--color-overlay: rgba(33, 31, 29, 0.6);
	--color-success: #4f6b4a;
	--color-error: #a8433a;
	--color-focus: var(--color-accent);

	/* Typography */
	--font-serif: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
	--font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Fluid type scale */
	--text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
	--text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
	--text-base: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
	--text-lg: clamp(1.125rem, 1.08rem + 0.3vw, 1.25rem);
	--text-xl: clamp(1.375rem, 1.3rem + 0.5vw, 1.625rem);
	--text-2xl: clamp(1.75rem, 1.6rem + 1vw, 2.25rem);
	--text-3xl: clamp(2.25rem, 2rem + 1.5vw, 3rem);
	--text-4xl: clamp(2.75rem, 2.3rem + 2.5vw, 4rem);
	--text-display: clamp(3rem, 2.4rem + 4vw, 5.5rem);

	/* Line height */
	--leading-tight: 1.15;
	--leading-snug: 1.35;
	--leading-normal: 1.6;
	--leading-relaxed: 1.75;

	/* Letter spacing */
	--tracking-tight: -0.01em;
	--tracking-normal: 0em;
	--tracking-wide: 0.04em;
	--tracking-wider: 0.12em;

	/* Font weight */
	--weight-regular: 400;
	--weight-medium: 500;
	--weight-semibold: 600;
	--weight-bold: 700;

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

	/* Containers */
	--container-narrow: 720px;
	--container-main: 1200px;
	--container-wide: 1440px;

	/* Radius */
	--radius-small: 2px;
	--radius-medium: 6px;
	--radius-pill: 999px;

	/* Shadows */
	--shadow-soft: 0 1px 2px rgba(33, 31, 29, 0.04), 0 4px 12px rgba(33, 31, 29, 0.06);
	--shadow-elevated: 0 8px 30px rgba(33, 31, 29, 0.12);

	/* Transitions */
	--ease-default: cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: 150ms var(--ease-default);
	--transition-base: 250ms var(--ease-default);
	--transition-slow: 400ms var(--ease-default);

	/* Z-index scale */
	--z-header: 100;
	--z-drawer: 200;
	--z-modal: 300;
	--z-toast: 400;
}
