:root {
	--accent: #9c3b34;
	--mf-ink: #3a2c20;
	--mf-ink-dark: #241d16;
	--mf-cream: #f4efe6;
	--mf-cream-light: #fbf8f2;
	--mf-brown: #6b4f3a;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--mf-cream);
	font-family: 'Mulish', system-ui, sans-serif;
	color: var(--mf-ink);
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--mf-brown);
	text-decoration: none;
}

a:hover {
	color: var(--mf-ink-dark);
}

img {
	max-width: 100%;
	display: block;
}

.megafurn-page {
	max-width: 100%;
	overflow-x: hidden;
}

@keyframes mfKen {
	from { transform: scale(1.02); }
	to { transform: scale(1.12); }
}

@keyframes mfFadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: none; }
}

.mf-ken {
	animation: mfKen 26s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
	.mf-ken {
		animation: none;
	}
}

[data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

[data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

[data-hdr] {
	transition: box-shadow .3s ease, background .3s ease;
}

[data-hdr].is-scrolled {
	box-shadow: 0 8px 30px rgba(58, 44, 32, .12);
	background: rgba(244, 239, 230, .94);
}

/* Utility bar */
.mf-utility {
	background: var(--mf-ink-dark);
	color: #e7ddcd;
	font-size: 12.5px;
	letter-spacing: .02em;
	padding: 9px 5vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.mf-utility a {
	color: inherit;
}

.mf-utility__messages {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
}

.mf-utility__dot {
	opacity: .55;
}

.mf-utility__meta {
	display: flex;
	gap: 22px;
	opacity: .85;
	align-items: center;
}

.mf-utility__lang {
	border: 1px solid rgba(231, 221, 205, .35);
	border-radius: 20px;
	padding: 2px 10px;
}

/* Sticky header */
.mf-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 5vw;
	background: rgba(244, 239, 230, .75);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(58, 44, 32, .1);
	gap: 20px;
}

.mf-header__brand {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.mf-header__wordmark {
	font: 600 25px/1 'Spectral', serif;
	letter-spacing: .15em;
	color: var(--mf-ink);
}

.mf-header__tagline {
	font-size: 9.5px;
	letter-spacing: .34em;
	color: var(--accent, #b06a3a);
	text-transform: uppercase;
	font-weight: 700;
}

.mf-header__menu {
	display: flex;
	gap: 28px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--mf-ink);
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.mf-header__menu a {
	color: inherit;
}

.mf-header__menu .current-menu-item > a {
	color: var(--accent, #b06a3a);
}

.mf-header__actions {
	display: flex;
	gap: 14px;
	align-items: center;
	color: var(--mf-ink);
}

.mf-header__search input {
	width: 190px;
	height: 40px;
	border: 1px solid rgba(58, 44, 32, .22);
	border-radius: 22px;
	padding: 0 15px;
	font-size: 13px;
	color: var(--mf-ink);
	background: transparent;
	font-family: inherit;
}

.mf-header__icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #eae0cf;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--mf-ink);
}

.mf-header__icon--dark {
	background: var(--mf-ink-dark);
	color: var(--mf-cream);
	font-weight: 700;
}

/* Footer */
.mf-footer {
	background: var(--mf-ink-dark);
	color: #b7a892;
	padding: 56px 5vw 40px;
}

.mf-footer a {
	color: inherit;
}

.mf-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 34px;
	font-size: 13.5px;
	line-height: 2;
	max-width: 1300px;
}

.mf-footer__wordmark {
	font: 600 23px/1 'Spectral', serif;
	letter-spacing: .15em;
	color: var(--mf-cream);
	margin-bottom: 14px;
}

.mf-footer__desc {
	margin: 0;
	max-width: 280px;
	line-height: 1.7;
}

.mf-footer__col-title {
	color: var(--mf-cream);
	font-weight: 700;
	margin-bottom: 8px;
}

.mf-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mf-footer__address {
	font-style: normal;
}

.mf-footer__bottom {
	border-top: 1px solid rgba(183, 168, 146, .18);
	margin-top: 36px;
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: #b7a892;
}

.mf-footer__legal {
	display: flex;
	gap: 18px;
}

.mf-header__toggle {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(58, 44, 32, .22);
	background: transparent;
	font-size: 16px;
	color: var(--mf-ink);
	cursor: pointer;
}

@media (max-width: 960px) {
	.mf-header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--mf-cream);
		border-bottom: 1px solid rgba(58, 44, 32, .1);
		max-height: 0;
		overflow: hidden;
		transition: max-height .25s ease;
	}

	.mf-header__nav.is-open {
		max-height: 60vh;
		overflow-y: auto;
	}

	.mf-header__menu {
		flex-direction: column;
		gap: 0;
		padding: 10px 5vw 20px;
	}

	.mf-header__menu li {
		padding: 10px 0;
		border-bottom: 1px solid rgba(58, 44, 32, .08);
	}

	.mf-header__search {
		display: none;
	}

	.mf-header__toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mf-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}
