.hom-burger {
	display: none;
	width: 38px;
	height: 38px;
	margin: 20px 0 0 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	background: linear-gradient(60deg, rgba(129, 62, 116, 0.65), rgba(129, 62, 116, 0.95));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow:
		-2px 2px 8px rgba(0, 0, 0, 0.18),
		inset 0 1px 4px rgba(255, 255, 255, 0.35);
}

.hom-burger span {
	display: block;
	width: 20px;
	height: 3px;
	border-radius: 999px;
	background: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.hom-burger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hom-burger.is-open span:nth-child(2) {
	opacity: 0;
}

.hom-burger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.hom-auto {
	position: fixed;
	z-index: 10000;
}

.hom-auto-top-right {
	top: 20px;
	right: 20px;
}

.hom-auto-top-left {
	top: 20px;
	left: 20px;
}

.hom-overlay {
	position: fixed;
	inset: 0;
	z-index: 9998;
	display: none;
	background: rgba(0, 0, 0, 0.45);
}

.hom-overlay.is-open {
	display: block;
}

.hom-panel {
	position: fixed;
	top: 0;
	z-index: 9999;
	width: min(85vw, var(--hom-panel-width));
	height: 100vh;
	padding: 90px 32px 32px;
	background: linear-gradient(60deg, rgba(129, 62, 116, 0.85), rgba(129, 62, 116, 1));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 4px rgba(255, 255, 255, 0.4);
	transition: transform 0.35s ease;
}

.hom-close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	background: rgba(255, 255, 255, 0.12);
}

.hom-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hom-menu li {
	margin: 0 0 1rem;
	padding: 0;
}

.hom-menu a {
	display: block;
	color: #fff;
	text-decoration: none;
	font: 700 1.1rem "LibreFranklin-Bold", sans-serif;
	line-height: 1.6;
	letter-spacing: 0.5px;
	transition: opacity 0.25s ease, transform 0.25s ease;
	opacity: 0.75;
}

.hom-menu a:hover,
.hom-menu .current-menu-item > a {
	opacity: 1;
}

body.hom-menu-open {
	overflow: hidden;
}