@layer base {
	:root {
		/* Colors */
		--color-text: #000;
		--color-bg: #fff;
		--color-bg-alt: #f5f5f5;
		--color-primary: #000;
		--color-accent: #0055ff;
		--color-brand: #d74535;
		--color-grill-bg: #d74535;

		/* Typography */
		--font-sans: "GT Pressura", -apple-system, BlinkMacSystemFont,
			"Segoe UI", Roboto, Helvetica, Arial, sans-serif;
		--font-mono: "SF Mono", SFMono-Regular, Consolas, "Liberation Mono",
			Menlo, monospace;

		--text-sm: clamp(0.875rem, 0.8rem + 0.2vw, 0.9375rem);
		--text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
		--text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
		--text-xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
		--text-2xl: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
		--text-3xl: clamp(2.5rem, 1.8rem + 2vw, 3.5rem);

		--leading-tight: 1.2;
		--leading-normal: 1.6;

		/* Spacing */
		--space-xs: 0.25rem;
		--space-sm: 0.5rem;
		--space-md: 1rem;
		--space-lg: 1.5rem;
		--space-xl: 2rem;
		--space-2xl: 3rem;
		--space-3xl: 5rem;
		--space-section: clamp(3rem, 2.5rem + 2.5vw, 5rem);

		/* Layout */
		--narrow-width: 40rem;
		--content-width: 48rem;
		--mid-width: 65rem;
		--wide-width: 90rem;
		--site-padding: clamp(1rem, 3vw, 2rem);

		/* Radii */
		--radius-btn: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);

		/* Transitions */
		--transition-fast: 150ms ease;
		--transition-base: 250ms ease;
	}
}
