:root {
	--nch-blue: #003da5;
	--nch-blue-dark: #002661;
	--nch-red: #dc1c2e;
	--nch-ink: #121722;
	--nch-muted: #687080;
	--nch-line: #e6e9ee;
	--nch-surface: #f4f6f8;
	--nch-white: #ffffff;
	--nch-green: #16845b;
	--nch-radius: 28px;
	--nch-shadow: 0 24px 70px rgba(18, 23, 34, 0.11);
}

body.nch-project-page {
	overflow-x: hidden;
}

body.nch-project-page > .oxy-header-wrapper,
body.nch-project-page > .ct-section {
	display: none !important;
}

body.nch-project-page > .ct-inner-content,
body.nch-project-page > .ct-inner-content > .ct-section,
body.nch-project-page > .ct-inner-content > .ct-section > .ct-section-inner-wrap {
	margin: 0 !important;
	max-width: none !important;
	padding: 0 !important;
	width: 100% !important;
}

.nch-shell {
	background: var(--nch-white);
	color: var(--nch-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	margin-left: calc(50% - 50vw);
	max-width: none;
	position: relative;
	width: 100vw;
	-webkit-font-smoothing: antialiased;
}

.nch-shell *,
.nch-shell *::before,
.nch-shell *::after {
	box-sizing: border-box;
}

.nch-main {
	display: block;
	width: 100%;
}

.nch-skip-link {
	background: var(--nch-ink);
	border-radius: 0 0 12px 12px;
	color: var(--nch-white) !important;
	font-size: 14px;
	font-weight: 750;
	left: 24px;
	padding: 10px 16px;
	position: fixed;
	top: -80px;
	z-index: 10002;
}

.nch-skip-link:focus {
	top: 0;
}

.nch-header {
	background: rgba(255, 255, 255, 0.86);
	border-bottom: 1px solid rgba(18, 23, 34, 0.08);
	position: sticky;
	top: 0;
	z-index: 999;
	-webkit-backdrop-filter: blur(24px) saturate(160%);
	backdrop-filter: blur(24px) saturate(160%);
}

body.admin-bar .nch-header {
	top: 32px;
}

.nch-header__inner {
	align-items: center;
	display: flex;
	gap: 26px;
	height: 82px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1360px;
	padding: 0 32px;
	width: 100%;
}

.nch-brand {
	align-items: center;
	color: var(--nch-ink) !important;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 13px;
	text-decoration: none !important;
}

.nch-brand__logo {
	display: block;
	height: auto;
	max-width: none;
	width: 186px;
}

.nch-brand__logo--footer {
	width: 186px;
}

.nch-brand__mark {
	background: var(--nch-blue);
	border-radius: 13px;
	display: block;
	height: 42px;
	overflow: hidden;
	position: relative;
	width: 42px;
}

.nch-brand__mark::before,
.nch-brand__mark::after,
.nch-brand__mark span {
	background: var(--nch-white);
	content: "";
	position: absolute;
	transform: rotate(-35deg);
}

.nch-brand__mark::before {
	height: 8px;
	left: 7px;
	top: 16px;
	width: 29px;
}

.nch-brand__mark::after {
	height: 24px;
	left: 10px;
	top: 9px;
	width: 7px;
}

.nch-brand__mark span {
	bottom: -4px;
	height: 17px;
	right: -4px;
	transform: none;
	width: 17px;
}

.nch-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.nch-brand__text strong {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.035em;
}

.nch-brand__text small {
	color: var(--nch-blue);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.17em;
	margin-top: 7px;
	text-transform: uppercase;
}

.nch-nav {
	align-items: center;
	display: flex;
	gap: clamp(18px, 2.2vw, 34px);
	justify-content: center;
	margin-left: auto;
}

.nch-nav a {
	color: #394150 !important;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	text-decoration: none !important;
}

.nch-nav a::after {
	background: var(--nch-blue);
	bottom: -10px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 180ms ease;
	width: 100%;
}

.nch-nav a:hover::after,
.nch-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.nch-header__cta {
	align-items: center;
	background: var(--nch-blue);
	border-radius: 999px;
	color: var(--nch-white) !important;
	display: inline-flex;
	font-size: 14px;
	font-weight: 780;
	gap: 10px;
	min-height: 46px;
	padding: 0 20px;
	text-decoration: none !important;
	transition: background-color 180ms ease, transform 180ms ease;
}

.nch-header__cta:hover {
	background: var(--nch-blue-dark);
	transform: translateY(-1px);
}

.nch-header__cta span {
	font-size: 18px;
}

.nch-menu-toggle {
	align-items: center;
	background: var(--nch-surface);
	border: 0;
	border-radius: 14px;
	cursor: pointer;
	display: none;
	flex-direction: column;
	gap: 6px;
	height: 46px;
	justify-content: center;
	padding: 0;
	width: 46px;
}

.nch-menu-toggle i {
	background: var(--nch-ink);
	border-radius: 2px;
	display: block;
	height: 2px;
	transition: transform 180ms ease;
	width: 19px;
}

.nch-menu-toggle[aria-expanded="true"] i:first-of-type {
	transform: translateY(4px) rotate(45deg);
}

.nch-menu-toggle[aria-expanded="true"] i:last-of-type {
	transform: translateY(-4px) rotate(-45deg);
}

.nch-mobile-menu {
	background: rgba(255, 255, 255, 0.98);
	border-top: 1px solid var(--nch-line);
	box-shadow: 0 22px 45px rgba(18, 23, 34, 0.1);
	padding: 20px 24px 26px;
}

.nch-mobile-menu[hidden] {
	display: none;
}

.nch-mobile-menu nav {
	display: grid;
	margin-bottom: 20px;
}

.nch-mobile-menu nav a {
	border-bottom: 1px solid var(--nch-line);
	color: var(--nch-ink) !important;
	font-size: 18px;
	font-weight: 740;
	padding: 13px 2px;
	text-decoration: none !important;
}

.nch-mobile-menu .nch-button {
	width: 100%;
}

.nch-footer {
	background: #07142b;
	color: rgba(255, 255, 255, 0.72);
	padding: 84px 32px 30px;
}

.nch-footer__inner,
.nch-footer__bottom {
	margin: 0 auto;
	max-width: 1280px;
	width: 100%;
}

.nch-footer__inner {
	display: grid;
	gap: 72px;
	grid-template-columns: minmax(280px, 1.5fr) 0.8fr 1fr;
}

.nch-brand--footer {
	color: var(--nch-white) !important;
}

.nch-brand--footer .nch-brand__mark {
	background: var(--nch-white);
}

.nch-brand--footer .nch-brand__mark::before,
.nch-brand--footer .nch-brand__mark::after {
	background: var(--nch-blue);
}

.nch-brand--footer .nch-brand__mark span {
	background: var(--nch-red);
}

.nch-brand--footer .nch-brand__text small {
	color: #aabfe8;
}

.nch-footer__brand p {
	font-size: 15px;
	line-height: 1.75;
	margin: 28px 0 0;
	max-width: 420px;
}

.nch-footer__column {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nch-footer__column h2 {
	color: var(--nch-white);
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.13em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.nch-footer__column a,
.nch-footer__column strong,
.nch-footer__column address {
	color: rgba(255, 255, 255, 0.76) !important;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.65;
	margin: 0;
	text-decoration: none !important;
}

.nch-footer__column a:hover {
	color: var(--nch-white) !important;
}

.nch-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	display: flex;
	font-size: 12px;
	justify-content: space-between;
	margin-top: 62px;
	padding-top: 26px;
}

.nch-footer__bottom > div {
	display: flex;
	gap: 24px;
}

.nch-footer__bottom a,
.nch-footer__bottom span {
	color: rgba(255, 255, 255, 0.54) !important;
	text-decoration: none !important;
}

#projekt,
#lokalita,
#vystavba,
#pripravujeme,
#kontakt,
#nch-interest {
	scroll-margin-top: 106px;
}

.nch-site,
.nch-catalog,
.nch-detail {
	color: var(--nch-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.nch-site *,
.nch-catalog *,
.nch-detail * {
	box-sizing: border-box;
}

.nch-site h1,
.nch-site h2,
.nch-site h3,
.nch-catalog h1,
.nch-catalog h2,
.nch-catalog h3,
.nch-detail h1,
.nch-detail h2,
.nch-detail h3 {
	color: inherit;
	font-family: inherit;
	font-weight: 760;
	letter-spacing: -0.045em;
	line-height: 1.04;
	margin: 0;
}

.nch-site p,
.nch-catalog p,
.nch-detail p {
	margin: 0;
}

.nch-container {
	margin: 0 auto;
	max-width: 1280px;
	padding-left: 32px;
	padding-right: 32px;
	width: 100%;
}

.nch-section {
	padding: 112px 0;
}

.nch-section--tight {
	padding: 48px 0 84px;
}

.nch-eyebrow {
	color: var(--nch-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.13em;
	margin-bottom: 18px !important;
	text-transform: uppercase;
}

.nch-lead {
	color: #4c5360;
	font-size: clamp(18px, 1.6vw, 23px);
	line-height: 1.55;
	max-width: 640px;
}

.nch-lead-small {
	color: #38404d;
	font-size: 20px;
	line-height: 1.55;
	margin-bottom: 22px !important;
}

.nch-visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.nch-button {
	align-items: center;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 760;
	justify-content: center;
	min-height: 52px;
	padding: 0 25px;
	text-decoration: none !important;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nch-button:hover {
	transform: translateY(-2px);
}

.nch-button--primary {
	background: var(--nch-red);
	box-shadow: 0 14px 30px rgba(220, 28, 46, 0.24);
	color: var(--nch-white) !important;
}

.nch-button--primary:hover {
	background: #c81224;
	box-shadow: 0 18px 36px rgba(220, 28, 46, 0.32);
}

.nch-button--glass {
	background: rgba(255, 255, 255, 0.74);
	box-shadow: inset 0 0 0 1px rgba(18, 23, 34, 0.1);
	color: var(--nch-ink) !important;
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.nch-button--light {
	background: var(--nch-white);
	color: var(--nch-blue-dark) !important;
}

.nch-text-link {
	align-items: center;
	color: var(--nch-blue) !important;
	display: inline-flex;
	font-size: 15px;
	font-weight: 760;
	gap: 10px;
	text-decoration: none !important;
}

.nch-text-link span {
	font-size: 20px;
	transition: transform 180ms ease;
}

.nch-text-link:hover span {
	transform: translateX(4px);
}

.nch-hero {
	background: #153523;
	isolation: isolate;
	min-height: 720px;
	overflow: hidden;
	padding: 0;
	position: relative;
}

.nch-hero::before,
.nch-hero::after {
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.nch-hero::before {
	background: linear-gradient(90deg, rgba(13, 43, 29, 0.95) 0%, rgba(18, 58, 37, 0.87) 38%, rgba(22, 71, 42, 0.5) 66%, rgba(27, 78, 44, 0.13) 100%);
	z-index: 1;
}

.nch-hero::after {
	background: linear-gradient(180deg, rgba(7, 31, 19, 0.04) 58%, rgba(7, 31, 19, 0.48) 100%);
	z-index: 1;
}

.nch-hero--blue {
	background: #071a37;
}

.nch-hero--blue::before {
	background: linear-gradient(90deg, rgba(5, 20, 45, 0.95) 0%, rgba(5, 25, 57, 0.87) 38%, rgba(5, 28, 63, 0.5) 66%, rgba(5, 28, 63, 0.13) 100%);
}

.nch-hero--blue::after {
	background: linear-gradient(180deg, rgba(1, 12, 30, 0.04) 58%, rgba(1, 12, 30, 0.48) 100%);
}

.nch-hero--blue .nch-eyebrow {
	color: #a9caff;
}

.nch-hero__background {
	height: 100%;
	inset: 0;
	max-width: none !important;
	object-fit: cover;
	object-position: center center;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.nch-hero__blinds {
	display: grid;
	grid-template-rows: repeat(9, 1fr);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.nch-hero__blinds span {
	background: linear-gradient(90deg, rgba(12, 38, 27, 0.96), rgba(41, 91, 54, 0.92));
	box-shadow: inset 0 -1px rgba(255, 255, 255, 0.2), inset 0 5px 10px rgba(255, 255, 255, 0.06);
	opacity: 0;
	transform: scaleY(0.05);
	transform-origin: center;
}

.nch-hero--blue .nch-hero__blinds span {
	background: linear-gradient(90deg, rgba(4, 25, 55, 0.97), rgba(18, 66, 119, 0.92));
}

.nch-hero--blinds-moving .nch-hero__blinds {
	opacity: 1;
}

.nch-hero--blinds-moving .nch-hero__blinds span {
	animation: nch-blind-slat 880ms cubic-bezier(0.45, 0, 0.18, 1) both;
}

.nch-hero--blinds-moving .nch-hero__blinds span:nth-child(2) { animation-delay: 24ms; }
.nch-hero--blinds-moving .nch-hero__blinds span:nth-child(3) { animation-delay: 48ms; }
.nch-hero--blinds-moving .nch-hero__blinds span:nth-child(4) { animation-delay: 72ms; }
.nch-hero--blinds-moving .nch-hero__blinds span:nth-child(5) { animation-delay: 96ms; }
.nch-hero--blinds-moving .nch-hero__blinds span:nth-child(6) { animation-delay: 120ms; }
.nch-hero--blinds-moving .nch-hero__blinds span:nth-child(7) { animation-delay: 144ms; }
.nch-hero--blinds-moving .nch-hero__blinds span:nth-child(8) { animation-delay: 168ms; }
.nch-hero--blinds-moving .nch-hero__blinds span:nth-child(9) { animation-delay: 192ms; }

@keyframes nch-blind-slat {
	0% { opacity: 0; transform: scaleY(0.05); }
	32%, 66% { opacity: 0.96; transform: scaleY(1.04); }
	100% { opacity: 0; transform: scaleY(0.05); }
}

@media (prefers-reduced-motion: reduce) {
	.nch-hero__blinds,
	.nch-hero__blinds span {
		animation: none !important;
	}

	.nch-blinds-toggle__copy,
	.nch-blinds-toggle__cord::after {
		transition: none;
	}
}

.nch-blinds-toggle {
	align-items: flex-start;
	appearance: none;
	background: transparent;
	border: 0;
	color: var(--nch-white);
	cursor: pointer;
	display: flex;
	font-family: inherit;
	gap: 10px;
	padding: 0;
	position: absolute;
	right: clamp(18px, 3vw, 54px);
	top: 22px;
	z-index: 4;
}

.nch-blinds-toggle__copy {
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	backdrop-filter: blur(18px) saturate(140%);
	background: rgba(4, 26, 17, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	box-shadow: 0 14px 36px rgba(0, 18, 9, 0.2);
	display: block;
	margin-top: 8px;
	max-width: 205px;
	padding: 11px 14px 12px;
	text-align: left;
	transition: background-color 260ms ease, transform 260ms ease;
}

.nch-hero--blue .nch-blinds-toggle__copy {
	background: rgba(3, 24, 55, 0.78);
}

.nch-blinds-toggle__copy strong,
.nch-blinds-toggle__copy small {
	display: block;
}

.nch-blinds-toggle__copy strong {
	color: var(--nch-white);
	font-size: 13px;
	font-weight: 790;
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.nch-blinds-toggle__copy small {
	color: rgba(255, 255, 255, 0.7);
	font-size: 10px;
	line-height: 1.4;
	margin-top: 3px;
}

.nch-blinds-toggle__cord {
	display: block;
	height: 120px;
	position: relative;
	width: 34px;
}

.nch-blinds-toggle__cord::before {
	background: repeating-linear-gradient(180deg, #f0eadf 0, #f0eadf 3px, #c8bfaf 3px, #c8bfaf 5px);
	box-shadow: 1px 0 rgba(0, 0, 0, 0.2);
	content: "";
	height: 91px;
	left: 16px;
	position: absolute;
	top: 0;
	width: 3px;
}

.nch-blinds-toggle__cord::after {
	background: linear-gradient(145deg, #f4efe6, #bfb4a4);
	border: 1px solid rgba(47, 39, 29, 0.35);
	border-radius: 9px 9px 13px 13px;
	box-shadow: 0 7px 14px rgba(0, 0, 0, 0.28), inset 1px 1px rgba(255, 255, 255, 0.7);
	content: "";
	height: 29px;
	left: 7px;
	position: absolute;
	top: 88px;
	transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
	width: 20px;
}

.nch-blinds-toggle:hover .nch-blinds-toggle__cord::after,
.nch-blinds-toggle:focus-visible .nch-blinds-toggle__cord::after {
	transform: translateY(7px);
}

.nch-blinds-toggle:hover .nch-blinds-toggle__copy,
.nch-blinds-toggle:focus-visible .nch-blinds-toggle__copy {
	background: rgba(4, 26, 17, 0.92);
	transform: translateY(2px);
}

.nch-hero--blue .nch-blinds-toggle:hover .nch-blinds-toggle__copy,
.nch-hero--blue .nch-blinds-toggle:focus-visible .nch-blinds-toggle__copy {
	background: rgba(3, 24, 55, 0.94);
}

.nch-blinds-toggle:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.9);
	outline-offset: 7px;
}

.nch-blinds-toggle.is-pulled .nch-blinds-toggle__cord::after {
	transform: translateY(17px);
}

.nch-hero__grid {
	align-items: center;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
	min-height: 720px;
	position: relative;
	z-index: 2;
}

.nch-hero__content {
	padding: 92px 0 104px;
}

.nch-hero h1 {
	color: var(--nch-white);
	font-size: clamp(54px, 6.5vw, 96px);
	max-width: 740px;
	text-shadow: 0 4px 32px rgba(0, 13, 38, 0.2);
}

.nch-hero .nch-eyebrow {
	color: #d9eca9;
}

.nch-hero .nch-lead {
	color: rgba(255, 255, 255, 0.84);
	margin-top: 28px;
	max-width: 650px;
}

.nch-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 36px;
}

.nch-hero__availability {
	-webkit-backdrop-filter: blur(20px) saturate(130%);
	backdrop-filter: blur(20px) saturate(130%);
	background: rgba(255, 255, 255, 0.11);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 24px;
	display: grid;
	gap: 0;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 52px;
	max-width: 570px;
	padding: 17px 8px;
}

.nch-hero__availability > div {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	flex-direction: column;
	padding: 0 18px;
}

.nch-hero__availability > div:first-child {
	border-left: 0;
}

.nch-hero__availability strong {
	color: var(--nch-white);
	font-size: 27px;
	line-height: 1.1;
}

.nch-hero__availability span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	margin-top: 7px;
}

.nch-hero__visual {
	min-height: 720px;
	position: relative;
}

.nch-hero .nch-button--glass {
	background: rgba(255, 255, 255, 0.13);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
	color: var(--nch-white) !important;
}

.nch-floating-card {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.76);
	border-radius: 23px;
	bottom: 54px;
	box-shadow: 0 18px 48px rgba(18, 23, 34, 0.18);
	display: flex;
	flex-direction: column;
	left: auto;
	min-width: 210px;
	padding: 20px 22px;
	position: absolute;
	right: 0;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.nch-floating-card span,
.nch-floating-card small {
	color: var(--nch-muted);
	font-size: 12px;
}

.nch-floating-card strong {
	font-size: 25px;
	letter-spacing: -0.03em;
	margin: 3px 0;
}

.nch-proof {
	background: var(--nch-white);
	padding: 0 0 34px;
	position: relative;
	z-index: 3;
}

.nch-proof__panel {
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(18, 23, 34, 0.07);
	border-radius: 36px;
	box-shadow: 0 28px 80px rgba(18, 38, 27, 0.13);
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
	margin-top: -54px;
	padding: 46px;
	position: relative;
}

.nch-proof__intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nch-proof__intro h2 {
	font-size: clamp(34px, 3.4vw, 50px);
	max-width: 460px;
}

.nch-proof__intro > p:last-child {
	color: var(--nch-muted);
	font-size: 15px;
	line-height: 1.7;
	margin-top: 22px;
	max-width: 440px;
}

.nch-proof__stats {
	display: grid;
	gap: 13px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nch-proof__stat {
	background: #f3f7ef;
	border: 1px solid rgba(55, 88, 38, 0.08);
	border-radius: 25px;
	min-height: 176px;
	padding: 23px 25px;
}

.nch-proof__stat strong {
	color: #72920f;
	display: block;
	font-size: clamp(44px, 4.3vw, 64px);
	font-variant-numeric: tabular-nums;
	font-weight: 800;
	letter-spacing: -0.065em;
	line-height: 0.95;
}

.nch-proof__stat h3 {
	font-size: 18px;
	letter-spacing: -0.025em;
	margin-top: 20px;
}

.nch-proof__stat p {
	color: var(--nch-muted);
	font-size: 12px;
	margin-top: 5px;
}

.nch-proof__stat--primary {
	background: #abc23c;
	border-color: #abc23c;
	box-shadow: 0 18px 42px rgba(132, 157, 27, 0.22);
}

.nch-proof__stat--primary strong,
.nch-proof__stat--primary h3 {
	color: #17351f;
}

.nch-proof__stat--primary p {
	color: rgba(23, 53, 31, 0.7);
}

.nch-benefit-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
}

.nch-benefit-grid article {
	background: var(--nch-surface);
	border-radius: var(--nch-radius);
	min-height: 230px;
	padding: 32px;
}

.nch-benefit-grid article > span {
	color: var(--nch-blue);
	font-size: 46px;
	font-weight: 780;
	letter-spacing: -0.06em;
}

.nch-benefit-grid h3 {
	font-size: 23px;
	margin-top: 20px;
}

.nch-benefit-grid p {
	color: var(--nch-muted);
	font-size: 14px;
	margin-top: 10px;
}

.nch-section-heading {
	align-items: flex-end;
	display: flex;
	gap: 32px;
	justify-content: space-between;
	margin-bottom: 46px;
}

.nch-section-heading h2 {
	font-size: clamp(38px, 5vw, 64px);
	max-width: 790px;
}

.nch-card-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nch-unit-card {
	background: var(--nch-white);
	border: 1px solid var(--nch-line);
	border-radius: 32px;
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.nch-unit-card:hover {
	box-shadow: var(--nch-shadow);
	transform: translateY(-5px);
}

.nch-unit-card__image {
	background: #f1f3f5;
	display: block;
	height: 390px;
	padding: 28px;
	position: relative;
}

.nch-unit-card__image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.nch-unit-card__placeholder {
	align-items: center;
	background: linear-gradient(145deg, #e8edf4, #ffffff);
	color: var(--nch-blue);
	display: flex;
	font-size: 54px;
	font-weight: 780;
	height: 100%;
	justify-content: center;
}

.nch-unit-card__image .nch-status {
	left: 22px;
	position: absolute;
	top: 22px;
}

.nch-unit-card__body {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr auto;
	padding: 28px 30px 32px;
}

.nch-unit-card__body p {
	color: var(--nch-muted);
	font-size: 13px;
	margin-bottom: 6px;
}

.nch-unit-card__body h3 {
	font-size: 28px;
}

.nch-unit-card__price {
	font-size: 21px;
	letter-spacing: -0.03em;
}

.nch-unit-card__body .nch-text-link {
	grid-column: 1 / -1;
}

.nch-status {
	align-items: center;
	background: #eef1f4;
	border-radius: 999px;
	color: #4f5867;
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.05em;
	min-height: 28px;
	padding: 0 12px;
	text-transform: uppercase;
}

.nch-status--available {
	background: #dff5eb;
	color: #096846;
}

.nch-status--preparing {
	background: #e6effd;
	color: var(--nch-blue);
}

.nch-status--reserved {
	background: #fff0cc;
	color: #8a5c00;
}

.nch-status--negotiation {
	background: #eee8ff;
	color: #6340a9;
}

.nch-section--dark {
	background: var(--nch-blue-dark);
	color: var(--nch-white);
}

.nch-section--dark .nch-eyebrow {
	color: #8fb9ff;
}

.nch-story-grid {
	align-items: start;
	display: grid;
	gap: 90px;
	grid-template-columns: 1.05fr 0.95fr;
}

.nch-story-grid h2 {
	font-size: clamp(44px, 5.5vw, 72px);
}

.nch-story-grid > div:first-child > p:last-child {
	color: #cbd7e9;
	font-size: 19px;
	margin-top: 30px;
	max-width: 700px;
}

.nch-timeline-card {
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 30px;
	overflow: hidden;
}

.nch-timeline-card > div {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	display: grid;
	gap: 16px;
	grid-template-columns: 42px 1fr auto;
	padding: 25px 28px;
}

.nch-timeline-card > div:last-child {
	border-bottom: 0;
}

.nch-timeline-card span {
	align-items: center;
	background: rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	display: flex;
	font-size: 11px;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.nch-timeline-card p {
	color: #cbd7e9;
	font-size: 14px;
}

.nch-timeline-card strong {
	font-size: 14px;
}

.nch-gallery-grid {
	display: grid;
	gap: 16px;
	grid-auto-rows: 240px;
	grid-template-columns: repeat(12, 1fr);
}

.nch-gallery-item {
	border-radius: 25px;
	display: block;
	grid-column: span 4;
	overflow: hidden;
}

.nch-gallery-item--1,
.nch-gallery-item--4 {
	grid-column: span 8;
}

.nch-gallery-item img {
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
	width: 100%;
}

.nch-gallery-item:hover img {
	transform: scale(1.035);
}

.nch-future-section {
	padding-top: 36px;
}

.nch-future-card {
	align-items: center;
	background: linear-gradient(125deg, var(--nch-blue) 0%, #0957bc 58%, #4f88cd 100%);
	border-radius: 36px;
	color: var(--nch-white);
	display: flex;
	gap: 48px;
	justify-content: space-between;
	padding-bottom: 60px;
	padding-top: 60px;
}

.nch-future-card > div {
	max-width: 770px;
}

.nch-future-card .nch-eyebrow {
	color: #bcd7ff;
}

.nch-future-card h2 {
	font-size: clamp(44px, 5vw, 70px);
}

.nch-future-card p:last-child {
	color: #dbe9ff;
	font-size: 18px;
	margin-top: 22px;
}

.nch-contact-section {
	background: #f6f7f9;
}

.nch-contact-grid {
	align-items: start;
	display: grid;
	gap: 72px;
	grid-template-columns: 0.84fr 1.16fr;
}

.nch-contact-grid h2 {
	font-size: clamp(43px, 5.2vw, 70px);
}

.nch-contact-grid > div:first-child > p:not(.nch-eyebrow) {
	color: var(--nch-muted);
	font-size: 18px;
	margin-top: 26px;
}

.nch-office-contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 34px;
}

.nch-office-contact strong {
	font-size: 18px;
}

.nch-office-contact a {
	color: var(--nch-blue) !important;
	text-decoration: none !important;
}

.nch-form {
	background: var(--nch-white);
	border: 1px solid var(--nch-line);
	border-radius: 30px;
	box-shadow: 0 16px 54px rgba(18, 23, 34, 0.07);
	padding: 34px;
}

.nch-form-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nch-form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nch-form label > span {
	color: #444c59;
	font-size: 12px;
	font-weight: 720;
}

.nch-form input[type="text"],
.nch-form input[type="email"],
.nch-form input[type="tel"],
.nch-form textarea {
	appearance: none;
	background: #f6f7f9;
	border: 1px solid transparent;
	border-radius: 15px;
	color: var(--nch-ink);
	font-family: inherit;
	font-size: 16px;
	min-height: 52px;
	outline: 0;
	padding: 13px 15px;
	transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
	width: 100%;
}

.nch-form textarea {
	min-height: 120px;
	resize: vertical;
}

.nch-form input:focus,
.nch-form textarea:focus {
	background: var(--nch-white);
	border-color: #80a9e4;
	box-shadow: 0 0 0 4px rgba(0, 61, 165, 0.09);
}

.nch-form-wide {
	grid-column: 1 / -1;
}

.nch-consent {
	align-items: flex-start !important;
	display: flex !important;
	flex-direction: row !important;
	gap: 10px !important;
	margin: 18px 0 22px;
}

.nch-consent input {
	margin-top: 4px;
}

.nch-consent span {
	font-weight: 500 !important;
	line-height: 1.5;
}

.nch-consent a {
	color: var(--nch-blue) !important;
}

.nch-honeypot {
	left: -10000px;
	position: absolute;
}

.nch-form-message {
	border-radius: 14px;
	font-size: 14px;
	font-weight: 650;
	margin-bottom: 20px;
	padding: 14px 16px;
}

.nch-form-message--success {
	background: #dff5eb;
	color: #096846;
}

.nch-form-message--error {
	background: #ffe6e9;
	color: #9c1421;
}

.nch-catalog {
	background: #f8f9fb;
	min-height: 100vh;
	padding: 88px 0 112px;
}

.nch-catalog__header {
	align-items: flex-end;
	display: flex;
	gap: 32px;
	justify-content: space-between;
	margin-bottom: 42px;
}

.nch-catalog__header h1 {
	font-size: clamp(45px, 6vw, 78px);
}

.nch-catalog__header p:not(.nch-eyebrow) {
	color: var(--nch-muted);
	font-size: 18px;
	margin-top: 20px;
	max-width: 720px;
}

.nch-catalog__count {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	min-width: 150px;
}

.nch-catalog__count strong {
	font-size: 58px;
	letter-spacing: -0.06em;
	line-height: 1;
}

.nch-catalog__count span {
	color: var(--nch-muted);
	font-size: 12px;
	margin-top: 7px;
}

.nch-filters {
	align-items: end;
	background: rgba(255, 255, 255, 0.87);
	border: 1px solid var(--nch-line);
	border-radius: 24px;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(380px, 1.7fr) minmax(150px, 0.6fr) minmax(130px, 0.45fr) auto;
	margin-bottom: 24px;
	padding: 18px;
	position: sticky;
	top: 16px;
	z-index: 20;
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.nch-filter-tabs {
	background: #f0f2f5;
	border-radius: 15px;
	display: flex;
	gap: 3px;
	padding: 4px;
}

.nch-filter-tabs button,
.nch-filter-reset {
	background: transparent;
	border: 0;
	border-radius: 11px;
	color: #59616f;
	cursor: pointer;
	font-family: inherit;
	font-size: 12px;
	font-weight: 700;
	min-height: 40px;
	padding: 0 13px;
}

.nch-filter-tabs button.is-active {
	background: var(--nch-white);
	box-shadow: 0 4px 15px rgba(18, 23, 34, 0.08);
	color: var(--nch-ink);
}

.nch-filters > label {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nch-filters label span {
	color: var(--nch-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nch-filters select {
	background: #f0f2f5;
	border: 0;
	border-radius: 12px;
	color: var(--nch-ink);
	font-family: inherit;
	font-size: 13px;
	font-weight: 650;
	height: 40px;
	padding: 0 32px 0 12px;
}

.nch-filter-reset {
	color: var(--nch-blue);
	white-space: nowrap;
}

.nch-unit-table-wrap {
	background: var(--nch-white);
	border: 1px solid var(--nch-line);
	border-radius: 26px;
	overflow: hidden;
}

.nch-unit-table {
	border: 0;
	border-collapse: collapse;
	margin: 0;
	width: 100%;
}

.nch-unit-table th,
.nch-unit-table td {
	border: 0;
	border-bottom: 1px solid var(--nch-line);
	padding: 20px 16px;
	text-align: left;
	vertical-align: middle;
}

.nch-unit-table th {
	color: var(--nch-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding-bottom: 16px;
	padding-top: 16px;
	text-transform: uppercase;
}

.nch-unit-table tbody tr {
	cursor: pointer;
	transition: background-color 150ms ease;
}

.nch-unit-table tbody tr:hover,
.nch-unit-table tbody tr:focus {
	background: #f7f9fc;
	outline: 0;
}

.nch-unit-table tbody tr:last-child td {
	border-bottom: 0;
}

.nch-unit-table td {
	font-size: 14px;
}

.nch-unit-table td:first-child strong,
.nch-unit-table td:first-child small {
	display: block;
}

.nch-unit-table td:first-child strong {
	font-size: 16px;
}

.nch-unit-table td:first-child small {
	color: var(--nch-muted);
	font-size: 11px;
	margin-top: 3px;
}

.nch-row-arrow {
	color: var(--nch-blue);
	font-size: 20px;
}

.nch-unit-mobile-list {
	display: none;
}

.nch-no-results {
	background: var(--nch-white);
	border: 1px solid var(--nch-line);
	border-radius: 24px;
	padding: 54px;
	text-align: center;
}

.nch-no-results h3 {
	font-size: 26px;
}

.nch-no-results p {
	color: var(--nch-muted);
	margin-top: 10px;
}

.nch-detail {
	background: #f8f9fb;
	min-height: 100vh;
	padding: 42px 0 112px;
}

.nch-breadcrumbs {
	align-items: center;
	color: var(--nch-muted);
	display: flex;
	font-size: 12px;
	gap: 9px;
	margin-bottom: 44px;
}

.nch-breadcrumbs a {
	color: var(--nch-blue) !important;
	text-decoration: none !important;
}

.nch-detail__header {
	align-items: flex-end;
	display: flex;
	gap: 40px;
	justify-content: space-between;
	margin-bottom: 42px;
}

.nch-detail__header h1 {
	font-size: clamp(52px, 7vw, 88px);
}

.nch-detail__subtitle {
	color: var(--nch-muted);
	font-size: 21px;
	margin-top: 14px !important;
}

.nch-detail__price {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
}

.nch-detail__price > strong {
	font-size: clamp(27px, 3.5vw, 42px);
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-top: 13px;
}

.nch-detail__price small {
	color: var(--nch-muted);
	font-size: 11px;
	margin-top: 5px;
}

.nch-detail__layout {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 1fr) 350px;
}

.nch-detail__main {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.nch-plan-card,
.nch-detail-section {
	background: var(--nch-white);
	border: 1px solid var(--nch-line);
	border-radius: 30px;
	padding: 36px;
}

.nch-plan-card__heading {
	align-items: flex-end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.nch-plan-card__heading h2,
.nch-detail-section h2 {
	font-size: 36px;
}

.nch-plan-card__heading a {
	color: var(--nch-blue) !important;
	font-size: 13px;
	font-weight: 730;
	text-decoration: none !important;
}

.nch-plan-card > img {
	display: block;
	height: auto;
	max-height: 690px;
	object-fit: contain;
	width: 100%;
}

.nch-plan-placeholder {
	align-items: center;
	background: #f3f5f7;
	border-radius: 20px;
	color: var(--nch-muted);
	display: flex;
	height: 420px;
	justify-content: center;
}

.nch-detail-section h2 {
	margin-bottom: 28px;
}

.nch-fact-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, 1fr);
}

.nch-fact-grid > div {
	background: var(--nch-surface);
	border-radius: 17px;
	display: flex;
	flex-direction: column;
	min-height: 110px;
	padding: 18px;
}

.nch-fact-grid span {
	color: var(--nch-muted);
	font-size: 11px;
}

.nch-fact-grid strong {
	font-size: 19px;
	margin-top: auto;
}

.nch-rich-text {
	color: #505866;
}

.nch-rich-text p + p {
	margin-top: 16px;
}

.nch-room-list {
	border-top: 1px solid var(--nch-line);
}

.nch-room-list > div {
	align-items: center;
	border-bottom: 1px solid var(--nch-line);
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 15px 2px;
}

.nch-room-list span {
	color: #434b58;
}

.nch-room-list strong {
	font-size: 14px;
}

.nch-detail__aside {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: sticky;
	top: 22px;
}

.nch-interest-card,
.nch-aside-facts {
	background: var(--nch-white);
	border: 1px solid var(--nch-line);
	border-radius: 26px;
	padding: 28px;
}

.nch-interest-card h2 {
	font-size: 34px;
}

.nch-interest-card > p:not(.nch-eyebrow) {
	color: var(--nch-muted);
	font-size: 14px;
	margin: 15px 0 22px;
}

.nch-interest-card .nch-button {
	width: 100%;
}

.nch-interest-card .nch-office-contact {
	border-top: 1px solid var(--nch-line);
	margin-top: 22px;
	padding-top: 20px;
}

.nch-aside-facts > div {
	border-bottom: 1px solid var(--nch-line);
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 0;
}

.nch-aside-facts > div:first-child {
	padding-top: 0;
}

.nch-aside-facts > div:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.nch-aside-facts span {
	color: var(--nch-muted);
	font-size: 11px;
}

.nch-aside-facts strong {
	font-size: 14px;
}

.nch-detail-contact {
	align-items: start;
	display: grid;
	gap: 62px;
	grid-template-columns: 0.7fr 1.3fr;
	margin-top: 90px;
}

.nch-detail-contact h2 {
	font-size: clamp(38px, 5vw, 58px);
}

.nch-lightbox {
	align-items: center;
	background: rgba(5, 9, 15, 0.92);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 50px;
	position: fixed;
	z-index: 999999;
}

.nch-lightbox[hidden] {
	display: none;
}

.nch-lightbox img {
	background: var(--nch-white);
	border-radius: 18px;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
	max-height: calc(100vh - 100px);
	max-width: calc(100vw - 100px);
	object-fit: contain;
}

.nch-lightbox button {
	background: var(--nch-white);
	border: 0;
	border-radius: 50%;
	color: var(--nch-ink);
	cursor: pointer;
	font-size: 25px;
	height: 44px;
	position: absolute;
	right: 22px;
	top: 22px;
	width: 44px;
}

body.nch-lightbox-open {
	overflow: hidden;
}

@media (max-width: 1100px) {
	.nch-nav {
		display: none;
	}

	.nch-menu-toggle {
		display: flex;
	}

	.nch-header__cta {
		margin-left: auto;
	}

	.nch-hero__grid {
		gap: 32px;
		grid-template-columns: minmax(0, 660px) 1fr;
		min-height: 700px;
	}

	.nch-proof__panel {
		gap: 32px;
		grid-template-columns: minmax(240px, 0.65fr) minmax(480px, 1.35fr);
		padding: 34px;
	}

	.nch-filters {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.nch-filter-tabs {
		grid-column: 1 / -1;
	}

	.nch-detail__layout {
		grid-template-columns: minmax(0, 1fr) 310px;
	}
}

@media (max-width: 900px) {
	.nch-footer__inner {
		gap: 48px;
		grid-template-columns: 1fr 1fr;
	}

	.nch-footer__brand {
		grid-column: 1 / -1;
	}

	.nch-container {
		padding-left: 22px;
		padding-right: 22px;
	}

	.nch-section {
		padding: 82px 0;
	}

	.nch-hero__grid,
	.nch-proof__panel,
	.nch-story-grid,
	.nch-contact-grid,
	.nch-detail__layout,
	.nch-detail-contact {
		grid-template-columns: 1fr;
	}

	.nch-hero__grid {
		min-height: 700px;
		padding-top: 0;
	}

	.nch-hero__content {
		max-width: 730px;
		padding: 80px 0 126px;
	}

	.nch-proof__panel {
		margin-top: -42px;
	}

	.nch-proof__intro h2,
	.nch-proof__intro > p:last-child {
		max-width: 680px;
	}

	.nch-hero__visual {
		inset: 0;
		margin-left: 0;
		min-height: 0;
		pointer-events: none;
		position: absolute;
	}

	.nch-floating-card {
		bottom: 30px;
		left: auto;
		right: 22px;
	}

	.nch-benefit-grid {
		grid-template-columns: 1fr 1fr;
	}

	.nch-benefit-grid article:last-child {
		grid-column: 1 / -1;
	}

	.nch-story-grid {
		gap: 50px;
	}

	.nch-contact-grid {
		gap: 44px;
	}

	.nch-detail__aside {
		position: static;
	}

	.nch-detail-contact {
		gap: 34px;
	}
}

@media (max-width: 760px) {
	body.admin-bar .nch-header {
		top: 46px;
	}

	.nch-header__inner {
		height: 72px;
		padding: 0 16px;
	}

	.nch-header__cta {
		display: none;
	}

	.nch-brand__logo {
		width: 158px;
	}

	.nch-footer {
		padding: 64px 20px 26px;
	}

	.nch-footer__inner {
		gap: 42px;
		grid-template-columns: 1fr;
	}

	.nch-footer__brand {
		grid-column: auto;
	}

	.nch-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		margin-top: 48px;
	}

	.nch-footer__bottom > div {
		flex-direction: column;
		gap: 7px;
	}

	.nch-section {
		padding: 68px 0;
	}

	.nch-section--tight {
		padding: 32px 0 54px;
	}

	.nch-proof {
		padding-bottom: 18px;
	}

	.nch-proof__panel {
		border-radius: 28px;
		gap: 30px;
		margin-top: -34px;
		padding: 27px;
	}

	.nch-proof__stat {
		min-height: 158px;
		padding: 21px;
	}

	.nch-hero {
		min-height: 700px;
		padding-top: 0;
	}

	.nch-hero__grid {
		gap: 0;
		min-height: 700px;
	}

	.nch-hero::before {
		background: linear-gradient(90deg, rgba(13, 43, 29, 0.95) 0%, rgba(18, 58, 37, 0.88) 58%, rgba(22, 71, 42, 0.52) 100%);
	}

	.nch-hero__background {
		object-position: 62% center;
	}

	.nch-hero__content {
		padding: 66px 0 152px;
	}

	.nch-blinds-toggle {
		right: 14px;
		top: 12px;
	}

	.nch-blinds-toggle__copy {
		max-width: 180px;
	}

	.nch-blinds-toggle__cord {
		height: 96px;
	}

	.nch-blinds-toggle__cord::before {
		height: 67px;
	}

	.nch-blinds-toggle__cord::after {
		top: 64px;
	}

	.nch-hero h1 {
		font-size: clamp(45px, 14vw, 67px);
	}

	.nch-hero__availability {
		margin-top: 36px;
	}

	.nch-hero__visual {
		margin-left: 0;
	}

	.nch-floating-card {
		bottom: 24px;
		left: auto;
		right: 16px;
	}

	.nch-section-heading,
	.nch-catalog__header,
	.nch-detail__header,
	.nch-future-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.nch-card-grid,
	.nch-benefit-grid,
	.nch-fact-grid {
		grid-template-columns: 1fr;
	}

	.nch-benefit-grid article:last-child {
		grid-column: auto;
	}

	.nch-unit-card__image {
		height: 320px;
	}

	.nch-gallery-grid {
		grid-auto-rows: 210px;
		grid-template-columns: 1fr 1fr;
	}

	.nch-gallery-item,
	.nch-gallery-item--1,
	.nch-gallery-item--4 {
		grid-column: span 1;
	}

	.nch-gallery-item:first-child {
		grid-column: 1 / -1;
	}

	.nch-future-card {
		gap: 32px;
		padding: 38px 30px;
	}

	.nch-form-grid {
		grid-template-columns: 1fr;
	}

	.nch-form-wide {
		grid-column: auto;
	}

	.nch-catalog {
		padding: 62px 0 84px;
	}

	.nch-catalog__count {
		align-items: flex-start;
	}

	.nch-filters {
		grid-template-columns: 1fr 1fr;
		position: static;
	}

	.nch-filter-tabs {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.nch-unit-table-wrap {
		display: none;
	}

	.nch-unit-mobile-list {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.nch-unit-mobile-card {
		align-items: flex-end;
		background: var(--nch-white);
		border: 1px solid var(--nch-line);
		border-radius: 20px;
		color: var(--nch-ink) !important;
		display: flex;
		gap: 20px;
		justify-content: space-between;
		padding: 20px;
		text-decoration: none !important;
	}

	.nch-unit-mobile-card p {
		color: var(--nch-muted);
		font-size: 11px;
		margin: 10px 0 4px;
	}

	.nch-unit-mobile-card h3 {
		font-size: 22px;
	}

	.nch-unit-mobile-card > div:last-child {
		align-items: flex-end;
		display: flex;
		flex-direction: column;
		gap: 15px;
		text-align: right;
	}

	.nch-unit-mobile-card > div:last-child span {
		color: var(--nch-blue);
		font-size: 20px;
	}

	.nch-detail {
		padding-top: 28px;
	}

	.nch-detail__header {
		gap: 24px;
	}

	.nch-detail__price {
		align-items: flex-start;
	}

	.nch-plan-card,
	.nch-detail-section {
		padding: 25px;
	}

	.nch-lightbox {
		padding: 18px;
	}

	.nch-lightbox img {
		max-height: calc(100vh - 36px);
		max-width: calc(100vw - 36px);
	}
}

@media (max-width: 520px) {
	.nch-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.nch-hero__actions,
	.nch-hero__actions .nch-button {
		width: 100%;
	}

	.nch-hero__availability span {
		font-size: 10px;
	}

	.nch-hero__availability strong {
		font-size: 22px;
	}

	.nch-hero,
	.nch-hero__grid {
		min-height: 690px;
	}

	.nch-hero__content {
		padding: 104px 0 64px;
	}

	.nch-blinds-toggle__copy {
		max-width: 168px;
		padding: 9px 11px 10px;
	}

	.nch-proof__panel {
		padding: 24px 18px 18px;
	}

	.nch-proof__stats {
		grid-template-columns: 1fr;
	}

	.nch-proof__stat {
		min-height: 0;
	}

	.nch-floating-card {
		display: none;
	}

	.nch-unit-card__body {
		grid-template-columns: 1fr;
	}

	.nch-unit-card__price,
	.nch-unit-card__body .nch-text-link {
		grid-column: auto;
	}

	.nch-gallery-grid {
		grid-template-columns: 1fr;
	}

	.nch-gallery-item,
	.nch-gallery-item:first-child {
		grid-column: auto;
	}

	.nch-form {
		padding: 22px;
	}

	.nch-filters {
		grid-template-columns: 1fr;
	}

	.nch-filter-tabs {
		grid-column: auto;
	}

	.nch-unit-mobile-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.nch-unit-mobile-card > div:last-child {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
	}

	.nch-plan-card__heading {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nch-site *,
	.nch-catalog *,
	.nch-detail * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
