/**
 * Optional client-specific token overrides.
 *
 * Cahillbrand Core auto-maps Divi Variable Manager labels to --cb-{slug}
 * (e.g. label "Primary" → var(--cb-primary)). Add manual aliases here only
 * when you need a custom name or fallback.
 */
:root {
	--site-header-height: 133px;
    --lilac-pale: #EDE4F5;
    --coral-pale: #FDF0EC;
    --hero-bg: #f3edf8;
	--cb-font-heading: var(--et_global_heading_font, inherit);

	/* Heading sizes — mobile (default). Edit per client. */
	--cb-h1-size: 38px;
	--cb-h2-size: 28px;
	--cb-h3-size: 22px;
	--cb-h4-size: 18px;
	--cb-h5-size: 16px;
	--cb-h6-size: 14px;
}

@media (min-width: 768px) {
	:root {
		/* Tablet */
		--cb-h1-size: 50px;
		--cb-h2-size: 36px;
		--cb-h3-size: 28px;
		--cb-h4-size: 22px;
		--cb-h5-size: 18px;
		--cb-h6-size: 16px;
	}
}

@media (min-width: 981px) {
	:root {
		/* Desktop */
		--cb-h1-size: 67px;
		--cb-h2-size: 46px;
		--cb-h3-size: 34px;
		--cb-h4-size: 26px;
		--cb-h5-size: 20px;
		--cb-h6-size: 16px;
	}
}
