/**
 * Nuvo — site header, mega menu, mobile panel and floating actions.
 */

/*--------------------------------------------------------------
1.0 Header shell
--------------------------------------------------------------*/
.nuvo-nav {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
	z-index: 200;
}

.nuvo-nav.is-transparent {
	background: transparent;
	border-bottom: 1px solid transparent;
}

.nuvo-nav.is-solid,
.nuvo-nav.is-menu-open {
	backdrop-filter: blur(12px);
	background-color: rgba(254, 252, 248, 0.97);
	border-bottom: 1px solid var(--nuvo-cream-300);
	box-shadow: 0 1px 14px rgba(26, 10, 5, 0.06);
}

.nuvo-nav.is-transparent.is-menu-open {
	backdrop-filter: none;
	background: transparent;
	border-bottom: 1px solid transparent;
	box-shadow: none;
}

.nuvo-nav__inner {
	align-items: center;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr auto 1fr;
	height: var(--nuvo-header-height);
}

/*--------------------------------------------------------------
2.0 Branding
--------------------------------------------------------------*/
.nuvo-nav__branding {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	grid-column: 2;
	justify-self: center;
	text-decoration: none;
}

.nuvo-nav__branding .custom-logo-link {
	display: block;
	line-height: 0;
}

.nuvo-nav__branding img {
	display: block;
	max-height: 46px;
	transition: filter 0.3s ease;
	width: auto;
}

.nuvo-nav.is-solid .nuvo-nav__branding img,
.nuvo-nav.is-menu-open .nuvo-nav__branding img {
	filter: none;
}

.nuvo-nav__title {
	color: var(--nuvo-espresso-950);
	font-family: var(--nuvo-font-display);
	font-size: 1.375rem;
	font-weight: 400;
	letter-spacing: 0.14em;
	margin: 0;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.nuvo-nav__title a {
	color: inherit;
	text-decoration: none;
}

.nuvo-nav__tagline {
	display: none;
}

.nuvo-nav.is-transparent .nuvo-nav__title {
	color: var(--nuvo-white);
}

/*--------------------------------------------------------------
3.0 Primary menus
--------------------------------------------------------------*/
.nuvo-nav__group {
	align-items: center;
	display: flex;
	gap: 1.6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nuvo-nav__group--left {
	grid-column: 1;
	justify-self: start;
}

.nuvo-nav__group--right {
	justify-self: end;
}

.nuvo-nav__item {
	position: static;
}

.nuvo-nav__item--mini,
.nuvo-nav__item--flyout {
	position: relative;
}

.nuvo-nav__link {
	align-items: center;
	background: none;
	border: 0;
	color: var(--nuvo-espresso-900);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--nuvo-font-body);
	font-size: 0.8125rem;
	font-weight: 500;
	gap: 5px;
	letter-spacing: 0.02em;
	line-height: 1.4;
	opacity: 0.74;
	padding: 6px 0;
	text-decoration: none;
	transition: opacity 0.15s ease, color 0.3s ease;
	white-space: nowrap;
}

.nuvo-nav__link:hover,
.nuvo-nav__link:focus,
.nuvo-nav__item.is-open .nuvo-nav__link {
	color: var(--nuvo-sand-700);
	opacity: 1;
}

.nuvo-nav__item.current-menu-item > .nuvo-nav__link,
.nuvo-nav__item.current-menu-ancestor > .nuvo-nav__link {
	color: var(--nuvo-sand-700);
	opacity: 1;
}

.nuvo-nav__caret {
	display: inline-block;
	font-size: 9px;
	opacity: 0.6;
	transition: transform 0.25s var(--nuvo-ease-out);
}

.nuvo-nav__item.is-open .nuvo-nav__caret {
	transform: rotate(180deg);
}

.nuvo-nav.is-transparent .nuvo-nav__link {
	color: rgba(255, 255, 255, 0.86);
}

.nuvo-nav.is-transparent .nuvo-nav__item.current-menu-item > .nuvo-nav__link,
.nuvo-nav.is-transparent .nuvo-nav__item.current-menu-ancestor > .nuvo-nav__link {
	color: var(--nuvo-sand-400);
}

/*--------------------------------------------------------------
4.0 CTA & toggle
--------------------------------------------------------------*/
.nuvo-nav__extra {
	align-items: center;
	display: flex;
	gap: 1.1rem;
	grid-column: 3;
	justify-self: end;
}

.nuvo-nav__cta {
	align-items: center;
	background-color: var(--nuvo-espresso-900);
	border: 1.5px solid var(--nuvo-espresso-900);
	border-radius: 9999px;
	color: var(--nuvo-white);
	display: inline-flex;
	flex-shrink: 0;
	font-family: var(--nuvo-font-body);
	font-size: 0.8125rem;
	font-weight: 500;
	gap: 6px;
	letter-spacing: 0.02em;
	padding: 10px 22px;
	text-decoration: none;
	transition: opacity 0.15s ease;
	white-space: nowrap;
}

.nuvo-nav__cta:hover,
.nuvo-nav__cta:focus {
	color: var(--nuvo-white);
	opacity: 0.85;
}

.nuvo-nav.is-transparent .nuvo-nav__cta {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.45);
}

.nuvo-nav__toggle {
	align-items: center;
	background: none;
	border: 0;
	color: var(--nuvo-espresso-900);
	cursor: pointer;
	display: none;
	height: 40px;
	justify-content: center;
	padding: 0;
	width: 40px;
}

.nuvo-nav__toggle:hover {
	opacity: 1;
}

.nuvo-nav__toggle svg {
	height: 24px;
	width: 24px;
}

.nuvo-nav.is-transparent .nuvo-nav__toggle {
	color: var(--nuvo-white);
}

/*--------------------------------------------------------------
5.0 Mega panel shell
--------------------------------------------------------------*/
.nuvo-mega__wrap {
	display: flex;
	justify-content: center;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 100%;
}

.nuvo-mega {
	background-color: var(--nuvo-cream-50);
	border: 1px solid var(--nuvo-cream-300);
	border-radius: 0 0 16px 16px;
	border-top: 0;
	box-shadow: 0 24px 48px -16px rgba(26, 10, 5, 0.22);
	opacity: 0;
	pointer-events: none;
	position: relative;
	transform: translateY(-6px);
	transition: transform 0.2s var(--nuvo-ease-out), opacity 0.2s ease;
	visibility: hidden;
	width: min(1180px, calc(100vw - 3rem));
}

.nuvo-nav__item.is-open .nuvo-mega {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

/*--------------------------------------------------------------
6.0 Two-pane flyout
--------------------------------------------------------------*/
.nuvo-nav__item--flyout .nuvo-mega__wrap {
	display: block;
	left: 0;
	right: auto;
}

.nuvo-mega--flyout {
	max-width: calc(100vw - 3rem);
	overflow: hidden;
	width: 640px;
}

.nuvo-mega__inner {
	min-height: 360px;
	padding: 0.6rem 0;
	position: relative;
}

.nuvo-mega__inner::before {
	background-color: var(--nuvo-cream-100);
	border-right: 1px solid var(--nuvo-cream-300);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	top: 0;
	width: 248px;
}

.nuvo-mega__rail-item {
	align-items: center;
	background: none;
	border: 0;
	border-radius: 10px;
	color: var(--nuvo-espresso-900);
	cursor: pointer;
	display: flex;
	font-family: var(--nuvo-font-body);
	font-size: 0.875rem;
	font-weight: 500;
	gap: 10px;
	justify-content: space-between;
	letter-spacing: 0.01em;
	margin: 2px 0.6rem;
	padding: 11px 14px;
	position: relative;
	text-align: left;
	transition: background 0.14s ease, color 0.14s ease;
	width: calc(248px - 1.2rem);
}

.nuvo-mega__rail-arrow {
	font-size: 15px;
	opacity: 0.35;
	transition: opacity 0.14s ease, transform 0.14s ease;
}

.nuvo-mega__rail-item:hover {
	background-color: var(--nuvo-cream-200);
	color: var(--nuvo-espresso-900);
	opacity: 1;
}

.nuvo-mega__rail-item:hover .nuvo-mega__rail-arrow {
	opacity: 0.6;
	transform: translateX(2px);
}

.nuvo-mega__rail-item.is-active {
	background-color: var(--nuvo-espresso-900);
	color: var(--nuvo-white);
}

.nuvo-mega__rail-item.is-active .nuvo-mega__rail-arrow {
	opacity: 0.85;
}

.nuvo-mega__panel {
	bottom: 0;
	display: none;
	left: 248px;
	overflow-y: auto;
	padding: 0.55rem 1.4rem 0.8rem;
	position: absolute;
	right: 0;
	top: 0;
}

.nuvo-mega__panel.is-active {
	animation: nuvo-panel-in 0.18s var(--nuvo-ease-out);
	display: block;
}

@keyframes nuvo-panel-in {

	from {
		opacity: 0;
		transform: translateX(5px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.nuvo-mega__panel-head {
	align-items: center;
	border-bottom: 1px solid var(--nuvo-cream-300);
	color: var(--nuvo-sand-700);
	display: inline-flex;
	font-family: var(--nuvo-font-body);
	font-size: 0.68rem;
	font-weight: 700;
	gap: 6px;
	letter-spacing: 0.12em;
	margin-bottom: 0.75rem;
	padding-bottom: 0.65rem;
	text-decoration: none;
	text-transform: uppercase;
}

.nuvo-mega__panel-list {
	display: flex;
	flex-direction: column;
}

/*--------------------------------------------------------------
7.0 Mega links
--------------------------------------------------------------*/
.nuvo-mega__link {
	border-radius: 8px;
	color: var(--nuvo-espresso-800);
	display: block;
	font-family: var(--nuvo-font-body);
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.35;
	margin: 0;
	padding: 7px 10px;
	text-decoration: none;
	transition: background 0.14s ease, color 0.14s ease;
}

.nuvo-mega__link:hover,
.nuvo-mega__link:focus {
	background-color: var(--nuvo-cream-200);
	color: var(--nuvo-espresso-950);
}

.nuvo-mega__link--sub {
	color: var(--nuvo-sand-700);
	font-size: 0.75rem;
	padding-left: 22px;
}

/*--------------------------------------------------------------
8.0 Third level (collapsible)
--------------------------------------------------------------*/
.nuvo-mega__sub {
	margin-top: 0.6rem;
}

.nuvo-mega__sub-head {
	align-items: center;
	background: none;
	border: 0;
	border-radius: 8px;
	color: var(--nuvo-espresso-800);
	cursor: pointer;
	display: flex;
	font-family: var(--nuvo-font-body);
	font-size: 0.8125rem;
	font-weight: 600;
	gap: 8px;
	justify-content: space-between;
	line-height: 1.35;
	padding: 7px 10px;
	text-align: left;
	transition: background 0.14s ease, color 0.14s ease;
	width: 100%;
}

.nuvo-mega__sub-head:hover {
	background-color: var(--nuvo-cream-200);
	color: var(--nuvo-espresso-950);
	opacity: 1;
}

.nuvo-mega__sub-caret {
	flex-shrink: 0;
	font-size: 8px;
	opacity: 0.55;
	transition: transform 0.25s var(--nuvo-ease-out);
}

.nuvo-mega__sub.is-open .nuvo-mega__sub-head {
	color: var(--nuvo-sand-700);
}

.nuvo-mega__sub.is-open .nuvo-mega__sub-caret {
	transform: rotate(180deg);
}

.nuvo-mega__sub-items {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s var(--nuvo-ease-out);
}

.nuvo-mega__sub.is-open .nuvo-mega__sub-items {
	max-height: 400px;
}

/*--------------------------------------------------------------
9.0 Flyout footer
--------------------------------------------------------------*/
.nuvo-mega__foot {
	align-items: center;
	background-color: var(--nuvo-cream-100);
	border-top: 1px solid var(--nuvo-cream-300);
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	justify-content: space-between;
	padding: 0.95rem 1.4rem;
}

.nuvo-mega__foot-text {
	color: var(--nuvo-espresso-900);
	font-family: var(--nuvo-font-display);
	font-size: 1.15rem;
	font-style: italic;
	margin: 0;
}

.nuvo-mega__foot-cta {
	align-items: center;
	background-color: var(--nuvo-espresso-900);
	border: 1.5px solid var(--nuvo-espresso-900);
	border-radius: 9999px;
	color: var(--nuvo-white);
	display: inline-flex;
	flex-shrink: 0;
	font-family: var(--nuvo-font-body);
	font-size: 0.8125rem;
	font-weight: 500;
	gap: 6px;
	padding: 9px 20px;
	text-decoration: none;
	transition: opacity 0.15s ease;
}

.nuvo-mega__foot-cta:hover,
.nuvo-mega__foot-cta:focus {
	color: var(--nuvo-white);
	opacity: 0.85;
}

/*--------------------------------------------------------------
10.0 Mini dropdown
--------------------------------------------------------------*/
.nuvo-nav__item--mini .nuvo-mega__wrap {
	display: block;
	left: 0;
	right: auto;
}

.nuvo-mega--mini {
	border-radius: 0 0 14px 14px;
	padding: 0.65rem;
	width: 250px;
}

.nuvo-mega--mini .nuvo-mega__link {
	font-size: 0.85rem;
	padding: 9px 12px;
}

/*--------------------------------------------------------------
11.0 Highlighted (blush) panel
--------------------------------------------------------------*/
.nuvo-mega--blush {
	background: linear-gradient(180deg, var(--nuvo-blush-50), var(--nuvo-white) 78%);
	border-color: var(--nuvo-blush-200);
}

.nuvo-mega--blush .nuvo-mega__inner::before {
	background-color: var(--nuvo-blush-50);
	border-right-color: var(--nuvo-blush-200);
}

.nuvo-mega--blush .nuvo-mega__panel-head {
	border-bottom-color: var(--nuvo-blush-200);
	color: var(--nuvo-blush-700);
}

.nuvo-mega--blush .nuvo-mega__link:hover,
.nuvo-mega--blush .nuvo-mega__link:focus {
	background-color: var(--nuvo-blush-100);
	color: var(--nuvo-blush-700);
}

.nuvo-mega--blush .nuvo-mega__rail-item:hover {
	background-color: var(--nuvo-blush-100);
}

.nuvo-mega--blush .nuvo-mega__rail-item.is-active {
	background-color: var(--nuvo-blush-700);
}

.nuvo-mega--blush .nuvo-mega__foot {
	background-color: var(--nuvo-blush-50);
	border-top-color: var(--nuvo-blush-200);
}

.nuvo-mega--blush .nuvo-mega__foot-text {
	color: var(--nuvo-blush-700);
}

.nuvo-mega--blush .nuvo-mega__foot-cta {
	background-color: var(--nuvo-blush-700);
	border-color: var(--nuvo-blush-700);
}

/*--------------------------------------------------------------
12.0 Mobile panel
--------------------------------------------------------------*/
.nuvo-nav-mobile {
	background-color: var(--nuvo-cream-50);
	display: none;
	flex-direction: column;
	inset: 0;
	position: fixed;
	transform: translateX(100%);
	transition: transform 0.32s var(--nuvo-ease-out);
	z-index: 300;
}

.nuvo-nav-mobile.is-open {
	display: flex;
	transform: translateX(0);
}

.nuvo-nav-mobile__head {
	align-items: center;
	border-bottom: 1px solid var(--nuvo-cream-300);
	display: flex;
	flex-shrink: 0;
	height: var(--nuvo-header-height);
	justify-content: space-between;
	padding: 0 1.25rem;
}

.nuvo-nav-mobile__head img {
	display: block;
	max-height: 40px;
	width: auto;
}

.nuvo-nav-mobile__title {
	color: var(--nuvo-espresso-950);
	font-family: var(--nuvo-font-display);
	font-size: 1.25rem;
	letter-spacing: 0.14em;
	margin: 0;
}

.nuvo-nav-mobile__close {
	align-items: center;
	background: none;
	border: 0;
	color: var(--nuvo-espresso-900);
	cursor: pointer;
	display: flex;
	height: 40px;
	justify-content: center;
	padding: 0;
	width: 40px;
}

.nuvo-nav-mobile__close svg {
	height: 24px;
	width: 24px;
}

.nuvo-nav-mobile__scroll {
	flex: 1;
	overflow-y: auto;
	padding: 0.5rem 1.25rem 2rem;
	-webkit-overflow-scrolling: touch;
}

.nuvo-nav-mobile__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nuvo-nav-mobile__item {
	border-bottom: 1px solid var(--nuvo-cream-200);
}

.nuvo-nav-mobile__link {
	color: var(--nuvo-espresso-950);
	display: block;
	font-family: var(--nuvo-font-body);
	font-size: 1.0625rem;
	font-weight: 500;
	padding: 1.05rem 0.25rem;
	text-decoration: none;
}

.nuvo-acc__head {
	align-items: center;
	background: none;
	border: 0;
	color: var(--nuvo-espresso-950);
	cursor: pointer;
	display: flex;
	font-family: var(--nuvo-font-body);
	font-size: 1.0625rem;
	font-weight: 500;
	justify-content: space-between;
	padding: 1.05rem 0.25rem;
	text-align: left;
	width: 100%;
}

.nuvo-acc__head:hover {
	opacity: 1;
}

.nuvo-acc__sign {
	color: var(--nuvo-sand-700);
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.25s var(--nuvo-ease-out);
}

.nuvo-nav-mobile__item.is-open .nuvo-acc__sign {
	transform: rotate(45deg);
}

.nuvo-acc__body {
	display: none;
	padding: 0 0.25rem 1rem;
}

.nuvo-nav-mobile__item.is-open .nuvo-acc__body {
	display: block;
}

.nuvo-acc__body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nuvo-acc__group {
	margin-bottom: 1rem;
}

.nuvo-acc__group-head {
	color: var(--nuvo-sand-700);
	display: block;
	font-family: var(--nuvo-font-body);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0.5rem 0;
	text-decoration: none;
	text-transform: uppercase;
}

.nuvo-acc__link {
	border-left: 2px solid var(--nuvo-cream-300);
	color: var(--nuvo-espresso-800);
	display: block;
	font-family: var(--nuvo-font-body);
	font-size: 0.9375rem;
	padding: 0.5rem 0.25rem 0.5rem 1rem;
	text-decoration: none;
}

.nuvo-nav-mobile__foot {
	background-color: var(--nuvo-cream-50);
	border-top: 1px solid var(--nuvo-cream-300);
	flex-shrink: 0;
	padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
}

.nuvo-nav-mobile__cta {
	align-items: center;
	background-color: var(--nuvo-espresso-900);
	border-radius: 9999px;
	color: var(--nuvo-white);
	display: flex;
	font-family: var(--nuvo-font-body);
	font-size: 1rem;
	font-weight: 500;
	gap: 6px;
	justify-content: center;
	padding: 15px 24px;
	text-decoration: none;
	width: 100%;
}

.nuvo-nav-mobile__cta:hover,
.nuvo-nav-mobile__cta:focus {
	color: var(--nuvo-white);
}

/*--------------------------------------------------------------
13.0 Responsive switch
--------------------------------------------------------------*/
@media (max-width: 1080px) {

	.nuvo-nav__group,
	.nuvo-nav__cta {
		display: none;
	}

	.nuvo-nav__toggle {
		display: flex;
	}
}

@media (min-width: 1081px) {

	.nuvo-nav-mobile {
		display: none !important;
	}
}

/*--------------------------------------------------------------
14.0 Floating actions
--------------------------------------------------------------*/
.nuvo-floaters {
	align-items: center;
	bottom: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: fixed;
	right: 22px;
	z-index: 90;
}

.nuvo-floaters__button {
	align-items: center;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 6px 20px rgba(26, 10, 5, 0.28);
	cursor: pointer;
	display: flex;
	height: 52px;
	justify-content: center;
	padding: 0;
	transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.25s ease;
	width: 52px;
}

.nuvo-floaters__button--chat {
	background-color: #128c4b;
	color: var(--nuvo-white);
	text-decoration: none;
}

.nuvo-floaters__button--chat svg {
	fill: currentColor;
	height: 28px;
	width: 28px;
}

.nuvo-floaters__button--top {
	background-color: var(--nuvo-espresso-900);
	color: var(--nuvo-white);
	opacity: 0;
	transform: translateY(8px) scale(0.9);
	visibility: hidden;
}

.nuvo-floaters__button--top svg {
	height: 22px;
	width: 22px;
}

.nuvo-floaters.is-scrolled .nuvo-floaters__button--top {
	opacity: 1;
	transform: translateY(0) scale(1);
	visibility: visible;
}

@media (max-width: 560px) {

	.nuvo-floaters {
		bottom: 16px;
		right: 16px;
	}

	.nuvo-floaters__button {
		height: 48px;
		width: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.nuvo-mega,
	.nuvo-nav-mobile,
	.nuvo-acc__sign,
	.nuvo-nav__caret,
	.nuvo-mega__sub-items,
	.nuvo-mega__sub-caret {
		transition: none !important;
	}

	.nuvo-mega__panel.is-active {
		animation: none;
	}
}

/*--------------------------------------------------------------
15.0 Menu wrappers
--------------------------------------------------------------*/
.nuvo-nav__primary {
	grid-column: 1;
	justify-self: start;
	min-width: 0;
}

.nuvo-nav__secondary {
	min-width: 0;
}

@media (max-width: 1080px) {

	.nuvo-nav__primary,
	.nuvo-nav__secondary {
		display: none;
	}
}
