/* Session-scoped construction notice.  Native modal dialogs use the browser's top layer,
   above Axiron's preloader and gallery overlays, without changing the page underneath. */
html.jufo-maintenance-active,
html.jufo-maintenance-active body{
	overflow: hidden !important;
}
.jufo-maintenance-gate{
	position: fixed;
	inset: 0;
	display: none;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	margin: 0;
	padding: 24px;
	border: 0;
	background: transparent;
	color: inherit;
	overflow-y: auto;
	overscroll-behavior: contain;
}
.jufo-maintenance-gate[open]{
	display: grid;
	place-items: center;
}
.jufo-maintenance-gate::backdrop{
	background: rgba(20, 18, 16, .94);
}
html.jufo-maintenance-dismissed .jufo-maintenance-gate,
html.jufo-maintenance-dismissed .jufo-maintenance-gate[open]{
	display: none;
}
.jufo-maintenance-card{
	width: min(520px, 100%);
	padding: 48px;
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	background: var(--white-color);
	box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
	text-align: center;
}
.jufo-maintenance-logo{
	display: block;
	width: auto;
	height: 46px;
	margin: 0 auto 28px;
	object-fit: contain;
}
.jufo-maintenance-kicker{
	margin: 0 0 12px;
	color: var(--cta-color);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.jufo-maintenance-card h2{
	margin: 0 0 18px;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: clamp(36px, 5vw, 54px);
	font-weight: 600;
	line-height: 1.05;
}
.jufo-maintenance-card #jufo-maintenance-copy{
	max-width: 410px;
	margin: 0 auto 30px;
	color: var(--text-color);
	font-size: 17px;
	line-height: 1.65;
}
.jufo-maintenance-close{
	min-width: 150px;
	padding: 14px 28px;
	border: 0;
	border-radius: 10px;
	background: var(--cta-color);
	color: var(--white-color);
	font: inherit;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color .2s ease, transform .2s ease;
}
.jufo-maintenance-close:hover{
	background: var(--cta-hover-color);
	transform: translateY(-1px);
}
.jufo-maintenance-close:focus-visible{
	outline: 3px solid var(--accent-color);
	outline-offset: 4px;
}
@media only screen and (max-width: 575px){
	.jufo-maintenance-gate{
		padding: 16px;
	}
	.jufo-maintenance-card{
		padding: 36px 24px;
		border-radius: 18px;
	}
	.jufo-maintenance-logo{
		height: 38px;
		margin-bottom: 24px;
	}
	.jufo-maintenance-card #jufo-maintenance-copy{
		font-size: 16px;
	}
}
@media only screen and (max-height: 560px) and (min-width: 576px){
	.jufo-maintenance-gate{
		padding: 12px;
	}
	.jufo-maintenance-card{
		padding: 20px 32px;
		border-radius: 18px;
	}
	.jufo-maintenance-logo{
		height: 28px;
		margin-bottom: 10px;
	}
	.jufo-maintenance-kicker{
		margin-bottom: 6px;
		font-size: 11px;
	}
	.jufo-maintenance-card h2{
		margin-bottom: 10px;
		font-size: 32px;
	}
	.jufo-maintenance-card #jufo-maintenance-copy{
		max-width: 460px;
		margin-bottom: 14px;
		font-size: 14px;
		line-height: 1.4;
	}
	.jufo-maintenance-close{
		padding: 10px 24px;
	}
}
@media (prefers-reduced-motion: reduce){
	.jufo-maintenance-close{
		transition: none;
	}
}
