:root {
	--mambo-color-ink: #12100f;
	--mambo-color-coal: #18130f;
	--mambo-color-paper: #fff;
	--mambo-color-cream: #fff8ef;
	--mambo-color-sand: #f4e7d5;
	--mambo-color-muted: #6d655e;
	--mambo-color-line: rgb(18 16 15 / 13%);
	--mambo-color-burnt: #c94f12;
	--mambo-color-orange: #f47a20;
	--mambo-color-gold: #f6b73c;
	--mambo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--mambo-font-serif: Georgia, serif;
	--mambo-font-label: 0.75rem;
	--mambo-font-body: 1rem;
	--mambo-font-lead: 1.1875rem;
	--mambo-leading-tight: 0.98;
	--mambo-leading-body: 1.5;
	--mambo-space-2xs: 0.5rem;
	--mambo-space-xs: 0.75rem;
	--mambo-space-sm: 1rem;
	--mambo-space-md: 1.5rem;
	--mambo-space-lg: 2rem;
	--mambo-space-xl: 3rem;
	--mambo-space-2xl: 4rem;
	--mambo-space-section: clamp(4rem, 8vw, 6rem);
	--mambo-gutter: clamp(1rem, 4vw, 3.5rem);
	--mambo-width-content: 47.5rem;
	--mambo-width-builder: 47.5rem;
	--mambo-width-wide: 77.5rem;
	--mambo-radius-sm: 0.8125rem;
	--mambo-radius-md: 1.5rem;
	--mambo-radius-lg: 2.875rem;
	--mambo-radius-pill: 999px;
	--mambo-border: 1px solid var(--mambo-color-line);
	--mambo-shadow-card: 0 1.125rem 3.4375rem rgb(25 16 9 / 12%);
	--mambo-shadow-lifted: 0 1.375rem 3.75rem rgb(42 25 13 / 15%);
	--mambo-duration-fast: 160ms;
	--mambo-duration-base: 240ms;
	--mambo-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--mambo-focus: #f6b73c;
	--mambo-kitchen-accent: var(--mambo-color-burnt);
	--mambo-kitchen-accent-strong: #8a2f16;
	--mambo-kitchen-accent-on-dark: var(--mambo-color-gold);
	--mambo-kitchen-accent-on-light: #765100;
	--mambo-kitchen-surface: var(--mambo-color-sand);
	--mambo-kitchen-ink: var(--mambo-color-ink);
}

[data-kitchen="cuban"] {
	--mambo-kitchen-accent: #f6b73c;
	--mambo-kitchen-accent-strong: #d89113;
	--mambo-kitchen-accent-on-dark: #f6b73c;
	--mambo-kitchen-accent-on-light: #765100;
	--mambo-kitchen-surface: #fff8ef;
	--mambo-kitchen-ink: #2a1c14;
}

[data-kitchen="taco"] {
	--mambo-kitchen-accent: #c94f12;
	--mambo-kitchen-accent-strong: #8a2f16;
	--mambo-kitchen-accent-on-dark: #ff8a3d;
	--mambo-kitchen-accent-on-light: #8a2f16;
	--mambo-kitchen-surface: #f3e2c8;
	--mambo-kitchen-ink: #241a18;
}

[data-kitchen="burger"] {
	--mambo-kitchen-accent: #e4a11b;
	--mambo-kitchen-accent-strong: #9b6500;
	--mambo-kitchen-accent-on-dark: #e4a11b;
	--mambo-kitchen-accent-on-light: #704800;
	--mambo-kitchen-surface: #f3e7d4;
	--mambo-kitchen-ink: #141210;
}

[data-kitchen="viking"] {
	--mambo-kitchen-accent: #c95a1a;
	--mambo-kitchen-accent-strong: #7a3f24;
	--mambo-kitchen-accent-on-dark: #ff8a3d;
	--mambo-kitchen-accent-on-light: #7a3f24;
	--mambo-kitchen-surface: #f2e6d8;
	--mambo-kitchen-ink: #2a1e18;
}

[data-kitchen="vesta"] {
	--mambo-kitchen-accent: #f06a22;
	--mambo-kitchen-accent-strong: #c94f12;
	--mambo-kitchen-accent-on-dark: #f47a20;
	--mambo-kitchen-accent-on-light: #8a2f16;
	--mambo-kitchen-surface: #fff7ea;
	--mambo-kitchen-ink: #18130f;
}

[data-kitchen="sunny-side"] {
	--mambo-kitchen-accent: #e0b15a;
	--mambo-kitchen-accent-strong: #7a5a3a;
	--mambo-kitchen-accent-on-dark: #e0b15a;
	--mambo-kitchen-accent-on-light: #7a5a3a;
	--mambo-kitchen-surface: #fff9f1;
	--mambo-kitchen-ink: #18130f;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	min-width: 0;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

main {
	display: block;
}

:where(h1, h2, h3, h4, h5, h6, p, li, figcaption, td, th) {
	overflow-wrap: anywhere;
}

:where(img, video, iframe, svg) {
	display: block;
	max-width: 100%;
	height: auto;
}

:where(figure) {
	margin-inline: 0;
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--mambo-color-paper);
	outline-offset: 2px;
	box-shadow: 0 0 0 5px var(--mambo-color-ink);
}

:where(a, button, input, select, textarea, summary) {
	transition-duration: var(--mambo-duration-fast);
	transition-property: background-color, border-color, color, box-shadow, opacity, transform;
	transition-timing-function: var(--mambo-ease-out);
}

a:hover {
	text-decoration-thickness: 0.14em;
}

.wp-element-button,
.wp-block-button__link {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--mambo-color-ink);
	box-shadow: none;
	cursor: pointer;
	line-height: 1.1;
	text-align: center;
	transition-duration: var(--mambo-duration-base);
}

.wp-element-button:hover,
.wp-block-button__link:hover {
	box-shadow: var(--mambo-shadow-card);
	transform: translateY(-2px);
}

.wp-block-button.is-style-outline > .wp-block-button__link {
	border-color: currentcolor;
	background: transparent;
	color: var(--mambo-color-ink);
}

.wp-block-button.is-style-outline > .wp-block-button__link:hover {
	background: var(--mambo-color-ink);
	color: var(--mambo-color-paper);
}

:where(input:not([type="checkbox"], [type="radio"], [type="submit"]), select, textarea) {
	width: 100%;
	min-height: 3rem;
	border: var(--mambo-border);
	border-radius: var(--mambo-radius-sm);
	background: var(--mambo-color-paper);
	color: var(--mambo-color-ink);
	font: inherit;
	padding: 0.75rem 1rem;
}

textarea {
	min-height: 8rem;
	resize: vertical;
}

table {
	width: 100%;
	border-collapse: collapse;
}

:where(th, td) {
	border-bottom: var(--mambo-border);
	padding: var(--mambo-space-xs);
	text-align: left;
}

.mambo-shell {
	width: min(100% - (2 * var(--mambo-gutter)), var(--mambo-width-wide));
	margin-inline: auto;
}

.mambo-section {
	padding-block: var(--mambo-space-section);
}

.mambo-eyebrow {
	font-size: var(--mambo-font-label);
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.mambo-card {
	border: var(--mambo-border);
	border-radius: var(--mambo-radius-md);
	background: var(--mambo-color-paper);
	box-shadow: var(--mambo-shadow-card);
	padding: clamp(1.25rem, 4vw, 2rem);
}

.mambo-kitchen-swatch {
	position: relative;
	min-height: 7rem;
	overflow: hidden;
	border-radius: var(--mambo-radius-md);
	background: var(--mambo-kitchen-surface);
	color: var(--mambo-kitchen-ink);
	padding: var(--mambo-space-md);
}

.mambo-kitchen-swatch::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0.5rem;
	background: var(--mambo-kitchen-accent);
	content: "";
}

.mambo-media-placeholder {
	display: grid;
	min-height: clamp(12rem, 32vw, 22rem);
	place-items: center;
	border: var(--mambo-border);
	border-radius: var(--mambo-radius-lg);
	background:
		linear-gradient(135deg, rgb(246 183 60 / 35%), transparent 55%),
		var(--mambo-color-sand);
	color: var(--mambo-color-muted);
	font-size: var(--mambo-font-label);
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mambo-foundation-header {
	border-bottom: var(--mambo-border);
	padding-block: var(--mambo-space-md);
}

.mambo-foundation-header .wp-block-site-title {
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mambo-site-main {
	min-height: 60vh;
	padding-block: var(--mambo-space-xl);
}

.mambo-foundation-footer {
	border-top: var(--mambo-border);
	color: var(--mambo-color-muted);
	font-size: var(--mambo-font-label);
	padding-block: var(--mambo-space-lg);
}

@media (min-width: 48rem) {
	.mambo-site-main {
		padding-block: var(--mambo-space-2xl);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
