/*
 * Elementor applies its sticky header z-index to the widget wrapper, not to
 * the menu drawer. Keep both the closed control and its wrapper above it.
 */
.elementor-widget-navigation_mobile {
	position: relative;
	z-index: 2147483647;
}

.navigation-mobile {
	--navigation-mobile-text: #90aa9f;
	--navigation-mobile-submenu: #90aa9f;
	--navigation-mobile-accent: #dc4f28;
	--navigation-mobile-line: #90aa9f;
	--navigation-mobile-icon-offset-x: 4px;
	--navigation-mobile-icon-offset-y: 8px;
	position: relative;
	z-index: 2147483647;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
}

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

.navigation-mobile .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.navigation-mobile__bar,
.navigation-mobile__drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.navigation-mobile__bar {
	min-height: 61px;
	border-bottom: 2px solid #eea68c;
	background: #fffef0;
}

.navigation-mobile__logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 1px;
	min-height: 36px;
}

.navigation-mobile__logo img {
	display: block;
	height: auto;
	max-height: 48px;
	object-fit: contain;
}

.navigation-mobile__actions {
	display: flex;
	align-items: center;
}

.navigation-mobile__open,
.navigation-mobile__close,
.navigation-mobile__submenu-toggle {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0 !important;
	box-shadow: none !important;
	cursor: pointer;
}

.navigation-mobile__open,
.navigation-mobile__close {
	position: relative;
	width: 42px;
	min-width: 42px;
	height: 42px;
	min-height: 42px;
	border-radius: 50% !important;
	background: var(--navigation-mobile-accent) !important;
	background-color: var(--navigation-mobile-accent) !important;
	background-image: none !important;
	color: #fffef0 !important;
	filter: none !important;
	opacity: 1 !important;
	overflow: hidden;
	transform: none !important;
	transition: none !important;
	animation: none !important;
	-webkit-tap-highlight-color: transparent;
}

.navigation-mobile__open::before,
.navigation-mobile__open::after,
.navigation-mobile__close::before,
.navigation-mobile__close::after {
	display: none !important;
	content: none !important;
}

.navigation-mobile__button-bg {
	display: block !important;
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--navigation-mobile-accent) !important;
	background-color: var(--navigation-mobile-accent) !important;
	background-image: none !important;
	filter: none !important;
	opacity: 1 !important;
	pointer-events: none;
	transform: none !important;
	transition: none !important;
	animation: none !important;
}

.navigation-mobile__open:hover,
.navigation-mobile__open:focus,
.navigation-mobile__open:active,
.navigation-mobile__open[aria-expanded="true"],
.navigation-mobile__close:hover,
.navigation-mobile__close:focus,
.navigation-mobile__close:active {
	background: var(--navigation-mobile-accent) !important;
	background-color: var(--navigation-mobile-accent) !important;
	background-image: none !important;
	color: #fffef0 !important;
	filter: none !important;
	opacity: 1 !important;
	box-shadow: none !important;
	transform: none !important;
	transition: none !important;
	animation: none !important;
}

.navigation-mobile__open:hover .navigation-mobile__button-bg,
.navigation-mobile__open:focus .navigation-mobile__button-bg,
.navigation-mobile__open:active .navigation-mobile__button-bg,
.navigation-mobile__open[aria-expanded="true"] .navigation-mobile__button-bg,
.navigation-mobile__close:hover .navigation-mobile__button-bg,
.navigation-mobile__close:focus .navigation-mobile__button-bg,
.navigation-mobile__close:active .navigation-mobile__button-bg {
	display: block !important;
	background: var(--navigation-mobile-accent) !important;
	background-color: var(--navigation-mobile-accent) !important;
	background-image: none !important;
	filter: none !important;
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
	animation: none !important;
}

.navigation-mobile__menu-icon {
	display: block;
	position: relative;
	z-index: 1;
	width: 20px;
	height: 20px;
	max-width: 100%;
	object-fit: contain;
	pointer-events: none;
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.navigation-mobile__open .navigation-mobile__menu-icon,
.navigation-mobile__drawer:not(.is-open) .navigation-mobile__close .navigation-mobile__menu-icon {
	transform: translate(var(--navigation-mobile-icon-offset-x), var(--navigation-mobile-icon-offset-y));
}

.navigation-mobile__drawer.is-open .navigation-mobile__close .navigation-mobile__menu-icon {
	transform: translate(0, 0);
}

.navigation-mobile__open > span[aria-hidden],
.navigation-mobile__open > span[aria-hidden]::before,
.navigation-mobile__open > span[aria-hidden]::after,
.navigation-mobile__close > span[aria-hidden],
.navigation-mobile__close > span[aria-hidden]::before,
.navigation-mobile__close > span[aria-hidden]::after {
	position: absolute;
	left: 50%;
	width: 17px;
	height: 2px;
	background: currentColor;
	content: "";
	transform: translateX(-50%);
}

.navigation-mobile__open > span[aria-hidden],
.navigation-mobile__close > span[aria-hidden] {
	top: 20px;
	z-index: 1;
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.navigation-mobile__open > span[aria-hidden],
.navigation-mobile__drawer:not(.is-open) .navigation-mobile__close > span[aria-hidden] {
	transform: translate(calc(-50% + var(--navigation-mobile-icon-offset-x)), var(--navigation-mobile-icon-offset-y));
}

.navigation-mobile__drawer.is-open .navigation-mobile__close > span[aria-hidden] {
	transform: translate(-50%, 0);
}

.navigation-mobile__open > span[aria-hidden]::before,
.navigation-mobile__close > span[aria-hidden]::before {
	top: -6px;
}

.navigation-mobile__open > span[aria-hidden]::after,
.navigation-mobile__close > span[aria-hidden]::after {
	top: 6px;
}

.navigation-mobile__drawer[hidden] {
	display: none;
}

.navigation-mobile__drawer {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100dvh;
	min-height: 100vh;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: max(12px, env(safe-area-inset-top)) 14px max(18px, env(safe-area-inset-bottom));
	background: #295b46;
	color: var(--navigation-mobile-text);
	clip-path: inset(0 0 100% 0);
	pointer-events: none;
	transition: clip-path 520ms cubic-bezier(0.76, 0, 0.24, 1);
	will-change: clip-path;
}

.navigation-mobile__drawer.is-open {
	clip-path: inset(0 0 0 0);
	pointer-events: auto;
}

.navigation-mobile__drawer-header {
	flex: 0 0 auto;
	min-height: 53px;
	padding-bottom: 11px;
	border-bottom: 1px solid var(--navigation-mobile-line);
}

.navigation-mobile__drawer .navigation-mobile__logo img {
	max-height: 42px;
}

.navigation-mobile__nav {
	flex: 0 0 auto;
	padding-top: 42px;
}

.navigation-mobile__menu,
.navigation-mobile__submenu {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.navigation-mobile__item {
	margin: 0 !important;
	padding: 0 !important;
}

.navigation-mobile__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 50px;
}

.navigation-mobile__row > a {
	flex: 1 1 auto;
	padding: 2px 0;
	color: var(--navigation-mobile-text) !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(27px, 8.5vw, 34px);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: -0.02em;
	text-decoration: none !important;
	text-transform: lowercase;
}

.navigation-mobile__submenu-toggle {
	flex: 0 0 26px;
	width: 26px;
	height: 42px;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--navigation-mobile-accent) !important;
}

.navigation-mobile__chevron {
	width: 7px;
	height: 7px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 180ms ease;
}

.navigation-mobile__submenu-toggle[aria-expanded="true"] .navigation-mobile__chevron {
	transform: translateY(2px) rotate(225deg);
}

.navigation-mobile__submenu-wrap[hidden],
.navigation-mobile__submenu[hidden] {
	display: none;
}

.navigation-mobile__submenu-wrap .navigation-mobile__submenu {
	display: block;
	padding: 5px 0 16px !important;
}

.navigation-mobile__submenu .navigation-mobile__row {
	min-height: 30px;
}

.navigation-mobile__submenu .navigation-mobile__row > a {
	padding: 4px 0;
	color: var(--navigation-mobile-submenu) !important;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: none;
}

.navigation-mobile__submenu .navigation-mobile__submenu-wrap {
	padding-left: 16px;
}

.navigation-mobile__utility {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	flex: 0 0 auto;
	margin-top: 38px;
	padding-top: 24px;
}

.navigation-mobile__utility::before {
	width: 68px;
	height: 1px;
	margin-bottom: 0;
	background: var(--navigation-mobile-line);
	content: "";
}

.navigation-mobile__utility a {
	color: var(--navigation-mobile-accent) !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.3em;
	text-decoration: none !important;
	text-transform: uppercase;
}

.navigation-mobile__utility a:first-of-type {
	margin-top: 10px;
}

.navigation-mobile__footer {
	display: flex;
	align-items: flex-end;
	flex: 0 0 auto;
	margin-top: auto;
	padding: 36px 0 2px;
	border-top: 1px solid var(--navigation-mobile-line);
}

.navigation-mobile__footer a {
	color: var(--navigation-mobile-text) !important;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none !important;
}

.navigation-mobile__empty {
	margin: 0;
	color: var(--navigation-mobile-text);
}

.navigation-mobile button:focus-visible,
.navigation-mobile a:focus-visible {
	outline: 2px solid currentColor !important;
	outline-offset: 3px;
}

body.navigation-mobile-is-open {
	overflow: hidden !important;
}

@media (max-height: 650px) {
	.navigation-mobile__nav {
		padding-top: 24px;
	}

	.navigation-mobile__row {
		min-height: 42px;
	}

	.navigation-mobile__utility {
		margin-top: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.navigation-mobile__drawer,
	.navigation-mobile__menu-icon,
	.navigation-mobile__open > span[aria-hidden],
	.navigation-mobile__close > span[aria-hidden],
	.navigation-mobile__chevron {
		transition-duration: 1ms;
	}
}
