:root {
	--mw-shell-navy: #071c2b;
	--mw-shell-navy-deep: #00172a;
	--mw-shell-surface: #0d2a3d;
	--mw-shell-copper: #f3a67f;
	--mw-shell-copper-light: #ffd0b9;
	--mw-shell-white: #f8fbfd;
	--mw-shell-muted: #b8c8d3;
	--mw-shell-border: rgba(255, 255, 255, 0.16);
	--mw-shell-width: 1400px;
	--mw-shell-header-height: 76px;
	--mw-shell-z-header: 80;
	--mw-shell-z-overlay: 100;
}

html,
body {
	overflow-x: clip;
}

html.mw-scroll-locked,
html.mw-scroll-locked body {
	overflow: hidden;
}

.wp-block-shortcode:has(> .mw-site-header),
.wp-block-shortcode:has(> .mw-global-inquiry),
.wp-block-shortcode:has(> .mw-site-footer) {
	margin-block: 0;
}

/* Global brand. */
.mw-site-brand {
	display: inline-flex;
	min-width: max-content;
	color: var(--mw-shell-white);
	font-family: var(--mw-font-heading);
	font-size: 1.18rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	line-height: 1;
	text-decoration: none;
	align-items: center;
	gap: 12px;
}

.mw-site-brand__mark {
	display: grid;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(243, 166, 127, 0.7);
	border-radius: 50%;
	color: var(--mw-shell-copper);
	font-family: var(--mw-font-heading);
	font-size: 1rem;
	font-weight: 600;
	place-items: center;
}

.mw-site-brand--custom .custom-logo-link {
	display: flex;
	align-items: center;
}

.mw-site-brand--custom .custom-logo {
	display: block;
	width: auto;
	height: 42px;
	max-width: 250px;
	object-fit: contain;
}

/* Header states. */
.mw-site-header {
	top: 0;
	right: 0;
	left: 0;
	z-index: var(--mw-shell-z-header);
	width: 100%;
	height: var(--mw-shell-header-height);
	border-bottom: 1px solid transparent;
	color: var(--mw-shell-white);
	font-family: var(--mw-font-body);
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.mw-site-header.is-overlay {
	position: absolute;
	background: linear-gradient(180deg, rgba(0, 16, 29, 0.74) 0%, rgba(0, 16, 29, 0.2) 72%, rgba(0, 16, 29, 0) 100%);
}

.mw-site-header.is-solid,
.mw-site-header.is-scrolled {
	background: rgba(7, 28, 43, 0.97);
	border-bottom-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 10px 32px rgba(0, 13, 24, 0.18);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.mw-site-header.is-solid {
	position: sticky;
}

.mw-site-header.is-overlay.is-scrolled {
	position: fixed;
}

body.admin-bar .mw-site-header.is-solid,
body.admin-bar .mw-site-header.is-overlay.is-scrolled {
	top: 32px;
}

.mw-site-header__inner {
	display: grid;
	width: min(calc(100% - 48px), var(--mw-shell-width));
	height: 100%;
	margin-inline: auto;
	grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
	gap: 32px;
	align-items: center;
}

.mw-site-header__inner > .mw-site-brand,
.mw-site-header__inner > .mw-site-brand--custom {
	justify-self: start;
}

/* Defense in depth for cached output generated by the Core Shortcode block. */
.mw-site-header__inner > p,
.mw-mobile-drawer > p,
.mw-mobile-drawer nav > p {
	display: contents;
}

.mw-primary-nav {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2vw, 34px);
}

/* WordPress can wrap consecutive shortcode links in a paragraph. */
.mw-primary-nav > p {
	display: contents;
}

.mw-primary-nav br {
	display: none;
}

.mw-primary-nav > a,
.mw-primary-nav > p > a,
.mw-primary-nav__products > a {
	position: relative;
	display: inline-flex;
	height: 100%;
	color: #e9f0f5;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	align-items: center;
	white-space: nowrap;
}

.mw-primary-nav > a::after,
.mw-primary-nav > p > a::after,
.mw-primary-nav__products > a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--mw-shell-copper);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 160ms ease;
}

.mw-primary-nav > a:hover::after,
.mw-primary-nav > a:focus-visible::after,
.mw-primary-nav > a[aria-current="page"]::after,
.mw-primary-nav > p > a:hover::after,
.mw-primary-nav > p > a:focus-visible::after,
.mw-primary-nav > p > a[aria-current="page"]::after,
.mw-primary-nav__products:hover > a::after,
.mw-primary-nav__products:focus-within > a::after,
.mw-primary-nav__products.is-current > a::after {
	transform: scaleX(1);
}

.mw-primary-nav > a:hover,
.mw-primary-nav > a:focus-visible,
.mw-primary-nav > p > a:hover,
.mw-primary-nav > p > a:focus-visible,
.mw-primary-nav__products > a:hover,
.mw-primary-nav__products > a:focus-visible {
	color: #ffffff;
}

.mw-primary-nav__products {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
}

.mw-primary-nav__products-toggle {
	display: grid;
	width: 28px;
	height: 44px;
	margin: 0 -8px 0 -2px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--mw-shell-white);
	cursor: pointer;
	place-items: center;
}

.mw-primary-nav__products-toggle span {
	width: 8px;
	height: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 160ms ease;
}

.mw-primary-nav__products-toggle[aria-expanded="true"] span {
	transform: translateY(2px) rotate(225deg);
}

.mw-products-menu {
	position: absolute;
	top: calc(100% - 8px);
	left: -22px;
	width: 260px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	background: rgba(7, 28, 43, 0.985);
	box-shadow: 0 24px 48px rgba(0, 8, 16, 0.3);
}

.mw-products-menu[hidden] {
	display: none;
}

.mw-products-menu > p {
	margin: 0 0 10px;
	color: var(--mw-shell-copper);
	font-family: var(--mw-font-heading);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mw-products-menu__links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mw-products-menu__links a {
	display: flex;
	min-height: 42px;
	padding: 9px 10px;
	border-radius: 8px;
	color: #e5edf2;
	font-size: 0.875rem;
	text-decoration: none;
	align-items: center;
}

.mw-products-menu__links a:hover,
.mw-products-menu__links a:focus-visible {
	background: rgba(243, 166, 127, 0.12);
	color: var(--mw-shell-copper-light);
}

.mw-site-header__quote,
.mw-mobile-drawer__quote {
	display: inline-flex;
	min-height: 46px;
	padding: 12px 20px;
	border: 1px solid var(--mw-shell-copper);
	border-radius: 10px;
	background: var(--mw-shell-copper);
	color: var(--mw-shell-navy);
	font-family: var(--mw-font-heading);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mw-site-header__quote {
	justify-self: end;
}

.mw-site-header__quote:hover,
.mw-site-header__quote:focus-visible,
.mw-mobile-drawer__quote:hover,
.mw-mobile-drawer__quote:focus-visible {
	border-color: var(--mw-shell-copper-light);
	background: var(--mw-shell-copper-light);
	color: var(--mw-shell-navy);
	transform: translateY(-2px);
}

.mw-mobile-menu-toggle,
.mw-mobile-menu-backdrop,
.mw-mobile-drawer {
	display: none;
}

/* Footer. */
.mw-site-footer {
	position: relative;
	margin: 0;
	background: var(--mw-shell-navy-deep);
	color: var(--mw-shell-white);
	font-family: var(--mw-font-body);
}

.mw-site-footer__cta {
	background: var(--mw-shell-copper);
	color: var(--mw-shell-navy);
}

.mw-site-footer__cta-inner {
	display: grid;
	width: min(calc(100% - 48px), var(--mw-shell-width));
	min-height: 245px;
	margin-inline: auto;
	padding: 52px 0;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(44px, 8vw, 120px);
	align-items: center;
}

.mw-site-footer__eyebrow {
	margin: 0 0 10px;
	font-family: var(--mw-font-heading);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.mw-site-footer__cta h2 {
	max-width: 820px;
	margin: 0;
	color: var(--mw-shell-navy);
	font-family: var(--mw-font-heading);
	font-size: clamp(2rem, 3.4vw, 3.35rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.08;
	text-wrap: balance;
}

.mw-site-footer__cta p:last-child {
	max-width: 760px;
	margin: 16px 0 0;
	color: #2f4858;
	font-size: 0.95rem;
	line-height: 1.65;
}

.mw-site-footer__cta a {
	display: inline-flex;
	min-height: 50px;
	padding: 14px 24px;
	border: 1px solid var(--mw-shell-navy);
	border-radius: 10px;
	background: var(--mw-shell-navy);
	color: #ffffff;
	font-family: var(--mw-font-heading);
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.mw-site-footer__cta a:hover,
.mw-site-footer__cta a:focus-visible {
	background: #ffffff;
	color: var(--mw-shell-navy);
	transform: translateY(-2px);
}

.mw-site-footer__main {
	width: min(calc(100% - 48px), var(--mw-shell-width));
	margin-inline: auto;
	padding: 76px 0 28px;
}

.mw-site-footer__grid {
	display: grid;
	padding-bottom: 66px;
	grid-template-columns: minmax(300px, 1.55fr) repeat(3, minmax(150px, 0.75fr));
	gap: clamp(34px, 5vw, 76px);
}

.mw-site-footer__brand {
	max-width: 430px;
	padding-right: 24px;
}

.mw-site-footer__brand > p {
	margin: 24px 0 0;
	color: var(--mw-shell-muted);
	font-size: 0.9rem;
	line-height: 1.75;
}

.mw-site-footer__group h2 {
	margin: 0 0 22px;
}

.mw-site-footer__group h2 button {
	display: flex;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
	font-family: var(--mw-font-heading);
	font-size: 0.92rem;
	font-weight: 600;
	text-align: left;
	align-items: center;
	justify-content: space-between;
}

.mw-site-footer__group h2 button span {
	display: none;
}

.mw-site-footer__group ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mw-site-footer__group li + li {
	margin-top: 13px;
}

.mw-site-footer__group a {
	color: var(--mw-shell-muted);
	font-size: 0.86rem;
	line-height: 1.45;
	text-decoration: none;
	transition: color 150ms ease, transform 150ms ease;
}

.mw-site-footer__group a:hover,
.mw-site-footer__group a:focus-visible {
	color: var(--mw-shell-copper-light);
}

.mw-site-footer__bottom {
	display: flex;
	min-height: 68px;
	padding-top: 24px;
	border-top: 1px solid var(--mw-shell-border);
	color: #93a7b5;
	font-size: 0.76rem;
	line-height: 1.5;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
}

.mw-site-footer__bottom p {
	margin: 0;
}

/* Global inquiry dialog. */
.mw-global-inquiry {
	position: fixed;
	inset: 0;
	z-index: var(--mw-shell-z-overlay);
	display: grid;
	padding: 32px;
	place-items: center;
}

.mw-global-inquiry[hidden] {
	display: none;
}

.mw-global-inquiry__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 15, 27, 0.76);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.mw-global-inquiry__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 880px);
	max-height: calc(100vh - 64px);
	padding: clamp(28px, 4vw, 48px);
	overflow: auto;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 20px;
	background: var(--mw-shell-navy);
	box-shadow: 0 34px 90px rgba(0, 7, 15, 0.5);
	color: #ffffff;
}

.mw-global-inquiry__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	background: transparent;
	color: #ffffff;
	font-size: 1.6rem;
	cursor: pointer;
	place-items: center;
}

.mw-global-inquiry__heading {
	padding-right: 54px;
}

.mw-global-inquiry__heading > p:first-child {
	margin: 0 0 10px;
	color: var(--mw-shell-copper);
	font-family: var(--mw-font-heading);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.mw-global-inquiry__heading h2 {
	margin: 0;
	color: #ffffff;
	font-family: var(--mw-font-heading);
	font-size: clamp(1.8rem, 3.2vw, 2.7rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.mw-global-inquiry__heading > p:last-child {
	margin: 12px 0 0;
	color: var(--mw-shell-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.mw-global-inquiry__form {
	margin-top: 28px;
}

.mw-global-inquiry__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.mw-global-inquiry__form label {
	display: grid;
	margin: 0;
	color: #e8eff4;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.4;
	gap: 7px;
}

.mw-global-inquiry__form label > span[aria-hidden="true"] {
	display: inline;
	color: var(--mw-shell-copper);
}

.mw-global-inquiry__form input:not([type="checkbox"]),
.mw-global-inquiry__form select,
.mw-global-inquiry__form textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.07);
	box-shadow: none;
	color: #ffffff;
	font: 400 0.88rem/1.45 var(--mw-font-body);
}

.mw-global-inquiry__form select option {
	background: var(--mw-shell-navy);
	color: #ffffff;
}

.mw-global-inquiry__form textarea {
	min-height: 120px;
	resize: vertical;
}

.mw-global-inquiry__requirements {
	grid-column: 1 / -1;
}

.mw-global-inquiry__consent {
	display: flex !important;
	margin-top: 18px !important;
	color: var(--mw-shell-muted) !important;
	font-weight: 400 !important;
	align-items: flex-start;
	gap: 10px !important;
}

.mw-global-inquiry__consent input {
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	accent-color: var(--mw-shell-copper);
	flex: 0 0 auto;
}

.mw-global-inquiry__submit {
	min-height: 50px;
	margin-top: 20px;
	padding: 13px 24px;
	border: 1px solid var(--mw-shell-copper);
	border-radius: 10px;
	background: var(--mw-shell-copper);
	color: var(--mw-shell-navy);
	font-family: var(--mw-font-heading);
	font-size: 0.86rem;
	font-weight: 700;
	cursor: pointer;
}

.mw-global-inquiry__submit:hover,
.mw-global-inquiry__submit:focus-visible {
	border-color: var(--mw-shell-copper-light);
	background: var(--mw-shell-copper-light);
}

.mw-global-inquiry .mw-inquiry-form__status {
	min-height: 22px;
	margin: 12px 0 0;
	color: #dbe6ed;
	font-size: 0.82rem;
}

.mw-global-inquiry .mw-inquiry-form__status.is-error {
	color: #ffb7ad;
}

.mw-global-inquiry .mw-inquiry-form__status.is-success {
	color: #9fe3bc;
}

.mw-form-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.mw-site-header :focus-visible,
.mw-site-footer :focus-visible,
.mw-global-inquiry :focus-visible {
	outline: 3px solid var(--mw-shell-copper-light);
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.mw-site-header__inner {
		grid-template-columns: minmax(200px, 1fr) auto minmax(185px, 1fr);
		gap: 20px;
	}

	.mw-primary-nav {
		gap: 18px;
	}

	.mw-primary-nav > a,
	.mw-primary-nav > p > a,
	.mw-primary-nav__products > a {
		font-size: 0.8rem;
	}

	.mw-site-header__quote {
		padding-inline: 15px;
	}

	.mw-site-footer__grid {
		grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(130px, 0.7fr));
		gap: 34px;
	}
}

@media (max-width: 960px) {
	.mw-primary-nav,
	.mw-site-header__quote {
		display: none;
	}

	.mw-site-header__inner {
		display: flex;
		justify-content: space-between;
	}

	.mw-mobile-menu-toggle {
		display: grid;
		width: 46px;
		height: 46px;
		padding: 11px;
		border: 1px solid rgba(255, 255, 255, 0.28);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.06);
		cursor: pointer;
		place-content: center;
		gap: 5px;
	}

	.mw-mobile-menu-toggle span {
		display: block;
		width: 21px;
		height: 2px;
		border-radius: 2px;
		background: #ffffff;
	}

	.mw-mobile-menu-backdrop {
		position: fixed;
		inset: 0;
		z-index: 1;
		background: rgba(0, 12, 22, 0.7);
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
	}

	.mw-mobile-menu-backdrop.is-open {
		display: block;
	}

	.mw-mobile-drawer {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 2;
		display: flex;
		width: min(88vw, 390px);
		height: 100dvh;
		padding: 24px max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) 24px;
		background: var(--mw-shell-navy);
		box-shadow: -24px 0 56px rgba(0, 8, 16, 0.34);
		transform: translateX(102%);
		visibility: hidden;
		flex-direction: column;
		transition: transform 220ms ease, visibility 220ms ease;
	}

	.mw-mobile-drawer.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.mw-mobile-drawer__head {
		display: flex;
		min-height: 52px;
		padding-bottom: 18px;
		border-bottom: 1px solid var(--mw-shell-border);
		font-family: var(--mw-font-heading);
		font-weight: 600;
		align-items: center;
		justify-content: space-between;
	}

	.mw-mobile-drawer__head button {
		display: grid;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 50%;
		background: transparent;
		color: #ffffff;
		font-size: 1.5rem;
		place-items: center;
	}

	.mw-mobile-drawer nav {
		display: flex;
		padding: 20px 0;
		overflow-y: auto;
		flex: 1;
		flex-direction: column;
	}

	.mw-mobile-drawer nav > a,
	.mw-mobile-drawer nav > p > a,
	.mw-mobile-drawer__group > button {
		display: flex;
		width: 100%;
		min-height: 54px;
		padding: 13px 0;
		border: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		background: transparent;
		color: #ffffff;
		font-family: var(--mw-font-heading);
		font-size: 1rem;
		font-weight: 500;
		text-align: left;
		text-decoration: none;
		align-items: center;
		justify-content: space-between;
	}

	.mw-mobile-drawer__group > button span {
		color: var(--mw-shell-copper);
		font-size: 1.3rem;
		transition: transform 160ms ease;
	}

	.mw-mobile-drawer__group > button[aria-expanded="true"] span {
		transform: rotate(45deg);
	}

	.mw-mobile-drawer__product-links {
		margin: 0;
		padding: 8px 0 10px 18px;
		list-style: none;
	}

	.mw-mobile-drawer__product-links a {
		display: flex;
		min-height: 46px;
		color: var(--mw-shell-muted);
		font-size: 0.88rem;
		text-decoration: none;
		align-items: center;
	}

	.mw-mobile-drawer__quote {
		width: 100%;
		margin-top: auto;
	}

	.mw-site-footer__grid {
		grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(120px, 0.7fr));
		gap: 28px;
	}
}

@media (max-width: 767px) {
	:root {
		--mw-shell-header-height: 68px;
	}

	body.admin-bar .mw-site-header.is-solid,
	body.admin-bar .mw-site-header.is-overlay.is-scrolled {
		top: 46px;
	}

	.mw-site-header__inner,
	.mw-site-footer__cta-inner,
	.mw-site-footer__main {
		width: min(calc(100% - 32px), var(--mw-shell-width));
	}

	.mw-site-brand {
		font-size: 1rem;
		gap: 9px;
	}

	.mw-site-brand__mark {
		width: 34px;
		height: 34px;
		font-size: 0.9rem;
	}

	.mw-site-brand--custom .custom-logo {
		height: 36px;
		max-width: 205px;
	}

	.mw-site-footer__cta-inner {
		min-height: 0;
		padding: 54px 0;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.mw-site-footer__cta h2 {
		font-size: clamp(2rem, 9.5vw, 2.7rem);
	}

	.mw-site-footer__cta a {
		width: 100%;
	}

	.mw-site-footer__main {
		padding: 54px 0 22px;
	}

	.mw-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 0;
		padding-bottom: 34px;
	}

	.mw-site-footer__brand {
		max-width: none;
		padding: 0 0 34px;
	}

	.mw-site-footer__group {
		border-top: 1px solid var(--mw-shell-border);
	}

	.mw-site-footer__group:last-child {
		border-bottom: 1px solid var(--mw-shell-border);
	}

	.mw-site-footer__group h2 {
		margin: 0;
	}

	.mw-site-footer__group h2 button {
		min-height: 58px;
		cursor: pointer;
	}

	.mw-site-footer__group h2 button span {
		display: block;
		color: var(--mw-shell-copper);
		font-size: 1.25rem;
		transition: transform 160ms ease;
	}

	.mw-site-footer__group h2 button[aria-expanded="true"] span {
		transform: rotate(45deg);
	}

	.mw-theme-ready .mw-site-footer__group ul[hidden] {
		display: none;
	}

	.mw-site-footer__group ul {
		padding: 2px 0 22px;
	}

	.mw-site-footer__group a {
		display: flex;
		min-height: 44px;
		align-items: center;
	}

	.mw-site-footer__group li + li {
		margin-top: 0;
	}

	.mw-site-footer__bottom {
		min-height: 0;
		padding-top: 22px;
		flex-direction: column;
		gap: 8px;
	}

	.mw-global-inquiry {
		padding: 12px;
	}

	.mw-global-inquiry__dialog {
		width: 100%;
		max-height: calc(100dvh - 24px);
		padding: 28px 20px max(24px, env(safe-area-inset-bottom));
		border-radius: 16px;
	}

	.mw-global-inquiry__close {
		top: 12px;
		right: 12px;
	}

	.mw-global-inquiry__fields {
		grid-template-columns: 1fr;
	}

	.mw-global-inquiry__requirements {
		grid-column: auto;
	}

	.mw-global-inquiry__submit {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mw-site-header,
	.mw-primary-nav > a::after,
	.mw-primary-nav > p > a::after,
	.mw-primary-nav__products > a::after,
	.mw-primary-nav__products-toggle span,
	.mw-site-header__quote,
	.mw-mobile-drawer,
	.mw-mobile-drawer__group > button span,
	.mw-site-footer__cta a,
	.mw-site-footer__group h2 button span {
		transition: none;
	}
}
